diff --git a/.github/workflows/data_fetching.yml b/.github/workflows/data_fetching.yml index 6bac91e..002cd26 100644 --- a/.github/workflows/data_fetching.yml +++ b/.github/workflows/data_fetching.yml @@ -30,6 +30,7 @@ jobs: set -o xtrace python ./data_merging.py python ./district_boundary_transform.py + python ./pdd_transform.py - name: Archive merging outputs uses: actions/upload-artifact@v4 if: always() @@ -51,9 +52,11 @@ jobs: main.js \ style.css \ custom_heatmap_leaflet.js \ + custom_leaflet_bigimage.js \ kdtree.js \ filesaver.js \ district_boundaries.geojson \ + pdd.geojson \ build/ - name: Update resources uses: JamesIves/github-pages-deploy-action@v4 diff --git a/custom_leaflet_bigimage.js b/custom_leaflet_bigimage.js new file mode 100644 index 0000000..004d0d8 --- /dev/null +++ b/custom_leaflet_bigimage.js @@ -0,0 +1,449 @@ +/* + Leaflet.BigImage (https://github.com/pasichnykvasyl/Leaflet.BigImage). + (c) 2020, Vasyl Pasichnyk, pasichnykvasyl (Oswald) + + LoohpJames + Modified for hk-journey-time-heat-map +*/ + +(function (factory, window) { + + // define an AMD module that relies on 'leaflet' + if (typeof define === 'function' && define.amd) { + define(['leaflet'], factory); + + // define a Common JS module that relies on 'leaflet' + } else if (typeof exports === 'object') { + module.exports = factory(require('leaflet')); + } + + // attach your plugin to the global 'L' variable + if (typeof window !== 'undefined' && window.L) { + window.L.YourPlugin = factory(L); + } +}(function (L) { + + L.Control.BigImage = L.Control.extend({ + options: { + position: 'topright', + title: 'Get image', + printControlLabel: '⤵️', + printControlClasses: [], + printControlTitle: 'Get image', + _unicodeClass: 'bigimage-unicode-icon', + maxScale: 10, + minScale: 1, + inputTitle: 'Choose scale:', + downloadTitle: 'Download' + }, + + onAdd: function (map) { + this._map = map; + + const title = this.options.printControlTitle; + const label = this.options.printControlLabel; + let classes = this.options.printControlClasses; + + if (label.indexOf('&') != -1) classes.push(this.options._unicodeClass); + + return this._createControl(label, title, classes, this._click, this); + }, + + _click: function (e) { + this._container.classList.add('leaflet-control-layers-expanded'); + this._containerParams.style.display = ''; + this._controlPanel.classList.add('bigimage-unicode-icon-disable'); + }, + + _createControl: function (label, title, classesToAdd, fn, context) { + + this._container = document.createElement('div'); + this._container.id = 'print-container'; + this._container.classList.add('leaflet-bar'); + + this._containerParams = document.createElement('div'); + this._containerParams.id = 'print-params'; + this._containerParams.style.display = 'none'; + + this._createCloseButton(); + + let containerTitle = document.createElement('h6'); + containerTitle.style.width = '100%'; + containerTitle.innerHTML = this.options.inputTitle; + this._containerParams.appendChild(containerTitle); + + this._createScaleInput(); + this._createDownloadButton(); + this._container.appendChild(this._containerParams); + + this._createControlPanel(classesToAdd, context, label, title, fn); + + L.DomEvent.disableScrollPropagation(this._container); + L.DomEvent.disableClickPropagation(this._container); + + return this._container; + }, + + _createDownloadButton: function () { + this._downloadBtn = document.createElement('div'); + this._downloadBtn.classList.add('download-button'); + + this._downloadBtn = document.createElement('div'); + this._downloadBtn.classList.add('download-button'); + this._downloadBtn.innerHTML = this.options.downloadTitle; + + this._downloadBtn.addEventListener('click', () => { + let scale_value = this._scaleInput.value; + if (!scale_value || scale_value < this.options.minScale || scale_value > this.options.maxScale) { + this._scaleInput.value = this.options.minScale; + return; + } + + this._containerParams.classList.add('print-disabled'); + this._loader.style.display = 'block'; + this._print(); + }); + this._containerParams.appendChild(this._downloadBtn); + }, + + _createScaleInput: function () { + this._scaleInput = document.createElement('input'); + this._scaleInput.style.width = '100%'; + this._scaleInput.type = 'number'; + this._scaleInput.value = this.options.minScale; + this._scaleInput.min = this.options.minScale; + this._scaleInput.max = this.options.maxScale; + this._scaleInput.id = 'scale'; + this._containerParams.appendChild(this._scaleInput); + + }, + + _createCloseButton: function () { + let span = document.createElement('div'); + span.classList.add('close'); + span.innerHTML = '×'; + + span.addEventListener('click', () => { + this._container.classList.remove('leaflet-control-layers-expanded'); + this._containerParams.style.display = 'none'; + this._controlPanel.classList.remove('bigimage-unicode-icon-disable'); + }); + + this._containerParams.appendChild(span); + }, + + _createControlPanel: function (classesToAdd, context, label, title, fn) { + let controlPanel = document.createElement('a'); + controlPanel.innerHTML = label; + controlPanel.id = 'print-btn'; + controlPanel.setAttribute('title', title); + classesToAdd.forEach(function (c) { + controlPanel.classList.add(c); + }); + L.DomEvent.on(controlPanel, 'click', fn, context); + this._container.appendChild(controlPanel); + this._controlPanel = controlPanel; + + this._loader = document.createElement('div'); + this._loader.id = 'print-loading'; + this._container.appendChild(this._loader); + }, + + _getLayers: function (resolve) { + let self = this; + let promises = []; + self._map.eachLayer(function (layer) { + if (!(layer instanceof L.TileLayer)) { // Modify to Only Print Tiles + return; + } + promises.push(new Promise((new_resolve) => { + try { + if (layer instanceof L.Marker) { + self._getMarkerLayer(layer, new_resolve) + } else if (layer instanceof L.TileLayer) { + self._getTileLayer(layer, new_resolve); + } else if (layer instanceof L.Circle) { + if (!self.circles[layer._leaflet_id]) { + self.circles[layer._leaflet_id] = layer; + } + new_resolve(); + } else if (layer instanceof L.Path) { + self._getPathLayer(layer, new_resolve); + } else { + new_resolve(); + } + } catch (e) { + console.log(e); + new_resolve(); + } + })); + }); + Promise.all(promises).then(() => { + resolve() + }); + }, + + /** + * Loads the layer for the map + * @param {*} layer + * @param {*} resolve + */ + _getTileLayer: function (layer, resolve) { + let self = this; + + self.tiles = []; + self.tileSize = layer._tileSize.x; + self.tileBounds = L.bounds(self.bounds.min.divideBy(self.tileSize)._floor(), self.bounds.max.divideBy(self.tileSize)._floor()); + + for (let j = self.tileBounds.min.y; j <= self.tileBounds.max.y; j++) + for (let i = self.tileBounds.min.x; i <= self.tileBounds.max.x; i++) + self.tiles.push(new L.Point(i, j)); + + let promiseArray = []; + self.tiles.forEach(tilePoint => { + let originalTilePoint = tilePoint.clone(); + if (layer._adjustTilePoint) layer._adjustTilePoint(tilePoint); + + let tilePos = originalTilePoint.scaleBy(new L.Point(self.tileSize, self.tileSize)).subtract(self.bounds.min); + + if (tilePoint.y < 0) return; + promiseArray.push(new Promise(resolve => { + self._loadTile(tilePoint, tilePos, layer, resolve); + })); + }); + + Promise.all(promiseArray).then(() => { + resolve(); + }); + }, + + _loadTile: function (tilePoint, tilePos, layer, resolve) { + let self = this; + let imgIndex = tilePoint.x + ':' + tilePoint.y + ':' + self.zoom; + self.tilesImgs[layer._leaflet_id] = {}; + let image = new Image(); + image.crossOrigin = 'Anonymous'; + image.onload = function () { + if (!self.tilesImgs[layer._leaflet_id][imgIndex]) self.tilesImgs[layer._leaflet_id][imgIndex] = { img: image, x: tilePos.x, y: tilePos.y, opacity: layer.options.opacity }; + resolve(); + }; + image.src = layer.getTileUrl(tilePoint); + }, + + _getMarkerLayer: function (layer, resolve) { + let self = this; + + if (self.markers[layer._leaflet_id]) { + resolve(); + return; + } + + let pixelPoint = self._map.project(layer._latlng); + pixelPoint = pixelPoint.subtract(new L.Point(self.bounds.min.x, self.bounds.min.y)); + + if (layer.options.icon && layer.options.icon.options && layer.options.icon.options.iconAnchor) { + pixelPoint.x -= layer.options.icon.options.iconAnchor[0]; + pixelPoint.y -= layer.options.icon.options.iconAnchor[1]; + } + + if (!self._pointPositionIsNotCorrect(pixelPoint) && layer._icon.src) { + let image = new Image(); + image.crossOrigin = 'Anonymous'; + image.src = layer._icon.src + image.onload = function () { + self.markers[layer._leaflet_id] = { img: image, x: pixelPoint.x, y: pixelPoint.y }; + resolve(); + }; + return; + } else if (!self._pointPositionIsNotCorrect(pixelPoint) && layer._icon.innerHTML && !layer._icon.src) { + let html = new Text(layer._icon.innerHTML); + self.markers[layer._leaflet_id] = { html: html, x: pixelPoint.x, y: pixelPoint.y }; + resolve(); + } else { + resolve(); + } + }, + + _pointPositionIsNotCorrect: function (point) { + return (point.x < 0 || point.y < 0 || point.x > this.canvas.width || point.y > this.canvas.height); + }, + + _getPathLayer: function (layer, resolve) { + let self = this; + + let correct = 0; + let parts = []; + + if (layer._mRadius || !layer._latlngs) { + resolve(); + return; + } + + let latlngs = layer.options.fill ? layer._latlngs[0] : layer._latlngs; + if (Array.isArray(latlngs[0])) { latlngs = latlngs.flat(); } + latlngs.forEach((latLng) => { + let pixelPoint = self._map.project(latLng); + pixelPoint = pixelPoint.subtract(new L.Point(self.bounds.min.x, self.bounds.min.y)); + parts.push(pixelPoint); + if (pixelPoint.x < self.canvas.width && pixelPoint.y < self.canvas.height) correct = 1; + }); + + if (correct) self.path[layer._leaflet_id] = { + parts: parts, + closed: layer.options.fill, + options: layer.options + }; + resolve(); + }, + + _changeScale: function (scale) { + if (!scale || scale <= 1) return 0; + + let addX = (this.bounds.max.x - this.bounds.min.x) / 2 * (scale - 1); + let addY = (this.bounds.max.y - this.bounds.min.y) / 2 * (scale - 1); + + this.bounds.min.x -= addX; + this.bounds.min.y -= addY; + this.bounds.max.x += addX; + this.bounds.max.y += addY; + + this.canvas.width *= scale; + this.canvas.height *= scale; + }, + + _drawPath: function (value) { + let self = this; + + self.ctx.beginPath(); + let count = 0; + let options = value.options; + value.parts.forEach((point) => { + self.ctx[count++ ? 'lineTo' : 'moveTo'](point.x, point.y); + }); + + if (value.closed) self.ctx.closePath(); + + this._feelPath(options); + }, + + _drawText: function (layer, resolve) { + let oldColour = this.ctx.fillStyle; + this.ctx.font = "regular 16px arial"; + this.ctx.fillStyle = 'white'; + this.ctx.fillText(layer.html.nodeValue, layer.x, layer.y) + this.ctx.fillStyle = oldColour; + }, + + _drawCircle: function (layer, resolve) { + + if (layer._empty()) { + return; + } + + let point = this._map.project(layer._latlng); + point = point.subtract(new L.Point(this.bounds.min.x, this.bounds.min.y)); + + let r = Math.max(Math.round(layer._radius), 1), + s = (Math.max(Math.round(layer._radiusY), 1) || r) / r; + + if (s !== 1) { + this.ctx.save(); + this.scale(1, s); + } + + this.ctx.beginPath(); + this.ctx.arc(point.x, point.y / s, r, 0, Math.PI * 2, false); + + if (s !== 1) { + this.ctx.restore(); + } + + this._feelPath(layer.options); + }, + + _feelPath: function (options) { + + if (options.fill) { + this.ctx.globalAlpha = options.fillOpacity; + this.ctx.fillStyle = options.fillColor || options.color; + this.ctx.fill(options.fillRule || 'evenodd'); + } + + if (options.stroke && options.weight !== 0) { + if (this.ctx.setLineDash) { + this.ctx.setLineDash(options && options._dashArray || []); + } + this.ctx.globalAlpha = options.opacity; + this.ctx.lineWidth = options.weight; + this.ctx.strokeStyle = options.color; + this.ctx.lineCap = options.lineCap; + this.ctx.lineJoin = options.lineJoin; + this.ctx.stroke(); + } + }, + + _print: function () { + let self = this; + + self.tilesImgs = {}; + self.markers = {}; + self.path = {}; + self.circles = {}; + + let dimensions = self._map.getSize(); + + self.zoom = self._map.getZoom(); + self.bounds = self._map.getPixelBounds(); + + self.canvas = document.createElement('canvas'); + self.canvas.width = dimensions.x; + self.canvas.height = dimensions.y; + self.ctx = self.canvas.getContext('2d'); + + this._changeScale(document.getElementById('scale').value); + + let promise = new Promise(function (resolve, reject) { + self._getLayers(resolve); + }); + return promise.then(() => { + return new Promise(((resolve, reject) => { + for (const [key, layer] of Object.entries(self.tilesImgs)) { + for (const [key, value] of Object.entries(layer)) { + self.ctx.globalAlpha = value.opacity; + self.ctx.drawImage(value.img, value.x, value.y, self.tileSize, self.tileSize); + self.ctx.globalAlpha = 1; + } + } + for (const [key, value] of Object.entries(self.path)) { + self._drawPath(value); + } + for (const [key, value] of Object.entries(self.markers)) { + if (!(value instanceof HTMLImageElement) && !value.img) { + self._drawText(value, value.x, value.y); + } else { + self.ctx.drawImage(value.img, value.x, value.y); + } + } + for (const [key, value] of Object.entries(self.circles)) { + self._drawCircle(value); + } + resolve(); + })); + }).then(() => { + // self.canvas.toBlob(function (blob) { + // let link = document.createElement('a'); + // link.download = "mapExport.png"; + // link.href = URL.createObjectURL(blob); + // link.click(); + // }); + // self._containerParams.classList.remove('print-disabled'); + // self._loader.style.display = 'none'; + return self.canvas; + }); + } + }); + + L.control.bigImage = function (options) { + return new L.Control.BigImage(options); + }; +}, window)); diff --git a/index.html b/index.html index 0827ef5..d8dbaa2 100644 --- a/index.html +++ b/index.html @@ -11,6 +11,7 @@ + @@ -36,11 +37,11 @@
- +
- +
-

Placeholders: {x} {y} {z} {lang}: en/tc

+

Each line is one layer
Placeholders: {x} {y} {z} {lang}: en/tc

@@ -256,12 +257,15 @@

此選項可能會增加載入時間
This option might significantly increase loading times.

- + + - + - -

Note that it might require ArcGis Pro to recreate the best look and feel of the heatmap if you are using ArcGis

+ + + +

Note that it might require ArcGis Pro to recreate the best look and feel of the heatmap via stop points data if you are using ArcGis

diff --git a/main.js b/main.js index 0b0ad51..a0f5e09 100644 --- a/main.js +++ b/main.js @@ -33,7 +33,15 @@ function reload() { setTimeout(() => { try { language = document.getElementById("language").value; - basemapUrl = document.getElementById("basemapUrl").value; + if (document.getElementById("basemapUrl").value.length === 0) { + basemapUrls = [ + "https://cartodb-basemaps-a.global.ssl.fastly.net/rastertiles/voyager_nolabels/{z}/{x}/{y}.png", + "https://mapapi.geodata.gov.hk/gs/api/v1.0.0/xyz/label/hk/{lang}/WGS84/{z}/{x}/{y}.png" + ]; + document.getElementById("basemapUrl").value = basemapUrls.join("\n"); + } else { + basemapUrls = document.getElementById("basemapUrl").value.split("\n"); + } initMap(); modes = new Set(Array.from(document.querySelectorAll('input[name="modes"]:checked')).map(el => el.value)); direction = document.getElementById("direction").value; @@ -192,19 +200,19 @@ function toggleGradientPicker() { function initMap() { tileLayers.clearLayers(); - if (basemapUrl) { - L.tileLayer(basemapUrl.replace("{lang}", language === "en" ? "en" : "tc"), { - maxZoom: 19, - attribution: '© OpenStreetMap contributors' - }).addTo(tileLayers); - } else { - L.tileLayer('https://cartodb-basemaps-{s}.global.ssl.fastly.net/rastertiles/voyager_nolabels/{z}/{x}/{y}.png', { - maxZoom: 19, - attribution: '© OpenStreetMap contributors © CARTO © HKSAR Gov' - }).addTo(tileLayers); - L.tileLayer('https://mapapi.geodata.gov.hk/gs/api/v1.0.0/xyz/label/hk/{lang}/WGS84/{z}/{x}/{y}.png'.replace("{lang}", language === "en" ? "en" : "tc"), { - maxZoom: 19, - }).addTo(tileLayers); + let first = true; + for (const basemapUrl of basemapUrls) { + if (first) { + L.tileLayer(basemapUrl.replace("{lang}", language === "en" ? "en" : "tc"), { + maxZoom: 19, + attribution: '© OpenStreetMap contributors © CARTO © HKSAR Gov' + }).addTo(tileLayers); + first = false; + } else { + L.tileLayer(basemapUrl.replace("{lang}", language === "en" ? "en" : "tc"), { + maxZoom: 19, + }).addTo(tileLayers); + } } } @@ -445,6 +453,7 @@ function mergeHeatmapData(map1, map2) { async function updateOrigin(lat = lastPosition[0], lng = lastPosition[1]) { document.getElementById("export-points-button").disabled = true; document.getElementById("export-image-button").disabled = true; + document.getElementById("export-image-basemap-button").disabled = true; document.getElementById("export-area-button").disabled = true; if (!routeList || !stopList || !lat || !lng) return; @@ -537,6 +546,7 @@ async function updateOrigin(lat = lastPosition[0], lng = lastPosition[1]) { if (journeyTimesData.length > 0) { document.getElementById("export-points-button").disabled = false; document.getElementById("export-image-button").disabled = false; + document.getElementById("export-image-basemap-button").disabled = false; if (lastAreaGeoJson) { document.getElementById("export-area-button").disabled = false; } @@ -573,6 +583,16 @@ function generateTravelTimePolygon(timeIntervals) { return result; } +function findPdd(lat, lng) { + const point = turf.point([lng, lat]); + for (const feature of pdd.features) { + if (turf.booleanPointInPolygon(point, feature)) { + return feature.properties; + } + } + return null; +} + function getMinTimeAt(lat, lng) { if (lastJourneyTimesTree === null) { return {time: null, steps: []}; @@ -606,18 +626,21 @@ function exportGeoJson() { const geojson = { type: "FeatureCollection", features: lastJourneyTimes - .map(([lat, lng, journeyTine]) => ({ + .map(([lat, lng, journeyTime, steps]) => ({ type: "Feature", properties: { - intensity: calculateIntensityByTravelTime(journeyTine), - journeyTine: journeyTine + intensity: calculateIntensityByTravelTime(journeyTime), + journeyTime: journeyTime, + journeySteps: steps, + stopId: steps[steps.length - 1].stopId, + pdd: findPdd(lat, lng), }, geometry: { type: "Point", coordinates: [lng, lat], }, })) - .filter(({properties}) => properties.journeyTine < Number.MAX_SAFE_INTEGER), + .filter(({properties}) => properties.journeyTime < Number.MAX_SAFE_INTEGER), }; // Download the GeoJSON file const downloadGeoJSON = (geojson) => { @@ -678,12 +701,51 @@ function exportHeatmapAsImage() { }); } +function exportHeatmapWithBasemapAsImage() { + const mapCanvas = document.createElement('canvas'); + const mapContext = mapCanvas.getContext('2d'); + + const width = heatmapLayer._heat._width; + const height = heatmapLayer._heat._height; + const { lat: latUpperLeft, lng: lngUpperLeft} = heatmapLayer._map.containerPointToLatLng([0, 0]); + const { lat: latUpperRight, lng: lngUpperRight} = heatmapLayer._map.containerPointToLatLng([width, 0]); + const { lat: latLowerLeft, lng: lngLowerLeft} = heatmapLayer._map.containerPointToLatLng([0, height]); + const { lat: latLowerRight, lng: lngLowerRight} = heatmapLayer._map.containerPointToLatLng([width, height]); + + mapCanvas.width = width; + mapCanvas.height = height; + + bigImageLayer._print().then(basemapCanvas => { + // Render the base tile layers + mapContext.drawImage(basemapCanvas, 0, 0, width, height); + + // Render the heatmap layer + const heatmapCanvas = heatmapLayer._heat._canvas; + mapContext.drawImage(heatmapCanvas, 0, 0, width, height); + + // Export the combined canvas + mapCanvas.toBlob(function(blob) { + saveAs(blob, "heatmap_basemap.png"); + + const meta = { + "UpperLeft": [latUpperLeft, lngUpperLeft], + "UpperRight": [latUpperRight, lngUpperRight], + "LowerLeft": [latLowerLeft, lngLowerLeft], + "LowerRight": [latLowerRight, lngLowerRight], + } + const metaBlob = new Blob([JSON.stringify(meta, null, 4)], {type: "text/plain;charset=utf-8"}); + saveAs(metaBlob, "heatmap_basemap.json"); + }); + }); +} + // ============================== let routeList = null; let stopList = null; let journeyTimes = null; let districtBoundaries = null; +let pdd = null; loadJSON("./routeTimeList.min.json", dataSheet => { routeList = dataSheet.routeList; stopList = dataSheet.stopList; @@ -692,6 +754,9 @@ loadJSON("./routeTimeList.min.json", dataSheet => { loadJSON("./district_boundaries.geojson", geoJson => { districtBoundaries = geoJson; }); +loadJSON("./pdd.geojson", geoJson => { + pdd = geoJson; +}); let lastPosition = null; let lastJourneyTimes = []; @@ -699,7 +764,10 @@ let lastJourneyTimesTree = null; let lastAreaGeoJson = null; let language = "zh"; -let basemapUrl = ""; +let basemapUrls = [ + "https://cartodb-basemaps-a.global.ssl.fastly.net/rastertiles/voyager_nolabels/{z}/{x}/{y}.png", + "https://mapapi.geodata.gov.hk/gs/api/v1.0.0/xyz/label/hk/{lang}/WGS84/{z}/{x}/{y}.png" +]; let modes = new Set(["kmb", "ctb", "nlb", "gmb", "mtr", "lightRail", "lrtfeeder", "hkkf", "sunferry", "fortuneferry"]); let direction = "departing-from"; let weekday = "N"; @@ -759,6 +827,8 @@ const layerControl = L.control.layers(null, null).addTo(map) .addOverlay(heatmapLayer, "熱圖 Heatmap") .addOverlay(areaLayer, "行程時間範圍 Travel Time Area"); +const bigImageLayer = L.control.bigImage({position: 'topright'}).addTo(map); + reload(); map.on('click', (event) => { diff --git a/pdd.geojson b/pdd.geojson new file mode 100644 index 0000000..6927e4a --- /dev/null +++ b/pdd.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","name":"PDD_2019TPEDM","crs":{"type":"name","properties":{"name":"EPSG:2326"}},"features":[{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[114.17131,22.28168],[114.17131,22.28169],[114.17131,22.28169],[114.17131,22.28169],[114.17131,22.2817],[114.17131,22.2817],[114.17131,22.2817],[114.17131,22.2817],[114.17131,22.28171],[114.17131,22.28171],[114.17131,22.28171],[114.17131,22.28172],[114.17131,22.28172],[114.17131,22.28172],[114.1713,22.28173],[114.1713,22.28173],[114.1713,22.28173],[114.1713,22.28173],[114.1713,22.28174],[114.1713,22.28174],[114.1713,22.28174],[114.1713,22.28175],[114.1713,22.28176],[114.1713,22.28176],[114.1713,22.28176],[114.1713,22.28177],[114.1713,22.28177],[114.1713,22.28177],[114.1713,22.28178],[114.1713,22.28178],[114.1713,22.28178],[114.1713,22.28179],[114.1713,22.28179],[114.1713,22.28179],[114.1713,22.2818],[114.1713,22.2818],[114.1713,22.2818],[114.1713,22.2818],[114.1713,22.28181],[114.1713,22.28181],[114.1713,22.28166],[114.17131,22.28168]]],[[[114.11267,22.28621],[114.11267,22.28627],[114.11255,22.28618],[114.11224,22.28618],[114.11207,22.28615],[114.11203,22.28614],[114.11187,22.28604],[114.11189,22.28601],[114.11184,22.28593],[114.1117,22.28591],[114.11164,22.2859],[114.11161,22.28588],[114.11153,22.28585],[114.11142,22.28569],[114.1113,22.28575],[114.11123,22.2857],[114.11124,22.28558],[114.11119,22.28546],[114.11108,22.28541],[114.1111,22.28536],[114.11103,22.28529],[114.11095,22.28531],[114.11092,22.28528],[114.11095,22.28513],[114.11095,22.28505],[114.11092,22.28499],[114.11101,22.28492],[114.11092,22.2846],[114.11097,22.28457],[114.111,22.28432],[114.11084,22.28402],[114.11084,22.28391],[114.11082,22.28372],[114.11084,22.28335],[114.11085,22.28332],[114.11087,22.2833],[114.11088,22.28328],[114.1109,22.28327],[114.11095,22.28326],[114.11092,22.28322],[114.11091,22.2832],[114.11092,22.28319],[114.11093,22.28319],[114.11096,22.2832],[114.11097,22.28322],[114.11099,22.28322],[114.11106,22.28317],[114.11123,22.2829],[114.11129,22.28287],[114.11135,22.28283],[114.11159,22.28297],[114.1117,22.28304],[114.11191,22.28312],[114.11196,22.28307],[114.11201,22.2831],[114.11205,22.28311],[114.11209,22.28307],[114.11215,22.28308],[114.11209,22.2832],[114.11229,22.28331],[114.11247,22.28315],[114.11254,22.28308],[114.11259,22.28314],[114.11245,22.28323],[114.11242,22.28331],[114.11243,22.28346],[114.11245,22.28351],[114.11254,22.28354],[114.11253,22.28361],[114.11259,22.28356],[114.11267,22.28363],[114.11274,22.28358],[114.11284,22.2837],[114.11307,22.28363],[114.11309,22.28356],[114.11319,22.28354],[114.11337,22.28351],[114.11344,22.2835],[114.1135,22.28348],[114.11355,22.28351],[114.11373,22.28352],[114.11384,22.28352],[114.11392,22.28358],[114.11403,22.28359],[114.11421,22.28353],[114.11428,22.28351],[114.11442,22.2836],[114.11445,22.28369],[114.11461,22.2837],[114.11515,22.28402],[114.1153,22.28417],[114.11537,22.28437],[114.11531,22.28447],[114.11527,22.28457],[114.1153,22.28466],[114.11524,22.28477],[114.11509,22.28488],[114.11506,22.28508],[114.11494,22.28525],[114.11477,22.28539],[114.11486,22.28548],[114.11475,22.28555],[114.11473,22.28553],[114.11479,22.28548],[114.11473,22.28542],[114.11436,22.28572],[114.11418,22.28582],[114.11393,22.28577],[114.11386,22.2858],[114.11361,22.286],[114.11355,22.28615],[114.11345,22.28613],[114.11333,22.28619],[114.11318,22.28617],[114.11301,22.28621],[114.11272,22.28619],[114.11267,22.28621]]],[[[114.11679,22.28633],[114.11667,22.28631],[114.11659,22.28616],[114.11651,22.28615],[114.11647,22.2861],[114.1164,22.28608],[114.11627,22.28599],[114.11615,22.28607],[114.11608,22.28596],[114.11607,22.28584],[114.1161,22.28553],[114.11632,22.28528],[114.11632,22.2852],[114.11643,22.2852],[114.11645,22.28516],[114.11657,22.28512],[114.11662,22.28508],[114.11662,22.28501],[114.11665,22.28498],[114.1168,22.28501],[114.1168,22.28497],[114.11682,22.28495],[114.11683,22.2849],[114.11688,22.28488],[114.11692,22.28492],[114.11692,22.28482],[114.11697,22.28477],[114.11704,22.28478],[114.11704,22.28488],[114.11715,22.28484],[114.11719,22.285],[114.11724,22.28498],[114.11727,22.2851],[114.11733,22.28513],[114.11733,22.2853],[114.11735,22.28535],[114.1174,22.28543],[114.11735,22.28551],[114.11741,22.28557],[114.11737,22.28568],[114.11731,22.28571],[114.11728,22.28577],[114.11718,22.2858],[114.11717,22.2859],[114.11721,22.28599],[114.11717,22.28618],[114.1171,22.28626],[114.11701,22.28631],[114.11688,22.28623],[114.11679,22.28633]]],[[[114.14558,22.2905],[114.14038,22.29066],[114.13893,22.2903],[114.13883,22.29064],[114.13874,22.29062],[114.13884,22.29027],[114.13847,22.29018],[114.13842,22.29032],[114.13838,22.29031],[114.13832,22.2905],[114.13837,22.29051],[114.13836,22.29052],[114.13822,22.29049],[114.13822,22.29047],[114.13827,22.29048],[114.13832,22.2903],[114.13828,22.29029],[114.13832,22.29014],[114.13713,22.28984],[114.13703,22.29019],[114.13688,22.29016],[114.13698,22.28981],[114.1361,22.28958],[114.136,22.28993],[114.13586,22.2899],[114.13596,22.28955],[114.13526,22.28937],[114.13516,22.28972],[114.13502,22.28968],[114.13512,22.28934],[114.13435,22.28914],[114.13176,22.28953],[114.13172,22.28924],[114.13445,22.28884],[114.13472,22.28789],[114.13231,22.28824],[114.12959,22.28581],[114.1283,22.28468],[114.12754,22.284],[114.12755,22.28397],[114.1266,22.28381],[114.12658,22.2839],[114.12655,22.2839],[114.12657,22.2838],[114.12572,22.28365],[114.12565,22.28371],[114.12563,22.28369],[114.12552,22.28379],[114.12545,22.28399],[114.12551,22.28401],[114.12552,22.284],[114.12552,22.284],[114.12553,22.28399],[114.12554,22.284],[114.12555,22.284],[114.12555,22.28401],[114.12556,22.28401],[114.12556,22.28402],[114.12555,22.28403],[114.12555,22.28403],[114.12554,22.28404],[114.12553,22.28404],[114.12552,22.28403],[114.12551,22.28403],[114.12551,22.28402],[114.12551,22.28402],[114.12545,22.284],[114.12544,22.28402],[114.12538,22.284],[114.12539,22.28398],[114.12533,22.28396],[114.12532,22.28396],[114.12531,22.28397],[114.1253,22.28397],[114.1253,22.28397],[114.12529,22.28396],[114.12528,22.28396],[114.12528,22.28395],[114.12528,22.28394],[114.12529,22.28393],[114.12529,22.28393],[114.1253,22.28393],[114.12531,22.28393],[114.12532,22.28393],[114.12532,22.28393],[114.12533,22.28394],[114.12533,22.28395],[114.12539,22.28397],[114.12546,22.28377],[114.12543,22.28362],[114.1254,22.28363],[114.12539,22.2836],[114.1254,22.28357],[114.12539,22.28353],[114.12526,22.28348],[114.12524,22.28353],[114.12475,22.28337],[114.12476,22.28332],[114.12451,22.28324],[114.12449,22.2833],[114.1241,22.28317],[114.12401,22.28343],[114.12389,22.28339],[114.12401,22.28308],[114.12382,22.28302],[114.1238,22.28306],[114.12341,22.28293],[114.12342,22.28289],[114.1228,22.28269],[114.12221,22.28249],[114.12199,22.28307],[114.1231,22.28378],[114.12294,22.284],[114.12158,22.28314],[114.12175,22.2829],[114.12193,22.2824],[114.11882,22.28137],[114.11864,22.28112],[114.11845,22.28087],[114.1182,22.28066],[114.11814,22.28058],[114.11807,22.28054],[114.11801,22.28054],[114.11793,22.28045],[114.1178,22.28034],[114.1177,22.28033],[114.11763,22.28017],[114.11754,22.28015],[114.11753,22.27995],[114.11746,22.2799],[114.11744,22.27987],[114.11736,22.27983],[114.11734,22.27971],[114.11728,22.27957],[114.11718,22.27915],[114.11717,22.27911],[114.11717,22.2791],[114.11712,22.27898],[114.11712,22.27897],[114.11712,22.27896],[114.11712,22.27897],[114.1171,22.27887],[114.11707,22.2788],[114.11706,22.27878],[114.11706,22.27877],[114.11705,22.27875],[114.11705,22.27876],[114.11701,22.27869],[114.11694,22.27859],[114.11694,22.27858],[114.11693,22.27854],[114.1169,22.2785],[114.11687,22.27846],[114.11682,22.27838],[114.1168,22.27836],[114.11678,22.27834],[114.11673,22.27832],[114.11673,22.27832],[114.11663,22.27826],[114.11652,22.27813],[114.11651,22.27793],[114.11644,22.27774],[114.11637,22.27746],[114.11642,22.27738],[114.11643,22.27737],[114.11646,22.27733],[114.11646,22.2773],[114.11646,22.2773],[114.11648,22.27723],[114.11649,22.27712],[114.11649,22.27712],[114.1165,22.27706],[114.11651,22.27699],[114.11653,22.2769],[114.11654,22.27685],[114.11655,22.27681],[114.11655,22.27677],[114.11655,22.27672],[114.11654,22.27667],[114.11653,22.27666],[114.11653,22.27666],[114.11653,22.27666],[114.11649,22.27663],[114.11645,22.27661],[114.1164,22.27653],[114.11645,22.27645],[114.11645,22.27645],[114.11645,22.27645],[114.11647,22.27643],[114.11649,22.27621],[114.11644,22.27603],[114.11644,22.27602],[114.11644,22.27602],[114.11646,22.27598],[114.11646,22.27596],[114.11644,22.27589],[114.11643,22.27586],[114.11642,22.27572],[114.11641,22.27569],[114.11641,22.27569],[114.11641,22.27568],[114.11641,22.27567],[114.1164,22.27564],[114.11638,22.2756],[114.11637,22.27556],[114.11638,22.27551],[114.11639,22.2755],[114.11639,22.27549],[114.11639,22.27548],[114.1164,22.27547],[114.1164,22.27545],[114.1164,22.27544],[114.1164,22.27543],[114.11635,22.27518],[114.11634,22.2748],[114.11638,22.27473],[114.11643,22.27468],[114.11644,22.27467],[114.11644,22.27466],[114.11655,22.27454],[114.11657,22.27453],[114.11659,22.2745],[114.1166,22.27449],[114.11661,22.27449],[114.11664,22.27446],[114.11673,22.27438],[114.11682,22.27431],[114.11684,22.27428],[114.11704,22.27417],[114.11705,22.27415],[114.11706,22.27414],[114.11706,22.27412],[114.11709,22.27407],[114.11718,22.274],[114.11718,22.274],[114.11721,22.27398],[114.11732,22.27395],[114.11734,22.27395],[114.11739,22.27394],[114.1175,22.27391],[114.11755,22.27388],[114.1176,22.27387],[114.11766,22.27387],[114.11771,22.27384],[114.11785,22.27375],[114.1179,22.27377],[114.1179,22.27378],[114.11791,22.27378],[114.11793,22.27379],[114.11793,22.27379],[114.11793,22.27379],[114.11793,22.27378],[114.11793,22.27376],[114.11823,22.2739],[114.1183,22.27396],[114.1183,22.27396],[114.1184,22.27404],[114.11847,22.2741],[114.11823,22.27443],[114.1183,22.27443],[114.11839,22.27442],[114.11846,22.27439],[114.11848,22.27435],[114.11852,22.27438],[114.11858,22.2744],[114.11862,22.27442],[114.11863,22.2744],[114.11874,22.27434],[114.11881,22.2743],[114.11892,22.27421],[114.11902,22.27413],[114.11914,22.27404],[114.11927,22.27398],[114.11936,22.27396],[114.1195,22.27395],[114.11956,22.27395],[114.11965,22.27397],[114.1197,22.27398],[114.11976,22.27401],[114.11989,22.27396],[114.11999,22.27393],[114.12008,22.2739],[114.12017,22.27387],[114.12026,22.27383],[114.12027,22.27388],[114.12028,22.27392],[114.1204,22.27384],[114.12052,22.27375],[114.12068,22.27364],[114.1208,22.27354],[114.12095,22.27343],[114.12117,22.27327],[114.12135,22.27313],[114.12152,22.27301],[114.12162,22.27293],[114.12172,22.27286],[114.12166,22.27304],[114.12163,22.27314],[114.122,22.27326],[114.12234,22.27337],[114.12264,22.27346],[114.1228,22.27342],[114.12291,22.27339],[114.12294,22.27288],[114.12296,22.27288],[114.12296,22.27288],[114.12308,22.27285],[114.12312,22.27283],[114.12326,22.27277],[114.12341,22.27271],[114.1235,22.2727],[114.12358,22.2727],[114.12358,22.27271],[114.12366,22.27271],[114.12376,22.27274],[114.12422,22.27297],[114.12467,22.27317],[114.12518,22.27338],[114.12533,22.27343],[114.12542,22.2735],[114.12551,22.27357],[114.12574,22.27384],[114.12597,22.27409],[114.12605,22.27415],[114.12612,22.27421],[114.12618,22.27425],[114.12626,22.27429],[114.12637,22.27434],[114.12649,22.27438],[114.12671,22.27444],[114.12687,22.27447],[114.12691,22.27447],[114.12685,22.27477],[114.12679,22.27512],[114.12709,22.27519],[114.12742,22.27526],[114.12756,22.27529],[114.12759,22.27515],[114.12796,22.27522],[114.12793,22.27538],[114.1279,22.27552],[114.12815,22.27552],[114.12837,22.27527],[114.12864,22.27497],[114.12881,22.2751],[114.12898,22.27525],[114.12886,22.27527],[114.12875,22.27529],[114.1286,22.27532],[114.12843,22.2754],[114.12825,22.27551],[114.12829,22.27567],[114.12833,22.27585],[114.12836,22.27596],[114.12864,22.27581],[114.1289,22.27569],[114.1291,22.27559],[114.12922,22.27553],[114.12926,22.27561],[114.12926,22.27562],[114.1293,22.27569],[114.12968,22.27549],[114.1297,22.27548],[114.12972,22.27547],[114.13259,22.27392],[114.13322,22.27356],[114.13322,22.27354],[114.13322,22.27354],[114.13321,22.2735],[114.13335,22.27347],[114.1334,22.27347],[114.13343,22.27347],[114.13368,22.27333],[114.13369,22.27333],[114.13609,22.27203],[114.13999,22.26646],[114.14004,22.26648],[114.1401,22.26649],[114.14025,22.26651],[114.14038,22.26651],[114.14052,22.26646],[114.14065,22.2664],[114.14075,22.26633],[114.14087,22.26619],[114.14095,22.26616],[114.14117,22.26616],[114.14129,22.26615],[114.14144,22.26611],[114.14159,22.26602],[114.14162,22.26602],[114.14199,22.26604],[114.14207,22.26606],[114.14214,22.26609],[114.14228,22.26619],[114.14241,22.26631],[114.14245,22.26634],[114.14248,22.26635],[114.14257,22.26638],[114.14258,22.26638],[114.14259,22.26638],[114.14261,22.26638],[114.14265,22.26639],[114.14268,22.26638],[114.14269,22.26637],[114.14271,22.26636],[114.14272,22.26634],[114.14273,22.2663],[114.14272,22.26627],[114.1427,22.26623],[114.14261,22.26614],[114.14261,22.26613],[114.14258,22.26607],[114.14257,22.26591],[114.14257,22.26585],[114.14255,22.26583],[114.14236,22.26575],[114.14236,22.26574],[114.14221,22.26569],[114.14215,22.26565],[114.14207,22.26558],[114.14202,22.26554],[114.14197,22.26549],[114.14197,22.26548],[114.14197,22.26546],[114.14198,22.26544],[114.14198,22.26542],[114.14197,22.26534],[114.14193,22.26526],[114.14185,22.26516],[114.14185,22.26509],[114.14185,22.26506],[114.14183,22.26503],[114.14181,22.26502],[114.14179,22.265],[114.14175,22.26499],[114.14173,22.26499],[114.14171,22.26499],[114.14166,22.265],[114.14164,22.26502],[114.14159,22.26502],[114.14153,22.26501],[114.14104,22.26496],[114.14319,22.26187],[114.14325,22.26055],[114.14313,22.25999],[114.14308,22.25978],[114.14312,22.2598],[114.14316,22.25984],[114.14318,22.25985],[114.1432,22.25986],[114.14322,22.25986],[114.14324,22.25986],[114.14328,22.25985],[114.14328,22.25984],[114.1433,22.25982],[114.14332,22.25971],[114.14334,22.25969],[114.14336,22.25967],[114.14338,22.25966],[114.1434,22.25965],[114.14347,22.25965],[114.1435,22.25965],[114.14353,22.25963],[114.14357,22.25959],[114.14361,22.25956],[114.14365,22.25954],[114.14368,22.25953],[114.14374,22.25943],[114.14383,22.25924],[114.14387,22.25921],[114.14396,22.25918],[114.14401,22.25915],[114.14409,22.2591],[114.14416,22.25908],[114.14424,22.25908],[114.14432,22.25911],[114.14436,22.25916],[114.14443,22.25921],[114.14449,22.25924],[114.14455,22.25924],[114.14464,22.25922],[114.14471,22.25919],[114.1448,22.25913],[114.14489,22.25905],[114.14498,22.25897],[114.1451,22.25886],[114.14512,22.25884],[114.14517,22.25882],[114.14525,22.25874],[114.14526,22.2587],[114.14527,22.25863],[114.14531,22.25859],[114.14547,22.25851],[114.14556,22.2585],[114.1456,22.25849],[114.14564,22.25846],[114.14567,22.25842],[114.14571,22.25838],[114.14569,22.25833],[114.14567,22.25832],[114.14567,22.25825],[114.14566,22.25823],[114.14566,22.25817],[114.14568,22.25813],[114.14571,22.2581],[114.14575,22.25808],[114.14587,22.25806],[114.1459,22.25805],[114.14593,22.25804],[114.14595,22.25801],[114.14597,22.25795],[114.14598,22.25793],[114.14606,22.25786],[114.1461,22.25782],[114.14624,22.25759],[114.14625,22.25744],[114.14626,22.25742],[114.14629,22.25739],[114.14645,22.25734],[114.14648,22.25733],[114.14649,22.25729],[114.14649,22.25725],[114.14649,22.25721],[114.1465,22.25718],[114.14663,22.25699],[114.14668,22.25693],[114.14667,22.25686],[114.14666,22.2568],[114.14673,22.25668],[114.14677,22.25662],[114.14684,22.25631],[114.14681,22.25626],[114.14661,22.25626],[114.14641,22.25621],[114.14628,22.25613],[114.14621,22.25607],[114.14618,22.25601],[114.14617,22.25597],[114.14619,22.25592],[114.14628,22.25584],[114.14635,22.25576],[114.14636,22.25574],[114.14635,22.25572],[114.14634,22.25569],[114.1463,22.25564],[114.14619,22.25554],[114.14617,22.2555],[114.14615,22.25546],[114.14615,22.25542],[114.14618,22.25527],[114.14618,22.25523],[114.14607,22.25494],[114.14607,22.25487],[114.14607,22.25485],[114.14607,22.25481],[114.14605,22.25478],[114.14603,22.25477],[114.146,22.25477],[114.14597,22.25477],[114.14584,22.25482],[114.14576,22.25485],[114.14571,22.25486],[114.14564,22.25486],[114.14557,22.25487],[114.14547,22.25487],[114.14546,22.25487],[114.14544,22.25486],[114.14541,22.25485],[114.14533,22.25479],[114.14532,22.25478],[114.1453,22.25476],[114.14529,22.25473],[114.14529,22.25472],[114.1453,22.2546],[114.1453,22.25451],[114.14531,22.25445],[114.14538,22.25428],[114.1454,22.25423],[114.14541,22.25416],[114.14541,22.25408],[114.14543,22.25403],[114.14544,22.25401],[114.14546,22.25399],[114.14549,22.25397],[114.14552,22.25396],[114.1456,22.25394],[114.14563,22.25392],[114.14566,22.25388],[114.14571,22.25367],[114.14571,22.25365],[114.14572,22.25362],[114.14574,22.2536],[114.14576,22.25358],[114.14579,22.25355],[114.14584,22.25352],[114.14586,22.25351],[114.1459,22.25348],[114.14599,22.25331],[114.146,22.25328],[114.146,22.25326],[114.14599,22.25323],[114.14597,22.25318],[114.14596,22.25315],[114.14595,22.25289],[114.14595,22.25287],[114.14597,22.25283],[114.14608,22.25268],[114.1461,22.25267],[114.14612,22.25266],[114.14614,22.25265],[114.14628,22.25264],[114.1463,22.25263],[114.14632,22.25262],[114.14634,22.2526],[114.14636,22.25257],[114.14638,22.25253],[114.14641,22.25248],[114.14643,22.25242],[114.14644,22.2524],[114.14645,22.25236],[114.14645,22.25234],[114.14646,22.25232],[114.14654,22.25225],[114.1466,22.2522],[114.14677,22.2521],[114.14682,22.25208],[114.1469,22.25206],[114.14698,22.25207],[114.14703,22.25208],[114.14708,22.25211],[114.14719,22.25219],[114.14723,22.25222],[114.1473,22.25223],[114.14743,22.25227],[114.14748,22.25227],[114.14753,22.25229],[114.14765,22.2523],[114.14775,22.25232],[114.14799,22.25232],[114.14804,22.25234],[114.14813,22.25243],[114.14816,22.25248],[114.14819,22.25254],[114.1482,22.25261],[114.1482,22.25275],[114.1482,22.25278],[114.14821,22.2528],[114.14825,22.25282],[114.14835,22.25284],[114.14841,22.25287],[114.14848,22.25292],[114.14853,22.25293],[114.14858,22.25296],[114.14865,22.25302],[114.14873,22.25312],[114.14878,22.25321],[114.14886,22.25331],[114.14889,22.25338],[114.1489,22.25346],[114.14892,22.25349],[114.14896,22.25353],[114.14899,22.25355],[114.14905,22.25357],[114.14913,22.25354],[114.14929,22.25347],[114.14931,22.25345],[114.14933,22.25341],[114.14936,22.25338],[114.1494,22.25335],[114.14942,22.25334],[114.14947,22.25334],[114.14951,22.25334],[114.14965,22.25339],[114.14974,22.25343],[114.14978,22.25346],[114.14981,22.25348],[114.14986,22.25348],[114.14989,22.25348],[114.14993,22.25349],[114.15002,22.25351],[114.15008,22.25354],[114.15019,22.25361],[114.15025,22.25365],[114.15043,22.25367],[114.15048,22.25369],[114.1505,22.2537],[114.15077,22.25392],[114.15081,22.25397],[114.15083,22.25405],[114.15085,22.25406],[114.15092,22.25407],[114.15098,22.25406],[114.1511,22.25406],[114.15117,22.25407],[114.15129,22.2541],[114.15136,22.25411],[114.15139,22.25411],[114.15148,22.25409],[114.15168,22.25407],[114.15174,22.25408],[114.1518,22.25411],[114.15184,22.25414],[114.15196,22.25424],[114.15199,22.25429],[114.15202,22.25434],[114.15206,22.25441],[114.15209,22.25447],[114.1521,22.25449],[114.15211,22.25451],[114.15212,22.25452],[114.15213,22.25453],[114.15214,22.25455],[114.15216,22.25457],[114.15219,22.25462],[114.15221,22.25469],[114.15223,22.25472],[114.15226,22.25478],[114.15227,22.25481],[114.15229,22.2549],[114.1523,22.25497],[114.1523,22.25499],[114.15232,22.25503],[114.15234,22.25505],[114.15236,22.25507],[114.1524,22.25508],[114.15244,22.25509],[114.15247,22.25509],[114.15248,22.25509],[114.15252,22.2551],[114.15253,22.25511],[114.15255,22.25512],[114.15257,22.25514],[114.15259,22.25515],[114.15261,22.25516],[114.15263,22.25517],[114.15265,22.25519],[114.15267,22.2552],[114.1527,22.25522],[114.15289,22.25538],[114.15291,22.2554],[114.15293,22.25544],[114.15298,22.25553],[114.15299,22.25554],[114.15301,22.25556],[114.15304,22.2556],[114.15307,22.25563],[114.15316,22.2557],[114.15323,22.25577],[114.15325,22.25581],[114.15325,22.25584],[114.15327,22.25586],[114.15328,22.25588],[114.15333,22.25595],[114.15339,22.25604],[114.15342,22.25609],[114.15347,22.25615],[114.15347,22.25616],[114.15348,22.25616],[114.1535,22.25619],[114.15352,22.25621],[114.15353,22.25622],[114.15356,22.25624],[114.15358,22.25625],[114.15361,22.25626],[114.15364,22.25626],[114.15366,22.25626],[114.15368,22.25625],[114.1537,22.25625],[114.15373,22.25624],[114.15374,22.25623],[114.15376,22.25621],[114.15377,22.2562],[114.15378,22.25619],[114.15379,22.25618],[114.1538,22.25616],[114.15381,22.25615],[114.15381,22.25614],[114.15382,22.2561],[114.15382,22.25608],[114.1538,22.25603],[114.15378,22.256],[114.15359,22.25563],[114.15368,22.25566],[114.15375,22.25569],[114.1538,22.25573],[114.15381,22.25576],[114.15382,22.2558],[114.15382,22.25583],[114.15384,22.25588],[114.15387,22.25595],[114.1539,22.25601],[114.15393,22.25604],[114.15396,22.25607],[114.154,22.25609],[114.15404,22.2561],[114.1541,22.25613],[114.15413,22.25614],[114.15414,22.25615],[114.15417,22.25617],[114.15418,22.25618],[114.1542,22.2562],[114.15421,22.25622],[114.15422,22.25623],[114.15422,22.25623],[114.15422,22.25625],[114.15423,22.25626],[114.15423,22.25627],[114.15423,22.25629],[114.15424,22.25632],[114.15424,22.25634],[114.15424,22.25636],[114.15427,22.25643],[114.15428,22.25645],[114.1543,22.25649],[114.15431,22.2565],[114.15432,22.25651],[114.15433,22.25653],[114.15434,22.25654],[114.15434,22.25656],[114.15432,22.25657],[114.15423,22.25662],[114.15421,22.25664],[114.1542,22.25666],[114.1542,22.25669],[114.15421,22.25674],[114.15428,22.25686],[114.15447,22.25712],[114.15453,22.25718],[114.15462,22.25726],[114.15466,22.2573],[114.15468,22.25734],[114.15475,22.25747],[114.15479,22.25753],[114.15484,22.25758],[114.15496,22.25768],[114.15503,22.25774],[114.15512,22.25785],[114.15518,22.25794],[114.15523,22.25801],[114.15526,22.25808],[114.15527,22.25817],[114.15526,22.2583],[114.15524,22.25846],[114.15521,22.25856],[114.1552,22.25859],[114.15518,22.25861],[114.15517,22.25863],[114.15517,22.25865],[114.15517,22.25867],[114.15518,22.2587],[114.15519,22.25872],[114.1552,22.25876],[114.15521,22.25884],[114.15522,22.25895],[114.15521,22.25912],[114.15519,22.25929],[114.15517,22.25935],[114.15524,22.25933],[114.1583,22.25814],[114.16162,22.25898],[114.16171,22.259],[114.1618,22.259],[114.1619,22.25899],[114.16202,22.25887],[114.16208,22.2588],[114.16213,22.2587],[114.16227,22.25859],[114.16249,22.25854],[114.16276,22.25852],[114.16298,22.25874],[114.16314,22.2588],[114.16328,22.25886],[114.16338,22.2589],[114.16339,22.25923],[114.1634,22.25934],[114.16344,22.25942],[114.16347,22.25946],[114.16356,22.25955],[114.16357,22.25955],[114.16361,22.2596],[114.16362,22.25963],[114.16362,22.25963],[114.16362,22.25966],[114.16362,22.25974],[114.1636,22.25981],[114.1636,22.25983],[114.16358,22.25995],[114.16359,22.25998],[114.16359,22.26002],[114.16362,22.26009],[114.16363,22.26018],[114.16363,22.26021],[114.16362,22.26024],[114.16355,22.26032],[114.16355,22.26035],[114.16356,22.26038],[114.16358,22.2604],[114.16358,22.26041],[114.16359,22.26042],[114.16361,22.26043],[114.16364,22.26043],[114.16378,22.26041],[114.1638,22.26042],[114.16383,22.26043],[114.16387,22.26047],[114.16388,22.26052],[114.16386,22.26067],[114.16386,22.26075],[114.16387,22.26077],[114.16389,22.26078],[114.16391,22.26079],[114.16401,22.26076],[114.16405,22.26075],[114.16406,22.26075],[114.16409,22.26076],[114.16411,22.26076],[114.16421,22.26081],[114.16425,22.26084],[114.16436,22.26094],[114.16445,22.26102],[114.16446,22.26105],[114.16446,22.26108],[114.16445,22.26113],[114.16445,22.26115],[114.16446,22.26116],[114.16456,22.26119],[114.1646,22.26122],[114.16462,22.26124],[114.16463,22.26124],[114.16466,22.26129],[114.16466,22.26129],[114.16467,22.26132],[114.16468,22.26135],[114.16467,22.26137],[114.16466,22.26141],[114.1646,22.26147],[114.16455,22.26151],[114.16451,22.26159],[114.16453,22.26161],[114.16454,22.26161],[114.16466,22.26164],[114.16471,22.26165],[114.16479,22.26164],[114.16483,22.26164],[114.16485,22.26165],[114.16487,22.26167],[114.16488,22.26171],[114.16487,22.26173],[114.16482,22.26181],[114.1648,22.26188],[114.16477,22.262],[114.16474,22.26204],[114.16473,22.26206],[114.16472,22.26209],[114.16472,22.26211],[114.16473,22.26212],[114.16474,22.26214],[114.16478,22.26215],[114.16478,22.26215],[114.16488,22.26214],[114.16493,22.26216],[114.16503,22.2622],[114.16508,22.26224],[114.1651,22.26226],[114.16511,22.26226],[114.16513,22.26234],[114.16513,22.26236],[114.16512,22.26238],[114.16508,22.26251],[114.16512,22.2626],[114.1651,22.2627],[114.1651,22.26272],[114.16512,22.26273],[114.16513,22.26274],[114.16514,22.26274],[114.16521,22.26275],[114.16527,22.26276],[114.16529,22.26277],[114.1653,22.2628],[114.16525,22.26296],[114.16521,22.26306],[114.16521,22.26312],[114.16523,22.26317],[114.16526,22.2632],[114.16528,22.26321],[114.16536,22.26326],[114.16541,22.26331],[114.16549,22.26341],[114.16552,22.26344],[114.16556,22.26344],[114.16565,22.2634],[114.16567,22.2634],[114.16568,22.2634],[114.16569,22.2634],[114.16572,22.26341],[114.16575,22.26343],[114.16584,22.26361],[114.16584,22.26362],[114.16585,22.26365],[114.16585,22.26368],[114.16585,22.26374],[114.16586,22.26377],[114.16593,22.26381],[114.16604,22.26385],[114.16606,22.26387],[114.16607,22.26387],[114.16608,22.2639],[114.16607,22.26393],[114.16604,22.26399],[114.16595,22.2641],[114.16593,22.26415],[114.16592,22.26418],[114.16591,22.2642],[114.16591,22.26422],[114.16591,22.26424],[114.16592,22.26425],[114.16593,22.26427],[114.16607,22.26428],[114.16614,22.26429],[114.16616,22.2643],[114.16618,22.26431],[114.16623,22.26435],[114.16624,22.26438],[114.16625,22.2644],[114.16623,22.26447],[114.1662,22.2645],[114.16612,22.26455],[114.16611,22.26456],[114.16606,22.2646],[114.16604,22.26463],[114.16604,22.26465],[114.16605,22.26468],[114.16607,22.26472],[114.16607,22.26473],[114.16611,22.26478],[114.16611,22.26478],[114.16619,22.26485],[114.16631,22.26493],[114.16653,22.26508],[114.16655,22.26509],[114.16657,22.2651],[114.16659,22.2651],[114.16662,22.26511],[114.16678,22.26511],[114.16681,22.26512],[114.16682,22.26512],[114.16685,22.26515],[114.16686,22.26516],[114.16689,22.26521],[114.16691,22.26524],[114.16691,22.26525],[114.167,22.26534],[114.16704,22.26542],[114.16711,22.26552],[114.16711,22.26556],[114.1671,22.26561],[114.16708,22.26568],[114.16706,22.26574],[114.16703,22.2659],[114.16701,22.26606],[114.16705,22.26615],[114.16707,22.26617],[114.16711,22.26618],[114.16714,22.26618],[114.16717,22.26617],[114.1672,22.26616],[114.16631,22.26688],[114.16708,22.26769],[114.16707,22.26772],[114.16707,22.26778],[114.16707,22.26782],[114.16706,22.26788],[114.16705,22.26793],[114.16706,22.268],[114.16708,22.26804],[114.16708,22.26805],[114.1671,22.26807],[114.16719,22.26822],[114.16721,22.26827],[114.16721,22.26827],[114.1672,22.26829],[114.1672,22.26832],[114.16716,22.26835],[114.16716,22.26836],[114.1671,22.26839],[114.16707,22.2684],[114.16705,22.2684],[114.16689,22.2684],[114.16682,22.26841],[114.1668,22.26841],[114.16679,22.26842],[114.16677,22.26843],[114.16674,22.26848],[114.16673,22.26858],[114.16672,22.2686],[114.16671,22.26861],[114.16651,22.26873],[114.16647,22.26875],[114.16647,22.26875],[114.16643,22.26875],[114.16629,22.26871],[114.16624,22.26871],[114.16619,22.26872],[114.16613,22.26873],[114.16606,22.26879],[114.16598,22.26886],[114.16594,22.26889],[114.1659,22.26891],[114.1658,22.26896],[114.16574,22.269],[114.16561,22.26912],[114.16557,22.26917],[114.16557,22.26923],[114.16557,22.26936],[114.16556,22.26946],[114.16577,22.27107],[114.16575,22.27105],[114.16572,22.271],[114.16559,22.27087],[114.16565,22.27244],[114.16547,22.27266],[114.16545,22.27274],[114.16543,22.27281],[114.16543,22.27284],[114.16542,22.27286],[114.16544,22.27285],[114.16545,22.27284],[114.16548,22.27282],[114.16551,22.27281],[114.16555,22.2728],[114.16556,22.2728],[114.16559,22.2728],[114.16561,22.2728],[114.16571,22.27281],[114.16587,22.27284],[114.16596,22.27285],[114.16599,22.27286],[114.16601,22.27288],[114.16603,22.27288],[114.16605,22.27291],[114.16608,22.27293],[114.1661,22.27296],[114.16612,22.27299],[114.16613,22.27301],[114.16616,22.27311],[114.16617,22.27318],[114.16619,22.27329],[114.1662,22.27338],[114.1662,22.2734],[114.1662,22.27341],[114.16619,22.27343],[114.16619,22.27345],[114.16618,22.27347],[114.16613,22.27355],[114.1661,22.27361],[114.16607,22.27367],[114.16606,22.27373],[114.16606,22.2738],[114.16608,22.27387],[114.16611,22.27394],[114.16615,22.27399],[114.16625,22.27409],[114.16629,22.27416],[114.16633,22.27424],[114.16637,22.27434],[114.16639,22.27442],[114.16639,22.27448],[114.1664,22.27458],[114.1664,22.27461],[114.1664,22.27464],[114.16639,22.27469],[114.16639,22.27471],[114.16638,22.27473],[114.16635,22.27481],[114.16633,22.27487],[114.16631,22.27492],[114.16628,22.27502],[114.16627,22.27504],[114.16627,22.27512],[114.16627,22.27519],[114.16627,22.27521],[114.16629,22.27525],[114.16631,22.27529],[114.16632,22.2753],[114.1664,22.2754],[114.16644,22.27544],[114.16654,22.27554],[114.16655,22.27555],[114.16658,22.27556],[114.16662,22.27557],[114.16667,22.27557],[114.16669,22.27557],[114.1667,22.27556],[114.16674,22.27554],[114.16678,22.27551],[114.16691,22.27543],[114.16696,22.27539],[114.16699,22.27538],[114.16702,22.27537],[114.16703,22.27537],[114.16705,22.27537],[114.16707,22.27537],[114.16708,22.27537],[114.16709,22.27538],[114.16711,22.27539],[114.16712,22.2754],[114.16701,22.27553],[114.16707,22.27559],[114.16735,22.27589],[114.16737,22.27595],[114.16737,22.27602],[114.16737,22.27611],[114.16737,22.27615],[114.16735,22.27616],[114.16734,22.27617],[114.16734,22.27618],[114.1673,22.27619],[114.16726,22.2762],[114.16719,22.27619],[114.16716,22.27617],[114.16711,22.27615],[114.1671,22.27632],[114.16711,22.27655],[114.16713,22.27661],[114.16717,22.27667],[114.16723,22.27672],[114.16733,22.2768],[114.16741,22.27686],[114.16746,22.27689],[114.16755,22.27692],[114.16765,22.27698],[114.16785,22.27714],[114.16787,22.27716],[114.16806,22.27742],[114.16726,22.27787],[114.16838,22.27778],[114.1684,22.27782],[114.16865,22.27837],[114.16887,22.27884],[114.16916,22.27946],[114.16823,22.27965],[114.16816,22.27964],[114.16816,22.27964],[114.16812,22.27963],[114.16797,22.27958],[114.16779,22.27954],[114.16763,22.2795],[114.16744,22.27948],[114.1674,22.27947],[114.16734,22.27946],[114.16711,22.27943],[114.16685,22.27941],[114.16641,22.27936],[114.16657,22.27955],[114.16657,22.27955],[114.16657,22.27956],[114.16667,22.27968],[114.16668,22.27968],[114.16674,22.27968],[114.1668,22.27969],[114.16688,22.2797],[114.16696,22.27971],[114.16703,22.27973],[114.16726,22.27977],[114.1675,22.27981],[114.16757,22.27982],[114.16761,22.27983],[114.16769,22.27985],[114.16769,22.27985],[114.16776,22.27987],[114.16778,22.27987],[114.16781,22.27988],[114.16784,22.27989],[114.16786,22.27991],[114.16788,22.27992],[114.16791,22.27993],[114.16793,22.27995],[114.16795,22.27996],[114.16797,22.27998],[114.168,22.28],[114.16801,22.28002],[114.16803,22.28004],[114.16804,22.28006],[114.16805,22.28007],[114.16806,22.28009],[114.16808,22.28011],[114.1681,22.28015],[114.16811,22.2802],[114.16812,22.28021],[114.16813,22.28024],[114.16814,22.28034],[114.16815,22.28036],[114.16815,22.28036],[114.16815,22.28037],[114.16816,22.28038],[114.16816,22.28039],[114.16816,22.2804],[114.16816,22.2804],[114.16817,22.28041],[114.16817,22.28042],[114.16817,22.28043],[114.16818,22.28043],[114.16818,22.28044],[114.16819,22.28045],[114.16819,22.28045],[114.16819,22.28046],[114.1682,22.28047],[114.1682,22.28048],[114.16821,22.28048],[114.16821,22.28049],[114.16822,22.2805],[114.16822,22.2805],[114.16823,22.28051],[114.16823,22.28052],[114.16824,22.28052],[114.16824,22.28053],[114.16825,22.28054],[114.16825,22.28054],[114.16826,22.28055],[114.16826,22.28055],[114.16827,22.28056],[114.16827,22.28057],[114.16828,22.28057],[114.16829,22.28058],[114.16829,22.28058],[114.1683,22.28059],[114.16831,22.28059],[114.16831,22.2806],[114.16832,22.28061],[114.16832,22.28061],[114.16833,22.28062],[114.16833,22.28062],[114.16834,22.28062],[114.16835,22.28063],[114.16835,22.28063],[114.16836,22.28064],[114.16837,22.28064],[114.16837,22.28065],[114.16838,22.28065],[114.16839,22.28065],[114.16839,22.28066],[114.1684,22.28066],[114.16841,22.28067],[114.16842,22.28067],[114.16842,22.28068],[114.16843,22.28068],[114.16844,22.28068],[114.16845,22.28069],[114.16846,22.28069],[114.16846,22.28069],[114.16847,22.2807],[114.16848,22.2807],[114.16849,22.2807],[114.1685,22.28071],[114.1685,22.28071],[114.16851,22.28071],[114.16852,22.28071],[114.16853,22.28072],[114.16854,22.28072],[114.16855,22.28072],[114.16855,22.28072],[114.16856,22.28073],[114.16857,22.28073],[114.16858,22.28073],[114.16861,22.28074],[114.16863,22.28074],[114.16864,22.28074],[114.16865,22.28074],[114.16867,22.28075],[114.16868,22.28075],[114.16869,22.28075],[114.16889,22.28076],[114.16913,22.28078],[114.16912,22.2808],[114.16914,22.2808],[114.16943,22.28082],[114.16996,22.28087],[114.17007,22.28087],[114.17016,22.28087],[114.17024,22.28086],[114.17033,22.28084],[114.17044,22.28081],[114.17053,22.28076],[114.17067,22.2807],[114.1707,22.28094],[114.17072,22.28102],[114.17077,22.28112],[114.17083,22.28121],[114.17091,22.28129],[114.17101,22.28135],[114.17108,22.28138],[114.17118,22.28147],[114.17124,22.28157],[114.17127,22.28165],[114.16907,22.2815],[114.16885,22.28148],[114.1686,22.28144],[114.16877,22.28213],[114.16889,22.28264],[114.1689,22.28284],[114.16847,22.28286],[114.16809,22.28286],[114.16802,22.28288],[114.16793,22.2829],[114.16784,22.28294],[114.16773,22.283],[114.16765,22.28308],[114.16752,22.28321],[114.1674,22.28321],[114.16732,22.28322],[114.16712,22.28324],[114.167,22.28325],[114.16691,22.28326],[114.16669,22.28329],[114.16637,22.28334],[114.16599,22.28341],[114.16587,22.28335],[114.16556,22.28347],[114.16542,22.28352],[114.16527,22.28357],[114.16497,22.28369],[114.16486,22.28373],[114.16475,22.28376],[114.16448,22.28386],[114.16317,22.28436],[114.16314,22.28446],[114.16313,22.28447],[114.16293,22.28458],[114.16273,22.2847],[114.16256,22.28517],[114.16317,22.28537],[114.16319,22.28538],[114.1632,22.28538],[114.16321,22.28539],[114.16322,22.2854],[114.16323,22.28541],[114.16323,22.28542],[114.16324,22.28543],[114.16324,22.28545],[114.16324,22.28546],[114.16323,22.28547],[114.16323,22.28548],[114.16322,22.2855],[114.16321,22.2855],[114.1632,22.28551],[114.16319,22.28552],[114.16318,22.28552],[114.16317,22.28553],[114.16316,22.28553],[114.16314,22.28553],[114.16312,22.28552],[114.1625,22.28533],[114.16229,22.28588],[114.16292,22.28608],[114.16293,22.28609],[114.16295,22.2861],[114.16297,22.28612],[114.16297,22.28614],[114.16298,22.28616],[114.16297,22.28618],[114.16297,22.28619],[114.16295,22.28621],[114.16294,22.28622],[114.16292,22.28623],[114.1629,22.28624],[114.16288,22.28624],[114.16286,22.28623],[114.16224,22.28603],[114.16208,22.2864],[114.16235,22.287],[114.1621,22.28709],[114.16183,22.2865],[114.16175,22.28645],[114.16131,22.28663],[114.16122,22.28667],[114.16123,22.28668],[114.16121,22.28674],[114.16147,22.28733],[114.16147,22.28733],[114.16147,22.28734],[114.16147,22.28734],[114.16147,22.28735],[114.16146,22.28735],[114.16146,22.28736],[114.16145,22.28736],[114.16125,22.28744],[114.16124,22.28744],[114.16123,22.28743],[114.16122,22.28743],[114.16121,22.28742],[114.16095,22.28684],[114.16089,22.28681],[114.16088,22.2868],[114.16034,22.28699],[114.16034,22.287],[114.16031,22.28706],[114.16055,22.28766],[114.16055,22.28767],[114.16055,22.28768],[114.16054,22.28769],[114.16054,22.28769],[114.16053,22.2877],[114.16033,22.28776],[114.16033,22.28777],[114.16032,22.28777],[114.16031,22.28776],[114.1603,22.28776],[114.16029,22.28775],[114.16006,22.28715],[114.16,22.28712],[114.16,22.28711],[114.15943,22.28728],[114.15944,22.2873],[114.15941,22.28735],[114.15962,22.28796],[114.15962,22.28797],[114.15961,22.28798],[114.15961,22.28799],[114.1596,22.288],[114.1594,22.28805],[114.15939,22.28805],[114.15938,22.28805],[114.15937,22.28805],[114.15936,22.28804],[114.15936,22.28804],[114.15935,22.28803],[114.15915,22.28742],[114.1591,22.2874],[114.15853,22.28755],[114.1585,22.2876],[114.15867,22.28822],[114.15867,22.28822],[114.15867,22.28823],[114.15867,22.28823],[114.15866,22.28824],[114.15866,22.28824],[114.15866,22.28824],[114.15866,22.28824],[114.15866,22.28824],[114.15865,22.28825],[114.15844,22.2883],[114.15844,22.2883],[114.15843,22.2883],[114.15843,22.2883],[114.15843,22.2883],[114.15842,22.2883],[114.15842,22.2883],[114.15842,22.28829],[114.15841,22.28829],[114.15841,22.28829],[114.15841,22.28828],[114.15823,22.28766],[114.15818,22.28763],[114.15761,22.28776],[114.15757,22.2878],[114.15775,22.28845],[114.15774,22.28847],[114.15751,22.28853],[114.15748,22.28851],[114.1573,22.28787],[114.15725,22.28784],[114.15669,22.28798],[114.15666,22.28803],[114.15665,22.28803],[114.15683,22.28868],[114.15657,22.28874],[114.15639,22.28809],[114.15638,22.2881],[114.15633,22.28806],[114.15612,22.28811],[114.15605,22.28822],[114.15575,22.2883],[114.15591,22.28891],[114.15582,22.28893],[114.15441,22.28759],[114.15422,22.2874],[114.15391,22.28758],[114.15383,22.28759],[114.1538,22.28764],[114.15379,22.28771],[114.15239,22.28805],[114.15238,22.28807],[114.15251,22.28852],[114.15254,22.28854],[114.15281,22.28847],[114.15282,22.2885],[114.15283,22.2885],[114.15285,22.28858],[114.15289,22.28857],[114.15286,22.28849],[114.15306,22.28844],[114.15319,22.28852],[114.15323,22.28864],[114.15315,22.28876],[114.15295,22.28881],[114.15293,22.28873],[114.1529,22.28874],[114.15292,22.28882],[114.15291,22.28882],[114.15292,22.28886],[114.15264,22.28892],[114.15263,22.28895],[114.15275,22.2894],[114.15279,22.28941],[114.153,22.28936],[114.15302,22.28945],[114.15306,22.28944],[114.15304,22.28935],[114.1531,22.28933],[114.15313,22.28942],[114.15317,22.28941],[114.15314,22.28932],[114.15329,22.28929],[114.15343,22.28936],[114.15346,22.28948],[114.15344,22.28951],[114.15277,22.28968],[114.15135,22.29004],[114.15131,22.29001],[114.15127,22.2899],[114.15135,22.28977],[114.15225,22.28954],[114.15228,22.28963],[114.15232,22.28962],[114.15229,22.28954],[114.15236,22.28952],[114.15239,22.2896],[114.15243,22.28959],[114.1524,22.28951],[114.15261,22.28946],[114.15263,22.28943],[114.15251,22.28899],[114.15247,22.28897],[114.15145,22.28922],[114.15144,22.28919],[114.15143,22.28919],[114.15141,22.28911],[114.15137,22.28912],[114.15139,22.2892],[114.1512,22.28925],[114.1512,22.28925],[114.15106,22.28918],[114.15103,22.28906],[114.15111,22.28893],[114.1513,22.28888],[114.15132,22.28896],[114.15136,22.28895],[114.15134,22.28887],[114.15135,22.28887],[114.15134,22.28884],[114.15161,22.28877],[114.15164,22.28874],[114.15151,22.28829],[114.15147,22.28827],[114.15081,22.28844],[114.15076,22.28842],[114.15073,22.28842],[114.14986,22.28944],[114.14558,22.2905]],[[114.12969,22.27599],[114.12969,22.27599],[114.12967,22.27584],[114.12969,22.27599]]]]},"properties":{"M_NM_Eng":"Metro","SR_Eng":"Metro","PDD_Cat_En":"Hong Kong Island","PDD_Eng":"Central & Western","M_NM_Tc":"都會區","SR_Tc":"都會區","PDD_Cat_Tc":"香港島","PDD_Tc":"中西區","M_NM_Sc":"都会区","SR_Sc_1":"都会区","PDD_Cat_Sc":"香港岛","PDD_Sc":"中西区","Y2019_Popu":242300,"Y2019_Empl":427950,"Y2026_Popu":222550,"Y2026_Empl":428500,"Y2031_Popu":211150,"Y2031_Empl":421200}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[114.24994,22.24681],[114.24999,22.24695],[114.25013,22.24698],[114.25027,22.2469],[114.25044,22.24707],[114.25054,22.24722],[114.25062,22.24763],[114.2507,22.24775],[114.25063,22.24782],[114.25058,22.24802],[114.25052,22.24813],[114.25031,22.24822],[114.25024,22.24828],[114.25025,22.24832],[114.25037,22.24842],[114.25039,22.24849],[114.25052,22.24861],[114.25076,22.24877],[114.25108,22.24862],[114.2512,22.24848],[114.25126,22.24847],[114.25129,22.24856],[114.25127,22.24866],[114.25106,22.24878],[114.25094,22.24896],[114.25118,22.24899],[114.25135,22.24896],[114.25134,22.24908],[114.25153,22.24937],[114.25157,22.24951],[114.25169,22.24951],[114.25171,22.24946],[114.25195,22.24948],[114.2522,22.24944],[114.25239,22.24947],[114.25239,22.24937],[114.25248,22.24926],[114.2525,22.24914],[114.25259,22.24921],[114.25259,22.24918],[114.25264,22.24909],[114.25269,22.24912],[114.25274,22.24908],[114.25277,22.24895],[114.25289,22.24893],[114.25298,22.24895],[114.25304,22.249],[114.25308,22.24899],[114.25304,22.24876],[114.25308,22.24863],[114.25336,22.24846],[114.25341,22.24854],[114.25344,22.2486],[114.25348,22.24859],[114.25349,22.24856],[114.25348,22.24852],[114.25349,22.24849],[114.25353,22.2485],[114.25359,22.24845],[114.25377,22.24854],[114.25389,22.2487],[114.25396,22.24865],[114.25403,22.24868],[114.25408,22.24855],[114.25416,22.24858],[114.25413,22.24864],[114.25415,22.24873],[114.25421,22.24876],[114.25425,22.24886],[114.25433,22.24892],[114.25434,22.24896],[114.25429,22.24897],[114.25429,22.24899],[114.25435,22.24901],[114.2544,22.24912],[114.2545,22.24915],[114.25453,22.24928],[114.25451,22.24932],[114.25443,22.24934],[114.25442,22.24938],[114.25437,22.2494],[114.25427,22.24938],[114.25423,22.24934],[114.25411,22.24939],[114.254,22.24937],[114.25396,22.2494],[114.25396,22.24944],[114.25431,22.24947],[114.25434,22.24953],[114.25441,22.24954],[114.25454,22.24963],[114.25455,22.24961],[114.25463,22.24962],[114.25466,22.24965],[114.25467,22.24969],[114.25472,22.2497],[114.25474,22.24973],[114.2547,22.24977],[114.25467,22.24978],[114.25466,22.24974],[114.25463,22.2498],[114.25463,22.24988],[114.25459,22.24993],[114.25461,22.24998],[114.25454,22.25013],[114.25453,22.25028],[114.25451,22.25038],[114.25446,22.25048],[114.25438,22.25049],[114.25433,22.25057],[114.25431,22.25065],[114.25436,22.25071],[114.25436,22.25074],[114.25432,22.25085],[114.25426,22.25095],[114.25418,22.25106],[114.25423,22.2511],[114.25423,22.25116],[114.25419,22.25122],[114.25408,22.25121],[114.25405,22.25132],[114.25401,22.25137],[114.25398,22.25141],[114.25391,22.25145],[114.25387,22.25148],[114.25384,22.25149],[114.25382,22.25149],[114.2538,22.25149],[114.25378,22.25148],[114.25378,22.25148],[114.25377,22.25149],[114.25376,22.25151],[114.25377,22.25154],[114.25381,22.25157],[114.25383,22.25164],[114.25385,22.25166],[114.25405,22.25173],[114.2541,22.25173],[114.25413,22.25169],[114.25414,22.25168],[114.25416,22.25168],[114.25418,22.25169],[114.2542,22.25171],[114.25424,22.25171],[114.25425,22.25172],[114.25425,22.25173],[114.25424,22.25173],[114.25423,22.25175],[114.25422,22.25176],[114.25424,22.2518],[114.25425,22.25183],[114.25426,22.25191],[114.25428,22.25191],[114.25429,22.25189],[114.25431,22.25192],[114.25432,22.25196],[114.2543,22.25197],[114.25432,22.25205],[114.25433,22.25218],[114.25436,22.25229],[114.25454,22.25217],[114.25468,22.25217],[114.25484,22.25226],[114.25484,22.25233],[114.25488,22.2523],[114.25493,22.25233],[114.25495,22.25243],[114.25492,22.25248],[114.25486,22.25248],[114.25487,22.25257],[114.25494,22.25264],[114.25502,22.25283],[114.25495,22.25318],[114.25496,22.25343],[114.25498,22.25353],[114.25506,22.25355],[114.25515,22.25336],[114.25511,22.25315],[114.25515,22.25299],[114.25529,22.25301],[114.25543,22.25309],[114.25559,22.25331],[114.25559,22.2534],[114.25564,22.25346],[114.25563,22.25352],[114.25568,22.25352],[114.2557,22.25354],[114.2557,22.25368],[114.25565,22.2537],[114.25566,22.2538],[114.25571,22.25378],[114.25571,22.25382],[114.25562,22.2539],[114.25557,22.25409],[114.25549,22.25412],[114.25548,22.2542],[114.25541,22.25426],[114.25536,22.25426],[114.25529,22.25445],[114.25541,22.25457],[114.25556,22.25463],[114.25563,22.25476],[114.25563,22.25483],[114.25557,22.25489],[114.25555,22.25501],[114.25563,22.25514],[114.25556,22.25512],[114.25556,22.25524],[114.25559,22.25531],[114.25556,22.25539],[114.25564,22.25559],[114.2557,22.25567],[114.25572,22.25566],[114.25589,22.25556],[114.25596,22.25557],[114.25602,22.25552],[114.25623,22.25541],[114.25631,22.25542],[114.25635,22.25549],[114.25634,22.25557],[114.25627,22.2556],[114.25623,22.25564],[114.25629,22.25574],[114.25642,22.25585],[114.25639,22.25587],[114.25645,22.25599],[114.2563,22.25604],[114.25626,22.25614],[114.25636,22.25635],[114.25652,22.25634],[114.2566,22.25637],[114.25661,22.2564],[114.25656,22.25642],[114.2565,22.25658],[114.25644,22.2566],[114.25636,22.2567],[114.25618,22.25669],[114.25624,22.2568],[114.25624,22.25688],[114.25632,22.25696],[114.25623,22.25702],[114.25619,22.25717],[114.25607,22.25723],[114.256,22.25733],[114.25605,22.2574],[114.25612,22.25739],[114.25614,22.25741],[114.25611,22.25743],[114.25604,22.25743],[114.25597,22.25746],[114.25603,22.2575],[114.25605,22.25756],[114.25613,22.25757],[114.25596,22.25782],[114.25603,22.25776],[114.25612,22.25775],[114.25615,22.25777],[114.25611,22.25787],[114.25598,22.25794],[114.25589,22.25794],[114.25584,22.25788],[114.25569,22.25788],[114.2555,22.25779],[114.25547,22.25777],[114.2554,22.25785],[114.25563,22.25798],[114.25565,22.25801],[114.25557,22.25805],[114.25558,22.25812],[114.25547,22.25814],[114.25545,22.25822],[114.25541,22.2582],[114.25542,22.25815],[114.25538,22.25817],[114.25535,22.2583],[114.25541,22.25845],[114.25541,22.25854],[114.25534,22.25869],[114.25531,22.25895],[114.25525,22.25896],[114.25525,22.25905],[114.25528,22.25907],[114.25523,22.25911],[114.25512,22.25914],[114.25508,22.25919],[114.25501,22.25923],[114.25502,22.25929],[114.25498,22.25934],[114.25504,22.25938],[114.25501,22.25944],[114.25502,22.25949],[114.25505,22.25952],[114.25509,22.25952],[114.25506,22.25962],[114.2551,22.2597],[114.25514,22.25968],[114.25528,22.25975],[114.25525,22.25979],[114.25518,22.2598],[114.25516,22.25998],[114.2552,22.26008],[114.25525,22.26008],[114.25522,22.26013],[114.25525,22.26027],[114.25534,22.2604],[114.25534,22.26057],[114.25548,22.26072],[114.25549,22.26082],[114.2556,22.26099],[114.25583,22.26104],[114.25576,22.26119],[114.25585,22.26114],[114.25593,22.26113],[114.256,22.26122],[114.25605,22.26121],[114.25607,22.26126],[114.25616,22.2613],[114.25619,22.26125],[114.2563,22.26128],[114.2564,22.26124],[114.25654,22.26121],[114.25656,22.26119],[114.25658,22.26127],[114.25664,22.26123],[114.25665,22.26116],[114.25668,22.26114],[114.25671,22.26117],[114.2567,22.26127],[114.25676,22.26125],[114.25676,22.26132],[114.25679,22.26133],[114.25689,22.26133],[114.25709,22.26127],[114.25727,22.26134],[114.2574,22.26127],[114.25747,22.26132],[114.25745,22.2614],[114.25746,22.26154],[114.25736,22.26164],[114.25736,22.26175],[114.25706,22.262],[114.25711,22.26205],[114.25708,22.26214],[114.25693,22.26231],[114.25682,22.26221],[114.25679,22.26231],[114.25666,22.26246],[114.25655,22.26248],[114.25651,22.26263],[114.2564,22.26276],[114.25627,22.26278],[114.25618,22.2629],[114.25591,22.26309],[114.2557,22.26337],[114.25559,22.26338],[114.25555,22.26348],[114.25551,22.26344],[114.25546,22.26349],[114.25518,22.26374],[114.2551,22.26393],[114.25474,22.26409],[114.25467,22.26408],[114.25448,22.26416],[114.2546,22.26416],[114.25454,22.26429],[114.25407,22.26469],[114.25405,22.26477],[114.25371,22.26494],[114.25355,22.26497],[114.25346,22.26494],[114.25326,22.26507],[114.25327,22.26511],[114.25344,22.26509],[114.2534,22.26518],[114.25323,22.26527],[114.25318,22.26534],[114.25292,22.26547],[114.25287,22.26553],[114.25287,22.26555],[114.25288,22.2656],[114.25288,22.26564],[114.2528,22.26569],[114.25263,22.26581],[114.25257,22.26584],[114.24886,22.26924],[114.24749,22.26796],[114.24668,22.26893],[114.24659,22.26925],[114.24663,22.26926],[114.24658,22.26943],[114.24653,22.26942],[114.24577,22.27195],[114.2458,22.27203],[114.24549,22.27299],[114.24533,22.27331],[114.24503,22.27368],[114.24494,22.27368],[114.24491,22.27361],[114.24515,22.27333],[114.24533,22.27304],[114.24562,22.27213],[114.245,22.27146],[114.24559,22.2695],[114.24375,22.26815],[114.24312,22.26822],[114.24175,22.26986],[114.24434,22.27269],[114.24337,22.27384],[114.24305,22.27422],[114.24318,22.27431],[114.24323,22.27431],[114.24314,22.27494],[114.2431,22.27493],[114.24318,22.27434],[114.24304,22.27423],[114.24244,22.27495],[114.24232,22.27509],[114.24166,22.27588],[114.24169,22.27594],[114.24168,22.27603],[114.24099,22.27877],[114.24087,22.27905],[114.23917,22.28024],[114.23927,22.28043],[114.23923,22.2806],[114.23912,22.28066],[114.23892,22.2806],[114.23883,22.28069],[114.23889,22.28086],[114.23894,22.28093],[114.23904,22.28097],[114.23906,22.28106],[114.2385,22.28138],[114.23738,22.28178],[114.23703,22.28204],[114.23703,22.28218],[114.23693,22.28227],[114.23687,22.28229],[114.23676,22.28219],[114.23646,22.28249],[114.23646,22.28256],[114.23628,22.2828],[114.23592,22.2831],[114.23571,22.28339],[114.23567,22.28352],[114.23562,22.28363],[114.23541,22.2838],[114.23529,22.28383],[114.23513,22.28391],[114.23508,22.28401],[114.23512,22.28403],[114.23509,22.28409],[114.23503,22.28405],[114.2349,22.2842],[114.23484,22.28426],[114.23455,22.28445],[114.23456,22.28449],[114.23452,22.2845],[114.23451,22.28446],[114.23432,22.28449],[114.23411,22.28447],[114.2338,22.2843],[114.23376,22.2843],[114.23371,22.28423],[114.23372,22.28423],[114.23371,22.28421],[114.23372,22.28419],[114.23372,22.28418],[114.23377,22.28415],[114.23381,22.28406],[114.23379,22.28401],[114.23368,22.28401],[114.23348,22.28383],[114.23343,22.28386],[114.23328,22.28364],[114.23254,22.28349],[114.23258,22.28335],[114.23146,22.28325],[114.23144,22.28335],[114.2313,22.28332],[114.23128,22.28341],[114.23034,22.28306],[114.2299,22.28306],[114.22941,22.283],[114.22628,22.283],[114.22623,22.283],[114.22522,22.28396],[114.22487,22.28428],[114.22576,22.28511],[114.22572,22.28515],[114.22565,22.28512],[114.22558,22.28506],[114.22552,22.28511],[114.2256,22.28518],[114.22562,22.28524],[114.22601,22.2856],[114.22602,22.28561],[114.22602,22.28563],[114.22602,22.28564],[114.22601,22.28565],[114.2259,22.28576],[114.22589,22.28576],[114.22587,22.28577],[114.22587,22.28577],[114.22585,22.28577],[114.22584,22.28576],[114.22583,22.28575],[114.22545,22.2854],[114.22536,22.28537],[114.22531,22.28532],[114.22475,22.28584],[114.2248,22.28589],[114.22484,22.28598],[114.22524,22.28635],[114.22524,22.28636],[114.22524,22.28637],[114.22524,22.28638],[114.22523,22.28639],[114.22511,22.2865],[114.2251,22.28651],[114.22509,22.28651],[114.22508,22.28651],[114.22507,22.28651],[114.22506,22.2865],[114.22467,22.28614],[114.22459,22.28611],[114.22453,22.28605],[114.22221,22.28822],[114.21962,22.28934],[114.2154,22.2901],[114.21121,22.29199],[114.2102,22.29227],[114.20987,22.29236],[114.20973,22.29221],[114.2097,22.29219],[114.20881,22.29249],[114.2088,22.29247],[114.20776,22.29278],[114.20781,22.29292],[114.208,22.29287],[114.20802,22.29295],[114.20796,22.29297],[114.20783,22.29301],[114.20797,22.29338],[114.20804,22.29356],[114.20822,22.2935],[114.20825,22.29358],[114.20801,22.29366],[114.20791,22.2934],[114.20778,22.29301],[114.2077,22.2928],[114.20729,22.29292],[114.20727,22.29304],[114.20729,22.29312],[114.20725,22.29313],[114.20722,22.29305],[114.20713,22.29297],[114.20679,22.29307],[114.20674,22.29323],[114.20674,22.29324],[114.20676,22.29333],[114.20676,22.29336],[114.20682,22.29357],[114.20684,22.2936],[114.20678,22.29362],[114.20677,22.29359],[114.20672,22.29338],[114.20671,22.29334],[114.20669,22.29325],[114.20666,22.29311],[114.20626,22.29323],[114.20542,22.29338],[114.20529,22.2934],[114.20516,22.29342],[114.20507,22.29344],[114.2049,22.29347],[114.20493,22.29363],[114.20487,22.29364],[114.20484,22.29348],[114.20435,22.29357],[114.20412,22.29361],[114.20343,22.29373],[114.2034,22.29382],[114.20341,22.29404],[114.20341,22.29433],[114.20341,22.29435],[114.20334,22.29435],[114.20334,22.29437],[114.20333,22.29446],[114.20333,22.29455],[114.20328,22.2946],[114.20325,22.29511],[114.20324,22.29512],[114.20322,22.29512],[114.20321,22.29511],[114.20325,22.29459],[114.20322,22.29454],[114.20322,22.29445],[114.20323,22.29436],[114.20323,22.29434],[114.20315,22.29434],[114.20316,22.29431],[114.20316,22.29401],[114.20306,22.29393],[114.20121,22.29355],[114.20121,22.29358],[114.20113,22.29368],[114.20111,22.2937],[114.20105,22.29391],[114.201,22.29411],[114.20103,22.29416],[114.20101,22.29426],[114.20096,22.29432],[114.20084,22.29482],[114.20083,22.29484],[114.20082,22.29485],[114.20082,22.29485],[114.2008,22.29485],[114.20064,22.29482],[114.20063,22.29482],[114.20061,22.29481],[114.20061,22.29479],[114.20061,22.29478],[114.20072,22.29428],[114.20071,22.29419],[114.20073,22.2941],[114.20078,22.29407],[114.20083,22.29385],[114.20087,22.29365],[114.20086,22.29362],[114.20083,22.2935],[114.20084,22.29347],[114.20006,22.29331],[114.20003,22.29345],[114.19998,22.29368],[114.19998,22.29369],[114.20003,22.2938],[114.20001,22.29388],[114.19996,22.29395],[114.19984,22.29446],[114.19983,22.29448],[114.19982,22.29449],[114.19981,22.29449],[114.1998,22.29449],[114.19979,22.29449],[114.19963,22.29446],[114.19962,22.29445],[114.19961,22.29445],[114.1996,22.29443],[114.1996,22.29441],[114.19972,22.2939],[114.1997,22.29381],[114.19972,22.29373],[114.19982,22.29366],[114.19982,22.29365],[114.19987,22.29342],[114.1999,22.29328],[114.19861,22.29302],[114.19854,22.29335],[114.19854,22.29338],[114.19853,22.29358],[114.19853,22.29365],[114.19871,22.29364],[114.19872,22.29369],[114.1983,22.2937],[114.1983,22.29365],[114.19849,22.29365],[114.19849,22.29358],[114.1985,22.29338],[114.1985,22.29332],[114.19848,22.2933],[114.19837,22.29318],[114.19829,22.29316],[114.1981,22.29312],[114.19608,22.2927],[114.19371,22.29161],[114.19276,22.29056],[114.19266,22.29065],[114.19245,22.29085],[114.19229,22.29099],[114.19227,22.291],[114.19223,22.29102],[114.1922,22.29103],[114.19217,22.29104],[114.19213,22.29104],[114.19209,22.29104],[114.19205,22.29102],[114.19201,22.29101],[114.19196,22.29097],[114.19102,22.2902],[114.18995,22.28923],[114.18883,22.28804],[114.18838,22.28755],[114.18787,22.28787],[114.18782,22.2879],[114.18756,22.28807],[114.18754,22.28807],[114.18751,22.28808],[114.18749,22.28807],[114.18747,22.28806],[114.18745,22.28805],[114.18743,22.28802],[114.18743,22.288],[114.18743,22.28797],[114.18744,22.28795],[114.18746,22.28793],[114.18867,22.28717],[114.18872,22.28714],[114.18883,22.28707],[114.18884,22.28706],[114.18889,22.28703],[114.18896,22.28698],[114.18916,22.28684],[114.18917,22.28684],[114.18917,22.28684],[114.18918,22.28684],[114.18918,22.28683],[114.18918,22.28683],[114.1892,22.28686],[114.18921,22.28686],[114.18928,22.2868],[114.18933,22.28675],[114.18934,22.28675],[114.18938,22.2867],[114.18942,22.28667],[114.18943,22.28666],[114.18945,22.28665],[114.18947,22.28662],[114.18949,22.2866],[114.18954,22.28657],[114.18956,22.28655],[114.18958,22.28653],[114.18961,22.28645],[114.18962,22.28644],[114.18962,22.28643],[114.18963,22.28642],[114.18963,22.28641],[114.18964,22.2864],[114.18965,22.28639],[114.18965,22.28637],[114.18966,22.28636],[114.18967,22.28635],[114.18968,22.28634],[114.18969,22.28633],[114.1897,22.28631],[114.18971,22.2863],[114.18972,22.28629],[114.18973,22.28629],[114.18974,22.28627],[114.18976,22.28625],[114.18978,22.28624],[114.18979,22.28622],[114.18981,22.28621],[114.18982,22.2862],[114.18983,22.28619],[114.18984,22.28619],[114.18985,22.28618],[114.18987,22.28617],[114.19019,22.2859],[114.19024,22.28587],[114.19033,22.2858],[114.1904,22.28573],[114.19045,22.28569],[114.19051,22.28562],[114.19059,22.28552],[114.19061,22.28548],[114.19063,22.28544],[114.19064,22.28542],[114.19064,22.2854],[114.1907,22.28544],[114.19072,22.28542],[114.19084,22.28522],[114.19091,22.2851],[114.19097,22.28497],[114.19099,22.28491],[114.19101,22.28484],[114.19103,22.28477],[114.19105,22.28472],[114.19105,22.28471],[114.19105,22.28471],[114.19109,22.28457],[114.1911,22.2845],[114.19111,22.28443],[114.19113,22.28425],[114.19114,22.28415],[114.19114,22.28413],[114.19116,22.28379],[114.19119,22.28312],[114.1912,22.28297],[114.19121,22.28267],[114.19124,22.28231],[114.19125,22.28201],[114.19128,22.28184],[114.19182,22.2822],[114.19192,22.28228],[114.19198,22.28234],[114.19204,22.28241],[114.1921,22.28249],[114.19219,22.28265],[114.19239,22.28306],[114.19314,22.28313],[114.19308,22.28285],[114.19303,22.28267],[114.19295,22.28238],[114.19285,22.28204],[114.19284,22.28199],[114.19284,22.28195],[114.19284,22.2819],[114.19284,22.28186],[114.19284,22.28175],[114.19285,22.28152],[114.19285,22.28146],[114.19285,22.28145],[114.19285,22.28145],[114.19285,22.28141],[114.19285,22.28139],[114.19285,22.28138],[114.19285,22.28138],[114.19285,22.28138],[114.19285,22.28137],[114.19284,22.28135],[114.19284,22.28133],[114.19284,22.2813],[114.19284,22.28129],[114.19283,22.28126],[114.19283,22.28123],[114.19283,22.28123],[114.19283,22.28122],[114.19283,22.28121],[114.19283,22.2812],[114.19283,22.28119],[114.19283,22.28118],[114.19283,22.28117],[114.19283,22.28117],[114.19283,22.28116],[114.19283,22.28116],[114.19283,22.28116],[114.19283,22.28115],[114.19283,22.28115],[114.19283,22.28114],[114.19283,22.28112],[114.19284,22.28109],[114.19284,22.28108],[114.19284,22.28105],[114.19285,22.28102],[114.19285,22.28101],[114.19286,22.28096],[114.19287,22.28093],[114.19287,22.28091],[114.19289,22.28087],[114.19291,22.28083],[114.19294,22.28078],[114.19307,22.2806],[114.19311,22.28054],[114.19329,22.28027],[114.19335,22.28018],[114.19338,22.28014],[114.19338,22.28013],[114.19341,22.2801],[114.19348,22.27998],[114.19352,22.27988],[114.19359,22.27977],[114.19362,22.27971],[114.19363,22.27971],[114.19368,22.27967],[114.19382,22.27971],[114.19387,22.27973],[114.19389,22.27975],[114.19465,22.27972],[114.19479,22.27963],[114.19484,22.27964],[114.1949,22.27966],[114.19496,22.27966],[114.19502,22.27965],[114.19505,22.27963],[114.19509,22.27959],[114.19511,22.27957],[114.19514,22.27956],[114.1952,22.27956],[114.19525,22.27956],[114.19538,22.27953],[114.1955,22.27947],[114.19558,22.27943],[114.19566,22.27936],[114.19577,22.27931],[114.19615,22.27974],[114.19734,22.27975],[114.19733,22.27975],[114.19732,22.2798],[114.19733,22.27985],[114.19736,22.27991],[114.19742,22.27996],[114.19747,22.28002],[114.19748,22.28006],[114.19748,22.28026],[114.19749,22.28032],[114.19752,22.28036],[114.19758,22.28039],[114.19767,22.28041],[114.19775,22.2804],[114.19786,22.28037],[114.19805,22.28025],[114.19813,22.28022],[114.19817,22.28022],[114.19817,22.28025],[114.19813,22.28034],[114.19811,22.28047],[114.19803,22.2805],[114.19789,22.28058],[114.19781,22.28064],[114.19766,22.28077],[114.19761,22.28087],[114.19761,22.28091],[114.19762,22.28104],[114.19762,22.28112],[114.19759,22.28127],[114.19759,22.28136],[114.19757,22.28145],[114.19754,22.28153],[114.19755,22.28153],[114.19762,22.28155],[114.19766,22.28158],[114.19771,22.28162],[114.1978,22.28171],[114.19787,22.28177],[114.19793,22.28181],[114.198,22.28184],[114.19806,22.28185],[114.19812,22.28184],[114.19817,22.28181],[114.1982,22.28176],[114.19822,22.28172],[114.19824,22.28158],[114.19824,22.28157],[114.19826,22.2815],[114.19823,22.2814],[114.19823,22.28133],[114.1983,22.28131],[114.19833,22.28129],[114.1984,22.2812],[114.19849,22.28115],[114.19854,22.28115],[114.19859,22.28117],[114.19863,22.2812],[114.19868,22.28119],[114.19871,22.28115],[114.19873,22.28112],[114.19873,22.28107],[114.19877,22.28098],[114.19884,22.28089],[114.19889,22.2808],[114.19893,22.28081],[114.19901,22.28084],[114.19903,22.28084],[114.19907,22.28081],[114.19913,22.28073],[114.19917,22.28072],[114.1992,22.28072],[114.19924,22.28078],[114.19925,22.28086],[114.19924,22.28093],[114.19921,22.28101],[114.19921,22.28109],[114.19923,22.28114],[114.19927,22.28118],[114.19939,22.28122],[114.19941,22.28127],[114.19942,22.28136],[114.19945,22.28141],[114.19949,22.28143],[114.19959,22.28147],[114.19961,22.2815],[114.19961,22.28159],[114.19962,22.28165],[114.19963,22.28168],[114.19963,22.28178],[114.19961,22.28186],[114.19963,22.28192],[114.19969,22.282],[114.19969,22.28203],[114.19968,22.28211],[114.19967,22.2822],[114.19968,22.28224],[114.19972,22.28232],[114.19976,22.28235],[114.19985,22.28236],[114.19994,22.2824],[114.20005,22.28242],[114.20014,22.28241],[114.20025,22.28241],[114.20034,22.28237],[114.20037,22.28238],[114.20039,22.28239],[114.2004,22.28244],[114.20038,22.2825],[114.20032,22.28259],[114.20027,22.28267],[114.20023,22.2828],[114.20022,22.28288],[114.20023,22.28297],[114.20019,22.28316],[114.20024,22.28328],[114.20026,22.28337],[114.20032,22.2834],[114.20043,22.28342],[114.2005,22.28342],[114.2006,22.28341],[114.20062,22.28342],[114.20062,22.28347],[114.20064,22.28352],[114.20069,22.2836],[114.20074,22.2837],[114.20079,22.28374],[114.20083,22.28375],[114.20089,22.28374],[114.20095,22.28371],[114.20105,22.28365],[114.20108,22.28366],[114.20111,22.28371],[114.20113,22.28379],[114.20116,22.2838],[114.20118,22.28382],[114.20125,22.28381],[114.20137,22.28377],[114.2014,22.28377],[114.20145,22.28388],[114.20149,22.28392],[114.20152,22.28394],[114.20165,22.28399],[114.2017,22.28399],[114.20181,22.28402],[114.20189,22.28406],[114.20213,22.28412],[114.20215,22.28413],[114.2022,22.28419],[114.20228,22.28424],[114.20232,22.28426],[114.2024,22.28426],[114.20246,22.28423],[114.2025,22.28416],[114.20252,22.28409],[114.20253,22.28405],[114.20255,22.28401],[114.20257,22.284],[114.20261,22.28397],[114.20263,22.28395],[114.20263,22.28391],[114.20263,22.28387],[114.20257,22.2838],[114.20257,22.28367],[114.20262,22.28357],[114.20261,22.28354],[114.20259,22.28349],[114.20261,22.28342],[114.20264,22.2834],[114.20268,22.28339],[114.20282,22.28343],[114.2029,22.28344],[114.20296,22.28343],[114.20299,22.2834],[114.20302,22.2833],[114.20303,22.28317],[114.20307,22.28305],[114.20308,22.28302],[114.20312,22.28301],[114.20325,22.28301],[114.20328,22.28302],[114.20333,22.28309],[114.20339,22.28319],[114.20346,22.28325],[114.2036,22.2833],[114.20364,22.28332],[114.20365,22.28337],[114.20365,22.28342],[114.20355,22.2835],[114.20352,22.28354],[114.20351,22.28356],[114.20351,22.28359],[114.20355,22.28369],[114.20362,22.28383],[114.20362,22.28387],[114.20359,22.28398],[114.20361,22.28406],[114.20366,22.28416],[114.20372,22.28424],[114.20377,22.2843],[114.20383,22.28434],[114.20393,22.28438],[114.20396,22.28438],[114.20398,22.28438],[114.20403,22.28429],[114.2041,22.28424],[114.20418,22.28421],[114.20428,22.28418],[114.2044,22.28423],[114.20448,22.28431],[114.20457,22.28442],[114.20461,22.28452],[114.20465,22.28461],[114.20466,22.28468],[114.20465,22.28474],[114.20464,22.2848],[114.20463,22.28492],[114.20462,22.28501],[114.20463,22.28522],[114.20461,22.28542],[114.20462,22.28559],[114.20475,22.28561],[114.20488,22.28558],[114.20498,22.28556],[114.2051,22.28559],[114.20518,22.2856],[114.20524,22.28556],[114.20526,22.28552],[114.2053,22.28548],[114.20542,22.28542],[114.20546,22.28538],[114.20553,22.28537],[114.20558,22.28536],[114.20564,22.28541],[114.20575,22.28545],[114.2058,22.28544],[114.20591,22.28541],[114.20596,22.28539],[114.20606,22.28535],[114.20612,22.28534],[114.20621,22.28533],[114.20629,22.28537],[114.20634,22.2854],[114.20638,22.28544],[114.20646,22.28554],[114.20651,22.28569],[114.20653,22.28579],[114.20653,22.28585],[114.20654,22.28594],[114.2066,22.28593],[114.20718,22.28581],[114.20726,22.28578],[114.20733,22.28574],[114.20745,22.28567],[114.2075,22.28561],[114.20752,22.28555],[114.20752,22.28543],[114.20752,22.28529],[114.20754,22.2852],[114.20757,22.28511],[114.20761,22.28506],[114.20766,22.28503],[114.20776,22.28501],[114.20782,22.285],[114.20787,22.285],[114.2079,22.28501],[114.20792,22.28501],[114.20794,22.28499],[114.20784,22.28478],[114.2078,22.28473],[114.20776,22.28467],[114.20773,22.28461],[114.20773,22.28455],[114.20773,22.28453],[114.20774,22.28451],[114.20775,22.2845],[114.20778,22.28449],[114.20782,22.28448],[114.20799,22.28444],[114.20805,22.28442],[114.20815,22.28436],[114.20819,22.28433],[114.20822,22.28429],[114.20822,22.28424],[114.20819,22.2842],[114.20816,22.28417],[114.20812,22.28417],[114.20793,22.28416],[114.20785,22.28415],[114.20781,22.28412],[114.20772,22.28407],[114.20765,22.284],[114.20764,22.28396],[114.20765,22.28395],[114.20769,22.28394],[114.2078,22.28395],[114.20803,22.2839],[114.20812,22.28386],[114.20824,22.28379],[114.20849,22.28368],[114.20869,22.28362],[114.20888,22.2836],[114.20912,22.28358],[114.2093,22.28358],[114.20949,22.2836],[114.20951,22.2836],[114.20951,22.28353],[114.20951,22.28348],[114.20952,22.28339],[114.20953,22.28333],[114.20954,22.28327],[114.20957,22.2832],[114.20958,22.28312],[114.2096,22.28304],[114.20963,22.28299],[114.20966,22.28295],[114.20968,22.28289],[114.20968,22.28285],[114.20967,22.28281],[114.20966,22.28278],[114.20966,22.28276],[114.20967,22.28273],[114.2097,22.28271],[114.20973,22.28266],[114.20974,22.28261],[114.20974,22.28256],[114.20972,22.28251],[114.20973,22.28249],[114.20974,22.28246],[114.20975,22.28242],[114.20978,22.28239],[114.21001,22.28211],[114.20967,22.282],[114.2099,22.28138],[114.20989,22.28136],[114.20987,22.28132],[114.20985,22.28129],[114.20984,22.28128],[114.20984,22.28126],[114.20985,22.28124],[114.20987,22.28122],[114.20991,22.28119],[114.20993,22.28117],[114.20994,22.28115],[114.20997,22.28107],[114.20999,22.28102],[114.20999,22.28095],[114.20999,22.28089],[114.20998,22.28085],[114.20995,22.28083],[114.2099,22.28081],[114.20985,22.28081],[114.20978,22.2808],[114.20973,22.28078],[114.20967,22.28076],[114.20962,22.28074],[114.20956,22.2807],[114.20952,22.28067],[114.20951,22.28064],[114.20953,22.2806],[114.20956,22.28054],[114.20959,22.28049],[114.2096,22.28043],[114.20959,22.2804],[114.20959,22.28036],[114.20962,22.28032],[114.20966,22.2803],[114.20971,22.28026],[114.20973,22.28024],[114.20975,22.28021],[114.20976,22.2802],[114.20978,22.28016],[114.2098,22.28012],[114.20981,22.28006],[114.20983,22.27999],[114.20983,22.27992],[114.20982,22.27986],[114.20979,22.27982],[114.20976,22.27978],[114.2097,22.27972],[114.20967,22.27969],[114.20963,22.27967],[114.20961,22.27965],[114.20961,22.27963],[114.20962,22.2796],[114.20965,22.27957],[114.20968,22.27953],[114.20973,22.27945],[114.20973,22.27934],[114.20974,22.27933],[114.20978,22.27931],[114.20978,22.2793],[114.20983,22.27929],[114.2101,22.279],[114.21013,22.27898],[114.21013,22.27886],[114.21011,22.27883],[114.20994,22.27874],[114.20988,22.27871],[114.20985,22.27868],[114.20984,22.27865],[114.20981,22.27859],[114.20979,22.27848],[114.20979,22.27844],[114.2098,22.27841],[114.20984,22.27838],[114.2099,22.27838],[114.20997,22.27838],[114.21005,22.27839],[114.21011,22.27839],[114.21015,22.27839],[114.21019,22.27837],[114.21024,22.27832],[114.21028,22.27828],[114.21032,22.27825],[114.21036,22.27821],[114.21037,22.27817],[114.21037,22.2781],[114.21036,22.27803],[114.21036,22.278],[114.21036,22.27797],[114.21037,22.27793],[114.21037,22.27791],[114.21038,22.2779],[114.21041,22.27788],[114.21044,22.27788],[114.21051,22.27786],[114.21059,22.27783],[114.21065,22.2778],[114.21068,22.27778],[114.21069,22.27776],[114.2107,22.27774],[114.2107,22.27771],[114.21069,22.27765],[114.21068,22.27758],[114.21068,22.27752],[114.21067,22.27747],[114.21066,22.27744],[114.21065,22.2774],[114.21063,22.27737],[114.2106,22.27733],[114.21059,22.27731],[114.21056,22.27729],[114.21053,22.27728],[114.21051,22.27727],[114.21048,22.27727],[114.21044,22.27727],[114.21036,22.27729],[114.21029,22.27731],[114.21021,22.27734],[114.20971,22.27756],[114.20962,22.2776],[114.20956,22.27763],[114.20952,22.27765],[114.20945,22.27767],[114.2094,22.27769],[114.20936,22.2777],[114.20933,22.2777],[114.2093,22.27769],[114.20927,22.27766],[114.20926,22.27763],[114.20923,22.27759],[114.20921,22.27755],[114.2092,22.27751],[114.20918,22.27747],[114.20918,22.27743],[114.20919,22.2774],[114.20921,22.27738],[114.20922,22.27735],[114.20924,22.27732],[114.20926,22.27729],[114.20926,22.27726],[114.20926,22.27725],[114.20925,22.27724],[114.20924,22.27722],[114.20923,22.27719],[114.20922,22.27718],[114.20921,22.27717],[114.2092,22.27716],[114.20919,22.27715],[114.20918,22.27714],[114.20916,22.27713],[114.20914,22.27713],[114.20912,22.27712],[114.2091,22.27712],[114.20907,22.27712],[114.20905,22.27712],[114.20902,22.27713],[114.20898,22.27713],[114.20896,22.27713],[114.20894,22.27713],[114.20894,22.27713],[114.20892,22.27712],[114.20891,22.27712],[114.20889,22.27711],[114.20887,22.2771],[114.20886,22.2771],[114.20885,22.27709],[114.20883,22.27708],[114.20882,22.27707],[114.20882,22.27705],[114.20876,22.27684],[114.20874,22.27666],[114.20872,22.27652],[114.20872,22.27644],[114.20871,22.27627],[114.20869,22.27611],[114.20869,22.27609],[114.20867,22.27607],[114.20867,22.27604],[114.20868,22.27602],[114.2087,22.276],[114.20886,22.27586],[114.2089,22.27581],[114.20894,22.27577],[114.20898,22.27573],[114.20902,22.27571],[114.20906,22.2757],[114.2091,22.27569],[114.20913,22.27568],[114.20917,22.27567],[114.2092,22.27567],[114.20933,22.27566],[114.20939,22.27566],[114.20944,22.27564],[114.20947,22.27563],[114.2095,22.27561],[114.20953,22.27558],[114.20955,22.27555],[114.20959,22.27547],[114.20964,22.27537],[114.20969,22.27524],[114.20977,22.27511],[114.20984,22.275],[114.20989,22.27491],[114.20991,22.27488],[114.20995,22.27485],[114.20998,22.27482],[114.20999,22.27477],[114.21,22.27472],[114.20999,22.27469],[114.20997,22.27466],[114.20996,22.27465],[114.20992,22.27463],[114.2099,22.2746],[114.20989,22.27458],[114.20989,22.27454],[114.2099,22.27451],[114.20991,22.27449],[114.20992,22.27447],[114.20993,22.27444],[114.20993,22.2744],[114.20992,22.27436],[114.2099,22.27433],[114.20989,22.27431],[114.20989,22.27429],[114.2099,22.27427],[114.20991,22.27425],[114.20993,22.27423],[114.20998,22.27421],[114.21002,22.27418],[114.21006,22.27415],[114.2101,22.27413],[114.21014,22.2741],[114.21017,22.27407],[114.21021,22.27404],[114.21025,22.27403],[114.21028,22.27401],[114.21032,22.274],[114.21036,22.27398],[114.2104,22.27397],[114.21044,22.27396],[114.21048,22.27395],[114.21054,22.27394],[114.2106,22.27394],[114.21064,22.27394],[114.21071,22.27393],[114.21077,22.27393],[114.21083,22.27394],[114.21086,22.27394],[114.21089,22.27396],[114.21092,22.27397],[114.21097,22.274],[114.21101,22.27404],[114.21105,22.27408],[114.21107,22.27411],[114.2111,22.27414],[114.21114,22.27416],[114.21119,22.27418],[114.21123,22.27419],[114.21127,22.2742],[114.21133,22.27421],[114.21138,22.27421],[114.21142,22.2742],[114.21146,22.27419],[114.2115,22.27417],[114.21153,22.27416],[114.21156,22.27413],[114.21158,22.27409],[114.21159,22.27406],[114.2116,22.27403],[114.2116,22.27398],[114.2116,22.27395],[114.2116,22.27391],[114.21159,22.27388],[114.2116,22.27385],[114.21161,22.27382],[114.21165,22.27379],[114.21166,22.27377],[114.21167,22.27375],[114.21165,22.2737],[114.2116,22.27361],[114.21157,22.27356],[114.21154,22.27351],[114.21151,22.27346],[114.21147,22.27341],[114.21144,22.27335],[114.21141,22.2733],[114.21137,22.27325],[114.21134,22.2732],[114.21133,22.27318],[114.21132,22.27317],[114.21131,22.27316],[114.2113,22.27315],[114.21129,22.27314],[114.21128,22.27313],[114.21127,22.27312],[114.21126,22.27311],[114.21125,22.2731],[114.21124,22.27309],[114.21123,22.27308],[114.21122,22.27307],[114.21121,22.27305],[114.2112,22.27304],[114.21119,22.27303],[114.21118,22.27302],[114.21117,22.27301],[114.21116,22.273],[114.21115,22.27299],[114.21115,22.27298],[114.21114,22.27297],[114.21113,22.27295],[114.21112,22.27294],[114.21112,22.27293],[114.21111,22.27291],[114.21111,22.2729],[114.2111,22.27289],[114.2111,22.27287],[114.2111,22.27286],[114.21109,22.27285],[114.21109,22.27283],[114.21109,22.27282],[114.21109,22.27281],[114.21108,22.27279],[114.21108,22.27278],[114.21107,22.27277],[114.21107,22.27275],[114.21106,22.27274],[114.21106,22.27273],[114.21105,22.27271],[114.21105,22.2727],[114.21105,22.27268],[114.21106,22.27267],[114.21107,22.27266],[114.21108,22.27265],[114.21109,22.27264],[114.21111,22.27264],[114.21112,22.27265],[114.21114,22.27265],[114.21115,22.27265],[114.21117,22.27265],[114.21118,22.27266],[114.2112,22.27266],[114.21121,22.27267],[114.21122,22.27268],[114.21123,22.27269],[114.21124,22.2727],[114.21131,22.27274],[114.21139,22.27281],[114.21143,22.27285],[114.21148,22.2729],[114.21152,22.27294],[114.2116,22.27299],[114.21166,22.273],[114.21173,22.27299],[114.21182,22.27299],[114.21186,22.27302],[114.21189,22.27306],[114.2119,22.27308],[114.21192,22.27315],[114.21196,22.27319],[114.21199,22.27322],[114.21205,22.27324],[114.2121,22.27324],[114.21217,22.27322],[114.21224,22.27317],[114.21228,22.27313],[114.21234,22.27308],[114.21237,22.27303],[114.21239,22.27298],[114.2124,22.27293],[114.2124,22.27289],[114.2124,22.27285],[114.21242,22.27282],[114.21243,22.2728],[114.21245,22.27276],[114.21246,22.27272],[114.21247,22.27267],[114.21247,22.27262],[114.21247,22.2726],[114.21248,22.27255],[114.21251,22.27251],[114.21255,22.27247],[114.21259,22.2724],[114.21264,22.27229],[114.21269,22.27218],[114.2127,22.27212],[114.21269,22.27208],[114.21267,22.27203],[114.21264,22.27199],[114.2126,22.27195],[114.21257,22.27192],[114.21253,22.2719],[114.21248,22.27187],[114.21221,22.27178],[114.21219,22.27178],[114.21217,22.27177],[114.21215,22.27177],[114.21214,22.27176],[114.21213,22.27176],[114.21212,22.27175],[114.21212,22.27174],[114.21212,22.27173],[114.21212,22.27172],[114.21212,22.27171],[114.21212,22.27171],[114.21212,22.2717],[114.21213,22.27169],[114.21214,22.27169],[114.21228,22.27158],[114.21229,22.27156],[114.2123,22.27154],[114.2123,22.27152],[114.2123,22.2715],[114.2123,22.27148],[114.21229,22.27146],[114.21229,22.27144],[114.21228,22.27143],[114.21227,22.27141],[114.21224,22.27139],[114.2122,22.27136],[114.21217,22.27133],[114.21214,22.27132],[114.21212,22.2713],[114.21211,22.27129],[114.2121,22.27127],[114.2121,22.27124],[114.2121,22.2712],[114.2121,22.27116],[114.2121,22.27112],[114.21208,22.27108],[114.21206,22.27103],[114.21202,22.27097],[114.21201,22.27093],[114.212,22.2709],[114.212,22.27087],[114.212,22.27085],[114.212,22.27084],[114.21201,22.27084],[114.21201,22.27083],[114.21202,22.27082],[114.21202,22.27081],[114.21202,22.27081],[114.21203,22.2708],[114.21203,22.27079],[114.21205,22.27079],[114.21206,22.27079],[114.21206,22.27079],[114.21207,22.27079],[114.2121,22.2708],[114.21229,22.27089],[114.21233,22.27091],[114.21239,22.27093],[114.21243,22.27094],[114.21246,22.27094],[114.21248,22.27093],[114.21251,22.27093],[114.21253,22.27092],[114.21255,22.27092],[114.21258,22.27093],[114.2126,22.27094],[114.21261,22.27095],[114.21263,22.27096],[114.21266,22.27097],[114.21268,22.27097],[114.2127,22.27098],[114.21272,22.27098],[114.21273,22.27097],[114.21274,22.27097],[114.21276,22.27097],[114.21278,22.27096],[114.21279,22.27095],[114.2128,22.27094],[114.21281,22.27092],[114.21282,22.2709],[114.21283,22.27089],[114.21283,22.27086],[114.21283,22.27085],[114.21283,22.27083],[114.21282,22.27079],[114.21281,22.27076],[114.21281,22.27072],[114.21277,22.27051],[114.21276,22.27048],[114.21276,22.27046],[114.21276,22.27044],[114.21277,22.27043],[114.21278,22.27041],[114.21279,22.2704],[114.21281,22.2704],[114.21282,22.27039],[114.21283,22.27038],[114.21284,22.27036],[114.21284,22.27034],[114.21284,22.27033],[114.21284,22.27033],[114.21283,22.27033],[114.21283,22.27033],[114.21283,22.27032],[114.21283,22.27032],[114.21283,22.27032],[114.21283,22.27032],[114.21284,22.27032],[114.21284,22.27032],[114.21285,22.27031],[114.21285,22.27031],[114.21286,22.27031],[114.21286,22.2703],[114.21286,22.2703],[114.21287,22.2703],[114.21287,22.27028],[114.21291,22.27021],[114.21291,22.2702],[114.21291,22.27019],[114.21291,22.27018],[114.21291,22.27017],[114.21291,22.27016],[114.2129,22.27015],[114.2129,22.27014],[114.2129,22.27013],[114.2129,22.27012],[114.21291,22.27012],[114.21291,22.27011],[114.21292,22.27011],[114.21292,22.27011],[114.21292,22.27009],[114.21292,22.27003],[114.21292,22.26999],[114.21293,22.26998],[114.21295,22.26998],[114.21297,22.26998],[114.21298,22.26998],[114.213,22.27],[114.21304,22.27003],[114.21306,22.27006],[114.21309,22.27009],[114.21313,22.27012],[114.21315,22.27013],[114.21319,22.27014],[114.21323,22.27015],[114.21329,22.27016],[114.21333,22.27016],[114.21335,22.27015],[114.21338,22.27014],[114.21342,22.27012],[114.21344,22.2701],[114.21347,22.27008],[114.21348,22.27006],[114.21348,22.27006],[114.21349,22.27005],[114.21349,22.27005],[114.21349,22.27004],[114.21349,22.27004],[114.21351,22.27003],[114.21352,22.27002],[114.21353,22.27002],[114.21354,22.27002],[114.21355,22.27001],[114.21355,22.27],[114.21355,22.27],[114.21356,22.26999],[114.21357,22.26999],[114.21358,22.26998],[114.21359,22.26997],[114.2136,22.26996],[114.2136,22.26994],[114.21362,22.26993],[114.21363,22.26991],[114.21364,22.2699],[114.21365,22.26989],[114.21366,22.26988],[114.21366,22.26987],[114.21367,22.26986],[114.21368,22.26985],[114.21369,22.26984],[114.21369,22.26983],[114.2137,22.26982],[114.2137,22.2698],[114.21371,22.26978],[114.21371,22.26973],[114.21373,22.26968],[114.21374,22.26964],[114.21375,22.26963],[114.21378,22.26961],[114.2138,22.26962],[114.21381,22.26962],[114.21384,22.26965],[114.21387,22.2697],[114.2139,22.26975],[114.21393,22.26979],[114.21397,22.26981],[114.21399,22.26981],[114.21401,22.26981],[114.21404,22.26981],[114.21406,22.26981],[114.21411,22.2698],[114.21414,22.2698],[114.21416,22.2698],[114.21418,22.26981],[114.21419,22.26982],[114.21421,22.26983],[114.21421,22.26985],[114.21422,22.26987],[114.21423,22.26991],[114.21426,22.26997],[114.21429,22.27002],[114.21436,22.27009],[114.21441,22.27017],[114.21444,22.27022],[114.21445,22.27026],[114.21447,22.27031],[114.21451,22.27043],[114.21451,22.27049],[114.21447,22.27057],[114.21446,22.27063],[114.21447,22.2707],[114.21452,22.2708],[114.21458,22.27092],[114.21465,22.27102],[114.2147,22.27105],[114.21477,22.27107],[114.21481,22.27107],[114.21484,22.2711],[114.21487,22.27115],[114.21488,22.27122],[114.21488,22.27125],[114.21486,22.27129],[114.21492,22.27146],[114.215,22.27158],[114.21501,22.27164],[114.215,22.27173],[114.21496,22.27181],[114.21494,22.27184],[114.21494,22.27188],[114.21496,22.27192],[114.215,22.27197],[114.21504,22.27199],[114.2151,22.272],[114.2152,22.27195],[114.21534,22.2719],[114.2155,22.27188],[114.21558,22.27186],[114.21564,22.27178],[114.21573,22.27171],[114.21589,22.27164],[114.21594,22.2716],[114.21596,22.27156],[114.21593,22.27148],[114.21594,22.27137],[114.216,22.27135],[114.21612,22.27133],[114.21618,22.27129],[114.21621,22.27118],[114.21627,22.27111],[114.21635,22.27109],[114.21648,22.2711],[114.21661,22.27106],[114.21666,22.27103],[114.21675,22.27104],[114.2168,22.27107],[114.21694,22.27124],[114.21716,22.27141],[114.21722,22.27147],[114.21724,22.27151],[114.21724,22.27156],[114.2172,22.27164],[114.21713,22.27172],[114.21708,22.27182],[114.21715,22.27193],[114.21715,22.27207],[114.21708,22.27212],[114.21703,22.27218],[114.21703,22.27224],[114.21705,22.27231],[114.21703,22.27236],[114.21698,22.27243],[114.21696,22.27252],[114.21696,22.2726],[114.217,22.27268],[114.21699,22.27274],[114.21695,22.27279],[114.21691,22.27282],[114.21687,22.27288],[114.21685,22.27295],[114.21684,22.27303],[114.21686,22.27312],[114.21687,22.2732],[114.21685,22.27325],[114.2168,22.27331],[114.21672,22.27338],[114.21667,22.27341],[114.21664,22.27342],[114.2166,22.27346],[114.2166,22.27352],[114.21658,22.27359],[114.21655,22.27365],[114.21655,22.27374],[114.21658,22.27383],[114.21661,22.27388],[114.21667,22.27395],[114.21672,22.27399],[114.21677,22.274],[114.21684,22.27401],[114.21691,22.274],[114.21697,22.27398],[114.21704,22.27394],[114.21709,22.27387],[114.21714,22.27379],[114.21722,22.27373],[114.21732,22.27369],[114.21738,22.27373],[114.21745,22.27389],[114.21751,22.27392],[114.21754,22.27393],[114.21785,22.27395],[114.21792,22.27399],[114.21793,22.27403],[114.21793,22.27407],[114.21792,22.2741],[114.2179,22.27412],[114.21781,22.27418],[114.21777,22.27421],[114.21765,22.27434],[114.21762,22.27438],[114.21758,22.27442],[114.21752,22.27443],[114.21748,22.27441],[114.21729,22.2744],[114.21716,22.2744],[114.21683,22.27445],[114.21666,22.27448],[114.21657,22.27451],[114.21652,22.27455],[114.2165,22.27459],[114.21651,22.27464],[114.21656,22.27467],[114.21663,22.27469],[114.21673,22.27474],[114.2168,22.27478],[114.21683,22.27482],[114.21687,22.27486],[114.21703,22.2752],[114.21705,22.27525],[114.21722,22.2755],[114.21771,22.2761],[114.21778,22.27615],[114.21783,22.27622],[114.21785,22.27627],[114.21786,22.27638],[114.21783,22.27648],[114.21774,22.27664],[114.21773,22.27668],[114.21774,22.27676],[114.21775,22.27677],[114.21781,22.27683],[114.21787,22.27688],[114.21788,22.27688],[114.21791,22.27688],[114.21795,22.27688],[114.21807,22.27688],[114.21825,22.27687],[114.21833,22.27687],[114.21844,22.27683],[114.21852,22.27679],[114.21859,22.27679],[114.21864,22.27681],[114.21866,22.27686],[114.21867,22.27693],[114.21871,22.27699],[114.21878,22.27702],[114.21891,22.27702],[114.2191,22.277],[114.21919,22.27699],[114.21934,22.27702],[114.21938,22.27701],[114.21945,22.27695],[114.21952,22.27692],[114.21956,22.27691],[114.21965,22.27691],[114.2197,22.2769],[114.21976,22.27687],[114.21979,22.27684],[114.21984,22.27679],[114.21989,22.27665],[114.2199,22.27658],[114.21989,22.27655],[114.21982,22.27645],[114.2198,22.27638],[114.21982,22.27635],[114.21988,22.27632],[114.21994,22.2763],[114.22004,22.27627],[114.2201,22.27624],[114.22015,22.2762],[114.2202,22.27613],[114.22022,22.27608],[114.22023,22.27605],[114.22023,22.27601],[114.22022,22.27593],[114.22021,22.27586],[114.22017,22.27578],[114.22018,22.27576],[114.2202,22.27575],[114.22024,22.27577],[114.22032,22.27578],[114.22038,22.27578],[114.22045,22.27576],[114.22055,22.27572],[114.22064,22.27565],[114.2207,22.27556],[114.2207,22.27547],[114.22068,22.27538],[114.22062,22.27531],[114.22057,22.2752],[114.22056,22.27507],[114.22055,22.27494],[114.22058,22.27485],[114.2206,22.27477],[114.2206,22.27467],[114.22065,22.27453],[114.22065,22.27444],[114.22063,22.27438],[114.2206,22.27432],[114.2206,22.27425],[114.22062,22.27417],[114.22066,22.27412],[114.22083,22.274],[114.22099,22.27393],[114.22115,22.2739],[114.22133,22.2739],[114.22169,22.27395],[114.22217,22.27403],[114.22239,22.27405],[114.22253,22.27401],[114.22268,22.27393],[114.22283,22.27378],[114.22295,22.2736],[114.22306,22.27352],[114.22331,22.27339],[114.22353,22.27333],[114.22389,22.27318],[114.22443,22.27286],[114.22465,22.27276],[114.22486,22.27271],[114.22509,22.27272],[114.2252,22.27276],[114.22521,22.27277],[114.2257,22.27312],[114.2258,22.27304],[114.22584,22.273],[114.22588,22.27294],[114.2259,22.27287],[114.22592,22.27277],[114.2259,22.27257],[114.2259,22.27242],[114.2259,22.2724],[114.22591,22.27237],[114.22593,22.27235],[114.22608,22.27229],[114.22643,22.27215],[114.22649,22.27212],[114.22653,22.27208],[114.22658,22.27203],[114.22661,22.27197],[114.22663,22.27191],[114.22663,22.27182],[114.22662,22.27176],[114.2266,22.27171],[114.22655,22.27164],[114.2264,22.2715],[114.22638,22.27146],[114.22636,22.27142],[114.22635,22.27141],[114.22635,22.27139],[114.22635,22.27139],[114.22634,22.27136],[114.22634,22.27133],[114.22637,22.27128],[114.22643,22.27121],[114.22658,22.27111],[114.22698,22.27083],[114.22725,22.27065],[114.2277,22.27017],[114.22819,22.26966],[114.22846,22.26938],[114.22892,22.2689],[114.22953,22.26824],[114.22951,22.26781],[114.22948,22.26733],[114.22946,22.26706],[114.22944,22.26685],[114.22938,22.26664],[114.2293,22.26648],[114.22923,22.26638],[114.22754,22.26477],[114.22722,22.26457],[114.2268,22.26441],[114.22636,22.2643],[114.22612,22.26426],[114.2259,22.26419],[114.22578,22.26415],[114.22566,22.26406],[114.2256,22.26398],[114.22556,22.2639],[114.22547,22.26372],[114.22538,22.26346],[114.2253,22.26318],[114.22527,22.26316],[114.22524,22.26308],[114.22522,22.26302],[114.22519,22.26289],[114.22521,22.26278],[114.22535,22.26254],[114.22547,22.26239],[114.22554,22.26229],[114.22559,22.26219],[114.2256,22.26208],[114.22547,22.26171],[114.22544,22.26162],[114.22541,22.26136],[114.22545,22.26088],[114.2255,22.2605],[114.22552,22.26023],[114.22556,22.26006],[114.22558,22.25846],[114.22556,22.25815],[114.22558,22.25804],[114.22562,22.25797],[114.22567,22.2579],[114.22569,22.25789],[114.22578,22.25784],[114.22596,22.2578],[114.22674,22.25778],[114.22722,22.25772],[114.22781,22.25759],[114.22794,22.25755],[114.22804,22.25747],[114.22812,22.25739],[114.22816,22.25732],[114.22815,22.25721],[114.22821,22.25724],[114.22827,22.25726],[114.22834,22.25728],[114.22841,22.25729],[114.22846,22.25729],[114.22846,22.25729],[114.22849,22.25728],[114.22851,22.25728],[114.22859,22.25725],[114.22872,22.25722],[114.22885,22.25718],[114.22891,22.25715],[114.22896,22.25711],[114.22918,22.25696],[114.22928,22.25688],[114.2294,22.2568],[114.22951,22.25674],[114.22964,22.25669],[114.22977,22.25665],[114.22985,22.25663],[114.22992,22.2566],[114.22998,22.25657],[114.23006,22.25651],[114.2301,22.25646],[114.23012,22.25643],[114.23014,22.25639],[114.23015,22.25637],[114.23019,22.25632],[114.23023,22.25626],[114.23027,22.2562],[114.23035,22.25608],[114.23039,22.25601],[114.23051,22.25584],[114.23052,22.25582],[114.23052,22.25583],[114.23054,22.25586],[114.23065,22.2561],[114.23071,22.25623],[114.23071,22.25623],[114.23096,22.25611],[114.23111,22.25602],[114.23117,22.25598],[114.2312,22.25596],[114.23122,22.25594],[114.23131,22.25587],[114.2314,22.2558],[114.23162,22.25558],[114.23182,22.25529],[114.23191,22.25514],[114.232,22.25505],[114.23205,22.25502],[114.23215,22.25498],[114.2322,22.25497],[114.23225,22.25496],[114.23263,22.25495],[114.23268,22.25495],[114.23274,22.25497],[114.23287,22.25499],[114.23295,22.25499],[114.23301,22.25499],[114.23309,22.25499],[114.23312,22.25498],[114.23317,22.25497],[114.23323,22.25494],[114.23365,22.25465],[114.23367,22.25464],[114.2337,22.25463],[114.23372,22.25463],[114.23375,22.25463],[114.23395,22.25467],[114.23398,22.25468],[114.23399,22.2547],[114.23401,22.25472],[114.23402,22.25474],[114.23405,22.25482],[114.23408,22.25498],[114.23411,22.25505],[114.23413,22.25508],[114.23417,22.25512],[114.23422,22.25515],[114.23424,22.25516],[114.23439,22.25521],[114.23442,22.25523],[114.23443,22.25525],[114.23444,22.25526],[114.23445,22.25529],[114.23446,22.25534],[114.23446,22.2554],[114.23452,22.2556],[114.23455,22.25581],[114.23457,22.25587],[114.23458,22.25592],[114.23461,22.25599],[114.23466,22.25608],[114.23468,22.25611],[114.2347,22.25613],[114.23475,22.25617],[114.23478,22.25619],[114.23484,22.25621],[114.23487,22.25622],[114.23493,22.25623],[114.23499,22.25623],[114.23502,22.25622],[114.23512,22.25619],[114.23521,22.25618],[114.23525,22.25618],[114.23527,22.25619],[114.23528,22.2562],[114.2353,22.25621],[114.23532,22.25624],[114.23534,22.2563],[114.23538,22.25642],[114.23542,22.25651],[114.23545,22.25657],[114.23549,22.25662],[114.23552,22.25665],[114.23556,22.25669],[114.23579,22.25685],[114.23581,22.25686],[114.23582,22.25686],[114.23584,22.25685],[114.23588,22.25681],[114.2359,22.25678],[114.23592,22.25675],[114.23599,22.25658],[114.23601,22.25655],[114.23604,22.25652],[114.23606,22.25651],[114.23613,22.25648],[114.23622,22.25645],[114.23625,22.25644],[114.23628,22.25644],[114.23632,22.25645],[114.23635,22.25646],[114.2364,22.25652],[114.23641,22.25655],[114.23643,22.2566],[114.23645,22.25667],[114.23646,22.25676],[114.23647,22.25707],[114.23647,22.25711],[114.23648,22.25715],[114.23651,22.25721],[114.23654,22.25724],[114.23658,22.25728],[114.23665,22.25732],[114.23668,22.25732],[114.23669,22.25732],[114.23671,22.25731],[114.23676,22.25727],[114.2368,22.25724],[114.23682,22.2572],[114.23684,22.25717],[114.23685,22.2571],[114.23686,22.25702],[114.23687,22.25698],[114.2369,22.25695],[114.23692,22.25694],[114.23695,22.25692],[114.23698,22.25691],[114.23702,22.25692],[114.23703,22.25692],[114.23706,22.25694],[114.23708,22.25695],[114.23712,22.25699],[114.23723,22.25712],[114.23727,22.25716],[114.23732,22.2572],[114.23737,22.25723],[114.23741,22.25724],[114.23745,22.25725],[114.23749,22.25725],[114.23752,22.25725],[114.23756,22.25723],[114.23759,22.25722],[114.23764,22.25718],[114.23797,22.2568],[114.23801,22.25677],[114.23806,22.25674],[114.23815,22.25671],[114.2382,22.25668],[114.23823,22.25666],[114.23827,22.2566],[114.2383,22.25657],[114.23832,22.25655],[114.23872,22.25627],[114.23875,22.25626],[114.23879,22.25625],[114.23891,22.25624],[114.23904,22.2562],[114.23907,22.25619],[114.23909,22.25619],[114.23913,22.2562],[114.23928,22.25624],[114.23936,22.25627],[114.2394,22.25628],[114.23943,22.25629],[114.23949,22.25629],[114.23955,22.25628],[114.2396,22.25627],[114.23965,22.25625],[114.23976,22.25621],[114.24013,22.25607],[114.24038,22.25598],[114.2405,22.25593],[114.24074,22.25586],[114.24091,22.25582],[114.2411,22.25576],[114.24116,22.25574],[114.24124,22.2557],[114.24142,22.25561],[114.24146,22.2556],[114.2415,22.25561],[114.24158,22.25564],[114.24161,22.25565],[114.24164,22.25566],[114.24166,22.25566],[114.2417,22.25565],[114.24194,22.2556],[114.24201,22.2556],[114.24206,22.2556],[114.2421,22.2556],[114.24215,22.25559],[114.24229,22.25554],[114.24233,22.25553],[114.24236,22.25551],[114.2424,22.25547],[114.24249,22.2554],[114.2425,22.2554],[114.24254,22.25539],[114.2426,22.2554],[114.24262,22.2554],[114.24264,22.2554],[114.24265,22.25539],[114.24268,22.25537],[114.24273,22.25529],[114.24274,22.25527],[114.24274,22.25525],[114.24273,22.25523],[114.24272,22.25522],[114.2427,22.25521],[114.24266,22.25519],[114.24263,22.25516],[114.24261,22.25512],[114.24261,22.2551],[114.24264,22.25503],[114.24269,22.25494],[114.24271,22.2549],[114.24271,22.25487],[114.2427,22.25484],[114.2427,22.25481],[114.24271,22.25479],[114.24276,22.25472],[114.2429,22.25452],[114.24292,22.25451],[114.24295,22.2545],[114.24297,22.25449],[114.24304,22.25448],[114.24308,22.25446],[114.24315,22.25439],[114.24338,22.25415],[114.24344,22.25412],[114.24348,22.25411],[114.2435,22.25411],[114.24359,22.25412],[114.24362,22.25413],[114.24364,22.25413],[114.24367,22.25411],[114.24371,22.25406],[114.24374,22.25403],[114.24386,22.25398],[114.24388,22.25398],[114.24394,22.25397],[114.24396,22.25396],[114.24398,22.25393],[114.24399,22.25386],[114.244,22.25377],[114.24403,22.2537],[114.24407,22.25365],[114.24413,22.25362],[114.24424,22.25361],[114.24434,22.25358],[114.24438,22.25356],[114.24444,22.25351],[114.24448,22.2535],[114.24452,22.2535],[114.24457,22.25351],[114.24469,22.25356],[114.2448,22.25361],[114.24486,22.25363],[114.24491,22.25363],[114.24514,22.25363],[114.24516,22.25363],[114.24519,22.25361],[114.24525,22.25355],[114.24528,22.25352],[114.24531,22.2535],[114.24533,22.2535],[114.24536,22.25349],[114.24548,22.25348],[114.24551,22.25348],[114.24562,22.25352],[114.24564,22.25352],[114.24566,22.25351],[114.24574,22.25342],[114.24579,22.25341],[114.24608,22.25339],[114.24628,22.25338],[114.24635,22.25336],[114.24651,22.25332],[114.24655,22.25332],[114.24663,22.25335],[114.24667,22.25338],[114.24674,22.25346],[114.24676,22.25348],[114.24678,22.25348],[114.24681,22.25347],[114.24683,22.25346],[114.24687,22.25339],[114.24691,22.25335],[114.24694,22.25334],[114.24696,22.25333],[114.24714,22.25334],[114.24728,22.25334],[114.24733,22.25335],[114.2474,22.25339],[114.24745,22.2534],[114.24747,22.25336],[114.24867,22.25007],[114.2499,22.24669],[114.24992,22.24674],[114.24992,22.24676],[114.24992,22.24678],[114.24992,22.24678],[114.24992,22.24678],[114.24993,22.2468],[114.24993,22.2468],[114.24993,22.2468],[114.24993,22.24681],[114.24994,22.24681]]]},"properties":{"M_NM_Eng":"Metro","SR_Eng":"Metro","PDD_Cat_En":"Hong Kong Island","PDD_Eng":"Eastern","M_NM_Tc":"都會區","SR_Tc":"都會區","PDD_Cat_Tc":"香港島","PDD_Tc":"東區","M_NM_Sc":"都会区","SR_Sc_1":"都会区","PDD_Cat_Sc":"香港岛","PDD_Sc":"东区","Y2019_Popu":568150,"Y2019_Empl":331300,"Y2026_Popu":533100,"Y2026_Empl":324900,"Y2031_Popu":506050,"Y2031_Empl":317250}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[114.12519,22.51819],[114.12512,22.5183],[114.12495,22.51823],[114.1248,22.51818],[114.12475,22.51816],[114.1247,22.51814],[114.12462,22.51812],[114.12458,22.5181],[114.12452,22.51809],[114.12447,22.51808],[114.12441,22.51807],[114.12438,22.51807],[114.12432,22.51807],[114.12415,22.51805],[114.1241,22.51805],[114.12394,22.51803],[114.12389,22.51803],[114.12385,22.51803],[114.1238,22.51802],[114.12376,22.51802],[114.12371,22.51801],[114.12366,22.51801],[114.12359,22.51801],[114.12354,22.518],[114.12351,22.518],[114.12346,22.51799],[114.12338,22.51799],[114.12334,22.51799],[114.12324,22.51798],[114.12314,22.51798],[114.12306,22.51798],[114.12298,22.51799],[114.12285,22.51799],[114.12275,22.51798],[114.12272,22.51798],[114.12268,22.51797],[114.12263,22.51797],[114.12256,22.51795],[114.12251,22.51793],[114.12246,22.51791],[114.12242,22.51789],[114.12239,22.51786],[114.12235,22.51784],[114.12232,22.51781],[114.12228,22.51778],[114.12224,22.51774],[114.12222,22.51771],[114.1222,22.51768],[114.12216,22.51762],[114.12215,22.5176],[114.12214,22.51757],[114.12213,22.51754],[114.12211,22.51751],[114.1221,22.51748],[114.12209,22.51743],[114.12208,22.51738],[114.12207,22.51733],[114.12207,22.51729],[114.12205,22.51713],[114.12204,22.51705],[114.12203,22.51702],[114.12202,22.51697],[114.12201,22.51693],[114.12199,22.51686],[114.12197,22.51681],[114.12196,22.51677],[114.12193,22.51669],[114.12192,22.51666],[114.12188,22.51653],[114.12186,22.51649],[114.12182,22.51638],[114.12181,22.51635],[114.1218,22.51632],[114.12178,22.51629],[114.12177,22.51627],[114.12176,22.51625],[114.12175,22.51624],[114.12173,22.51622],[114.12172,22.5162],[114.12169,22.51617],[114.12165,22.51614],[114.12163,22.51612],[114.12158,22.51609],[114.12155,22.51607],[114.12152,22.51606],[114.12142,22.51604],[114.12138,22.51603],[114.12134,22.51603],[114.12128,22.51602],[114.12123,22.51602],[114.12117,22.51601],[114.12104,22.516],[114.12093,22.516],[114.12085,22.51599],[114.12078,22.51599],[114.1207,22.51598],[114.12057,22.51597],[114.1205,22.51597],[114.12039,22.51596],[114.12027,22.51596],[114.12015,22.51596],[114.12007,22.51596],[114.12002,22.51596],[114.11991,22.51597],[114.11984,22.51598],[114.11979,22.51599],[114.11967,22.516],[114.11962,22.51601],[114.1196,22.51602],[114.11951,22.51603],[114.11945,22.51605],[114.11936,22.51607],[114.11929,22.51609],[114.11923,22.5161],[114.11917,22.51611],[114.1189,22.51618],[114.11883,22.51619],[114.11875,22.51621],[114.11866,22.51623],[114.11857,22.51625],[114.11849,22.51627],[114.11842,22.51629],[114.11838,22.5163],[114.11831,22.51631],[114.11823,22.51632],[114.1182,22.51633],[114.11794,22.51638],[114.11776,22.51642],[114.11762,22.51647],[114.11743,22.51655],[114.11727,22.51661],[114.11705,22.5167],[114.11697,22.51675],[114.11687,22.51681],[114.11682,22.51685],[114.11679,22.51688],[114.1167,22.51696],[114.11663,22.51701],[114.11648,22.5171],[114.11643,22.51712],[114.11635,22.51657],[114.11626,22.51658],[114.11625,22.51658],[114.11621,22.51659],[114.11601,22.51662],[114.11609,22.51735],[114.11611,22.51747],[114.11611,22.51748],[114.11598,22.51751],[114.11592,22.51752],[114.11587,22.51753],[114.11578,22.51754],[114.11574,22.51755],[114.11564,22.51757],[114.11556,22.51759],[114.11549,22.51762],[114.11542,22.51764],[114.11536,22.51766],[114.11522,22.51772],[114.11517,22.51774],[114.11512,22.51776],[114.1151,22.51777],[114.11508,22.51778],[114.11504,22.5178],[114.115,22.51782],[114.11495,22.51784],[114.1149,22.51788],[114.11486,22.5179],[114.11477,22.51795],[114.11469,22.51772],[114.11467,22.51766],[114.11465,22.5176],[114.11463,22.51753],[114.11461,22.51746],[114.1146,22.5174],[114.11458,22.51734],[114.11457,22.51729],[114.11457,22.51724],[114.11456,22.51719],[114.11456,22.51715],[114.11456,22.51711],[114.11456,22.51707],[114.11457,22.51693],[114.11457,22.51688],[114.11458,22.51682],[114.11462,22.51664],[114.11463,22.51659],[114.11464,22.51654],[114.11466,22.51649],[114.11468,22.51643],[114.1147,22.51636],[114.11473,22.5163],[114.11476,22.51623],[114.11479,22.51616],[114.11483,22.51608],[114.11486,22.51602],[114.11489,22.51596],[114.11492,22.5159],[114.11504,22.51571],[114.11508,22.51564],[114.11506,22.51534],[114.11505,22.51502],[114.11505,22.51492],[114.11505,22.51483],[114.11505,22.51475],[114.11506,22.51467],[114.11506,22.51456],[114.11507,22.51442],[114.11508,22.51433],[114.11508,22.51425],[114.11513,22.51387],[114.11515,22.5137],[114.11517,22.51353],[114.1152,22.51334],[114.11521,22.51331],[114.11525,22.51304],[114.11526,22.51298],[114.11526,22.51296],[114.11526,22.51294],[114.11526,22.51293],[114.11526,22.51291],[114.11526,22.5129],[114.11525,22.51288],[114.11524,22.51287],[114.11523,22.51286],[114.11522,22.51285],[114.1152,22.51283],[114.11518,22.51282],[114.11516,22.5128],[114.11515,22.51279],[114.1151,22.51277],[114.11512,22.51257],[114.11514,22.51238],[114.11522,22.51236],[114.11525,22.51235],[114.11529,22.51233],[114.11531,22.51232],[114.11534,22.5123],[114.1154,22.51226],[114.11541,22.51225],[114.11542,22.51225],[114.11543,22.51223],[114.11544,22.5122],[114.11546,22.51217],[114.11554,22.51194],[114.11569,22.51152],[114.11575,22.51138],[114.11577,22.51131],[114.1158,22.51125],[114.11584,22.51117],[114.11598,22.51088],[114.11614,22.51057],[114.11619,22.51048],[114.11623,22.51041],[114.11629,22.5103],[114.11636,22.51019],[114.11643,22.51007],[114.1165,22.50996],[114.11657,22.50985],[114.11665,22.50974],[114.11672,22.50963],[114.1168,22.50952],[114.11685,22.50945],[114.11691,22.50936],[114.11701,22.50924],[114.11716,22.50904],[114.11738,22.50879],[114.11749,22.50867],[114.11761,22.50854],[114.11785,22.5083],[114.11785,22.50829],[114.11789,22.50759],[114.11791,22.5074],[114.11793,22.50728],[114.11793,22.50722],[114.11794,22.50717],[114.11795,22.50711],[114.11798,22.50703],[114.11798,22.50701],[114.118,22.50693],[114.11802,22.50689],[114.11803,22.50684],[114.11804,22.50681],[114.11809,22.50668],[114.11814,22.50656],[114.11816,22.50651],[114.11819,22.50646],[114.11821,22.50641],[114.11828,22.5063],[114.11829,22.50628],[114.11835,22.5062],[114.11837,22.50617],[114.11844,22.50607],[114.11843,22.50599],[114.11842,22.50591],[114.1184,22.50582],[114.11838,22.50578],[114.11832,22.50566],[114.11827,22.50558],[114.11823,22.50554],[114.1182,22.5055],[114.11817,22.50547],[114.11813,22.50543],[114.11809,22.5054],[114.11804,22.50537],[114.11799,22.50533],[114.11794,22.50531],[114.11789,22.50528],[114.11783,22.50525],[114.11778,22.50523],[114.11717,22.50498],[114.11713,22.50496],[114.11708,22.50493],[114.11704,22.50491],[114.117,22.50488],[114.11696,22.50485],[114.11692,22.50482],[114.11688,22.50478],[114.11684,22.50474],[114.11681,22.5047],[114.11678,22.50466],[114.11675,22.50462],[114.11672,22.50458],[114.1167,22.50453],[114.11668,22.50449],[114.11666,22.50444],[114.11664,22.50439],[114.11663,22.50434],[114.11662,22.50429],[114.11661,22.50424],[114.11661,22.50419],[114.11661,22.50414],[114.11661,22.50409],[114.11662,22.50404],[114.11663,22.504],[114.11664,22.50396],[114.11665,22.50391],[114.11666,22.50387],[114.11668,22.50383],[114.1167,22.50378],[114.11672,22.50374],[114.11675,22.5037],[114.11676,22.50368],[114.11678,22.50365],[114.1168,22.50363],[114.11683,22.50358],[114.11686,22.50353],[114.11689,22.50348],[114.11692,22.50343],[114.11694,22.50337],[114.11696,22.50332],[114.11698,22.50326],[114.11698,22.50322],[114.11699,22.50318],[114.11699,22.50318],[114.11699,22.50314],[114.11699,22.5031],[114.11698,22.50306],[114.11697,22.50302],[114.11695,22.50296],[114.11693,22.5029],[114.1169,22.50284],[114.11687,22.50278],[114.11683,22.50272],[114.11679,22.50265],[114.11679,22.50264],[114.11678,22.50263],[114.11671,22.50255],[114.1167,22.50254],[114.11668,22.5025],[114.11656,22.50234],[114.11655,22.50233],[114.11654,22.50232],[114.11638,22.50218],[114.1162,22.50203],[114.11631,22.50195],[114.11632,22.50194],[114.11643,22.50185],[114.11661,22.50172],[114.11702,22.50141],[114.11707,22.50137],[114.11716,22.5013],[114.11733,22.50116],[114.11742,22.50109],[114.11776,22.50083],[114.11804,22.5006],[114.11808,22.50056],[114.11813,22.50052],[114.11823,22.50045],[114.11829,22.50041],[114.11834,22.50038],[114.11841,22.50034],[114.11847,22.50031],[114.11852,22.50028],[114.11858,22.50026],[114.11863,22.50024],[114.11868,22.50022],[114.11872,22.5002],[114.11876,22.50019],[114.11883,22.50017],[114.11887,22.50017],[114.1189,22.50016],[114.11898,22.50014],[114.11905,22.50013],[114.11912,22.50013],[114.11919,22.50012],[114.11925,22.50012],[114.11929,22.50012],[114.11936,22.50012],[114.11943,22.50012],[114.1195,22.50013],[114.11954,22.50013],[114.11959,22.50014],[114.11965,22.50015],[114.11971,22.50016],[114.11976,22.50017],[114.12004,22.50024],[114.12006,22.50025],[114.12043,22.50034],[114.12061,22.50038],[114.12064,22.50037],[114.12069,22.50037],[114.12074,22.50037],[114.12079,22.50036],[114.12091,22.50034],[114.12096,22.50032],[114.12101,22.50031],[114.12106,22.50029],[114.1211,22.50028],[114.12116,22.50026],[114.12125,22.50022],[114.12142,22.50012],[114.12167,22.49998],[114.12178,22.49991],[114.12192,22.49982],[114.12207,22.49974],[114.12215,22.49969],[114.12222,22.49964],[114.12231,22.4996],[114.12248,22.49953],[114.12252,22.49951],[114.12256,22.49948],[114.12264,22.49942],[114.12271,22.49936],[114.12283,22.49929],[114.12288,22.49926],[114.12288,22.49925],[114.1229,22.49925],[114.12291,22.49925],[114.12293,22.49924],[114.12294,22.49925],[114.12296,22.49925],[114.12298,22.49925],[114.12299,22.49926],[114.123,22.49927],[114.12302,22.49928],[114.12303,22.49929],[114.12303,22.49929],[114.12293,22.49903],[114.12292,22.49899],[114.1229,22.49894],[114.12289,22.49889],[114.12288,22.49884],[114.12287,22.4988],[114.12287,22.49879],[114.12282,22.49864],[114.12282,22.49858],[114.12281,22.49851],[114.12282,22.49834],[114.12281,22.49829],[114.1228,22.4982],[114.12277,22.49804],[114.12276,22.49796],[114.12275,22.49786],[114.12275,22.49782],[114.12274,22.49778],[114.12273,22.49773],[114.12272,22.49769],[114.12272,22.49765],[114.12271,22.49761],[114.1227,22.49757],[114.12268,22.49753],[114.12267,22.49749],[114.12265,22.49744],[114.12263,22.4974],[114.12261,22.49736],[114.12259,22.49733],[114.12256,22.49729],[114.12254,22.49725],[114.12251,22.49722],[114.12248,22.49717],[114.12244,22.49712],[114.12243,22.49711],[114.12241,22.49708],[114.12237,22.49704],[114.12233,22.49699],[114.12231,22.49696],[114.12228,22.49693],[114.12223,22.49688],[114.12218,22.49683],[114.12215,22.49679],[114.12212,22.49676],[114.12197,22.49658],[114.12195,22.49656],[114.12203,22.49649],[114.12209,22.49656],[114.12218,22.49658],[114.1222,22.49658],[114.12223,22.49658],[114.12228,22.49658],[114.12232,22.49658],[114.12233,22.49658],[114.12234,22.49657],[114.12235,22.49657],[114.12236,22.49656],[114.12237,22.49656],[114.12238,22.49655],[114.12239,22.49654],[114.1224,22.49653],[114.12247,22.49645],[114.12258,22.49632],[114.12269,22.49615],[114.12277,22.49605],[114.12284,22.496],[114.12285,22.49599],[114.12309,22.49571],[114.12309,22.49571],[114.12304,22.49561],[114.12303,22.49558],[114.12302,22.49555],[114.123,22.49549],[114.12298,22.49544],[114.12297,22.49539],[114.12295,22.49532],[114.12294,22.49528],[114.12293,22.49524],[114.12292,22.49519],[114.12291,22.49515],[114.1229,22.49507],[114.1229,22.49503],[114.1229,22.49498],[114.12289,22.49494],[114.1229,22.4949],[114.1229,22.49489],[114.1229,22.49486],[114.12291,22.49484],[114.12293,22.49476],[114.12297,22.49459],[114.12299,22.49451],[114.123,22.49444],[114.12302,22.49438],[114.12308,22.49416],[114.12313,22.49406],[114.12335,22.49354],[114.12357,22.49314],[114.12365,22.49286],[114.124,22.49232],[114.12416,22.49242],[114.12418,22.49243],[114.12437,22.49253],[114.12452,22.4926],[114.12462,22.49263],[114.1247,22.49265],[114.12478,22.49266],[114.12483,22.49266],[114.12504,22.49265],[114.12559,22.49267],[114.12576,22.49269],[114.12666,22.49261],[114.12688,22.4926],[114.12711,22.49261],[114.12734,22.49264],[114.1275,22.49269],[114.12765,22.49276],[114.12782,22.49287],[114.12791,22.49294],[114.128,22.49301],[114.12806,22.49307],[114.12807,22.49309],[114.12815,22.49319],[114.12821,22.49327],[114.12827,22.49339],[114.12852,22.49393],[114.12855,22.494],[114.12884,22.49386],[114.12885,22.49386],[114.12888,22.49385],[114.12889,22.49384],[114.12891,22.49383],[114.12892,22.49383],[114.12894,22.49382],[114.12896,22.49382],[114.12898,22.49381],[114.12898,22.49381],[114.129,22.49381],[114.12902,22.49381],[114.12905,22.49381],[114.12907,22.49381],[114.12909,22.49381],[114.1291,22.49381],[114.1291,22.49381],[114.12912,22.49381],[114.12913,22.49379],[114.12914,22.49377],[114.12915,22.49375],[114.12916,22.49372],[114.12919,22.49373],[114.12922,22.49373],[114.12926,22.49374],[114.12929,22.49375],[114.12933,22.49376],[114.12937,22.49377],[114.1294,22.49377],[114.12944,22.49378],[114.12947,22.49379],[114.1295,22.49379],[114.1295,22.49378],[114.12951,22.49377],[114.12953,22.49374],[114.12956,22.49376],[114.12961,22.49377],[114.12966,22.49379],[114.12971,22.49381],[114.12977,22.49384],[114.12981,22.49385],[114.12985,22.49387],[114.12989,22.49388],[114.12994,22.49391],[114.12999,22.49392],[114.13004,22.49394],[114.13007,22.49396],[114.1301,22.49397],[114.13019,22.49383],[114.13033,22.49362],[114.13055,22.49373],[114.13084,22.49326],[114.13081,22.49323],[114.13078,22.49321],[114.13072,22.49317],[114.13072,22.49316],[114.13066,22.49286],[114.13064,22.49281],[114.13062,22.4927],[114.1306,22.49263],[114.13059,22.49258],[114.13059,22.49257],[114.13059,22.49254],[114.13059,22.49253],[114.13058,22.49251],[114.13057,22.49249],[114.13057,22.49248],[114.13057,22.49245],[114.13057,22.49243],[114.13057,22.49242],[114.13058,22.49238],[114.13059,22.49235],[114.1306,22.49231],[114.13061,22.49227],[114.13061,22.49223],[114.13061,22.49222],[114.13062,22.49218],[114.13062,22.49218],[114.13062,22.49216],[114.13063,22.49213],[114.13063,22.4921],[114.13064,22.49207],[114.13065,22.49203],[114.13068,22.49188],[114.13068,22.49186],[114.1307,22.49185],[114.13071,22.49183],[114.13073,22.49181],[114.13075,22.49178],[114.13078,22.49175],[114.1308,22.49171],[114.13087,22.49165],[114.13091,22.49161],[114.13091,22.49161],[114.13097,22.49154],[114.13101,22.4915],[114.13104,22.49148],[114.13106,22.49146],[114.13108,22.49144],[114.13111,22.49143],[114.13113,22.49141],[114.13116,22.4914],[114.13118,22.49138],[114.1312,22.49136],[114.13122,22.49134],[114.13123,22.49133],[114.13124,22.49132],[114.13126,22.49131],[114.13127,22.4913],[114.13128,22.4913],[114.13131,22.49129],[114.13138,22.49126],[114.13139,22.49126],[114.13139,22.49126],[114.13141,22.49126],[114.13141,22.49126],[114.13142,22.49125],[114.13142,22.49125],[114.13145,22.49125],[114.13154,22.49123],[114.13158,22.49122],[114.13162,22.49122],[114.13166,22.49122],[114.13167,22.49122],[114.13188,22.49047],[114.13195,22.49048],[114.13202,22.49048],[114.13207,22.49048],[114.13212,22.49047],[114.13219,22.49047],[114.13225,22.49047],[114.13237,22.4905],[114.13259,22.49055],[114.13301,22.49068],[114.13315,22.49075],[114.13324,22.4908],[114.13329,22.49083],[114.13332,22.49082],[114.13333,22.49082],[114.13336,22.49082],[114.13336,22.49082],[114.13336,22.49081],[114.13336,22.49081],[114.13337,22.4908],[114.13337,22.4908],[114.13339,22.4908],[114.13345,22.4908],[114.1335,22.4908],[114.13354,22.4908],[114.13358,22.49079],[114.13363,22.49079],[114.13365,22.49078],[114.13367,22.49078],[114.13368,22.49077],[114.13371,22.49077],[114.13373,22.49076],[114.13375,22.49075],[114.13376,22.49075],[114.13379,22.49074],[114.13382,22.49072],[114.13384,22.49071],[114.13386,22.4907],[114.13388,22.49069],[114.13389,22.49067],[114.13391,22.49066],[114.13393,22.49065],[114.13397,22.49061],[114.134,22.49058],[114.13417,22.4904],[114.13418,22.49038],[114.13419,22.49036],[114.13421,22.49031],[114.13422,22.49028],[114.13423,22.49027],[114.13424,22.49026],[114.13425,22.49023],[114.13427,22.49022],[114.13428,22.49019],[114.1343,22.49017],[114.13433,22.49014],[114.13435,22.49012],[114.13438,22.4901],[114.1344,22.49008],[114.13446,22.49004],[114.13449,22.49001],[114.13451,22.49001],[114.13452,22.49],[114.13454,22.48999],[114.13455,22.48998],[114.13457,22.48997],[114.13459,22.48997],[114.13464,22.48996],[114.13466,22.48995],[114.13468,22.48995],[114.13472,22.48995],[114.13481,22.48995],[114.13485,22.48995],[114.13489,22.48995],[114.13493,22.48996],[114.13496,22.48996],[114.13498,22.48996],[114.13502,22.48997],[114.13556,22.4894],[114.13577,22.48912],[114.13582,22.48905],[114.13586,22.489],[114.13587,22.48898],[114.13593,22.48889],[114.13598,22.48881],[114.13603,22.48871],[114.13608,22.48862],[114.13611,22.48855],[114.13615,22.48848],[114.13618,22.48839],[114.13621,22.4883],[114.13623,22.48824],[114.13626,22.48816],[114.13634,22.48787],[114.13636,22.48768],[114.13636,22.48761],[114.13637,22.48755],[114.13637,22.48746],[114.13637,22.48733],[114.13636,22.4872],[114.13635,22.48706],[114.13634,22.48693],[114.13633,22.48683],[114.13632,22.48674],[114.1363,22.48664],[114.13629,22.48657],[114.13627,22.48649],[114.13622,22.4863],[114.13613,22.48597],[114.13613,22.48591],[114.1361,22.48575],[114.1361,22.48567],[114.13609,22.48562],[114.13609,22.48557],[114.13609,22.48552],[114.13609,22.48548],[114.1361,22.48543],[114.1361,22.48538],[114.13611,22.48533],[114.13612,22.48528],[114.13613,22.48523],[114.13615,22.48518],[114.13617,22.48512],[114.13619,22.48506],[114.13622,22.48497],[114.13625,22.48491],[114.13628,22.48484],[114.13631,22.48476],[114.1364,22.48457],[114.13644,22.48447],[114.13656,22.48424],[114.13661,22.48413],[114.13663,22.48407],[114.13668,22.48394],[114.13668,22.4839],[114.13669,22.48382],[114.1367,22.48378],[114.1367,22.48374],[114.13669,22.48371],[114.13669,22.48369],[114.13669,22.48367],[114.13668,22.48365],[114.13667,22.48363],[114.13666,22.4836],[114.13665,22.48358],[114.13663,22.48353],[114.1366,22.48348],[114.13657,22.48343],[114.1365,22.48332],[114.13644,22.48323],[114.13618,22.48284],[114.13598,22.48255],[114.1359,22.48243],[114.13585,22.48235],[114.1358,22.48227],[114.13563,22.48197],[114.13554,22.4818],[114.13549,22.4817],[114.13543,22.48157],[114.13539,22.48142],[114.13537,22.4813],[114.13537,22.48121],[114.13536,22.48098],[114.13538,22.48076],[114.13539,22.48066],[114.1354,22.4806],[114.13542,22.48036],[114.13548,22.48007],[114.13553,22.48008],[114.13557,22.48009],[114.13562,22.48011],[114.13568,22.48013],[114.13575,22.48016],[114.1358,22.48019],[114.13585,22.48023],[114.13599,22.48034],[114.13606,22.48039],[114.13611,22.48043],[114.13615,22.48046],[114.13619,22.48049],[114.1363,22.48061],[114.13651,22.48086],[114.13654,22.4809],[114.13657,22.48093],[114.13657,22.48093],[114.13709,22.48042],[114.13733,22.48055],[114.13744,22.48061],[114.13756,22.48066],[114.1377,22.48071],[114.13774,22.48072],[114.13781,22.48074],[114.13787,22.48075],[114.1379,22.48076],[114.13794,22.48076],[114.13807,22.48078],[114.13811,22.48088],[114.13812,22.4809],[114.13813,22.48093],[114.13815,22.48097],[114.13817,22.48101],[114.13819,22.48103],[114.13821,22.48106],[114.13822,22.48108],[114.13824,22.48109],[114.13826,22.48111],[114.13828,22.48112],[114.1383,22.48113],[114.13832,22.48115],[114.13835,22.48116],[114.1384,22.48118],[114.13843,22.48119],[114.13846,22.4812],[114.13848,22.48121],[114.1385,22.48121],[114.13852,22.48122],[114.13854,22.48122],[114.13856,22.48122],[114.13859,22.48122],[114.13863,22.48122],[114.13867,22.48121],[114.13884,22.4812],[114.13889,22.48119],[114.13901,22.48117],[114.13909,22.48119],[114.13914,22.48121],[114.13915,22.48122],[114.13917,22.48123],[114.13919,22.48123],[114.13921,22.48123],[114.13924,22.48123],[114.13929,22.48122],[114.13932,22.48122],[114.13936,22.48122],[114.13942,22.48121],[114.13947,22.4812],[114.13951,22.48118],[114.13955,22.48117],[114.13959,22.48115],[114.13962,22.48114],[114.13965,22.48112],[114.13975,22.48107],[114.13979,22.48105],[114.13982,22.48103],[114.13985,22.48102],[114.13987,22.48101],[114.13989,22.48101],[114.13997,22.48099],[114.14,22.48098],[114.14003,22.48097],[114.14006,22.48095],[114.14009,22.48093],[114.14012,22.48091],[114.14015,22.48089],[114.14018,22.48087],[114.1402,22.48085],[114.14022,22.48083],[114.14024,22.48081],[114.14026,22.48078],[114.14028,22.48075],[114.1403,22.48071],[114.14032,22.48067],[114.14035,22.48062],[114.14036,22.48059],[114.14037,22.48056],[114.14042,22.48043],[114.14045,22.48029],[114.14047,22.48021],[114.14047,22.48019],[114.14048,22.48017],[114.14048,22.48011],[114.14048,22.48009],[114.14048,22.48007],[114.14049,22.48006],[114.14049,22.48005],[114.1405,22.48004],[114.14051,22.48003],[114.14053,22.48001],[114.14054,22.48],[114.14055,22.47999],[114.14057,22.47999],[114.14058,22.47998],[114.1406,22.47998],[114.1406,22.47997],[114.14064,22.47997],[114.14068,22.47997],[114.14071,22.47997],[114.14073,22.47997],[114.14075,22.47997],[114.14077,22.47998],[114.14083,22.47999],[114.14088,22.48001],[114.14094,22.48004],[114.141,22.48007],[114.14106,22.4801],[114.14112,22.48013],[114.14117,22.48016],[114.14122,22.4802],[114.14128,22.48024],[114.14135,22.48029],[114.14139,22.48032],[114.14143,22.48035],[114.14161,22.4805],[114.14176,22.48048],[114.14183,22.48047],[114.14186,22.48047],[114.14189,22.48047],[114.14192,22.48047],[114.14195,22.48047],[114.14198,22.48048],[114.142,22.48048],[114.14202,22.48048],[114.14204,22.48049],[114.14206,22.4805],[114.14207,22.48051],[114.14209,22.48052],[114.14211,22.48054],[114.14211,22.48055],[114.14212,22.48056],[114.14213,22.48058],[114.14213,22.4806],[114.14214,22.48063],[114.14214,22.4807],[114.14217,22.4808],[114.14218,22.48085],[114.14219,22.48089],[114.1422,22.48093],[114.14221,22.48097],[114.14222,22.481],[114.14224,22.48103],[114.14225,22.48107],[114.14226,22.4811],[114.14228,22.48113],[114.14232,22.48118],[114.14233,22.48121],[114.14234,22.48123],[114.14235,22.48125],[114.14236,22.48127],[114.14236,22.48129],[114.14238,22.48138],[114.14239,22.48147],[114.14244,22.48156],[114.14245,22.48159],[114.14246,22.48161],[114.14248,22.48164],[114.1425,22.48166],[114.14252,22.48168],[114.14254,22.48169],[114.14255,22.4817],[114.14256,22.48171],[114.14258,22.48172],[114.14259,22.48173],[114.1426,22.48174],[114.14263,22.48175],[114.1427,22.48177],[114.14276,22.48178],[114.14278,22.48179],[114.1428,22.48179],[114.14282,22.48179],[114.14285,22.48179],[114.14289,22.48178],[114.14292,22.48178],[114.14298,22.48177],[114.14305,22.48176],[114.1431,22.48174],[114.14325,22.4817],[114.14329,22.48169],[114.14335,22.48168],[114.14338,22.48167],[114.14344,22.48167],[114.14345,22.48167],[114.14347,22.48167],[114.14348,22.48167],[114.14351,22.48167],[114.14357,22.48169],[114.14361,22.48169],[114.14365,22.4817],[114.14367,22.4817],[114.14369,22.4817],[114.14372,22.4817],[114.14377,22.4817],[114.14381,22.4817],[114.14384,22.4817],[114.14391,22.48169],[114.14397,22.48168],[114.14401,22.48166],[114.14404,22.48166],[114.14405,22.48165],[114.14428,22.48176],[114.1443,22.48175],[114.14433,22.48173],[114.14437,22.48172],[114.14441,22.4817],[114.14448,22.48167],[114.14452,22.48165],[114.14458,22.48163],[114.14461,22.48162],[114.14464,22.48161],[114.14468,22.48161],[114.14484,22.48157],[114.14491,22.48156],[114.145,22.48155],[114.14516,22.48155],[114.14522,22.48155],[114.14544,22.48157],[114.14553,22.48159],[114.14562,22.48161],[114.14603,22.4817],[114.14592,22.48221],[114.14571,22.48308],[114.14566,22.48341],[114.14564,22.48348],[114.14568,22.48347],[114.14576,22.48344],[114.14579,22.48346],[114.14587,22.48351],[114.14589,22.48361],[114.1459,22.48359],[114.1459,22.48357],[114.1459,22.48355],[114.1459,22.48354],[114.14593,22.48347],[114.14595,22.48345],[114.14597,22.48343],[114.14599,22.48341],[114.146,22.48338],[114.14602,22.48336],[114.14603,22.48334],[114.14606,22.48328],[114.14607,22.48325],[114.14607,22.48324],[114.14608,22.48321],[114.14609,22.48318],[114.14612,22.48307],[114.14612,22.48304],[114.14613,22.48302],[114.14613,22.48298],[114.14614,22.48296],[114.14615,22.48293],[114.14616,22.48291],[114.14617,22.48289],[114.14618,22.48288],[114.14619,22.48287],[114.14619,22.48286],[114.14623,22.48282],[114.14624,22.48281],[114.14626,22.48279],[114.14629,22.48276],[114.14632,22.48273],[114.14634,22.48271],[114.14636,22.48268],[114.14639,22.48265],[114.14643,22.48261],[114.14644,22.48259],[114.14646,22.48258],[114.14648,22.48256],[114.14649,22.48255],[114.14653,22.48252],[114.14654,22.48251],[114.14657,22.4825],[114.14658,22.48249],[114.14659,22.48247],[114.14661,22.48246],[114.14667,22.48241],[114.14672,22.48242],[114.14685,22.4822],[114.14688,22.48217],[114.14692,22.48214],[114.14725,22.48204],[114.14744,22.48202],[114.14758,22.482],[114.14776,22.48196],[114.14787,22.48196],[114.14788,22.48196],[114.1479,22.48196],[114.14792,22.48196],[114.14794,22.48197],[114.14797,22.48198],[114.148,22.48199],[114.14803,22.482],[114.14807,22.48202],[114.14808,22.48203],[114.1481,22.48205],[114.14811,22.48207],[114.14813,22.48209],[114.14814,22.48212],[114.14815,22.48214],[114.14816,22.48217],[114.14816,22.48218],[114.14817,22.48223],[114.14817,22.48225],[114.14818,22.48227],[114.14819,22.4823],[114.14821,22.48232],[114.14822,22.48234],[114.14824,22.48236],[114.14829,22.48241],[114.14835,22.48247],[114.14838,22.4825],[114.1484,22.48253],[114.14842,22.48255],[114.14842,22.48257],[114.14843,22.48258],[114.14843,22.4826],[114.14844,22.48265],[114.14845,22.48266],[114.14845,22.48268],[114.14846,22.48272],[114.14846,22.48273],[114.14846,22.48275],[114.14845,22.48277],[114.14844,22.48279],[114.14843,22.48281],[114.14836,22.48296],[114.14834,22.48299],[114.14833,22.48302],[114.14831,22.48305],[114.14831,22.48307],[114.1483,22.48309],[114.1483,22.48311],[114.1483,22.48314],[114.1483,22.48316],[114.1483,22.48318],[114.14831,22.48319],[114.14831,22.48321],[114.14832,22.48323],[114.14833,22.48324],[114.14835,22.48326],[114.14836,22.48327],[114.14838,22.48328],[114.14839,22.48329],[114.14841,22.48329],[114.14843,22.4833],[114.14845,22.4833],[114.14846,22.4833],[114.14848,22.48329],[114.14849,22.48329],[114.14851,22.48328],[114.14852,22.48327],[114.14861,22.48323],[114.14863,22.48322],[114.14868,22.48318],[114.1487,22.48317],[114.14872,22.48316],[114.14873,22.48315],[114.14877,22.48314],[114.14882,22.48313],[114.14888,22.48312],[114.14894,22.48311],[114.149,22.4831],[114.14902,22.4831],[114.14904,22.48311],[114.14906,22.48311],[114.14908,22.48312],[114.14911,22.48314],[114.14914,22.48316],[114.14915,22.48317],[114.14919,22.4832],[114.14919,22.4832],[114.1492,22.48321],[114.14922,22.48326],[114.14922,22.48328],[114.14922,22.48331],[114.14921,22.48345],[114.1492,22.48357],[114.1492,22.48359],[114.14921,22.48362],[114.14922,22.48364],[114.14925,22.48367],[114.14928,22.48369],[114.14951,22.48376],[114.14958,22.48378],[114.14962,22.48378],[114.14965,22.48378],[114.14967,22.48378],[114.1497,22.48378],[114.14972,22.48377],[114.14975,22.48376],[114.14977,22.48374],[114.1498,22.48372],[114.14983,22.4837],[114.14988,22.48365],[114.14991,22.4836],[114.14994,22.48355],[114.14995,22.48352],[114.14997,22.48345],[114.14999,22.48341],[114.15002,22.48336],[114.15006,22.48333],[114.1501,22.48331],[114.15015,22.48329],[114.15027,22.48329],[114.1504,22.48327],[114.15045,22.48327],[114.15048,22.48328],[114.15052,22.4833],[114.15053,22.48331],[114.15056,22.48333],[114.15058,22.48336],[114.1506,22.4834],[114.15062,22.48343],[114.15064,22.48346],[114.15066,22.48348],[114.15068,22.4835],[114.15072,22.48352],[114.15074,22.48353],[114.15076,22.48353],[114.15079,22.48353],[114.15082,22.48352],[114.15086,22.4835],[114.1509,22.48347],[114.15093,22.48344],[114.15098,22.4834],[114.151,22.4836],[114.15101,22.48368],[114.15102,22.48372],[114.15103,22.48382],[114.15104,22.48386],[114.15104,22.48387],[114.15105,22.48391],[114.15106,22.48394],[114.15106,22.48396],[114.15107,22.48398],[114.15108,22.48401],[114.15109,22.48404],[114.15111,22.48409],[114.15113,22.48413],[114.15115,22.48418],[114.15115,22.48418],[114.15117,22.48422],[114.15119,22.48427],[114.15122,22.48432],[114.15125,22.48438],[114.15127,22.48441],[114.15129,22.48444],[114.15131,22.48447],[114.15134,22.4845],[114.15137,22.48454],[114.15141,22.48458],[114.15144,22.48461],[114.15148,22.48464],[114.15151,22.48467],[114.15154,22.48469],[114.15157,22.48471],[114.1516,22.48473],[114.15165,22.48476],[114.15179,22.48482],[114.1519,22.48487],[114.15202,22.48491],[114.1521,22.48495],[114.15207,22.48498],[114.15201,22.48503],[114.15134,22.48545],[114.15119,22.48553],[114.15095,22.48567],[114.14997,22.48621],[114.14995,22.48622],[114.14962,22.48643],[114.14949,22.48651],[114.14921,22.48673],[114.14898,22.48692],[114.14896,22.48692],[114.14896,22.48693],[114.1484,22.48732],[114.1484,22.48732],[114.14833,22.48737],[114.14827,22.48743],[114.14823,22.48749],[114.14821,22.48754],[114.14818,22.48761],[114.14816,22.48772],[114.14812,22.48779],[114.1481,22.48784],[114.14806,22.48789],[114.14801,22.48792],[114.14794,22.48795],[114.14786,22.48799],[114.14762,22.48811],[114.1476,22.48819],[114.1476,22.4882],[114.14762,22.48838],[114.14763,22.48845],[114.14763,22.48848],[114.14763,22.48851],[114.14763,22.48854],[114.14763,22.48857],[114.14763,22.4886],[114.14762,22.48862],[114.14761,22.48865],[114.14759,22.48874],[114.14758,22.48879],[114.14757,22.48882],[114.14756,22.48884],[114.14755,22.48886],[114.14753,22.48889],[114.14751,22.48892],[114.14719,22.48945],[114.14717,22.48948],[114.14716,22.4895],[114.14715,22.48953],[114.14713,22.48961],[114.14712,22.48965],[114.14712,22.48968],[114.14711,22.4897],[114.1471,22.48973],[114.14708,22.48975],[114.14706,22.48979],[114.14702,22.48986],[114.147,22.48989],[114.14699,22.48992],[114.14696,22.48997],[114.14694,22.49001],[114.14693,22.49004],[114.14692,22.49006],[114.1469,22.49007],[114.1469,22.49008],[114.14689,22.49009],[114.14688,22.4901],[114.14682,22.49019],[114.1468,22.49021],[114.14678,22.49023],[114.14676,22.49025],[114.14674,22.49027],[114.14673,22.49029],[114.14672,22.49031],[114.14671,22.49033],[114.14669,22.49035],[114.14669,22.49038],[114.14668,22.49039],[114.14668,22.49041],[114.14667,22.49043],[114.14667,22.4905],[114.14667,22.49055],[114.14667,22.49057],[114.14668,22.49058],[114.14668,22.49061],[114.1467,22.49065],[114.14671,22.49066],[114.14673,22.49069],[114.14674,22.49072],[114.14674,22.49072],[114.14676,22.49074],[114.14678,22.49076],[114.14681,22.49081],[114.14683,22.49083],[114.14685,22.49085],[114.1477,22.49165],[114.14773,22.49168],[114.14776,22.49171],[114.14778,22.49174],[114.14779,22.49176],[114.1478,22.49177],[114.14781,22.4918],[114.14782,22.49181],[114.14783,22.49183],[114.14783,22.49186],[114.14784,22.49188],[114.14784,22.49191],[114.14785,22.49194],[114.14785,22.49196],[114.14785,22.49199],[114.14785,22.49202],[114.14784,22.49205],[114.14784,22.49208],[114.14783,22.4921],[114.14782,22.49213],[114.14782,22.49215],[114.14781,22.49217],[114.1478,22.4922],[114.14779,22.49222],[114.14778,22.49225],[114.14756,22.49264],[114.14754,22.49267],[114.1472,22.49329],[114.14718,22.49331],[114.14717,22.49334],[114.14715,22.49336],[114.14714,22.49338],[114.14712,22.49341],[114.1471,22.49343],[114.14708,22.49345],[114.14706,22.49347],[114.14704,22.49349],[114.14701,22.49352],[114.14697,22.49355],[114.14641,22.49403],[114.14638,22.49406],[114.14587,22.49449],[114.14585,22.4945],[114.14584,22.49452],[114.14583,22.49453],[114.14582,22.49454],[114.14581,22.49456],[114.1458,22.49458],[114.14579,22.4946],[114.14578,22.49461],[114.14577,22.49462],[114.14577,22.49464],[114.14576,22.49466],[114.14576,22.49468],[114.14575,22.4947],[114.14575,22.49472],[114.14574,22.49474],[114.14574,22.49476],[114.14573,22.49523],[114.14573,22.49525],[114.14573,22.49527],[114.14573,22.49529],[114.14574,22.49531],[114.14574,22.49533],[114.14575,22.49535],[114.14575,22.49537],[114.14576,22.49539],[114.14577,22.49541],[114.14578,22.49543],[114.14579,22.49545],[114.1458,22.49547],[114.14581,22.49548],[114.14582,22.4955],[114.14584,22.49552],[114.14586,22.49554],[114.14611,22.49578],[114.14614,22.49581],[114.14632,22.496],[114.14644,22.49611],[114.14646,22.49613],[114.14649,22.49616],[114.14652,22.49617],[114.14654,22.49619],[114.14657,22.4962],[114.1466,22.49622],[114.14663,22.49624],[114.14695,22.49639],[114.14706,22.49643],[114.14709,22.49646],[114.14713,22.49647],[114.14716,22.49649],[114.14719,22.49652],[114.14721,22.49654],[114.14723,22.49656],[114.14726,22.49659],[114.14729,22.49661],[114.14737,22.49669],[114.14741,22.49673],[114.14767,22.49698],[114.14768,22.497],[114.14769,22.49701],[114.14771,22.49703],[114.14771,22.49704],[114.14772,22.49705],[114.14773,22.49707],[114.14774,22.49709],[114.14775,22.4971],[114.14775,22.49712],[114.14776,22.49714],[114.14776,22.49715],[114.14777,22.49717],[114.14777,22.49718],[114.14777,22.49719],[114.14777,22.4972],[114.14778,22.49723],[114.14778,22.49725],[114.14778,22.49754],[114.14777,22.49767],[114.14775,22.49883],[114.14774,22.49886],[114.14774,22.49909],[114.14774,22.49924],[114.14774,22.49928],[114.14774,22.49933],[114.14775,22.49935],[114.14775,22.49938],[114.14776,22.4994],[114.14777,22.49942],[114.14778,22.49944],[114.14779,22.49945],[114.14781,22.49947],[114.14782,22.49948],[114.14783,22.49949],[114.14784,22.49951],[114.14786,22.49952],[114.14787,22.49953],[114.14864,22.50012],[114.14912,22.50048],[114.14914,22.50051],[114.14915,22.50051],[114.14916,22.50052],[114.14918,22.50054],[114.14919,22.50055],[114.14921,22.50057],[114.14922,22.50058],[114.14924,22.5006],[114.14925,22.50062],[114.14927,22.50064],[114.14928,22.50066],[114.1493,22.50068],[114.14931,22.5007],[114.14932,22.50072],[114.14933,22.50075],[114.14934,22.50077],[114.14934,22.50079],[114.14935,22.50081],[114.14935,22.50083],[114.14936,22.50087],[114.14936,22.5009],[114.14937,22.50094],[114.14937,22.50098],[114.14937,22.50102],[114.14936,22.50105],[114.14935,22.50109],[114.14935,22.50113],[114.14934,22.50116],[114.14934,22.50117],[114.14925,22.50142],[114.14922,22.50151],[114.14919,22.50158],[114.14917,22.50164],[114.14917,22.50165],[114.14916,22.50169],[114.14912,22.5018],[114.1491,22.50185],[114.14908,22.50189],[114.14904,22.50198],[114.149,22.50207],[114.14899,22.5021],[114.14893,22.50221],[114.14891,22.50224],[114.14887,22.5023],[114.14886,22.50233],[114.14882,22.50239],[114.14878,22.50245],[114.14877,22.50247],[114.14875,22.50249],[114.14872,22.50252],[114.14867,22.50258],[114.14861,22.50264],[114.14859,22.50266],[114.14855,22.5027],[114.14854,22.50271],[114.1485,22.50274],[114.14844,22.50279],[114.14839,22.50283],[114.14834,22.50288],[114.1483,22.50291],[114.1482,22.50298],[114.14796,22.50311],[114.14775,22.50327],[114.14764,22.50333],[114.1476,22.50334],[114.14737,22.50342],[114.14732,22.50344],[114.14728,22.50346],[114.14718,22.50351],[114.14717,22.50352],[114.14711,22.50356],[114.14708,22.50358],[114.14708,22.50359],[114.14704,22.50362],[114.14701,22.50366],[114.147,22.50367],[114.14696,22.50373],[114.14693,22.50379],[114.14692,22.50382],[114.14689,22.5039],[114.14687,22.50398],[114.14685,22.5041],[114.14685,22.50414],[114.14685,22.50419],[114.14684,22.50433],[114.14683,22.50484],[114.14683,22.50488],[114.14683,22.50491],[114.14683,22.50492],[114.14682,22.50528],[114.14682,22.50534],[114.14682,22.50544],[114.14682,22.50549],[114.14679,22.50561],[114.14676,22.50576],[114.14674,22.50582],[114.14673,22.50586],[114.14672,22.50588],[114.14669,22.50598],[114.14669,22.506],[114.14664,22.50611],[114.14657,22.50623],[114.14652,22.50632],[114.14643,22.50644],[114.14633,22.50656],[114.14618,22.50676],[114.14615,22.5068],[114.14614,22.50681],[114.14612,22.50683],[114.146,22.50698],[114.14593,22.50709],[114.14586,22.50716],[114.14583,22.5072],[114.14579,22.50723],[114.14577,22.50725],[114.14576,22.50726],[114.14576,22.50726],[114.14551,22.50755],[114.14541,22.50774],[114.14526,22.50772],[114.14515,22.5077],[114.14511,22.5077],[114.1447,22.50772],[114.14429,22.50772],[114.14426,22.50772],[114.1441,22.50771],[114.14386,22.5077],[114.14367,22.50769],[114.14344,22.50766],[114.14322,22.50764],[114.143,22.50761],[114.14279,22.50757],[114.14271,22.50756],[114.14256,22.50753],[114.14247,22.50751],[114.14235,22.50749],[114.14219,22.50745],[114.14191,22.50738],[114.14184,22.50736],[114.14177,22.50734],[114.14173,22.50733],[114.14157,22.50728],[114.14154,22.50727],[114.14151,22.50726],[114.1415,22.50726],[114.14124,22.50717],[114.14123,22.50716],[114.1412,22.50715],[114.14085,22.50702],[114.14059,22.50692],[114.14056,22.50691],[114.14039,22.50683],[114.14017,22.50674],[114.14013,22.50673],[114.13993,22.50665],[114.13979,22.50659],[114.13971,22.50656],[114.13968,22.50655],[114.13926,22.50639],[114.13922,22.50638],[114.13922,22.50638],[114.13922,22.50638],[114.13922,22.50638],[114.13922,22.50638],[114.13922,22.50638],[114.13922,22.50638],[114.13922,22.50638],[114.13921,22.50638],[114.13921,22.50638],[114.13921,22.50638],[114.13921,22.50638],[114.13921,22.50637],[114.13921,22.50637],[114.13921,22.50637],[114.13921,22.50637],[114.13921,22.50637],[114.13921,22.50637],[114.13921,22.50637],[114.1392,22.50637],[114.1392,22.50637],[114.1392,22.50637],[114.1392,22.50637],[114.1392,22.50637],[114.1392,22.50637],[114.1392,22.50637],[114.1392,22.50637],[114.1392,22.50637],[114.1392,22.50637],[114.1392,22.50637],[114.13919,22.50637],[114.13919,22.50637],[114.13919,22.50637],[114.13919,22.50637],[114.13919,22.50637],[114.13919,22.50637],[114.13919,22.50637],[114.13919,22.50637],[114.13919,22.50637],[114.13919,22.50637],[114.13918,22.50637],[114.13918,22.50637],[114.13918,22.50637],[114.13918,22.50637],[114.13918,22.50637],[114.13918,22.50637],[114.13918,22.50637],[114.13918,22.50637],[114.13918,22.50637],[114.13918,22.50637],[114.13918,22.50637],[114.13917,22.50636],[114.13917,22.50636],[114.13917,22.50636],[114.13917,22.50636],[114.13917,22.50636],[114.13917,22.50636],[114.13917,22.50636],[114.13917,22.50636],[114.13917,22.50636],[114.13917,22.50636],[114.13917,22.50636],[114.13916,22.50636],[114.13916,22.50636],[114.13916,22.50636],[114.13916,22.50636],[114.13916,22.50636],[114.13916,22.50636],[114.13916,22.50636],[114.13916,22.50636],[114.13916,22.50636],[114.13916,22.50636],[114.13916,22.50636],[114.13915,22.50636],[114.13915,22.50636],[114.13915,22.50636],[114.13915,22.50636],[114.13915,22.50636],[114.13915,22.50636],[114.13915,22.50636],[114.13915,22.50636],[114.13915,22.50636],[114.13915,22.50636],[114.13914,22.50636],[114.13914,22.50636],[114.13914,22.50636],[114.13914,22.50636],[114.13914,22.50636],[114.13914,22.50636],[114.13914,22.50636],[114.13914,22.50635],[114.13914,22.50635],[114.13914,22.50635],[114.13914,22.50635],[114.13913,22.50635],[114.13913,22.50635],[114.13913,22.50635],[114.13913,22.50635],[114.13913,22.50635],[114.13913,22.50635],[114.13913,22.50635],[114.13913,22.50635],[114.13913,22.50635],[114.13913,22.50635],[114.13913,22.50635],[114.13912,22.50635],[114.13912,22.50635],[114.13912,22.50635],[114.13912,22.50635],[114.13912,22.50635],[114.13912,22.50635],[114.13912,22.50635],[114.13912,22.50635],[114.13912,22.50635],[114.13912,22.50635],[114.13912,22.50635],[114.13911,22.50635],[114.13911,22.50635],[114.13911,22.50635],[114.13911,22.50635],[114.13911,22.50635],[114.13911,22.50635],[114.13911,22.50635],[114.13911,22.50635],[114.13911,22.50635],[114.13911,22.50635],[114.1391,22.50635],[114.1391,22.50635],[114.1391,22.50635],[114.1391,22.50634],[114.1391,22.50634],[114.1391,22.50634],[114.1391,22.50634],[114.1391,22.50634],[114.1391,22.50634],[114.1391,22.50634],[114.1391,22.50634],[114.13909,22.50634],[114.13909,22.50634],[114.13909,22.50634],[114.13909,22.50634],[114.13909,22.50634],[114.13909,22.50634],[114.13909,22.50634],[114.13909,22.50634],[114.13909,22.50634],[114.13909,22.50634],[114.13909,22.50634],[114.13908,22.50634],[114.13908,22.50634],[114.13908,22.50634],[114.13908,22.50634],[114.13908,22.50634],[114.13908,22.50634],[114.13908,22.50634],[114.13908,22.50634],[114.13908,22.50634],[114.13908,22.50634],[114.13907,22.50634],[114.13907,22.50634],[114.13907,22.50634],[114.13907,22.50634],[114.13907,22.50634],[114.13907,22.50634],[114.13907,22.50634],[114.13907,22.50634],[114.13907,22.50634],[114.13907,22.50634],[114.13907,22.50634],[114.13906,22.50634],[114.13906,22.50633],[114.13906,22.50633],[114.13906,22.50633],[114.13906,22.50633],[114.13906,22.50633],[114.13906,22.50633],[114.13906,22.50633],[114.13906,22.50633],[114.13906,22.50633],[114.13906,22.50633],[114.13905,22.50633],[114.13905,22.50633],[114.13905,22.50633],[114.13905,22.50633],[114.13905,22.50633],[114.13905,22.50633],[114.13905,22.50633],[114.13905,22.50633],[114.13905,22.50633],[114.13905,22.50633],[114.13904,22.50633],[114.13904,22.50633],[114.13904,22.50633],[114.13904,22.50633],[114.13904,22.50633],[114.13904,22.50633],[114.13904,22.50633],[114.13904,22.50633],[114.13904,22.50633],[114.13904,22.50633],[114.13904,22.50633],[114.13903,22.50633],[114.13903,22.50633],[114.13903,22.50633],[114.13903,22.50633],[114.13903,22.50633],[114.13903,22.50633],[114.13903,22.50633],[114.13903,22.50633],[114.13903,22.50633],[114.13903,22.50633],[114.13902,22.50633],[114.13902,22.50633],[114.13902,22.50633],[114.13902,22.50633],[114.13902,22.50633],[114.13902,22.50633],[114.13902,22.50633],[114.13902,22.50632],[114.13902,22.50632],[114.13902,22.50632],[114.13902,22.50632],[114.13901,22.50632],[114.13901,22.50632],[114.13901,22.50632],[114.13901,22.50632],[114.13901,22.50632],[114.13901,22.50632],[114.13901,22.50632],[114.13901,22.50632],[114.13901,22.50632],[114.13901,22.50632],[114.13901,22.50632],[114.139,22.50632],[114.139,22.50632],[114.139,22.50632],[114.139,22.50632],[114.139,22.50632],[114.139,22.50632],[114.139,22.50632],[114.139,22.50632],[114.139,22.50632],[114.139,22.50632],[114.13899,22.50632],[114.13899,22.50632],[114.13899,22.50632],[114.13899,22.50632],[114.13899,22.50632],[114.13899,22.50632],[114.13899,22.50632],[114.13899,22.50632],[114.13899,22.50632],[114.13899,22.50632],[114.13899,22.50632],[114.13898,22.50632],[114.13898,22.50632],[114.13898,22.50632],[114.13898,22.50632],[114.13898,22.50632],[114.13898,22.50632],[114.13898,22.50632],[114.13898,22.50632],[114.13898,22.50632],[114.13898,22.50632],[114.13897,22.50632],[114.13897,22.50632],[114.13897,22.50632],[114.13897,22.50632],[114.13897,22.50632],[114.13897,22.50632],[114.13897,22.50632],[114.13897,22.50632],[114.13897,22.50631],[114.13897,22.50631],[114.13897,22.50631],[114.13896,22.50631],[114.13896,22.50631],[114.13896,22.50631],[114.13896,22.50631],[114.13896,22.50631],[114.13896,22.50631],[114.13896,22.50631],[114.13896,22.50631],[114.13896,22.50631],[114.13896,22.50631],[114.13895,22.50631],[114.13895,22.50631],[114.13895,22.50631],[114.13895,22.50631],[114.13895,22.50631],[114.13895,22.50631],[114.13895,22.50631],[114.13895,22.50631],[114.13895,22.50631],[114.13895,22.50631],[114.13894,22.50631],[114.13894,22.50631],[114.13894,22.50631],[114.13894,22.50631],[114.13894,22.50631],[114.13894,22.50631],[114.13894,22.50631],[114.13894,22.50631],[114.13894,22.50631],[114.13894,22.50631],[114.13894,22.50631],[114.13893,22.50631],[114.13893,22.50631],[114.13893,22.50631],[114.13893,22.50631],[114.13893,22.50631],[114.13893,22.50631],[114.13893,22.50631],[114.13893,22.50631],[114.13893,22.50631],[114.13893,22.50631],[114.13892,22.50631],[114.13892,22.50631],[114.13892,22.50631],[114.13892,22.50631],[114.13892,22.50631],[114.13892,22.50631],[114.13892,22.50631],[114.13892,22.50631],[114.13892,22.50631],[114.13892,22.50631],[114.13892,22.50631],[114.13891,22.50631],[114.13891,22.50631],[114.13891,22.50631],[114.13891,22.50631],[114.13891,22.50631],[114.13891,22.5063],[114.13891,22.5063],[114.13891,22.5063],[114.13891,22.5063],[114.13891,22.5063],[114.1389,22.5063],[114.1389,22.5063],[114.1389,22.5063],[114.1389,22.5063],[114.1389,22.5063],[114.1389,22.5063],[114.1389,22.5063],[114.1389,22.5063],[114.1389,22.5063],[114.1389,22.5063],[114.1389,22.5063],[114.13889,22.5063],[114.13889,22.5063],[114.13889,22.5063],[114.13889,22.5063],[114.13889,22.5063],[114.13889,22.5063],[114.13889,22.5063],[114.13889,22.5063],[114.13889,22.5063],[114.13889,22.5063],[114.13888,22.5063],[114.13888,22.5063],[114.13888,22.5063],[114.13888,22.5063],[114.13888,22.5063],[114.13888,22.5063],[114.13888,22.5063],[114.13888,22.5063],[114.13888,22.5063],[114.13888,22.5063],[114.13888,22.5063],[114.13887,22.5063],[114.13887,22.5063],[114.13887,22.5063],[114.13887,22.5063],[114.13887,22.5063],[114.13887,22.5063],[114.13887,22.5063],[114.13887,22.5063],[114.13887,22.5063],[114.13887,22.5063],[114.13886,22.5063],[114.13886,22.5063],[114.13886,22.5063],[114.13886,22.5063],[114.13886,22.5063],[114.13886,22.5063],[114.13886,22.5063],[114.13886,22.5063],[114.13886,22.5063],[114.13886,22.5063],[114.13886,22.5063],[114.13885,22.5063],[114.13885,22.5063],[114.13885,22.5063],[114.13885,22.5063],[114.13885,22.5063],[114.13885,22.50629],[114.13885,22.50629],[114.13885,22.50629],[114.13885,22.50629],[114.13885,22.50629],[114.13884,22.50629],[114.13884,22.50629],[114.13884,22.50629],[114.13884,22.50629],[114.13884,22.50629],[114.13884,22.50629],[114.13884,22.50629],[114.13884,22.50629],[114.13884,22.50629],[114.13884,22.50629],[114.13883,22.50629],[114.13883,22.50629],[114.13883,22.50629],[114.13883,22.50629],[114.13883,22.50629],[114.13883,22.50629],[114.13883,22.50629],[114.13883,22.50629],[114.13883,22.50629],[114.13883,22.50629],[114.13883,22.50629],[114.13882,22.50629],[114.13882,22.50629],[114.13882,22.50629],[114.13882,22.50629],[114.13882,22.50629],[114.13882,22.50629],[114.13882,22.50629],[114.13882,22.50629],[114.13882,22.50629],[114.13882,22.50629],[114.13881,22.50629],[114.13881,22.50629],[114.13881,22.50629],[114.13881,22.50629],[114.13881,22.50629],[114.13881,22.50629],[114.13881,22.50629],[114.13881,22.50629],[114.13881,22.50629],[114.13881,22.50629],[114.13881,22.50629],[114.1388,22.50629],[114.1388,22.50629],[114.1388,22.50629],[114.1388,22.50629],[114.1388,22.50629],[114.13876,22.50628],[114.13876,22.50628],[114.13876,22.50628],[114.13876,22.50628],[114.13876,22.50628],[114.13876,22.50628],[114.13876,22.50628],[114.13876,22.50628],[114.13875,22.50628],[114.13875,22.50628],[114.13875,22.50628],[114.13875,22.50628],[114.13875,22.50628],[114.13875,22.50628],[114.13875,22.50628],[114.13875,22.50628],[114.13875,22.50628],[114.13875,22.50628],[114.13875,22.50628],[114.13874,22.50628],[114.13874,22.50628],[114.13874,22.50628],[114.13874,22.50628],[114.13874,22.50628],[114.13874,22.50628],[114.13874,22.50628],[114.13874,22.50628],[114.13874,22.50628],[114.13874,22.50628],[114.13873,22.50628],[114.13873,22.50628],[114.13873,22.50628],[114.13873,22.50628],[114.13873,22.50628],[114.13873,22.50628],[114.13873,22.50628],[114.13873,22.50628],[114.13873,22.50628],[114.13873,22.50628],[114.13873,22.50628],[114.13872,22.50628],[114.13872,22.50628],[114.13872,22.50628],[114.13872,22.50628],[114.13872,22.50628],[114.13872,22.50628],[114.13872,22.50628],[114.13872,22.50628],[114.13872,22.50628],[114.13872,22.50628],[114.13871,22.50628],[114.13871,22.50628],[114.13871,22.50628],[114.13871,22.50628],[114.13871,22.50628],[114.13871,22.50628],[114.13871,22.50628],[114.13871,22.50628],[114.13871,22.50628],[114.13871,22.50628],[114.1387,22.50628],[114.1387,22.50628],[114.1387,22.50628],[114.1387,22.50628],[114.1387,22.50628],[114.1387,22.50628],[114.1387,22.50628],[114.1387,22.50628],[114.1387,22.50628],[114.1387,22.50628],[114.1387,22.50628],[114.13869,22.50628],[114.13869,22.50628],[114.13869,22.50628],[114.13869,22.50628],[114.13869,22.50628],[114.13869,22.50628],[114.13869,22.50628],[114.13869,22.50628],[114.13869,22.50628],[114.13869,22.50628],[114.13868,22.50627],[114.13868,22.50627],[114.13868,22.50627],[114.13868,22.50627],[114.13868,22.50627],[114.13868,22.50627],[114.13868,22.50627],[114.13868,22.50627],[114.13868,22.50627],[114.13868,22.50627],[114.13867,22.50627],[114.13867,22.50627],[114.13867,22.50627],[114.13867,22.50627],[114.13867,22.50627],[114.13867,22.50627],[114.13867,22.50627],[114.13867,22.50627],[114.13867,22.50627],[114.13867,22.50627],[114.13867,22.50627],[114.13866,22.50627],[114.13866,22.50627],[114.13866,22.50627],[114.13866,22.50627],[114.13866,22.50627],[114.13866,22.50627],[114.13866,22.50627],[114.13866,22.50627],[114.13866,22.50627],[114.13866,22.50627],[114.13865,22.50627],[114.13865,22.50627],[114.13865,22.50627],[114.13865,22.50627],[114.13865,22.50627],[114.13865,22.50627],[114.13865,22.50627],[114.13865,22.50627],[114.13865,22.50627],[114.13865,22.50627],[114.13864,22.50627],[114.13864,22.50627],[114.13864,22.50627],[114.13864,22.50627],[114.13864,22.50627],[114.13864,22.50627],[114.13864,22.50627],[114.13864,22.50627],[114.13864,22.50627],[114.13864,22.50627],[114.13864,22.50627],[114.13863,22.50627],[114.13863,22.50627],[114.13863,22.50627],[114.13863,22.50627],[114.13863,22.50627],[114.13863,22.50627],[114.13863,22.50627],[114.13863,22.50627],[114.13863,22.50627],[114.13863,22.50627],[114.13862,22.50627],[114.13862,22.50627],[114.13862,22.50627],[114.13862,22.50627],[114.13862,22.50627],[114.13862,22.50627],[114.13862,22.50627],[114.13862,22.50627],[114.13862,22.50627],[114.13862,22.50627],[114.13861,22.50627],[114.13861,22.50627],[114.13861,22.50627],[114.13861,22.50627],[114.13861,22.50627],[114.13861,22.50627],[114.13861,22.50627],[114.13861,22.50627],[114.13861,22.50627],[114.13861,22.50627],[114.1386,22.50627],[114.1386,22.50627],[114.1386,22.50627],[114.1386,22.50627],[114.1386,22.50627],[114.1386,22.50627],[114.1386,22.50627],[114.1386,22.50627],[114.1386,22.50627],[114.1386,22.50627],[114.1386,22.50627],[114.13859,22.50627],[114.13859,22.50627],[114.13859,22.50627],[114.13859,22.50627],[114.13859,22.50627],[114.13859,22.50627],[114.13859,22.50627],[114.13859,22.50627],[114.13859,22.50627],[114.13859,22.50627],[114.13858,22.50627],[114.13858,22.50627],[114.13858,22.50627],[114.13858,22.50627],[114.13858,22.50627],[114.13858,22.50627],[114.13858,22.50627],[114.13858,22.50627],[114.13858,22.50627],[114.13858,22.50627],[114.13857,22.50627],[114.13857,22.50627],[114.13857,22.50627],[114.13857,22.50627],[114.13857,22.50627],[114.13857,22.50627],[114.13857,22.50627],[114.13857,22.50627],[114.13857,22.50627],[114.13857,22.50627],[114.13857,22.50627],[114.13856,22.50627],[114.13856,22.50627],[114.13856,22.50627],[114.13856,22.50627],[114.13856,22.50627],[114.13856,22.50627],[114.13856,22.50627],[114.13856,22.50627],[114.13856,22.50627],[114.13856,22.50627],[114.13855,22.50627],[114.13855,22.50627],[114.13855,22.50627],[114.13855,22.50627],[114.13855,22.50627],[114.13855,22.50627],[114.13855,22.50627],[114.13855,22.50627],[114.13855,22.50627],[114.13855,22.50627],[114.13854,22.50627],[114.13854,22.50627],[114.13854,22.50627],[114.13854,22.50627],[114.13854,22.50627],[114.13854,22.50627],[114.13854,22.50627],[114.13854,22.50627],[114.13854,22.50627],[114.13854,22.50627],[114.13854,22.50627],[114.13853,22.50627],[114.13853,22.50627],[114.13853,22.50627],[114.13853,22.50627],[114.13853,22.50627],[114.13853,22.50627],[114.13853,22.50627],[114.13853,22.50627],[114.13853,22.50627],[114.13853,22.50627],[114.13852,22.50627],[114.13852,22.50627],[114.13852,22.50627],[114.13852,22.50627],[114.13852,22.50627],[114.13852,22.50627],[114.13852,22.50627],[114.13852,22.50627],[114.13852,22.50627],[114.13852,22.50627],[114.13851,22.50627],[114.13851,22.50627],[114.13851,22.50627],[114.13851,22.50627],[114.13851,22.50627],[114.13851,22.50627],[114.13851,22.50627],[114.13851,22.50627],[114.13848,22.50627],[114.13828,22.50628],[114.13821,22.50629],[114.13817,22.50629],[114.13803,22.50631],[114.13789,22.50634],[114.13783,22.50636],[114.13781,22.50636],[114.13779,22.50637],[114.13774,22.50639],[114.13755,22.50646],[114.13724,22.50661],[114.13684,22.50683],[114.13665,22.50694],[114.13652,22.50701],[114.13631,22.50713],[114.13627,22.50715],[114.13604,22.50727],[114.13602,22.50729],[114.13574,22.50748],[114.1355,22.50767],[114.1355,22.50767],[114.13547,22.5077],[114.13545,22.50772],[114.13543,22.50774],[114.13541,22.50776],[114.13536,22.50781],[114.13534,22.50782],[114.13532,22.50784],[114.13531,22.50786],[114.13527,22.50789],[114.13526,22.50791],[114.13525,22.50792],[114.13524,22.50793],[114.13523,22.50794],[114.13521,22.50796],[114.13521,22.50796],[114.1352,22.50798],[114.13519,22.50798],[114.13518,22.508],[114.13516,22.50802],[114.13515,22.50803],[114.13514,22.50804],[114.13512,22.50806],[114.13511,22.50809],[114.13509,22.50811],[114.13506,22.50814],[114.13504,22.50817],[114.13502,22.50819],[114.13501,22.5082],[114.135,22.50821],[114.13498,22.50824],[114.13492,22.50832],[114.13491,22.50834],[114.13489,22.50836],[114.13488,22.50839],[114.13486,22.50841],[114.13485,22.50843],[114.13484,22.50845],[114.13483,22.50846],[114.13482,22.50848],[114.13481,22.5085],[114.1348,22.50851],[114.13479,22.50854],[114.13476,22.50858],[114.13472,22.50867],[114.1347,22.5087],[114.13469,22.50873],[114.13465,22.50882],[114.13457,22.50899],[114.13448,22.50925],[114.13444,22.50933],[114.13436,22.50955],[114.13435,22.50958],[114.13419,22.51001],[114.13416,22.51008],[114.134,22.51052],[114.13399,22.51054],[114.13392,22.51071],[114.13391,22.51074],[114.13375,22.51116],[114.13374,22.51119],[114.13363,22.51147],[114.13362,22.51149],[114.13353,22.51179],[114.13347,22.51193],[114.13342,22.51205],[114.13333,22.51225],[114.13332,22.51227],[114.13327,22.51241],[114.13307,22.51291],[114.13306,22.51293],[114.1329,22.51321],[114.13289,22.51323],[114.13287,22.51326],[114.13286,22.51328],[114.1325,22.51379],[114.13234,22.51399],[114.13216,22.51419],[114.13177,22.51459],[114.13171,22.51465],[114.13168,22.51467],[114.13164,22.51471],[114.13138,22.51491],[114.13132,22.51496],[114.13127,22.515],[114.13105,22.51515],[114.13097,22.51521],[114.13088,22.51526],[114.13067,22.51538],[114.13053,22.51546],[114.13047,22.5155],[114.13008,22.51569],[114.13006,22.51569],[114.13006,22.5157],[114.13005,22.5157],[114.12985,22.51578],[114.12975,22.51582],[114.12961,22.51587],[114.12947,22.51592],[114.12947,22.51592],[114.12928,22.51598],[114.12924,22.51599],[114.12913,22.51602],[114.12906,22.51604],[114.12897,22.51606],[114.12893,22.51607],[114.12883,22.51609],[114.12867,22.51612],[114.12851,22.51615],[114.1283,22.51618],[114.12827,22.51619],[114.1282,22.51619],[114.1282,22.51619],[114.12805,22.51621],[114.12781,22.51623],[114.12742,22.51625],[114.12713,22.51623],[114.1271,22.51623],[114.12708,22.51623],[114.12705,22.51623],[114.12689,22.51622],[114.12685,22.51621],[114.12665,22.5162],[114.1266,22.5162],[114.12659,22.5162],[114.12657,22.51619],[114.12629,22.51616],[114.12621,22.51615],[114.12617,22.51644],[114.12616,22.51652],[114.12612,22.51668],[114.12609,22.51676],[114.12604,22.51687],[114.12596,22.51702],[114.12588,22.51716],[114.12579,22.51728],[114.12576,22.51732],[114.12569,22.51742],[114.12564,22.51748],[114.12551,22.51767],[114.12519,22.51819]]]},"properties":{"M_NM_Eng":"Non-Metro","SR_Eng":"NENT","PDD_Cat_En":"New Town","PDD_Eng":"Fanling/ Sheung Shui","M_NM_Tc":"非都會區","SR_Tc":"新界東北","PDD_Cat_Tc":"新市鎮","PDD_Tc":"粉嶺/上水","M_NM_Sc":"非都会区","SR_Sc_1":"新界东北","PDD_Cat_Sc":"新市镇","PDD_Sc":"粉岭/上水","Y2019_Popu":258300,"Y2019_Empl":64100,"Y2026_Popu":274100,"Y2026_Empl":66650,"Y2031_Popu":352350,"Y2031_Empl":79400}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[114.20623,22.31156],[114.20625,22.31159],[114.2062,22.31156],[114.20623,22.31156]]],[[[114.20532,22.31243],[114.2049,22.3128],[114.20454,22.31313],[114.20428,22.31335],[114.20428,22.31336],[114.20546,22.3123],[114.20532,22.31243]]],[[[114.20374,22.31384],[114.20365,22.31392],[114.20364,22.31393],[114.20375,22.31383],[114.20374,22.31384]]],[[[114.20318,22.31435],[114.20312,22.3144],[114.20294,22.31456],[114.20272,22.31476],[114.20254,22.31492],[114.2022,22.31523],[114.20219,22.31523],[114.20196,22.31545],[114.2018,22.31558],[114.20103,22.31627],[114.20103,22.31628],[114.20074,22.31654],[114.19987,22.31732],[114.19986,22.31731],[114.20318,22.31434],[114.20318,22.31435]]],[[[114.17691,22.34922],[114.17691,22.34924],[114.1769,22.34928],[114.1769,22.3493],[114.1769,22.3493],[114.17689,22.3493],[114.17689,22.3493],[114.17688,22.3493],[114.17687,22.3493],[114.17685,22.34928],[114.17684,22.34928],[114.17682,22.34927],[114.17681,22.34927],[114.17679,22.34927],[114.17676,22.34926],[114.17675,22.34926],[114.17673,22.34925],[114.17671,22.34923],[114.1767,22.34923],[114.17666,22.34922],[114.17662,22.34922],[114.1766,22.34922],[114.17659,22.34922],[114.17658,22.34922],[114.17657,22.34921],[114.17655,22.3492],[114.17653,22.34919],[114.17652,22.34918],[114.17652,22.34916],[114.17652,22.34915],[114.17652,22.34914],[114.17651,22.34913],[114.17649,22.34911],[114.17648,22.34911],[114.17645,22.34908],[114.17641,22.34906],[114.17639,22.34905],[114.17637,22.34902],[114.17636,22.34902],[114.17636,22.34901],[114.17634,22.34899],[114.17633,22.34899],[114.17631,22.34896],[114.17629,22.34894],[114.17628,22.34893],[114.17628,22.34891],[114.17627,22.34889],[114.17626,22.34889],[114.17625,22.34888],[114.17624,22.34888],[114.17623,22.34889],[114.17622,22.3489],[114.17621,22.34891],[114.1762,22.34891],[114.17618,22.34892],[114.17614,22.34894],[114.17614,22.34895],[114.17612,22.34896],[114.17609,22.349],[114.17605,22.34905],[114.17604,22.34908],[114.17603,22.34909],[114.17603,22.34911],[114.17603,22.34912],[114.17602,22.34912],[114.17602,22.34913],[114.17601,22.34913],[114.17601,22.34912],[114.176,22.34912],[114.17599,22.34912],[114.17598,22.34911],[114.17597,22.3491],[114.17594,22.34905],[114.17592,22.34902],[114.1759,22.34901],[114.17589,22.349],[114.17585,22.34899],[114.17585,22.34899],[114.17584,22.34899],[114.17582,22.34899],[114.1758,22.34899],[114.1758,22.34899],[114.1758,22.34899],[114.17579,22.349],[114.17578,22.34901],[114.17578,22.34901],[114.17577,22.34901],[114.17576,22.34902],[114.17573,22.34903],[114.17572,22.34903],[114.17572,22.34903],[114.17571,22.34904],[114.1757,22.34904],[114.1757,22.34904],[114.17568,22.34905],[114.17565,22.34907],[114.17565,22.34908],[114.17562,22.34909],[114.17561,22.3491],[114.17559,22.34911],[114.17557,22.34911],[114.17556,22.3491],[114.1755,22.34907],[114.17549,22.34907],[114.17548,22.34906],[114.17547,22.34906],[114.17545,22.34904],[114.17545,22.34904],[114.17545,22.34904],[114.17542,22.34901],[114.17541,22.349],[114.17539,22.34899],[114.17538,22.34897],[114.17538,22.34896],[114.17537,22.34896],[114.17537,22.34895],[114.17537,22.34894],[114.17536,22.34893],[114.17531,22.34891],[114.17531,22.3489],[114.17526,22.34889],[114.17526,22.34889],[114.17525,22.34888],[114.17524,22.34888],[114.17523,22.34887],[114.17521,22.34884],[114.17519,22.34882],[114.17519,22.34882],[114.17516,22.3488],[114.17515,22.3488],[114.17513,22.34879],[114.17513,22.34879],[114.17512,22.34879],[114.17512,22.34878],[114.1751,22.34877],[114.17508,22.34876],[114.17508,22.34875],[114.17507,22.34875],[114.17506,22.34874],[114.17505,22.34872],[114.17504,22.34872],[114.17504,22.34871],[114.17503,22.3487],[114.17502,22.34868],[114.17501,22.34868],[114.17501,22.34868],[114.17501,22.34867],[114.17501,22.34867],[114.17501,22.34866],[114.17501,22.34865],[114.175,22.34861],[114.175,22.34857],[114.175,22.34856],[114.17498,22.3485],[114.17498,22.34848],[114.17497,22.34846],[114.17496,22.34844],[114.17496,22.34844],[114.17496,22.34843],[114.17494,22.34842],[114.17492,22.34841],[114.1749,22.3484],[114.17486,22.3484],[114.17485,22.34839],[114.17483,22.34839],[114.17482,22.34838],[114.1748,22.34837],[114.17477,22.34836],[114.17474,22.34835],[114.17468,22.34831],[114.17464,22.34828],[114.17464,22.34828],[114.17462,22.34828],[114.17461,22.34828],[114.17459,22.34827],[114.17457,22.34825],[114.17455,22.34823],[114.17454,22.34823],[114.17453,22.34822],[114.17453,22.34822],[114.17452,22.3482],[114.17451,22.34819],[114.1745,22.34814],[114.17448,22.3481],[114.17447,22.34808],[114.17446,22.34806],[114.17445,22.34805],[114.17444,22.34804],[114.17444,22.34803],[114.1744,22.348],[114.17439,22.34799],[114.17438,22.34798],[114.17437,22.34798],[114.17434,22.34797],[114.17431,22.34796],[114.17429,22.34796],[114.17427,22.34796],[114.17426,22.34796],[114.17423,22.34796],[114.17417,22.34797],[114.17415,22.34797],[114.17413,22.34798],[114.17411,22.34799],[114.1741,22.34799],[114.1741,22.34799],[114.17407,22.348],[114.17402,22.34802],[114.17393,22.34805],[114.17393,22.34805],[114.17388,22.34807],[114.17387,22.34807],[114.17386,22.34808],[114.17385,22.34808],[114.17384,22.34809],[114.17382,22.3481],[114.17379,22.34813],[114.17376,22.34815],[114.17374,22.34817],[114.17374,22.34817],[114.17372,22.34819],[114.17372,22.34819],[114.17371,22.3482],[114.17369,22.34822],[114.17367,22.34824],[114.17364,22.34828],[114.17362,22.3483],[114.17362,22.3483],[114.17359,22.34833],[114.17356,22.34836],[114.17354,22.34838],[114.17353,22.34838],[114.17352,22.34839],[114.17351,22.34839],[114.17351,22.34839],[114.1735,22.34838],[114.17349,22.34836],[114.17348,22.34835],[114.17348,22.34834],[114.17347,22.3483],[114.17346,22.34828],[114.17346,22.34826],[114.17344,22.34824],[114.17343,22.34823],[114.17341,22.3482],[114.1734,22.3482],[114.17339,22.34819],[114.17338,22.34817],[114.17335,22.34812],[114.17335,22.34811],[114.17334,22.34808],[114.17334,22.34808],[114.17334,22.34807],[114.17333,22.34807],[114.17333,22.34806],[114.17332,22.34806],[114.17332,22.34805],[114.17331,22.34805],[114.17331,22.34805],[114.17325,22.34803],[114.1732,22.34801],[114.17315,22.34799],[114.17312,22.34798],[114.17311,22.34797],[114.17311,22.34797],[114.1731,22.34797],[114.17307,22.34796],[114.17304,22.34795],[114.17303,22.34795],[114.173,22.34794],[114.17295,22.34794],[114.17294,22.34794],[114.17294,22.34793],[114.17294,22.34793],[114.17294,22.34792],[114.17295,22.34791],[114.17296,22.3479],[114.17304,22.34786],[114.17305,22.34786],[114.17305,22.34785],[114.17309,22.34783],[114.17311,22.34781],[114.17313,22.34779],[114.17315,22.34777],[114.17317,22.34774],[114.17319,22.3477],[114.1732,22.34768],[114.17321,22.34766],[114.17322,22.34762],[114.17322,22.34761],[114.17322,22.3476],[114.17322,22.34758],[114.17322,22.34755],[114.17322,22.34752],[114.17322,22.34749],[114.17323,22.34747],[114.17323,22.34745],[114.17325,22.34739],[114.17326,22.34736],[114.17327,22.34735],[114.17331,22.34729],[114.17332,22.34727],[114.17338,22.34716],[114.17339,22.34713],[114.1734,22.34711],[114.17341,22.34708],[114.17342,22.34706],[114.17342,22.34704],[114.17342,22.34702],[114.17342,22.34701],[114.17341,22.347],[114.17341,22.34699],[114.1734,22.34698],[114.17339,22.34697],[114.17337,22.34695],[114.17334,22.34694],[114.17331,22.34691],[114.17329,22.3469],[114.17328,22.3469],[114.17327,22.3469],[114.17326,22.3469],[114.17325,22.34691],[114.17324,22.34693],[114.17321,22.34696],[114.1732,22.34697],[114.1732,22.34698],[114.17318,22.34698],[114.17318,22.34699],[114.17317,22.34699],[114.17315,22.34698],[114.17314,22.34698],[114.17313,22.34698],[114.17313,22.34698],[114.17313,22.34697],[114.17313,22.34697],[114.17313,22.34696],[114.17314,22.34695],[114.17316,22.34693],[114.17316,22.34692],[114.17317,22.34689],[114.17318,22.34688],[114.17319,22.34686],[114.17319,22.34686],[114.17319,22.34685],[114.17319,22.34685],[114.17318,22.34685],[114.17318,22.34684],[114.17313,22.34681],[114.17311,22.3468],[114.1731,22.34678],[114.17309,22.34678],[114.17309,22.34677],[114.17308,22.34677],[114.17307,22.34675],[114.17305,22.34673],[114.17304,22.34672],[114.173,22.34668],[114.17299,22.34667],[114.17297,22.34665],[114.17293,22.34662],[114.1729,22.34659],[114.17289,22.34658],[114.17286,22.34656],[114.17285,22.34655],[114.17284,22.34654],[114.17282,22.34653],[114.1728,22.3465],[114.17278,22.34648],[114.17275,22.34645],[114.17274,22.34643],[114.17271,22.34642],[114.17271,22.34641],[114.17268,22.3464],[114.17268,22.3464],[114.17367,22.3448],[114.17361,22.34441],[114.17397,22.34433],[114.17403,22.34425],[114.17403,22.34423],[114.17403,22.34421],[114.17403,22.34417],[114.17402,22.34415],[114.17402,22.34413],[114.174,22.3441],[114.17399,22.34408],[114.17398,22.34407],[114.17399,22.34406],[114.17319,22.343],[114.17317,22.34293],[114.17319,22.34278],[114.17346,22.34123],[114.17345,22.34123],[114.17344,22.34122],[114.1732,22.34099],[114.17315,22.34095],[114.17312,22.34091],[114.17308,22.34083],[114.17306,22.34078],[114.17306,22.34074],[114.17305,22.3407],[114.17306,22.34066],[114.17307,22.34059],[114.1731,22.34054],[114.17313,22.34049],[114.17315,22.34045],[114.17317,22.34043],[114.17325,22.34038],[114.17333,22.34034],[114.1734,22.34033],[114.17349,22.34033],[114.17356,22.34034],[114.17362,22.34036],[114.17368,22.34038],[114.17378,22.34044],[114.17395,22.34055],[114.1742,22.34068],[114.17429,22.34072],[114.17434,22.34073],[114.17443,22.34073],[114.17449,22.34072],[114.17458,22.3407],[114.17465,22.34067],[114.17472,22.34062],[114.17473,22.34061],[114.17474,22.3406],[114.17477,22.34057],[114.17477,22.34057],[114.17479,22.34055],[114.17482,22.34052],[114.17483,22.34051],[114.17484,22.34047],[114.17486,22.34043],[114.17487,22.34037],[114.17488,22.34031],[114.17485,22.3402],[114.17484,22.34017],[114.17482,22.34007],[114.17482,22.34006],[114.17482,22.34006],[114.17483,22.33994],[114.17484,22.33985],[114.17485,22.33978],[114.17485,22.33973],[114.17487,22.33966],[114.17489,22.33958],[114.1749,22.33955],[114.17505,22.33913],[114.1751,22.339],[114.17511,22.33896],[114.17524,22.3386],[114.17528,22.33849],[114.17529,22.33845],[114.17531,22.33841],[114.17532,22.3384],[114.17532,22.33839],[114.17533,22.33837],[114.17533,22.33837],[114.17534,22.33836],[114.17534,22.33835],[114.17535,22.33833],[114.17536,22.33831],[114.17536,22.33831],[114.17537,22.3383],[114.17537,22.33829],[114.17538,22.33828],[114.17538,22.33827],[114.17538,22.33826],[114.17539,22.33825],[114.17539,22.33825],[114.1754,22.33824],[114.1754,22.33823],[114.17541,22.33822],[114.17541,22.33821],[114.17541,22.3382],[114.17542,22.33819],[114.17542,22.33818],[114.17543,22.33818],[114.17543,22.33817],[114.17544,22.33816],[114.17544,22.33815],[114.17544,22.33814],[114.17545,22.33813],[114.17545,22.33813],[114.17546,22.33812],[114.17546,22.33811],[114.17547,22.3381],[114.17547,22.33809],[114.17547,22.33808],[114.17548,22.33807],[114.17548,22.33806],[114.17549,22.33806],[114.17549,22.33805],[114.17549,22.33804],[114.1755,22.33803],[114.1755,22.33802],[114.17551,22.33801],[114.17551,22.338],[114.17552,22.338],[114.17552,22.33799],[114.17553,22.33797],[114.17553,22.33796],[114.17554,22.33795],[114.17554,22.33794],[114.17555,22.33794],[114.17555,22.33793],[114.17555,22.33792],[114.17556,22.33791],[114.17556,22.3379],[114.17557,22.33789],[114.17557,22.33788],[114.17557,22.33788],[114.17558,22.33787],[114.17558,22.33786],[114.17559,22.33785],[114.17559,22.33784],[114.1756,22.33783],[114.1756,22.33782],[114.1756,22.33782],[114.17561,22.33781],[114.17561,22.3378],[114.17562,22.33779],[114.17562,22.33778],[114.17563,22.33777],[114.17563,22.33776],[114.17563,22.33776],[114.17564,22.33775],[114.17564,22.33774],[114.17565,22.33773],[114.17565,22.33772],[114.17565,22.33771],[114.17566,22.3377],[114.17566,22.33769],[114.17567,22.33769],[114.17567,22.33768],[114.17581,22.3374],[114.17582,22.33738],[114.17583,22.33737],[114.17584,22.33736],[114.17585,22.33735],[114.17586,22.33734],[114.17587,22.33734],[114.17589,22.33733],[114.17621,22.33732],[114.17643,22.33731],[114.17635,22.33713],[114.17633,22.33708],[114.17633,22.33707],[114.17633,22.33707],[114.17633,22.33707],[114.17633,22.33707],[114.17633,22.33707],[114.17633,22.33706],[114.17633,22.33706],[114.17633,22.33706],[114.17633,22.33706],[114.17633,22.33706],[114.17633,22.33706],[114.17633,22.33705],[114.17633,22.33705],[114.17633,22.33705],[114.17633,22.33705],[114.17633,22.33705],[114.17633,22.33704],[114.17633,22.33704],[114.17633,22.33704],[114.17633,22.33704],[114.17633,22.33704],[114.17633,22.33704],[114.17633,22.33703],[114.17633,22.33703],[114.17633,22.33703],[114.17633,22.33703],[114.17633,22.33703],[114.17633,22.33703],[114.17633,22.33702],[114.17633,22.33702],[114.17633,22.33702],[114.17633,22.33702],[114.17633,22.33702],[114.17633,22.33701],[114.17633,22.33701],[114.17633,22.33701],[114.17633,22.33701],[114.17634,22.33701],[114.17634,22.33701],[114.17634,22.337],[114.17634,22.337],[114.17634,22.337],[114.17634,22.337],[114.17634,22.337],[114.17634,22.337],[114.17634,22.33699],[114.17634,22.33699],[114.17634,22.33699],[114.17634,22.33699],[114.17634,22.33699],[114.17634,22.33699],[114.17634,22.33698],[114.17634,22.33698],[114.17635,22.33698],[114.17635,22.33698],[114.17635,22.33698],[114.17635,22.33698],[114.17635,22.33697],[114.17635,22.33697],[114.17635,22.33697],[114.17635,22.33697],[114.17635,22.33697],[114.17635,22.33697],[114.17635,22.33696],[114.17635,22.33696],[114.17625,22.3369],[114.17624,22.33686],[114.17623,22.33682],[114.17621,22.33674],[114.17622,22.33668],[114.17625,22.33659],[114.17627,22.33652],[114.1763,22.33644],[114.17633,22.33632],[114.17636,22.33623],[114.17641,22.33609],[114.17643,22.33603],[114.17648,22.33584],[114.17653,22.33567],[114.17657,22.33555],[114.17666,22.33527],[114.17666,22.33525],[114.17667,22.33522],[114.17675,22.33493],[114.1768,22.33472],[114.17683,22.3346],[114.17684,22.33453],[114.17687,22.3344],[114.17688,22.33432],[114.17689,22.33423],[114.17689,22.33421],[114.1769,22.33417],[114.17693,22.33388],[114.17693,22.33382],[114.17694,22.3337],[114.17694,22.33366],[114.17695,22.33352],[114.17695,22.33346],[114.17695,22.33337],[114.17695,22.33331],[114.17695,22.33312],[114.17695,22.33301],[114.17694,22.33291],[114.17694,22.33278],[114.17693,22.3326],[114.17691,22.33245],[114.1769,22.33237],[114.17689,22.33224],[114.17688,22.33222],[114.17687,22.33211],[114.17686,22.33206],[114.17685,22.332],[114.17684,22.3319],[114.17682,22.33181],[114.1768,22.33172],[114.17678,22.3316],[114.17677,22.33155],[114.17675,22.33144],[114.17674,22.3314],[114.17673,22.33135],[114.17672,22.33133],[114.1767,22.33123],[114.17667,22.33112],[114.17666,22.33107],[114.17666,22.33106],[114.17664,22.33098],[114.17661,22.33088],[114.1766,22.33085],[114.17659,22.33082],[114.17656,22.33071],[114.17655,22.33065],[114.17653,22.33059],[114.1765,22.33048],[114.17646,22.33037],[114.17645,22.33035],[114.17643,22.33027],[114.17642,22.33025],[114.17641,22.33022],[114.17636,22.3301],[114.17632,22.32999],[114.1763,22.32992],[114.17628,22.32989],[114.17623,22.32976],[114.17618,22.32964],[114.17616,22.32959],[114.17614,22.32955],[114.17613,22.32953],[114.1761,22.32947],[114.17605,22.32936],[114.176,22.32926],[114.17598,22.32922],[114.17581,22.32888],[114.17579,22.32884],[114.17566,22.3286],[114.17537,22.32803],[114.17537,22.32803],[114.17512,22.32757],[114.17506,22.32746],[114.17505,22.32745],[114.17477,22.32691],[114.17477,22.3269],[114.17476,22.32689],[114.17465,22.32668],[114.17461,22.3266],[114.1746,22.32658],[114.1747,22.32658],[114.17443,22.32607],[114.17385,22.32499],[114.17376,22.32482],[114.17373,22.32481],[114.1737,22.32474],[114.17346,22.32402],[114.17312,22.32346],[114.1731,22.32344],[114.17297,22.32264],[114.17287,22.32208],[114.17294,22.32067],[114.17294,22.3206],[114.17303,22.32012],[114.17303,22.32012],[114.17304,22.32013],[114.17311,22.32014],[114.17316,22.32003],[114.17383,22.31844],[114.17437,22.31714],[114.17438,22.31713],[114.17432,22.31705],[114.17439,22.31687],[114.1744,22.31683],[114.1744,22.31682],[114.17443,22.31676],[114.17446,22.31669],[114.17484,22.31574],[114.17488,22.31575],[114.17514,22.31517],[114.1751,22.31505],[114.17524,22.31487],[114.17528,22.31484],[114.17533,22.31483],[114.17534,22.31483],[114.17534,22.31483],[114.17548,22.31452],[114.17545,22.31451],[114.17551,22.31431],[114.17541,22.3143],[114.17538,22.3143],[114.17538,22.3143],[114.17568,22.31366],[114.17605,22.31304],[114.17607,22.31301],[114.17607,22.313],[114.17609,22.31297],[114.17612,22.31292],[114.17621,22.31297],[114.17655,22.31254],[114.17671,22.31232],[114.1768,22.31219],[114.17703,22.31187],[114.17708,22.3118],[114.17753,22.31124],[114.17759,22.31113],[114.1776,22.31111],[114.17762,22.3111],[114.17763,22.31108],[114.17764,22.31107],[114.17765,22.31105],[114.17766,22.31104],[114.17767,22.31103],[114.17769,22.311],[114.17806,22.31042],[114.17815,22.31028],[114.17816,22.31026],[114.17829,22.31006],[114.17832,22.31002],[114.17836,22.30997],[114.1784,22.30991],[114.17843,22.30986],[114.17847,22.30981],[114.1785,22.30975],[114.17854,22.3097],[114.17857,22.30964],[114.17861,22.30959],[114.17864,22.30953],[114.17867,22.30948],[114.17871,22.30942],[114.17874,22.30937],[114.17876,22.30932],[114.17877,22.30931],[114.1788,22.30925],[114.17883,22.3092],[114.17886,22.30914],[114.17889,22.30908],[114.17892,22.30903],[114.17894,22.30897],[114.17898,22.30889],[114.17898,22.30887],[114.17898,22.30885],[114.17899,22.30884],[114.179,22.30882],[114.17901,22.3088],[114.17901,22.30879],[114.17902,22.30877],[114.17903,22.30875],[114.17904,22.30874],[114.17904,22.30872],[114.17905,22.3087],[114.17906,22.30869],[114.17906,22.30867],[114.17907,22.30865],[114.17907,22.30863],[114.17908,22.30862],[114.17908,22.3086],[114.17909,22.30858],[114.1791,22.30857],[114.1791,22.30855],[114.1791,22.30853],[114.17911,22.30851],[114.17911,22.3085],[114.17912,22.30848],[114.17912,22.30846],[114.17913,22.30844],[114.17913,22.30842],[114.17913,22.30841],[114.17914,22.30839],[114.17914,22.30837],[114.17914,22.30835],[114.17914,22.30833],[114.17915,22.30832],[114.17915,22.3083],[114.17915,22.30828],[114.17915,22.30825],[114.17915,22.30823],[114.17916,22.30821],[114.17916,22.30819],[114.17916,22.30817],[114.17916,22.30815],[114.17916,22.30814],[114.17916,22.30814],[114.17916,22.30814],[114.17916,22.30812],[114.17916,22.3081],[114.17916,22.30808],[114.17916,22.30808],[114.17916,22.30806],[114.17916,22.30805],[114.17916,22.30803],[114.17916,22.30803],[114.17916,22.30801],[114.17915,22.30799],[114.17915,22.30798],[114.17915,22.30797],[114.17915,22.30796],[114.17915,22.30794],[114.17915,22.30793],[114.17915,22.3079],[114.17914,22.30788],[114.17914,22.30787],[114.17914,22.30785],[114.17914,22.30785],[114.17914,22.30784],[114.17914,22.30783],[114.17913,22.30781],[114.17913,22.3078],[114.179,22.30733],[114.17874,22.30636],[114.1786,22.30587],[114.17858,22.30579],[114.17858,22.30579],[114.17858,22.30578],[114.17816,22.30425],[114.17815,22.30423],[114.17815,22.30421],[114.17814,22.3042],[114.17814,22.30418],[114.17813,22.30416],[114.17813,22.30415],[114.17812,22.30413],[114.17811,22.30411],[114.17811,22.30409],[114.1781,22.30408],[114.17809,22.30406],[114.17808,22.30404],[114.17808,22.30403],[114.17807,22.30401],[114.17806,22.304],[114.17805,22.30398],[114.17804,22.30396],[114.17803,22.30395],[114.17802,22.30393],[114.17801,22.30392],[114.178,22.3039],[114.17799,22.30389],[114.17798,22.30387],[114.17796,22.30386],[114.17795,22.30384],[114.17794,22.30383],[114.17793,22.30382],[114.17792,22.3038],[114.1779,22.30379],[114.17789,22.30378],[114.17787,22.30376],[114.17786,22.30375],[114.17785,22.30374],[114.17782,22.30372],[114.1778,22.3037],[114.17779,22.30369],[114.17731,22.30325],[114.1773,22.30323],[114.17729,22.30322],[114.17728,22.3032],[114.17727,22.30319],[114.17726,22.30317],[114.17725,22.30316],[114.17724,22.30314],[114.17722,22.30313],[114.17721,22.30311],[114.17721,22.3031],[114.1772,22.3031],[114.17719,22.30308],[114.17718,22.30306],[114.17717,22.30305],[114.17716,22.30303],[114.17715,22.30302],[114.17714,22.303],[114.17713,22.30299],[114.17712,22.30297],[114.17712,22.30296],[114.17812,22.30257],[114.17825,22.30252],[114.17826,22.30252],[114.17832,22.3025],[114.17837,22.30248],[114.17841,22.30246],[114.17846,22.30243],[114.1785,22.30241],[114.17855,22.3024],[114.17859,22.30238],[114.17864,22.30236],[114.17869,22.30234],[114.17873,22.30233],[114.17878,22.30231],[114.17883,22.3023],[114.17888,22.30228],[114.17893,22.30227],[114.17898,22.30226],[114.17902,22.30225],[114.17907,22.30224],[114.17912,22.30223],[114.17917,22.30222],[114.17922,22.30221],[114.17927,22.3022],[114.17932,22.3022],[114.17937,22.30219],[114.17942,22.30219],[114.17947,22.30218],[114.17954,22.30218],[114.17966,22.30217],[114.17966,22.30216],[114.17966,22.30215],[114.17966,22.30215],[114.17966,22.30213],[114.17966,22.30213],[114.17966,22.30212],[114.17966,22.3021],[114.17965,22.30208],[114.17965,22.30208],[114.17965,22.30206],[114.17965,22.30206],[114.17966,22.30204],[114.17966,22.30203],[114.17966,22.30203],[114.17966,22.30201],[114.17966,22.302],[114.17966,22.30199],[114.17966,22.30197],[114.17966,22.30195],[114.17966,22.30195],[114.17966,22.30192],[114.17967,22.30191],[114.17967,22.3019],[114.17967,22.30189],[114.17967,22.30186],[114.17967,22.30185],[114.17968,22.30183],[114.17968,22.30181],[114.17968,22.30179],[114.17968,22.30179],[114.17969,22.30178],[114.17969,22.30176],[114.1797,22.30174],[114.1797,22.30173],[114.1797,22.30172],[114.1797,22.30171],[114.1797,22.30171],[114.17971,22.3017],[114.17971,22.30168],[114.17971,22.30167],[114.17972,22.30166],[114.17972,22.30165],[114.17973,22.30164],[114.17973,22.30163],[114.17973,22.30162],[114.17974,22.3016],[114.17974,22.30159],[114.17974,22.30158],[114.17975,22.30156],[114.17976,22.30154],[114.17977,22.30153],[114.17978,22.30152],[114.17978,22.30151],[114.17979,22.3015],[114.1798,22.30148],[114.17981,22.30147],[114.17982,22.30145],[114.17982,22.30145],[114.17983,22.30143],[114.17985,22.3014],[114.17985,22.30139],[114.17986,22.30138],[114.17987,22.30136],[114.17987,22.30135],[114.17989,22.30133],[114.1799,22.30131],[114.17991,22.30128],[114.17992,22.30127],[114.17992,22.30126],[114.17994,22.30123],[114.17995,22.30121],[114.17996,22.30118],[114.17997,22.30116],[114.17998,22.30113],[114.17999,22.30112],[114.17999,22.30111],[114.18001,22.30108],[114.18002,22.30106],[114.18003,22.30103],[114.18003,22.30102],[114.18004,22.30101],[114.18005,22.30098],[114.18006,22.30094],[114.1801,22.30082],[114.18011,22.30078],[114.18013,22.3007],[114.18014,22.30066],[114.18017,22.30052],[114.18027,22.30009],[114.18029,22.29994],[114.18028,22.29971],[114.18021,22.29946],[114.18017,22.29939],[114.18015,22.29935],[114.18056,22.29902],[114.18059,22.29902],[114.1806,22.29894],[114.18062,22.29892],[114.18086,22.29896],[114.18088,22.29898],[114.18084,22.29918],[114.18083,22.29929],[114.181,22.29942],[114.18119,22.29957],[114.18124,22.29957],[114.18125,22.29946],[114.18145,22.29946],[114.18159,22.29948],[114.18159,22.29958],[114.18207,22.29958],[114.18257,22.29956],[114.18257,22.29948],[114.18258,22.29795],[114.18199,22.29764],[114.18223,22.29725],[114.18304,22.29768],[114.18303,22.29953],[114.18381,22.29953],[114.18421,22.29871],[114.18883,22.30063],[114.18898,22.30069],[114.18901,22.30063],[114.18908,22.30057],[114.1893,22.30011],[114.18931,22.30009],[114.18933,22.30009],[114.18934,22.30009],[114.18935,22.30009],[114.18953,22.30016],[114.18954,22.30018],[114.18954,22.3002],[114.18931,22.30066],[114.18931,22.30075],[114.18928,22.30082],[114.18957,22.30094],[114.18995,22.3011],[114.19002,22.30097],[114.19002,22.30096],[114.19003,22.30095],[114.19004,22.30095],[114.19005,22.30095],[114.19006,22.30095],[114.19007,22.30095],[114.19053,22.30114],[114.19053,22.30115],[114.19054,22.30115],[114.19055,22.30116],[114.19055,22.30117],[114.19055,22.30118],[114.19055,22.30119],[114.19048,22.30132],[114.19085,22.30147],[114.19107,22.30195],[114.19145,22.30178],[114.19168,22.3018],[114.19304,22.30272],[114.1931,22.30277],[114.19311,22.30277],[114.19311,22.30277],[114.19311,22.30278],[114.19312,22.30278],[114.19312,22.30279],[114.19312,22.30279],[114.19285,22.30362],[114.1928,22.30378],[114.19342,22.30627],[114.19351,22.3062],[114.19346,22.30599],[114.1937,22.30595],[114.19376,22.30626],[114.19353,22.3063],[114.19352,22.30624],[114.19343,22.30631],[114.19387,22.30834],[114.19179,22.30992],[114.1918,22.31019],[114.19224,22.31017],[114.19225,22.3105],[114.19182,22.31052],[114.19199,22.31447],[114.19211,22.31455],[114.19213,22.31444],[114.19221,22.31443],[114.19224,22.31448],[114.19217,22.31451],[114.19237,22.31457],[114.19237,22.31464],[114.19258,22.31468],[114.19249,22.31472],[114.19245,22.31482],[114.19268,22.31513],[114.1938,22.31737],[114.19392,22.3173],[114.1939,22.31727],[114.19396,22.31724],[114.19399,22.31719],[114.19402,22.31721],[114.19399,22.31725],[114.19404,22.31734],[114.19409,22.31734],[114.19439,22.31717],[114.19441,22.3172],[114.1941,22.31737],[114.19405,22.31736],[114.19399,22.3174],[114.19396,22.31737],[114.19383,22.31744],[114.19401,22.31779],[114.19417,22.31779],[114.1946,22.31761],[114.19462,22.3176],[114.19464,22.3176],[114.19466,22.31761],[114.19467,22.31761],[114.19468,22.31762],[114.1947,22.31763],[114.19471,22.31764],[114.19472,22.31765],[114.19473,22.31767],[114.19473,22.31769],[114.19474,22.3177],[114.19474,22.31772],[114.19474,22.31773],[114.19474,22.31774],[114.19473,22.31775],[114.19473,22.31776],[114.19472,22.31777],[114.19471,22.31778],[114.19471,22.31778],[114.1947,22.31779],[114.19426,22.31798],[114.19416,22.3181],[114.19426,22.31831],[114.19434,22.31827],[114.19447,22.31852],[114.19438,22.31856],[114.19448,22.31875],[114.19456,22.31872],[114.19458,22.31877],[114.1945,22.3188],[114.1949,22.31961],[114.195,22.31957],[114.19505,22.31966],[114.19499,22.31969],[114.1951,22.31991],[114.19506,22.31993],[114.19527,22.32034],[114.19603,22.32075],[114.19968,22.31748],[114.19968,22.31748],[114.19881,22.31826],[114.1984,22.31863],[114.19823,22.31879],[114.19762,22.31933],[114.19752,22.31942],[114.19835,22.32018],[114.19835,22.32019],[114.19849,22.32031],[114.19864,22.32045],[114.19885,22.32064],[114.19907,22.32084],[114.19925,22.321],[114.19947,22.3212],[114.19965,22.32136],[114.19991,22.32156],[114.20012,22.3217],[114.20024,22.32177],[114.20036,22.32184],[114.20045,22.32189],[114.20052,22.32193],[114.20071,22.32202],[114.20074,22.32203],[114.20078,22.3221],[114.20079,22.32215],[114.20093,22.32209],[114.20095,22.3221],[114.20096,22.3221],[114.20101,22.32212],[114.20134,22.3222],[114.20151,22.32224],[114.20172,22.32226],[114.20207,22.32226],[114.20242,22.32225],[114.20268,22.32222],[114.20308,22.32213],[114.2034,22.32203],[114.20363,22.32195],[114.20379,22.32187],[114.20391,22.32179],[114.20416,22.32163],[114.20472,22.32213],[114.20472,22.32215],[114.20464,22.32239],[114.20459,22.32264],[114.20456,22.32291],[114.20451,22.32324],[114.20447,22.32352],[114.20444,22.32376],[114.2044,22.32407],[114.20436,22.32433],[114.20434,22.32458],[114.20434,22.32483],[114.20435,22.32497],[114.20436,22.3251],[114.20473,22.32513],[114.20473,22.32514],[114.20469,22.32559],[114.20461,22.32634],[114.20461,22.32635],[114.20464,22.32643],[114.20478,22.32675],[114.20479,22.32677],[114.20482,22.32683],[114.20486,22.3269],[114.20486,22.32691],[114.20487,22.32692],[114.20488,22.32694],[114.20488,22.32695],[114.20489,22.32696],[114.2049,22.32697],[114.2049,22.32699],[114.20493,22.32703],[114.20495,22.32707],[114.20498,22.32713],[114.20501,22.32718],[114.20505,22.32726],[114.20509,22.32733],[114.20512,22.32739],[114.20514,22.32743],[114.20515,22.32745],[114.20516,22.32746],[114.20517,22.32748],[114.20517,22.3275],[114.20518,22.32751],[114.20518,22.32752],[114.20519,22.32753],[114.2052,22.32755],[114.20521,22.32758],[114.20522,22.3276],[114.20523,22.32761],[114.20523,22.32763],[114.20524,22.32764],[114.20525,22.32766],[114.20525,22.32768],[114.20526,22.32769],[114.20526,22.3277],[114.20527,22.32772],[114.20527,22.32774],[114.20528,22.32775],[114.20528,22.32776],[114.20528,22.32777],[114.20529,22.3278],[114.2053,22.32781],[114.2053,22.32783],[114.2053,22.32784],[114.20531,22.32785],[114.20532,22.32791],[114.20533,22.32794],[114.20533,22.32795],[114.20533,22.32796],[114.20533,22.32797],[114.20533,22.32799],[114.20534,22.328],[114.20534,22.32801],[114.20534,22.32802],[114.20534,22.32803],[114.20534,22.32804],[114.20534,22.32805],[114.20534,22.32806],[114.20535,22.32807],[114.20535,22.32808],[114.20535,22.32809],[114.20535,22.32811],[114.20535,22.32812],[114.20535,22.32813],[114.20535,22.32813],[114.20535,22.32814],[114.20535,22.32815],[114.20535,22.32816],[114.20536,22.32817],[114.20536,22.3282],[114.20536,22.32821],[114.20536,22.32822],[114.20536,22.32823],[114.20536,22.32824],[114.20536,22.32825],[114.20536,22.32828],[114.20536,22.32829],[114.20536,22.3283],[114.20536,22.32831],[114.20536,22.32832],[114.20536,22.32833],[114.20536,22.32835],[114.20536,22.32836],[114.20535,22.32837],[114.20535,22.32838],[114.20535,22.32839],[114.20535,22.3284],[114.20535,22.32841],[114.20535,22.32843],[114.20535,22.32844],[114.20535,22.32845],[114.20535,22.32846],[114.20535,22.32847],[114.20535,22.32848],[114.20534,22.32849],[114.20534,22.32851],[114.20534,22.32853],[114.20534,22.32854],[114.20534,22.32855],[114.20533,22.32856],[114.20533,22.32857],[114.20533,22.32858],[114.20533,22.32859],[114.20533,22.3286],[114.20533,22.32862],[114.20532,22.32863],[114.20532,22.32864],[114.20532,22.32865],[114.20532,22.32866],[114.20532,22.32867],[114.20531,22.32869],[114.20531,22.3287],[114.20531,22.32871],[114.20531,22.32873],[114.2053,22.32874],[114.2053,22.32875],[114.2053,22.32876],[114.20529,22.32878],[114.20529,22.3288],[114.20529,22.32881],[114.20528,22.32882],[114.20528,22.32883],[114.20528,22.32884],[114.20527,22.32886],[114.20527,22.32887],[114.20527,22.32888],[114.20527,22.32889],[114.20526,22.32891],[114.20525,22.32895],[114.20525,22.32896],[114.20525,22.32898],[114.20524,22.32899],[114.20524,22.329],[114.20524,22.32901],[114.20523,22.32903],[114.20523,22.32904],[114.20523,22.32905],[114.20522,22.32907],[114.20521,22.32911],[114.2052,22.32917],[114.20519,22.32919],[114.20519,22.32924],[114.20518,22.32924],[114.20518,22.32925],[114.20518,22.32927],[114.20518,22.32928],[114.20517,22.3293],[114.20517,22.32931],[114.20516,22.32937],[114.20515,22.32942],[114.20515,22.32944],[114.20515,22.32945],[114.20515,22.32947],[114.20515,22.32949],[114.20514,22.3295],[114.20514,22.32953],[114.20514,22.32954],[114.20514,22.32956],[114.20514,22.32958],[114.20514,22.3296],[114.20514,22.32961],[114.20514,22.32963],[114.20514,22.32964],[114.20514,22.32968],[114.20514,22.32973],[114.20514,22.3298],[114.20514,22.32982],[114.20514,22.32984],[114.20514,22.32985],[114.20514,22.32987],[114.20514,22.32989],[114.20514,22.3299],[114.20514,22.32992],[114.20515,22.32997],[114.20516,22.33012],[114.20518,22.33034],[114.20518,22.33034],[114.20518,22.33036],[114.20518,22.33104],[114.20518,22.33132],[114.20518,22.33132],[114.20519,22.3316],[114.2052,22.33192],[114.20521,22.33206],[114.20521,22.33221],[114.20522,22.33226],[114.20522,22.33236],[114.20522,22.33236],[114.20522,22.33246],[114.20523,22.33251],[114.20523,22.33252],[114.20523,22.33263],[114.20523,22.3327],[114.20523,22.33274],[114.20523,22.33275],[114.20523,22.33275],[114.20523,22.33276],[114.2053,22.33316],[114.2053,22.33316],[114.2053,22.3332],[114.2053,22.33327],[114.2053,22.33331],[114.2053,22.33332],[114.2053,22.33345],[114.2053,22.33348],[114.2053,22.3335],[114.2053,22.3335],[114.2053,22.33353],[114.2053,22.33356],[114.2053,22.33357],[114.2053,22.33359],[114.2053,22.3336],[114.2053,22.33362],[114.20529,22.3337],[114.20529,22.33372],[114.20529,22.33378],[114.20528,22.33387],[114.20527,22.33389],[114.20526,22.33399],[114.2052,22.33423],[114.20511,22.33447],[114.20507,22.33467],[114.20493,22.33476],[114.20468,22.33494],[114.20448,22.33504],[114.2044,22.33508],[114.20422,22.33517],[114.20413,22.33519],[114.20399,22.33523],[114.20396,22.33524],[114.20393,22.33525],[114.20377,22.3353],[114.20367,22.33532],[114.20363,22.33533],[114.20355,22.33534],[114.20339,22.33536],[114.20315,22.33538],[114.20297,22.33537],[114.20278,22.33535],[114.20257,22.33531],[114.20237,22.33526],[114.20217,22.3352],[114.20167,22.33499],[114.20162,22.33495],[114.2016,22.33495],[114.20129,22.33483],[114.20003,22.33436],[114.19854,22.33382],[114.19851,22.33381],[114.19848,22.3338],[114.19845,22.33379],[114.19843,22.33378],[114.1984,22.33377],[114.19837,22.33376],[114.19834,22.33375],[114.19832,22.33374],[114.19832,22.33373],[114.19809,22.33358],[114.19791,22.33344],[114.19777,22.33331],[114.19752,22.33305],[114.19742,22.33294],[114.19731,22.33277],[114.1972,22.33257],[114.19707,22.33237],[114.19701,22.33229],[114.19694,22.33222],[114.19681,22.33212],[114.19676,22.33208],[114.19669,22.33204],[114.19627,22.33246],[114.19627,22.33246],[114.19611,22.33231],[114.19559,22.3318],[114.19459,22.33083],[114.19438,22.33062],[114.19422,22.33046],[114.19418,22.33042],[114.19415,22.3304],[114.19413,22.33038],[114.19408,22.33033],[114.19378,22.33004],[114.19329,22.32956],[114.19331,22.33044],[114.19276,22.33047],[114.19275,22.33047],[114.19255,22.33048],[114.1925,22.33048],[114.19231,22.33049],[114.19219,22.33049],[114.19202,22.3305],[114.19189,22.3305],[114.19156,22.33053],[114.19164,22.33058],[114.1917,22.33061],[114.19176,22.33064],[114.19181,22.33067],[114.19199,22.33077],[114.19206,22.33082],[114.1921,22.33086],[114.1922,22.33095],[114.19251,22.33131],[114.19197,22.33172],[114.19176,22.3319],[114.1917,22.33197],[114.19166,22.33203],[114.19162,22.3321],[114.19153,22.33227],[114.19147,22.33241],[114.1914,22.33256],[114.1912,22.33295],[114.1911,22.33311],[114.19102,22.3332],[114.19098,22.33323],[114.19087,22.33331],[114.19073,22.33342],[114.19072,22.33341],[114.19071,22.33339],[114.19069,22.33336],[114.19066,22.33333],[114.19064,22.33331],[114.19062,22.33329],[114.1906,22.33327],[114.19058,22.33325],[114.19056,22.33322],[114.19,22.33278],[114.18998,22.33276],[114.18996,22.33275],[114.18993,22.33273],[114.18991,22.33271],[114.18988,22.3327],[114.18986,22.33268],[114.18983,22.33267],[114.18981,22.33266],[114.18978,22.33264],[114.18976,22.33263],[114.18973,22.33262],[114.18971,22.3326],[114.18968,22.33259],[114.18965,22.33258],[114.18963,22.33257],[114.18959,22.33255],[114.18883,22.33234],[114.18878,22.33233],[114.18874,22.33232],[114.18871,22.33232],[114.18867,22.33232],[114.18863,22.33232],[114.18859,22.33232],[114.18855,22.33232],[114.1883,22.33235],[114.18789,22.33239],[114.18716,22.33247],[114.18716,22.33248],[114.18716,22.33251],[114.18717,22.33256],[114.18718,22.33262],[114.18718,22.33267],[114.1872,22.33275],[114.18726,22.33295],[114.18728,22.33304],[114.18733,22.33327],[114.18735,22.33336],[114.18736,22.33344],[114.18737,22.33355],[114.18739,22.33373],[114.18742,22.33422],[114.18744,22.33461],[114.18745,22.33461],[114.18745,22.33472],[114.18671,22.33476],[114.18671,22.33478],[114.18671,22.33478],[114.18671,22.3348],[114.18666,22.33482],[114.18665,22.33508],[114.18652,22.33519],[114.18653,22.33538],[114.18628,22.33554],[114.18633,22.33593],[114.18621,22.33593],[114.18613,22.33592],[114.18599,22.33594],[114.18587,22.33598],[114.18598,22.33619],[114.18609,22.33632],[114.18609,22.33648],[114.18605,22.33651],[114.186,22.33676],[114.18605,22.33674],[114.18602,22.33685],[114.18603,22.33688],[114.18601,22.33692],[114.18602,22.33708],[114.18606,22.33713],[114.18611,22.33727],[114.18614,22.3373],[114.18613,22.3374],[114.18613,22.3375],[114.18612,22.33754],[114.18612,22.33758],[114.18613,22.3377],[114.18625,22.33773],[114.1861,22.33785],[114.1861,22.33796],[114.18567,22.33832],[114.18474,22.33911],[114.18447,22.33933],[114.18446,22.33934],[114.18446,22.33934],[114.18445,22.33935],[114.18444,22.33935],[114.18443,22.33936],[114.18442,22.33936],[114.18441,22.33937],[114.18439,22.33938],[114.18438,22.33939],[114.18437,22.3394],[114.18436,22.3394],[114.18435,22.33941],[114.18434,22.33941],[114.18433,22.33942],[114.18432,22.33943],[114.18431,22.33943],[114.18429,22.33944],[114.18428,22.33945],[114.18426,22.33946],[114.18424,22.33947],[114.18424,22.33947],[114.18423,22.33948],[114.18421,22.33949],[114.18419,22.3395],[114.18418,22.3395],[114.18417,22.33951],[114.18416,22.33951],[114.18415,22.33952],[114.18414,22.33952],[114.18413,22.33952],[114.18412,22.33953],[114.18411,22.33954],[114.18409,22.33954],[114.18407,22.33955],[114.18405,22.33956],[114.18404,22.33956],[114.18403,22.33957],[114.18403,22.33957],[114.18402,22.33957],[114.18401,22.33957],[114.184,22.33958],[114.184,22.33958],[114.18398,22.33958],[114.18398,22.33958],[114.18398,22.33958],[114.18396,22.33959],[114.18395,22.33959],[114.18394,22.33959],[114.18392,22.33959],[114.18391,22.33959],[114.1839,22.3396],[114.18389,22.3396],[114.18388,22.3396],[114.18388,22.3396],[114.18387,22.3396],[114.18385,22.3396],[114.18385,22.3396],[114.18384,22.3396],[114.18383,22.33961],[114.18383,22.33961],[114.18381,22.33961],[114.18379,22.33961],[114.18377,22.33961],[114.18377,22.33961],[114.18375,22.33961],[114.18374,22.33961],[114.18373,22.33961],[114.18372,22.33961],[114.18371,22.33961],[114.18369,22.33961],[114.18367,22.33961],[114.18366,22.33961],[114.18365,22.33961],[114.18359,22.33961],[114.18358,22.33961],[114.18358,22.33961],[114.18357,22.33961],[114.18356,22.33961],[114.18354,22.33961],[114.18354,22.33961],[114.18352,22.33961],[114.1835,22.33961],[114.18348,22.3396],[114.18346,22.3396],[114.18346,22.3396],[114.18344,22.3396],[114.18342,22.33959],[114.18342,22.33959],[114.18341,22.33959],[114.18339,22.33959],[114.18337,22.33958],[114.18335,22.33958],[114.18333,22.33957],[114.1833,22.33957],[114.18319,22.33964],[114.18316,22.33967],[114.18319,22.33969],[114.18322,22.33972],[114.18324,22.33975],[114.18326,22.33978],[114.18328,22.33981],[114.18331,22.33984],[114.18333,22.33987],[114.18335,22.3399],[114.18337,22.33993],[114.18339,22.33996],[114.18341,22.33999],[114.18343,22.34002],[114.18345,22.34006],[114.18347,22.34009],[114.18348,22.34012],[114.1835,22.34015],[114.18352,22.34018],[114.18354,22.34022],[114.18355,22.34025],[114.18357,22.34028],[114.18358,22.34032],[114.1836,22.34035],[114.18361,22.34038],[114.18363,22.34042],[114.18364,22.34045],[114.18366,22.34048],[114.18367,22.34052],[114.18368,22.34055],[114.1837,22.34059],[114.18371,22.34062],[114.18372,22.34065],[114.18373,22.34069],[114.18374,22.3407],[114.18397,22.34169],[114.18398,22.34172],[114.18401,22.34184],[114.18409,22.34218],[114.18416,22.34245],[114.18416,22.34247],[114.18417,22.34248],[114.18417,22.3425],[114.18418,22.34252],[114.18419,22.34255],[114.18419,22.34257],[114.1842,22.34259],[114.18421,22.34262],[114.18421,22.34262],[114.18421,22.34264],[114.18422,22.34266],[114.18423,22.34269],[114.18424,22.34269],[114.18425,22.34272],[114.18425,22.34273],[114.18426,22.34276],[114.18427,22.34278],[114.18428,22.34279],[114.18429,22.34282],[114.18431,22.34286],[114.18433,22.34289],[114.18434,22.34292],[114.18436,22.34295],[114.18438,22.34299],[114.1844,22.34302],[114.1844,22.34302],[114.18442,22.34305],[114.18443,22.34306],[114.18444,22.34308],[114.18445,22.3431],[114.1841,22.34323],[114.18405,22.34325],[114.18395,22.3433],[114.18383,22.34335],[114.18376,22.34339],[114.1836,22.34347],[114.18346,22.34356],[114.18335,22.34363],[114.18321,22.34372],[114.18311,22.3438],[114.18299,22.34388],[114.18292,22.34394],[114.18287,22.34397],[114.1828,22.34401],[114.1827,22.34407],[114.18263,22.34409],[114.18258,22.34411],[114.18255,22.34412],[114.18247,22.34414],[114.18231,22.34416],[114.18226,22.34416],[114.18221,22.34417],[114.18215,22.34417],[114.18194,22.34416],[114.18189,22.34416],[114.18186,22.34416],[114.18178,22.34414],[114.1817,22.34413],[114.1817,22.34414],[114.1817,22.34414],[114.1817,22.34416],[114.18169,22.3442],[114.18167,22.34429],[114.18161,22.34452],[114.18155,22.34486],[114.18151,22.34504],[114.18149,22.34519],[114.18146,22.3453],[114.18146,22.34539],[114.18145,22.34546],[114.18145,22.34559],[114.18146,22.34571],[114.18147,22.34583],[114.18148,22.34592],[114.1815,22.346],[114.1815,22.34606],[114.18151,22.34611],[114.18151,22.34618],[114.1815,22.34619],[114.1815,22.34621],[114.1815,22.34622],[114.18149,22.34633],[114.18148,22.34634],[114.18147,22.34636],[114.18147,22.34638],[114.18146,22.34642],[114.18146,22.34642],[114.18145,22.34643],[114.18145,22.34643],[114.18144,22.34644],[114.18142,22.34647],[114.18138,22.34652],[114.18138,22.34653],[114.18133,22.34659],[114.18128,22.34666],[114.18116,22.34681],[114.18072,22.34736],[114.18069,22.34739],[114.17942,22.34899],[114.17941,22.34899],[114.17939,22.34899],[114.17938,22.34898],[114.17935,22.34897],[114.17932,22.34897],[114.1793,22.34897],[114.17929,22.34897],[114.17928,22.34898],[114.17928,22.34898],[114.17926,22.34899],[114.17925,22.349],[114.17923,22.34901],[114.17922,22.34902],[114.17921,22.34903],[114.1792,22.34903],[114.17919,22.34904],[114.17919,22.34904],[114.17915,22.34905],[114.17912,22.34906],[114.1791,22.34907],[114.1791,22.34907],[114.17909,22.34907],[114.17909,22.34908],[114.17909,22.34908],[114.17908,22.34909],[114.17907,22.34909],[114.17906,22.3491],[114.17905,22.3491],[114.17901,22.34909],[114.17897,22.34907],[114.17896,22.34907],[114.17893,22.34908],[114.17892,22.34908],[114.17891,22.34908],[114.1789,22.34908],[114.1789,22.34907],[114.17889,22.34907],[114.17888,22.34905],[114.17888,22.34903],[114.17887,22.34902],[114.17886,22.34897],[114.17886,22.34895],[114.17885,22.34894],[114.17885,22.34892],[114.17886,22.3489],[114.17886,22.34887],[114.17887,22.34885],[114.17887,22.34884],[114.17887,22.34883],[114.17886,22.34882],[114.17885,22.34881],[114.17884,22.3488],[114.17883,22.34879],[114.17883,22.34877],[114.17882,22.34877],[114.17882,22.34875],[114.17881,22.34871],[114.17881,22.34869],[114.17881,22.34868],[114.17881,22.34867],[114.1788,22.34867],[114.17878,22.34866],[114.17875,22.34865],[114.17874,22.34864],[114.17873,22.34863],[114.17866,22.34863],[114.17865,22.34863],[114.17862,22.34863],[114.17861,22.34863],[114.17859,22.34862],[114.17858,22.34861],[114.17853,22.34861],[114.17852,22.3486],[114.17851,22.3486],[114.17851,22.34861],[114.17851,22.34861],[114.17849,22.34861],[114.17848,22.34862],[114.17848,22.34862],[114.17847,22.34863],[114.17846,22.34864],[114.17846,22.34865],[114.17846,22.34866],[114.17846,22.34867],[114.17845,22.3487],[114.17844,22.34875],[114.17843,22.34876],[114.17842,22.34879],[114.1784,22.34883],[114.17839,22.34885],[114.17839,22.34885],[114.17838,22.34885],[114.17837,22.34885],[114.17836,22.34885],[114.17834,22.34884],[114.17833,22.34883],[114.17828,22.34881],[114.17826,22.3488],[114.17824,22.34879],[114.17824,22.34879],[114.17822,22.34879],[114.1782,22.3488],[114.17819,22.34881],[114.17818,22.34882],[114.17818,22.34883],[114.17817,22.34884],[114.17817,22.34886],[114.17817,22.34886],[114.17817,22.34887],[114.17817,22.34891],[114.17818,22.34893],[114.17817,22.34894],[114.17817,22.34894],[114.17817,22.34895],[114.17816,22.34895],[114.17816,22.34896],[114.17814,22.34896],[114.17813,22.34897],[114.17811,22.34899],[114.1781,22.34899],[114.17808,22.349],[114.17808,22.34902],[114.17807,22.34902],[114.17806,22.34902],[114.17805,22.34902],[114.17804,22.34902],[114.17801,22.349],[114.17801,22.349],[114.178,22.34899],[114.17799,22.34899],[114.17799,22.34899],[114.17798,22.349],[114.17797,22.349],[114.17795,22.34901],[114.17794,22.34901],[114.17794,22.34901],[114.17792,22.34898],[114.17789,22.34896],[114.17789,22.34895],[114.17786,22.34894],[114.17783,22.34892],[114.17782,22.34891],[114.17779,22.34889],[114.17778,22.34888],[114.17777,22.34887],[114.17775,22.34887],[114.17773,22.34886],[114.1777,22.34885],[114.17765,22.34885],[114.17761,22.34886],[114.1776,22.34885],[114.17759,22.34885],[114.17759,22.34885],[114.17756,22.34884],[114.17754,22.34883],[114.17747,22.34879],[114.17742,22.34877],[114.1774,22.34876],[114.17735,22.34874],[114.17734,22.34873],[114.17729,22.34871],[114.17728,22.34871],[114.17724,22.3487],[114.17723,22.3487],[114.1772,22.3487],[114.17719,22.3487],[114.17717,22.3487],[114.17716,22.3487],[114.17714,22.34871],[114.17714,22.34872],[114.17714,22.34872],[114.17712,22.34874],[114.17711,22.34875],[114.1771,22.34875],[114.17708,22.34876],[114.17707,22.34878],[114.17707,22.34878],[114.17706,22.34879],[114.17704,22.34881],[114.17704,22.34882],[114.17701,22.34885],[114.17698,22.34889],[114.17697,22.34893],[114.17696,22.34895],[114.17694,22.349],[114.17693,22.34903],[114.17692,22.34905],[114.17692,22.34907],[114.17692,22.3491],[114.17692,22.34914],[114.17692,22.34915],[114.17692,22.34917],[114.17692,22.34919],[114.17691,22.34922]]]]},"properties":{"M_NM_Eng":"Metro","SR_Eng":"Metro","PDD_Cat_En":"Kowloon","PDD_Eng":"Kowloon City","M_NM_Tc":"都會區","SR_Tc":"都會區","PDD_Cat_Tc":"九龍","PDD_Tc":"九龍城","M_NM_Sc":"都会区","SR_Sc_1":"都会区","PDD_Cat_Sc":"九龙","PDD_Sc":"九龙城","Y2019_Popu":429300,"Y2019_Empl":212000,"Y2026_Popu":451100,"Y2026_Empl":237900,"Y2031_Popu":420050,"Y2031_Empl":227850}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[114.11401,22.34801],[114.11406,22.34805],[114.11407,22.34809],[114.11405,22.34812],[114.11402,22.34813],[114.11392,22.34811],[114.11387,22.3481],[114.11386,22.34808],[114.11386,22.34805],[114.11389,22.34801],[114.11396,22.348],[114.11401,22.34801]]],[[[114.11191,22.35688],[114.11191,22.3569],[114.11193,22.35707],[114.11193,22.35708],[114.11184,22.35717],[114.11177,22.35716],[114.11177,22.35713],[114.11176,22.35697],[114.11185,22.35687],[114.11191,22.35688]]],[[[114.1108,22.35727],[114.11082,22.35731],[114.11082,22.35747],[114.11082,22.35748],[114.11074,22.35758],[114.11069,22.35757],[114.11066,22.35737],[114.11074,22.35726],[114.1108,22.35727]]],[[[114.11109,22.35998],[114.11112,22.36004],[114.11111,22.3601],[114.11109,22.36021],[114.11094,22.36018],[114.11096,22.36008],[114.11097,22.36004],[114.11098,22.36001],[114.11102,22.35997],[114.11109,22.35998]]],[[[114.13977,22.382],[114.13979,22.38201],[114.13981,22.38201],[114.13983,22.38202],[114.13986,22.38203],[114.1399,22.38204],[114.13999,22.38207],[114.14002,22.38208],[114.14004,22.38209],[114.14006,22.38209],[114.14009,22.3821],[114.14019,22.38214],[114.14024,22.38215],[114.14026,22.38216],[114.14029,22.38217],[114.14031,22.38218],[114.14033,22.38219],[114.14036,22.3822],[114.14037,22.3822],[114.14039,22.38221],[114.14041,22.38222],[114.14043,22.38223],[114.14044,22.38224],[114.14047,22.38225],[114.14048,22.38226],[114.1405,22.38227],[114.14051,22.38228],[114.14052,22.38229],[114.14054,22.3823],[114.14055,22.38231],[114.14057,22.38232],[114.14059,22.38233],[114.14061,22.38235],[114.14063,22.38237],[114.14066,22.38239],[114.14072,22.38244],[114.14077,22.38248],[114.14081,22.38251],[114.14083,22.38253],[114.14085,22.38255],[114.1409,22.38259],[114.14094,22.38263],[114.14105,22.38273],[114.14115,22.38282],[114.14207,22.38337],[114.14207,22.38337],[114.14208,22.38337],[114.14208,22.38338],[114.14208,22.38338],[114.14209,22.38338],[114.14209,22.38338],[114.1421,22.38339],[114.1421,22.38339],[114.14211,22.38339],[114.14211,22.3834],[114.14212,22.3834],[114.14212,22.3834],[114.14213,22.38341],[114.14214,22.38341],[114.14214,22.38341],[114.14214,22.38342],[114.14215,22.38342],[114.14215,22.38342],[114.14216,22.38343],[114.14216,22.38343],[114.14219,22.38345],[114.14219,22.38345],[114.1422,22.38345],[114.1422,22.38346],[114.14221,22.38346],[114.14222,22.38346],[114.14222,22.38347],[114.14222,22.38347],[114.14223,22.38347],[114.14223,22.38347],[114.14224,22.38348],[114.14224,22.38348],[114.14224,22.38348],[114.14225,22.38348],[114.14225,22.38349],[114.14226,22.38349],[114.14226,22.38349],[114.14227,22.38349],[114.14227,22.3835],[114.14227,22.3835],[114.14228,22.3835],[114.14228,22.3835],[114.14229,22.38351],[114.14229,22.38351],[114.14229,22.38351],[114.1423,22.38351],[114.1423,22.38352],[114.14231,22.38352],[114.14231,22.38352],[114.14231,22.38352],[114.14232,22.38353],[114.14232,22.38353],[114.14233,22.38353],[114.14235,22.38355],[114.14236,22.38355],[114.14236,22.38355],[114.14237,22.38356],[114.14237,22.38356],[114.14237,22.38356],[114.14238,22.38356],[114.14238,22.38357],[114.14239,22.38357],[114.14239,22.38357],[114.1424,22.38358],[114.14241,22.38358],[114.14241,22.38358],[114.14242,22.38359],[114.14242,22.38359],[114.14243,22.38359],[114.14243,22.3836],[114.14243,22.3836],[114.14244,22.3836],[114.14244,22.3836],[114.14245,22.38361],[114.14245,22.38361],[114.14245,22.38361],[114.14246,22.38361],[114.14246,22.38362],[114.14247,22.38362],[114.14247,22.38362],[114.14247,22.38362],[114.14248,22.38363],[114.14248,22.38363],[114.14249,22.38363],[114.14249,22.38363],[114.14249,22.38364],[114.1425,22.38364],[114.14251,22.38364],[114.14251,22.38365],[114.14251,22.38365],[114.14252,22.38365],[114.14253,22.38366],[114.14253,22.38366],[114.14253,22.38366],[114.14254,22.38367],[114.14254,22.38367],[114.14255,22.38367],[114.14255,22.38367],[114.14255,22.38368],[114.14257,22.38368],[114.14257,22.38369],[114.14257,22.38369],[114.14258,22.38369],[114.14258,22.38369],[114.14259,22.3837],[114.14259,22.3837],[114.1426,22.3837],[114.1426,22.38371],[114.14261,22.38371],[114.14261,22.38371],[114.14262,22.38372],[114.14263,22.38372],[114.14263,22.38373],[114.14263,22.38373],[114.14264,22.38373],[114.14264,22.38373],[114.14265,22.38374],[114.14265,22.38374],[114.14266,22.38374],[114.14266,22.38375],[114.14267,22.38375],[114.14268,22.38376],[114.14268,22.38376],[114.14269,22.38377],[114.14269,22.38377],[114.1427,22.38377],[114.1427,22.38377],[114.1427,22.38378],[114.14271,22.38378],[114.14272,22.38378],[114.14272,22.38379],[114.14272,22.38379],[114.14273,22.38379],[114.14273,22.38379],[114.14274,22.3838],[114.14274,22.3838],[114.14274,22.3838],[114.14276,22.38381],[114.14276,22.38381],[114.14276,22.38382],[114.14277,22.38382],[114.14277,22.38382],[114.14277,22.38382],[114.14278,22.38383],[114.14278,22.38383],[114.14279,22.38383],[114.14279,22.38384],[114.14279,22.38384],[114.1428,22.38384],[114.1428,22.38384],[114.14281,22.38385],[114.14281,22.38385],[114.14282,22.38385],[114.14282,22.38386],[114.14283,22.38386],[114.14283,22.38386],[114.14283,22.38387],[114.14284,22.38387],[114.14284,22.38387],[114.14284,22.38387],[114.14285,22.38388],[114.14285,22.38388],[114.14286,22.38388],[114.14286,22.38389],[114.14286,22.38389],[114.14287,22.38389],[114.14287,22.38389],[114.14287,22.3839],[114.14288,22.3839],[114.14288,22.3839],[114.14289,22.38391],[114.14289,22.38391],[114.14289,22.38391],[114.1429,22.38391],[114.1429,22.38392],[114.14291,22.38392],[114.14291,22.38392],[114.14291,22.38393],[114.14292,22.38393],[114.14292,22.38393],[114.14292,22.38393],[114.14293,22.38394],[114.14293,22.38394],[114.14293,22.38394],[114.14294,22.38395],[114.14294,22.38395],[114.14295,22.38395],[114.14295,22.38395],[114.14295,22.38396],[114.14296,22.38396],[114.14296,22.38396],[114.14296,22.38397],[114.14297,22.38397],[114.14297,22.38398],[114.14298,22.38398],[114.14298,22.38398],[114.14299,22.38398],[114.14299,22.38399],[114.14299,22.38399],[114.143,22.38399],[114.143,22.384],[114.143,22.384],[114.14319,22.38414],[114.14328,22.38421],[114.14328,22.38421],[114.14329,22.38422],[114.14329,22.38422],[114.1433,22.38422],[114.1433,22.38422],[114.1433,22.38423],[114.14331,22.38423],[114.14331,22.38423],[114.14331,22.38424],[114.14332,22.38424],[114.14332,22.38424],[114.14333,22.38424],[114.14333,22.38425],[114.14334,22.38425],[114.14334,22.38426],[114.14334,22.38426],[114.14334,22.38427],[114.14335,22.38427],[114.14335,22.38427],[114.14335,22.38428],[114.14335,22.38428],[114.14336,22.38428],[114.14336,22.38429],[114.14336,22.38429],[114.14336,22.3843],[114.14337,22.3843],[114.14337,22.38431],[114.14337,22.38431],[114.14337,22.38431],[114.14337,22.38432],[114.14337,22.38432],[114.14337,22.38433],[114.14337,22.38433],[114.14338,22.38434],[114.14338,22.38434],[114.14338,22.38435],[114.14338,22.38435],[114.14338,22.38436],[114.14338,22.38436],[114.14338,22.38436],[114.14337,22.38436],[114.14337,22.38437],[114.14337,22.38437],[114.14337,22.38438],[114.14337,22.38438],[114.14336,22.38439],[114.14336,22.38439],[114.14336,22.38439],[114.14335,22.3844],[114.14335,22.3844],[114.14335,22.3844],[114.14334,22.3844],[114.14334,22.38441],[114.14333,22.38441],[114.14292,22.38421],[114.14216,22.38391],[114.14197,22.38383],[114.14189,22.3838],[114.14171,22.38373],[114.14161,22.38369],[114.14148,22.38364],[114.14144,22.38362],[114.14141,22.3836],[114.14131,22.38354],[114.14115,22.38345],[114.13921,22.38229],[114.13892,22.38209],[114.13886,22.38206],[114.1388,22.38203],[114.13873,22.38202],[114.13869,22.38201],[114.13864,22.382],[114.1386,22.382],[114.13856,22.382],[114.13851,22.382],[114.13847,22.38201],[114.13842,22.38202],[114.13837,22.38204],[114.13832,22.38205],[114.13806,22.38218],[114.13801,22.3822],[114.13796,22.38221],[114.13789,22.38222],[114.13782,22.38223],[114.13778,22.38223],[114.13774,22.38223],[114.13768,22.38222],[114.13764,22.38222],[114.13761,22.38221],[114.13758,22.3822],[114.13754,22.38219],[114.13751,22.38218],[114.13747,22.38216],[114.13743,22.38214],[114.13739,22.38211],[114.13735,22.38208],[114.13731,22.38204],[114.13727,22.382],[114.13727,22.382],[114.13725,22.38198],[114.13722,22.38194],[114.13717,22.38184],[114.13714,22.38176],[114.13712,22.38168],[114.13671,22.38168],[114.13656,22.38151],[114.13635,22.38124],[114.13621,22.38099],[114.13609,22.3807],[114.13599,22.38043],[114.13624,22.38043],[114.13633,22.38043],[114.13647,22.38042],[114.13666,22.38038],[114.13674,22.38035],[114.13684,22.38031],[114.13695,22.38024],[114.13701,22.38021],[114.13713,22.38011],[114.13723,22.38],[114.13725,22.37997],[114.13731,22.37989],[114.13738,22.37976],[114.13744,22.37962],[114.13747,22.37947],[114.13749,22.37931],[114.13747,22.37909],[114.13743,22.37881],[114.13732,22.37853],[114.1372,22.37835],[114.13656,22.3766],[114.13651,22.37645],[114.13651,22.3764],[114.1365,22.37631],[114.13643,22.37605],[114.1364,22.37587],[114.13638,22.37561],[114.13638,22.37523],[114.13638,22.37449],[114.13638,22.37279],[114.13636,22.37256],[114.13632,22.37248],[114.13618,22.37223],[114.13611,22.37213],[114.13609,22.3721],[114.13604,22.37204],[114.13598,22.372],[114.13584,22.3719],[114.13584,22.3719],[114.1355,22.37167],[114.13541,22.37182],[114.13539,22.37184],[114.13537,22.37187],[114.13531,22.37193],[114.13525,22.37196],[114.13523,22.37197],[114.13517,22.372],[114.13509,22.37201],[114.13501,22.37201],[114.13491,22.37199],[114.13486,22.37197],[114.13485,22.37228],[114.1348,22.37251],[114.13475,22.37265],[114.13465,22.37279],[114.13436,22.37288],[114.13417,22.37298],[114.13409,22.37306],[114.13401,22.37318],[114.13391,22.37324],[114.13376,22.37328],[114.13359,22.37332],[114.13348,22.37333],[114.13337,22.37328],[114.13312,22.37309],[114.13302,22.37302],[114.13289,22.373],[114.13278,22.37304],[114.13267,22.37312],[114.13263,22.37318],[114.1326,22.37328],[114.13224,22.37342],[114.13102,22.37387],[114.13069,22.37316],[114.13069,22.37316],[114.13048,22.37318],[114.13017,22.3732],[114.13002,22.37317],[114.12989,22.37315],[114.12973,22.37312],[114.12923,22.37303],[114.12863,22.37293],[114.12794,22.37281],[114.12768,22.373],[114.12727,22.37295],[114.12714,22.37288],[114.1264,22.3734],[114.1262,22.37354],[114.12583,22.37338],[114.12558,22.37328],[114.1254,22.3732],[114.12524,22.37313],[114.12502,22.37304],[114.12487,22.37298],[114.12476,22.37293],[114.1246,22.37286],[114.12446,22.3728],[114.12435,22.37275],[114.12423,22.3727],[114.1241,22.37264],[114.12382,22.37253],[114.12325,22.37228],[114.12325,22.37228],[114.1233,22.3721],[114.12337,22.37168],[114.12341,22.37146],[114.12343,22.37129],[114.12343,22.37128],[114.12344,22.37106],[114.12345,22.37089],[114.12345,22.37081],[114.12344,22.3707],[114.12341,22.37051],[114.12341,22.37049],[114.12339,22.37037],[114.12333,22.37016],[114.12332,22.37012],[114.12326,22.36995],[114.12318,22.36979],[114.12295,22.36939],[114.12239,22.36858],[114.12234,22.3685],[114.12207,22.36806],[114.12198,22.36793],[114.12165,22.36744],[114.12149,22.36718],[114.12147,22.36713],[114.12138,22.36693],[114.12129,22.36667],[114.12115,22.36604],[114.12113,22.36597],[114.12106,22.36573],[114.12097,22.36548],[114.12089,22.36534],[114.12084,22.36524],[114.12064,22.36493],[114.12025,22.36445],[114.12016,22.36434],[114.1201,22.36427],[114.11999,22.36413],[114.11989,22.36402],[114.11979,22.36393],[114.11966,22.36383],[114.11944,22.36372],[114.11916,22.36361],[114.11887,22.36352],[114.11851,22.36342],[114.11803,22.36326],[114.11771,22.36313],[114.11768,22.36312],[114.11763,22.36309],[114.11715,22.36286],[114.11575,22.36214],[114.1155,22.36198],[114.11516,22.36173],[114.11445,22.3612],[114.11409,22.36097],[114.11388,22.36085],[114.11365,22.36075],[114.11352,22.36069],[114.11339,22.36065],[114.11323,22.36059],[114.11283,22.3605],[114.11265,22.36046],[114.11172,22.3603],[114.11164,22.36028],[114.11166,22.3602],[114.11175,22.35978],[114.11185,22.35953],[114.11194,22.3593],[114.11197,22.35926],[114.11202,22.35923],[114.11207,22.35922],[114.11212,22.35922],[114.11217,22.35923],[114.1122,22.35925],[114.11223,22.35929],[114.1122,22.35931],[114.11252,22.35986],[114.11329,22.36017],[114.11526,22.35585],[114.11534,22.35568],[114.11556,22.35519],[114.1157,22.35511],[114.11602,22.35494],[114.11642,22.35472],[114.11602,22.35241],[114.11591,22.35174],[114.11514,22.35149],[114.11504,22.3516],[114.11511,22.35172],[114.11493,22.35195],[114.11481,22.35195],[114.11475,22.35207],[114.11468,22.35239],[114.11453,22.3524],[114.11449,22.35244],[114.11447,22.35266],[114.11447,22.35304],[114.11445,22.35309],[114.11442,22.35311],[114.11432,22.35311],[114.1142,22.35308],[114.11394,22.35295],[114.11371,22.35277],[114.11364,22.35268],[114.1136,22.35257],[114.1136,22.35248],[114.11362,22.35241],[114.11366,22.35242],[114.114,22.35157],[114.11421,22.35144],[114.11452,22.35066],[114.1144,22.35056],[114.11461,22.34996],[114.11471,22.34968],[114.11489,22.34913],[114.115,22.34916],[114.11501,22.34913],[114.11504,22.34905],[114.11507,22.34896],[114.11509,22.34888],[114.11517,22.34866],[114.11552,22.34766],[114.11541,22.34763],[114.11539,22.3476],[114.11546,22.34739],[114.11551,22.34738],[114.11603,22.34753],[114.11983,22.34864],[114.12339,22.33814],[114.12874,22.33971],[114.12877,22.33963],[114.12876,22.33963],[114.12962,22.33708],[114.12428,22.33552],[114.12671,22.32838],[114.12672,22.32837],[114.13412,22.33054],[114.13446,22.33038],[114.1354,22.32761],[114.12264,22.32386],[114.12263,22.32384],[114.12263,22.32382],[114.12264,22.32382],[114.1227,22.32364],[114.12264,22.32362],[114.12236,22.32331],[114.1223,22.32336],[114.12219,22.32324],[114.12188,22.32289],[114.12178,22.32278],[114.12183,22.32274],[114.12154,22.32241],[114.12153,22.32239],[114.12152,22.32238],[114.12152,22.32237],[114.12153,22.32236],[114.12171,22.3218],[114.12172,22.32178],[114.12172,22.32177],[114.12172,22.32173],[114.12171,22.32167],[114.12163,22.32152],[114.12942,22.31755],[114.12944,22.31755],[114.12947,22.31754],[114.12951,22.31755],[114.13092,22.31801],[114.13087,22.31816],[114.13118,22.31805],[114.13154,22.31805],[114.13336,22.31713],[114.13405,22.31369],[114.13405,22.31368],[114.13406,22.31365],[114.13407,22.31364],[114.13408,22.31362],[114.1341,22.31361],[114.13412,22.3136],[114.13414,22.31359],[114.13416,22.31359],[114.13419,22.31359],[114.13421,22.3136],[114.13423,22.31361],[114.13426,22.31362],[114.13427,22.31364],[114.13429,22.31366],[114.13429,22.31368],[114.1343,22.3137],[114.1343,22.31371],[114.13426,22.31388],[114.13421,22.31416],[114.13423,22.31417],[114.13425,22.31418],[114.13428,22.31419],[114.1343,22.31421],[114.13432,22.31424],[114.13433,22.31426],[114.13434,22.31429],[114.13435,22.31431],[114.13435,22.31433],[114.13435,22.31436],[114.13435,22.31438],[114.13359,22.3182],[114.13742,22.31886],[114.13745,22.31869],[114.13725,22.31865],[114.13725,22.31863],[114.13746,22.31867],[114.13747,22.31861],[114.13727,22.31858],[114.13727,22.31856],[114.13747,22.3186],[114.13816,22.31512],[114.13519,22.31461],[114.13521,22.31452],[114.13547,22.31456],[114.13549,22.31452],[114.13551,22.3145],[114.13553,22.31449],[114.13561,22.3145],[114.13843,22.31501],[114.13846,22.31503],[114.13847,22.31505],[114.13846,22.31508],[114.13789,22.31792],[114.13789,22.31793],[114.1379,22.31793],[114.1379,22.31794],[114.13794,22.31796],[114.13794,22.31799],[114.13847,22.31809],[114.13848,22.31804],[114.13873,22.31809],[114.13878,22.31792],[114.13919,22.31784],[114.13921,22.31801],[114.13937,22.31806],[114.13955,22.31792],[114.13979,22.31795],[114.14012,22.3177],[114.14037,22.31744],[114.1405,22.31732],[114.14061,22.31708],[114.1407,22.31696],[114.14072,22.31692],[114.14076,22.31686],[114.141,22.31646],[114.14111,22.31633],[114.14128,22.31622],[114.14152,22.3161],[114.14178,22.31584],[114.14183,22.31574],[114.14182,22.31569],[114.1418,22.31564],[114.14182,22.31561],[114.14186,22.31561],[114.14191,22.31563],[114.14195,22.31562],[114.14199,22.31557],[114.14207,22.31546],[114.14208,22.31544],[114.14207,22.31542],[114.14205,22.31539],[114.14205,22.31538],[114.14207,22.31538],[114.14209,22.31542],[114.14211,22.31543],[114.14214,22.3154],[114.14222,22.31536],[114.14223,22.31533],[114.14223,22.3153],[114.14225,22.31529],[114.14228,22.31528],[114.14232,22.31528],[114.14233,22.31525],[114.14239,22.31525],[114.14244,22.3153],[114.1425,22.31536],[114.14254,22.31542],[114.14265,22.31552],[114.14272,22.31558],[114.14273,22.31561],[114.14284,22.31574],[114.14288,22.31587],[114.14297,22.316],[114.14301,22.31625],[114.14303,22.31634],[114.14304,22.31641],[114.14308,22.31648],[114.14318,22.31657],[114.1433,22.31666],[114.14337,22.3167],[114.1434,22.31674],[114.14353,22.31672],[114.14367,22.31687],[114.14386,22.31671],[114.14426,22.31711],[114.14406,22.31728],[114.14411,22.31732],[114.14413,22.31736],[114.14413,22.31737],[114.14416,22.31735],[114.14423,22.31729],[114.14427,22.31733],[114.14425,22.31734],[114.14423,22.31731],[114.14415,22.31737],[114.14415,22.31738],[114.1442,22.31745],[114.14443,22.31789],[114.14448,22.31786],[114.14449,22.31784],[114.14451,22.31782],[114.14454,22.31781],[114.14457,22.31783],[114.14458,22.31785],[114.14457,22.31789],[114.1446,22.31788],[114.1447,22.31789],[114.14474,22.31791],[114.14475,22.31794],[114.14472,22.318],[114.14466,22.31805],[114.14457,22.31807],[114.14454,22.31807],[114.14446,22.31802],[114.14449,22.31797],[114.14444,22.31799],[114.14442,22.318],[114.1444,22.31803],[114.14438,22.31807],[114.14434,22.31815],[114.14431,22.31824],[114.14431,22.3183],[114.1443,22.31832],[114.1443,22.31834],[114.14432,22.31837],[114.14433,22.3184],[114.14433,22.31842],[114.14434,22.31846],[114.14432,22.3185],[114.14429,22.31861],[114.14431,22.31875],[114.14432,22.31884],[114.14437,22.31897],[114.14448,22.31915],[114.1446,22.3193],[114.14466,22.31936],[114.14473,22.31942],[114.14482,22.3195],[114.1449,22.31956],[114.14496,22.3196],[114.14498,22.31962],[114.145,22.31964],[114.14502,22.31966],[114.14502,22.31976],[114.14503,22.31986],[114.14504,22.31992],[114.14512,22.32003],[114.14516,22.32006],[114.1453,22.32024],[114.14536,22.3203],[114.1454,22.32034],[114.14549,22.32043],[114.14556,22.32049],[114.14558,22.32051],[114.1456,22.32053],[114.14565,22.32057],[114.1457,22.3206],[114.14577,22.32066],[114.14584,22.32072],[114.14588,22.32074],[114.14607,22.32085],[114.14618,22.32092],[114.14627,22.32098],[114.14639,22.32104],[114.14654,22.32109],[114.14681,22.32117],[114.14707,22.32123],[114.14722,22.32128],[114.14733,22.3213],[114.14734,22.32131],[114.14737,22.32133],[114.1474,22.32136],[114.14747,22.32144],[114.14749,22.32148],[114.1475,22.32152],[114.1475,22.32156],[114.14752,22.32165],[114.14752,22.32171],[114.14753,22.32177],[114.14757,22.3219],[114.14756,22.32192],[114.14756,22.32194],[114.14754,22.32196],[114.1475,22.32199],[114.14749,22.32201],[114.14748,22.32213],[114.14751,22.32211],[114.14752,22.32214],[114.14746,22.3222],[114.14743,22.3222],[114.14742,22.32219],[114.14738,22.32222],[114.14737,22.32224],[114.1474,22.32225],[114.1474,22.32227],[114.14737,22.32229],[114.14735,22.32231],[114.14733,22.32235],[114.14732,22.32238],[114.14728,22.3224],[114.14725,22.32244],[114.14717,22.32259],[114.14714,22.32263],[114.1471,22.32267],[114.14709,22.32271],[114.14707,22.32275],[114.14705,22.32279],[114.14701,22.32283],[114.14699,22.32288],[114.14696,22.32293],[114.14694,22.32299],[114.14694,22.32302],[114.14691,22.32307],[114.14686,22.32316],[114.14683,22.3232],[114.14685,22.32323],[114.14685,22.32325],[114.14684,22.32329],[114.14682,22.32332],[114.14678,22.32336],[114.14672,22.32338],[114.14669,22.32339],[114.14658,22.32336],[114.14653,22.32336],[114.14649,22.32337],[114.14653,22.32342],[114.14639,22.3235],[114.14637,22.32351],[114.14634,22.32349],[114.14624,22.32352],[114.14621,22.32354],[114.14617,22.32356],[114.14612,22.32361],[114.14609,22.32363],[114.14606,22.32365],[114.14604,22.32368],[114.14603,22.32371],[114.14597,22.32372],[114.14593,22.32374],[114.14589,22.32374],[114.14587,22.32373],[114.14582,22.32376],[114.14578,22.32377],[114.14565,22.32385],[114.14562,22.32387],[114.14559,22.32389],[114.14558,22.32389],[114.14554,22.32391],[114.14551,22.32392],[114.14548,22.32394],[114.14545,22.32395],[114.14544,22.32395],[114.14515,22.32412],[114.14462,22.32442],[114.14459,22.32442],[114.14457,22.3244],[114.14455,22.32438],[114.14455,22.32435],[114.14455,22.32433],[114.14457,22.32431],[114.14515,22.32397],[114.14535,22.32386],[114.14498,22.32352],[114.14523,22.3233],[114.14505,22.32315],[114.14482,22.32337],[114.14428,22.32287],[114.14442,22.32273],[114.14394,22.32229],[114.14377,22.32244],[114.14373,22.32241],[114.14373,22.3224],[114.1439,22.32225],[114.14385,22.32221],[114.14368,22.32237],[114.14364,22.32232],[114.14318,22.32275],[114.14311,22.32268],[114.14373,22.3221],[114.14312,22.32153],[114.14247,22.32213],[114.14271,22.32236],[114.14271,22.32237],[114.14271,22.32237],[114.14271,22.32237],[114.14268,22.3224],[114.14268,22.3224],[114.14267,22.3224],[114.14267,22.3224],[114.14243,22.32217],[114.14236,22.32224],[114.14265,22.32251],[114.14265,22.32252],[114.14259,22.32258],[114.14259,22.32258],[114.1423,22.3223],[114.14219,22.32239],[114.14248,22.32267],[114.14248,22.32267],[114.14248,22.32268],[114.14245,22.32271],[114.14244,22.3227],[114.14244,22.32271],[114.14215,22.32243],[114.14213,22.32245],[114.14212,22.32246],[114.14119,22.32331],[114.14219,22.32423],[114.14275,22.32464],[114.14315,22.32484],[114.14326,22.32489],[114.14339,22.32496],[114.14359,22.32485],[114.1436,22.32485],[114.14362,22.32485],[114.14364,22.32485],[114.14366,22.32486],[114.14368,22.32488],[114.14368,22.3249],[114.14369,22.32492],[114.14368,22.32494],[114.14367,22.32495],[114.14365,22.32497],[114.14289,22.32539],[114.14218,22.32579],[114.14197,22.3259],[114.14195,22.32591],[114.14195,22.32591],[114.14193,22.32591],[114.14192,22.3259],[114.14191,22.3259],[114.14189,22.32589],[114.14189,22.32589],[114.14151,22.3261],[114.1413,22.32622],[114.14128,22.32623],[114.14112,22.32632],[114.14054,22.32664],[114.14029,22.32677],[114.14017,22.32683],[114.14003,22.32689],[114.1399,22.32693],[114.13975,22.32697],[114.13961,22.32699],[114.13947,22.327],[114.13932,22.32701],[114.13918,22.327],[114.13903,22.32698],[114.13889,22.32695],[114.13875,22.32691],[114.13861,22.32687],[114.13848,22.32681],[114.13836,22.32674],[114.13831,22.3267],[114.13825,22.32665],[114.13806,22.32653],[114.13772,22.32656],[114.13776,22.32662],[114.13779,22.32667],[114.1378,22.32672],[114.1378,22.32677],[114.13779,22.32681],[114.13802,22.32704],[114.13859,22.32758],[114.13981,22.32843],[114.14072,22.32898],[114.14165,22.32949],[114.14347,22.33028],[114.14357,22.33035],[114.14394,22.33061],[114.14456,22.33101],[114.14411,22.33119],[114.14214,22.33193],[114.14234,22.33297],[114.1425,22.33381],[114.14245,22.33382],[114.14239,22.33382],[114.14235,22.33383],[114.14229,22.33383],[114.14195,22.3339],[114.14067,22.33445],[114.14031,22.33461],[114.14031,22.33462],[114.14031,22.33462],[114.14024,22.33465],[114.14018,22.33467],[114.14018,22.33466],[114.14018,22.33466],[114.13945,22.33498],[114.13944,22.33496],[114.13944,22.33495],[114.13927,22.33503],[114.13927,22.33503],[114.13928,22.33505],[114.1375,22.33581],[114.13702,22.33602],[114.13702,22.33602],[114.13709,22.33617],[114.13767,22.33736],[114.13773,22.33748],[114.13773,22.33749],[114.13597,22.3378],[114.13581,22.33782],[114.13481,22.338],[114.13456,22.33806],[114.13431,22.33813],[114.13407,22.33822],[114.13394,22.33828],[114.13375,22.33837],[114.1336,22.33845],[114.13346,22.33854],[114.13339,22.33858],[114.1334,22.33859],[114.13348,22.3389],[114.1335,22.33896],[114.13362,22.3391],[114.13374,22.33912],[114.13383,22.33914],[114.13389,22.33918],[114.13393,22.33921],[114.13399,22.33927],[114.13404,22.33933],[114.13415,22.33952],[114.13417,22.33957],[114.13418,22.33957],[114.13418,22.33959],[114.13422,22.33966],[114.13433,22.33961],[114.13445,22.33958],[114.13453,22.33957],[114.13474,22.33956],[114.13493,22.33958],[114.13511,22.33963],[114.13512,22.33963],[114.13529,22.33972],[114.13533,22.33974],[114.13548,22.33984],[114.13564,22.34],[114.13572,22.34011],[114.13582,22.3403],[114.1359,22.34053],[114.13596,22.34081],[114.13598,22.3411],[114.13597,22.34139],[114.13595,22.34154],[114.13594,22.34155],[114.13594,22.34167],[114.13594,22.34178],[114.13591,22.34197],[114.13587,22.34212],[114.13579,22.34233],[114.13574,22.34249],[114.1357,22.34266],[114.13567,22.34282],[114.13566,22.34292],[114.13566,22.34303],[114.13568,22.34314],[114.1357,22.34321],[114.13571,22.34323],[114.13577,22.34332],[114.13582,22.3434],[114.13585,22.34343],[114.13589,22.34347],[114.13595,22.34352],[114.13597,22.34354],[114.13601,22.34357],[114.13604,22.34359],[114.13606,22.3436],[114.13613,22.34363],[114.13613,22.34363],[114.13613,22.34364],[114.13616,22.34365],[114.13621,22.34367],[114.13626,22.3437],[114.13634,22.34372],[114.1364,22.34375],[114.13648,22.34377],[114.13654,22.34379],[114.13668,22.34381],[114.13672,22.34381],[114.13683,22.34381],[114.13703,22.34381],[114.13714,22.34379],[114.13719,22.34379],[114.13727,22.34377],[114.1374,22.34374],[114.13743,22.34373],[114.13748,22.34371],[114.13755,22.34367],[114.13759,22.34366],[114.13764,22.34362],[114.1377,22.34358],[114.13776,22.34353],[114.13779,22.34351],[114.13787,22.34342],[114.13789,22.34339],[114.13793,22.34333],[114.13797,22.34326],[114.13799,22.34323],[114.13803,22.34311],[114.13807,22.34298],[114.13827,22.34126],[114.13828,22.34125],[114.13841,22.3412],[114.13853,22.34116],[114.13875,22.34105],[114.13901,22.34091],[114.13923,22.34078],[114.1399,22.3403],[114.14013,22.34016],[114.14037,22.34004],[114.14069,22.33993],[114.14084,22.33989],[114.14104,22.33987],[114.14123,22.33988],[114.14142,22.33992],[114.14148,22.33995],[114.14167,22.34004],[114.1418,22.34013],[114.14195,22.34025],[114.14203,22.34032],[114.14206,22.34035],[114.14211,22.34039],[114.14217,22.34045],[114.14224,22.34052],[114.14231,22.34059],[114.14239,22.34068],[114.14252,22.34084],[114.14257,22.34088],[114.14265,22.34095],[114.14272,22.34102],[114.14279,22.34107],[114.14286,22.34112],[114.14301,22.34114],[114.14331,22.34118],[114.14331,22.34118],[114.14332,22.34118],[114.14332,22.34118],[114.14333,22.34118],[114.14333,22.34118],[114.14334,22.34118],[114.14334,22.34118],[114.14335,22.34118],[114.14335,22.34118],[114.14336,22.34118],[114.14337,22.34118],[114.14337,22.34118],[114.14338,22.34118],[114.14338,22.34118],[114.14339,22.34118],[114.14339,22.34119],[114.1434,22.34119],[114.14341,22.34119],[114.14342,22.34119],[114.14342,22.34119],[114.14343,22.34119],[114.14343,22.34119],[114.14344,22.34119],[114.14344,22.34119],[114.14345,22.34119],[114.14345,22.34119],[114.14346,22.34119],[114.14346,22.34119],[114.14347,22.34119],[114.14347,22.34119],[114.14348,22.34118],[114.14348,22.34118],[114.14349,22.34118],[114.14349,22.34118],[114.1435,22.34118],[114.14351,22.34118],[114.14351,22.34118],[114.14352,22.34118],[114.14352,22.34118],[114.14353,22.34118],[114.14353,22.34118],[114.14354,22.34118],[114.14354,22.34118],[114.14355,22.34118],[114.14355,22.34118],[114.14356,22.34118],[114.14356,22.34118],[114.14357,22.34118],[114.14357,22.34118],[114.14358,22.34117],[114.14358,22.34117],[114.14359,22.34117],[114.14359,22.34117],[114.1436,22.34117],[114.1436,22.34117],[114.14361,22.34117],[114.14361,22.34117],[114.14362,22.34117],[114.14362,22.34117],[114.14363,22.34116],[114.14363,22.34116],[114.14364,22.34116],[114.14365,22.34116],[114.14365,22.34116],[114.14365,22.34116],[114.14366,22.34116],[114.14366,22.34116],[114.14367,22.34116],[114.14367,22.34115],[114.14368,22.34115],[114.14368,22.34115],[114.14369,22.34115],[114.14369,22.34115],[114.1437,22.34115],[114.1437,22.34115],[114.14371,22.34114],[114.14371,22.34114],[114.14372,22.34114],[114.14372,22.34114],[114.14373,22.34114],[114.14374,22.34114],[114.14374,22.34113],[114.14374,22.34113],[114.14375,22.34113],[114.14375,22.34113],[114.14376,22.34113],[114.14376,22.34113],[114.14377,22.34112],[114.14378,22.34112],[114.14378,22.34112],[114.14379,22.34112],[114.14379,22.34112],[114.1438,22.34111],[114.1438,22.34111],[114.1438,22.34111],[114.14381,22.34111],[114.14381,22.34111],[114.14382,22.3411],[114.14383,22.3411],[114.14383,22.3411],[114.14384,22.3411],[114.14384,22.3411],[114.14384,22.34109],[114.14385,22.34109],[114.14385,22.34109],[114.14386,22.34109],[114.14387,22.34108],[114.14387,22.34108],[114.14387,22.34108],[114.14388,22.34108],[114.14388,22.34108],[114.14389,22.34107],[114.14389,22.34107],[114.1439,22.34107],[114.1439,22.34107],[114.14391,22.34106],[114.14391,22.34106],[114.14391,22.34106],[114.14392,22.34106],[114.14392,22.34105],[114.14393,22.34105],[114.14393,22.34105],[114.14394,22.34105],[114.14394,22.34104],[114.14394,22.34104],[114.14395,22.34104],[114.14395,22.34103],[114.14396,22.34103],[114.14396,22.34103],[114.14396,22.34103],[114.14397,22.34102],[114.14398,22.34102],[114.14398,22.34102],[114.14398,22.34101],[114.14399,22.34101],[114.14399,22.34101],[114.144,22.341],[114.144,22.341],[114.144,22.341],[114.14401,22.341],[114.14402,22.34099],[114.14404,22.34097],[114.14404,22.34097],[114.14405,22.34096],[114.14405,22.34096],[114.14405,22.34096],[114.14406,22.34096],[114.14406,22.34095],[114.14406,22.34095],[114.14407,22.34095],[114.14407,22.34094],[114.14407,22.34094],[114.14408,22.34093],[114.14408,22.34093],[114.14409,22.34093],[114.14409,22.34092],[114.14409,22.34092],[114.1441,22.34092],[114.1441,22.34091],[114.1441,22.34091],[114.14411,22.34091],[114.14411,22.3409],[114.14412,22.3409],[114.14412,22.34089],[114.14413,22.34089],[114.14413,22.34089],[114.14413,22.34088],[114.14414,22.34088],[114.14414,22.34087],[114.14414,22.34087],[114.14415,22.34087],[114.14415,22.34086],[114.14415,22.34086],[114.14416,22.34086],[114.14416,22.34085],[114.14439,22.34059],[114.14461,22.34033],[114.14463,22.3403],[114.14464,22.3403],[114.14464,22.34029],[114.14465,22.34029],[114.14465,22.34029],[114.14465,22.34028],[114.14466,22.34028],[114.14466,22.34027],[114.14466,22.34027],[114.14467,22.34027],[114.14467,22.34026],[114.14467,22.34026],[114.14468,22.34026],[114.14468,22.34025],[114.14468,22.34025],[114.14469,22.34025],[114.14469,22.34024],[114.14469,22.34024],[114.1447,22.34024],[114.1447,22.34023],[114.14471,22.34023],[114.14471,22.34022],[114.14471,22.34022],[114.14472,22.34022],[114.14472,22.34021],[114.14472,22.34021],[114.14473,22.34021],[114.14473,22.3402],[114.14473,22.3402],[114.14474,22.3402],[114.14474,22.34019],[114.14475,22.34019],[114.14475,22.34019],[114.14475,22.34018],[114.14476,22.34018],[114.14476,22.34018],[114.14477,22.34018],[114.14477,22.34017],[114.14478,22.34017],[114.14478,22.34016],[114.14478,22.34016],[114.14479,22.34016],[114.14479,22.34016],[114.14479,22.34015],[114.1448,22.34015],[114.1448,22.34015],[114.14481,22.34014],[114.14481,22.34014],[114.14481,22.34014],[114.14482,22.34013],[114.14482,22.34013],[114.14483,22.34013],[114.14483,22.34013],[114.14483,22.34012],[114.14484,22.34012],[114.14484,22.34012],[114.14485,22.34012],[114.14485,22.34011],[114.14486,22.34011],[114.14486,22.34011],[114.14486,22.3401],[114.14487,22.3401],[114.14487,22.3401],[114.14488,22.3401],[114.14488,22.34009],[114.14488,22.34009],[114.14489,22.34009],[114.14489,22.34009],[114.1449,22.34008],[114.1449,22.34008],[114.14491,22.34008],[114.14491,22.34008],[114.14492,22.34007],[114.14492,22.34007],[114.14492,22.34007],[114.14493,22.34007],[114.14493,22.34006],[114.14494,22.34006],[114.14494,22.34006],[114.14495,22.34006],[114.14495,22.34005],[114.14496,22.34005],[114.14496,22.34005],[114.14496,22.34005],[114.14497,22.34005],[114.14497,22.34004],[114.14498,22.34004],[114.14498,22.34004],[114.14499,22.34004],[114.14501,22.34003],[114.14503,22.34002],[114.14506,22.34],[114.14509,22.33999],[114.1451,22.33999],[114.1451,22.33999],[114.14511,22.33999],[114.14511,22.33998],[114.14512,22.33998],[114.14512,22.33998],[114.14513,22.33998],[114.14513,22.33998],[114.14514,22.33998],[114.14514,22.33997],[114.14515,22.33997],[114.14533,22.33991],[114.14539,22.3399],[114.14543,22.3399],[114.14549,22.33989],[114.14554,22.33989],[114.14559,22.33989],[114.14568,22.33989],[114.14571,22.33989],[114.14573,22.33989],[114.14576,22.3399],[114.14579,22.3399],[114.14583,22.3399],[114.14588,22.3399],[114.14593,22.3399],[114.14602,22.33991],[114.14607,22.33991],[114.14612,22.33991],[114.14617,22.33991],[114.14622,22.33992],[114.14627,22.33992],[114.14628,22.33992],[114.14631,22.33992],[114.14634,22.33992],[114.14636,22.33992],[114.14641,22.33993],[114.14646,22.33993],[114.14651,22.33993],[114.14656,22.33994],[114.14658,22.33994],[114.1466,22.33994],[114.14663,22.33994],[114.14665,22.33995],[114.14669,22.33995],[114.14673,22.33995],[114.14676,22.33996],[114.14681,22.33997],[114.14685,22.33997],[114.14689,22.33998],[114.14698,22.34],[114.14703,22.34001],[114.14707,22.34003],[114.14712,22.34004],[114.14717,22.34005],[114.14719,22.34006],[114.14721,22.34007],[114.14724,22.34007],[114.14758,22.34017],[114.14857,22.34045],[114.14924,22.34065],[114.14927,22.34066],[114.1493,22.34066],[114.14935,22.34068],[114.14939,22.34069],[114.14941,22.34069],[114.14942,22.3407],[114.14945,22.34071],[114.14948,22.34072],[114.14953,22.34073],[114.14959,22.34075],[114.14963,22.34077],[114.14907,22.34079],[114.14906,22.34079],[114.14905,22.34079],[114.14905,22.34079],[114.14904,22.34079],[114.14904,22.34079],[114.14903,22.34079],[114.14902,22.34079],[114.14902,22.34079],[114.14902,22.34079],[114.14902,22.34079],[114.14898,22.34078],[114.14893,22.34078],[114.14892,22.34078],[114.14892,22.34078],[114.14891,22.34078],[114.14891,22.34078],[114.14891,22.34078],[114.1489,22.34078],[114.1489,22.34078],[114.14889,22.34078],[114.14889,22.34078],[114.14888,22.34078],[114.14888,22.34078],[114.14887,22.34078],[114.14887,22.34078],[114.14886,22.34078],[114.14886,22.34078],[114.14885,22.34078],[114.14885,22.34077],[114.14884,22.34077],[114.14883,22.34077],[114.14883,22.34077],[114.14882,22.34077],[114.14882,22.34077],[114.14882,22.34077],[114.14881,22.34077],[114.14881,22.34078],[114.1488,22.34078],[114.1488,22.34078],[114.14879,22.34078],[114.14879,22.34078],[114.14878,22.34078],[114.14876,22.34078],[114.14872,22.34079],[114.1487,22.34079],[114.14865,22.3408],[114.14856,22.34081],[114.14847,22.34082],[114.14843,22.34082],[114.14704,22.34144],[114.14699,22.34156],[114.14694,22.34168],[114.14705,22.34208],[114.14695,22.34233],[114.14676,22.34261],[114.14677,22.34271],[114.14682,22.3428],[114.14682,22.3428],[114.14689,22.34292],[114.14689,22.34292],[114.1469,22.34338],[114.14672,22.34368],[114.14691,22.34405],[114.14683,22.34419],[114.14694,22.34438],[114.1471,22.34442],[114.14711,22.34443],[114.1471,22.34444],[114.14709,22.34445],[114.14671,22.34526],[114.14668,22.34533],[114.14666,22.34535],[114.14663,22.34539],[114.14663,22.3454],[114.1466,22.34544],[114.1466,22.34544],[114.14659,22.34548],[114.14656,22.34565],[114.14652,22.34582],[114.14649,22.34596],[114.14648,22.34599],[114.14646,22.34603],[114.14641,22.3462],[114.14637,22.34633],[114.14635,22.3464],[114.14632,22.34643],[114.14616,22.34654],[114.14615,22.34655],[114.14612,22.34656],[114.146,22.34665],[114.14597,22.34667],[114.14593,22.34671],[114.14592,22.34671],[114.14592,22.34671],[114.14591,22.34671],[114.14577,22.34676],[114.14572,22.34678],[114.14566,22.34681],[114.14563,22.34682],[114.14562,22.34682],[114.14561,22.34683],[114.14559,22.34683],[114.14558,22.34684],[114.14555,22.34685],[114.1455,22.34688],[114.14549,22.34689],[114.14548,22.3469],[114.14547,22.3469],[114.14546,22.34691],[114.14545,22.34692],[114.14544,22.34692],[114.14544,22.34693],[114.14541,22.34695],[114.14541,22.34695],[114.1454,22.34696],[114.14539,22.34697],[114.14538,22.34698],[114.14537,22.34698],[114.14535,22.347],[114.14534,22.34701],[114.14532,22.34703],[114.14531,22.34704],[114.1453,22.34706],[114.14528,22.34707],[114.14528,22.34708],[114.14527,22.34709],[114.14526,22.3471],[114.14525,22.34711],[114.14521,22.34717],[114.14515,22.34724],[114.14515,22.34724],[114.14514,22.34725],[114.14514,22.34726],[114.14513,22.34727],[114.14513,22.34728],[114.14512,22.34728],[114.14512,22.34729],[114.14512,22.34731],[114.14512,22.34731],[114.14512,22.34732],[114.14513,22.34732],[114.14513,22.34736],[114.14514,22.3477],[114.14512,22.34774],[114.14492,22.34788],[114.14489,22.34789],[114.14487,22.34789],[114.14484,22.3479],[114.14482,22.3479],[114.1448,22.34791],[114.14478,22.34792],[114.14476,22.34792],[114.14475,22.34793],[114.14474,22.34793],[114.14474,22.34793],[114.14473,22.34793],[114.1447,22.34795],[114.1447,22.34795],[114.14469,22.34795],[114.14469,22.34796],[114.14469,22.34796],[114.14468,22.34797],[114.14468,22.34797],[114.14468,22.34797],[114.14467,22.34799],[114.14467,22.348],[114.14466,22.34814],[114.14466,22.34821],[114.1446,22.3482],[114.14459,22.3482],[114.14458,22.34831],[114.14458,22.34831],[114.14458,22.34832],[114.14458,22.34833],[114.14459,22.34834],[114.14459,22.34836],[114.14459,22.34837],[114.1446,22.34839],[114.14461,22.34839],[114.14461,22.3484],[114.14462,22.34841],[114.14464,22.34844],[114.14466,22.34845],[114.14467,22.34846],[114.14476,22.34853],[114.14476,22.34854],[114.14477,22.34855],[114.14477,22.34856],[114.14477,22.34856],[114.1448,22.34863],[114.14481,22.34864],[114.14491,22.34894],[114.14486,22.34892],[114.14484,22.34892],[114.14483,22.34892],[114.14482,22.34891],[114.1448,22.34891],[114.14479,22.34891],[114.14478,22.34891],[114.14476,22.34891],[114.14475,22.34891],[114.14474,22.34891],[114.14473,22.34891],[114.14471,22.34891],[114.1447,22.34891],[114.14469,22.34891],[114.14468,22.34891],[114.14466,22.34891],[114.14465,22.34891],[114.14463,22.34891],[114.14461,22.34891],[114.14459,22.34892],[114.14458,22.34892],[114.14457,22.34892],[114.14453,22.34893],[114.14446,22.34895],[114.14442,22.34896],[114.14438,22.34897],[114.14435,22.34897],[114.14429,22.34899],[114.14425,22.34899],[114.14422,22.349],[114.14419,22.349],[114.14416,22.34901],[114.14414,22.34901],[114.14411,22.34901],[114.14409,22.34902],[114.14402,22.34903],[114.14395,22.34904],[114.14392,22.34904],[114.1439,22.34904],[114.14387,22.34905],[114.14386,22.34905],[114.14373,22.34908],[114.1437,22.34909],[114.14367,22.34909],[114.14362,22.3491],[114.14359,22.34911],[114.1435,22.34913],[114.14348,22.34914],[114.14346,22.34914],[114.14343,22.34914],[114.14341,22.34915],[114.14338,22.34915],[114.14336,22.34915],[114.14335,22.34915],[114.14327,22.34916],[114.14326,22.34916],[114.14323,22.34916],[114.14322,22.34917],[114.1432,22.34917],[114.14319,22.34917],[114.14317,22.34917],[114.14316,22.34917],[114.14314,22.34916],[114.14313,22.34916],[114.1431,22.34916],[114.14309,22.34916],[114.14309,22.34916],[114.14308,22.34916],[114.14308,22.34916],[114.14308,22.34916],[114.14307,22.34916],[114.14306,22.34916],[114.14304,22.34915],[114.14301,22.34915],[114.14299,22.34915],[114.14297,22.34914],[114.14295,22.34914],[114.14293,22.34914],[114.14291,22.34913],[114.14289,22.34913],[114.14288,22.34912],[114.14281,22.3491],[114.14278,22.34909],[114.14276,22.34909],[114.14273,22.34908],[114.14271,22.34908],[114.14269,22.34907],[114.14267,22.34907],[114.14266,22.34907],[114.14264,22.34906],[114.14262,22.34906],[114.1426,22.34906],[114.14258,22.34905],[114.14257,22.34905],[114.14256,22.34905],[114.14255,22.34905],[114.14253,22.34905],[114.14252,22.34905],[114.14251,22.34905],[114.1425,22.34905],[114.14249,22.34906],[114.14248,22.34906],[114.14247,22.34906],[114.14245,22.34906],[114.14243,22.34907],[114.14242,22.34907],[114.14241,22.34907],[114.1424,22.34908],[114.14239,22.34908],[114.14237,22.34909],[114.14236,22.34909],[114.14236,22.3491],[114.14236,22.3491],[114.14235,22.3491],[114.14234,22.3491],[114.14233,22.34911],[114.14232,22.34911],[114.14232,22.34912],[114.14231,22.34912],[114.1423,22.34913],[114.14229,22.34914],[114.14228,22.34914],[114.14227,22.34915],[114.14226,22.34916],[114.14225,22.34917],[114.14224,22.34918],[114.14223,22.34919],[114.14222,22.3492],[114.14221,22.34921],[114.14221,22.34922],[114.1422,22.34923],[114.1422,22.34924],[114.14219,22.34924],[114.14218,22.34926],[114.14217,22.34928],[114.14216,22.3493],[114.14215,22.34932],[114.14214,22.34934],[114.14214,22.34936],[114.14213,22.34937],[114.14213,22.34938],[114.14212,22.3494],[114.14211,22.34943],[114.1421,22.34946],[114.1421,22.34948],[114.14209,22.3495],[114.14209,22.34951],[114.14208,22.34953],[114.14208,22.34955],[114.14207,22.34958],[114.14207,22.3496],[114.14206,22.34967],[114.14206,22.34968],[114.14205,22.34969],[114.14205,22.3497],[114.14206,22.34983],[114.14206,22.34984],[114.14205,22.34986],[114.14205,22.34988],[114.14205,22.3499],[114.14205,22.34991],[114.14205,22.34992],[114.14205,22.34994],[114.14205,22.34995],[114.14204,22.34997],[114.14203,22.35001],[114.14203,22.35004],[114.14202,22.35007],[114.14202,22.3501],[114.14202,22.35013],[114.14201,22.35017],[114.14201,22.3502],[114.14201,22.35022],[114.14201,22.35023],[114.14201,22.35026],[114.14201,22.35028],[114.14201,22.35031],[114.14201,22.35033],[114.14201,22.35035],[114.14201,22.35037],[114.14201,22.3504],[114.14201,22.35043],[114.14201,22.35045],[114.14202,22.35048],[114.14202,22.35051],[114.14202,22.35053],[114.14202,22.35055],[114.14203,22.35057],[114.14203,22.35059],[114.14203,22.35061],[114.14204,22.35063],[114.14205,22.35065],[114.14205,22.35067],[114.14206,22.3507],[114.14207,22.35072],[114.14208,22.35074],[114.14209,22.35077],[114.1421,22.35079],[114.14211,22.35081],[114.14211,22.35082],[114.14212,22.35083],[114.14213,22.35085],[114.14213,22.35087],[114.14214,22.35089],[114.14216,22.35092],[114.14217,22.35093],[114.14218,22.35096],[114.14219,22.35097],[114.14219,22.35098],[114.1422,22.351],[114.14222,22.35102],[114.14222,22.35103],[114.14222,22.35104],[114.14223,22.35105],[114.14224,22.35106],[114.14224,22.35107],[114.14225,22.35108],[114.14225,22.35109],[114.14225,22.3511],[114.14226,22.35111],[114.14226,22.35112],[114.14226,22.35113],[114.14226,22.35114],[114.14226,22.35115],[114.14226,22.35116],[114.14226,22.35116],[114.14227,22.35117],[114.14227,22.35118],[114.14226,22.35119],[114.14226,22.35119],[114.14226,22.3512],[114.14226,22.35121],[114.14226,22.35121],[114.14226,22.35122],[114.14225,22.35123],[114.14224,22.35125],[114.14224,22.35126],[114.14223,22.35128],[114.14222,22.35128],[114.14222,22.3513],[114.14221,22.3513],[114.1422,22.35132],[114.1422,22.35133],[114.14219,22.35134],[114.14219,22.35134],[114.14218,22.35136],[114.14217,22.35137],[114.14216,22.35137],[114.14215,22.35138],[114.14214,22.3514],[114.14213,22.35141],[114.14211,22.35143],[114.14211,22.35143],[114.1421,22.35144],[114.14209,22.35144],[114.14209,22.35145],[114.14208,22.35145],[114.14208,22.35146],[114.14207,22.35148],[114.14205,22.3515],[114.14204,22.35151],[114.14204,22.35152],[114.14204,22.35152],[114.14203,22.35153],[114.14201,22.35155],[114.142,22.35157],[114.14197,22.35161],[114.14194,22.35165],[114.14192,22.35168],[114.1419,22.3517],[114.1419,22.35171],[114.14188,22.35173],[114.14187,22.35175],[114.14186,22.35176],[114.14185,22.35178],[114.14184,22.3518],[114.14183,22.35181],[114.14183,22.35182],[114.14183,22.35183],[114.14183,22.35184],[114.14183,22.35185],[114.14183,22.35185],[114.14182,22.35186],[114.14182,22.35187],[114.14181,22.35188],[114.14181,22.35188],[114.14181,22.35189],[114.1418,22.35189],[114.1418,22.3519],[114.14179,22.35192],[114.14178,22.35193],[114.14177,22.35195],[114.14176,22.35197],[114.14176,22.35198],[114.14175,22.352],[114.14174,22.35203],[114.14174,22.35204],[114.14173,22.35208],[114.14173,22.35209],[114.14173,22.35211],[114.14173,22.35212],[114.14173,22.35214],[114.14173,22.35217],[114.14173,22.3522],[114.14173,22.35223],[114.14173,22.35226],[114.14173,22.35229],[114.14173,22.3523],[114.14173,22.35232],[114.14174,22.35233],[114.14174,22.35233],[114.14174,22.35233],[114.14174,22.35234],[114.14175,22.35234],[114.14175,22.35234],[114.14176,22.35236],[114.14177,22.35238],[114.14178,22.35239],[114.14179,22.35241],[114.1418,22.35243],[114.14181,22.35245],[114.14181,22.35246],[114.14182,22.35249],[114.14182,22.35252],[114.14182,22.35254],[114.14182,22.35256],[114.14182,22.35258],[114.14182,22.3526],[114.14177,22.35274],[114.14175,22.35279],[114.14174,22.35281],[114.14172,22.35283],[114.14171,22.35285],[114.14167,22.35291],[114.14163,22.35297],[114.14161,22.35304],[114.14159,22.35308],[114.14159,22.3531],[114.14158,22.35311],[114.14158,22.35312],[114.14157,22.35313],[114.14156,22.3532],[114.14156,22.35328],[114.14155,22.35341],[114.14156,22.35343],[114.14155,22.35345],[114.14155,22.35347],[114.14155,22.3535],[114.14154,22.35352],[114.14154,22.35355],[114.14154,22.35357],[114.14154,22.35359],[114.14154,22.35361],[114.14154,22.35375],[114.14154,22.35377],[114.14154,22.3538],[114.14154,22.35382],[114.14154,22.35384],[114.14154,22.35387],[114.14154,22.3539],[114.14153,22.35393],[114.14153,22.35397],[114.14153,22.35398],[114.14153,22.35398],[114.14152,22.35399],[114.14152,22.354],[114.14149,22.35407],[114.14148,22.35408],[114.14148,22.35409],[114.14147,22.3541],[114.14146,22.35412],[114.14145,22.35415],[114.14144,22.35419],[114.14143,22.35423],[114.14142,22.35426],[114.14142,22.35427],[114.14142,22.35428],[114.14142,22.35429],[114.14141,22.3543],[114.14141,22.35432],[114.1414,22.35433],[114.1414,22.35433],[114.1414,22.35435],[114.14141,22.35449],[114.14142,22.35457],[114.14143,22.3547],[114.14143,22.35479],[114.14141,22.35489],[114.1414,22.35497],[114.14139,22.35515],[114.14139,22.35524],[114.14138,22.35528],[114.14136,22.35534],[114.14133,22.3555],[114.14131,22.35555],[114.1413,22.35559],[114.14129,22.35563],[114.14129,22.35567],[114.14128,22.3557],[114.14128,22.35574],[114.14128,22.35578],[114.14129,22.35581],[114.14129,22.35585],[114.1413,22.35588],[114.1413,22.35589],[114.1413,22.35591],[114.14131,22.35593],[114.14131,22.35594],[114.14133,22.35598],[114.14134,22.35602],[114.14135,22.35605],[114.14137,22.35609],[114.14137,22.35611],[114.14138,22.35612],[114.14138,22.35614],[114.14139,22.35616],[114.14139,22.35617],[114.14139,22.3562],[114.1414,22.35622],[114.1414,22.35624],[114.1414,22.35626],[114.14141,22.35629],[114.14141,22.35632],[114.14141,22.35634],[114.14141,22.35637],[114.14141,22.35639],[114.1414,22.35642],[114.1414,22.35645],[114.1414,22.35647],[114.1414,22.35649],[114.1414,22.3565],[114.1414,22.35651],[114.14141,22.35653],[114.14141,22.35655],[114.14142,22.35656],[114.14143,22.35659],[114.14144,22.3566],[114.14144,22.35662],[114.14145,22.35664],[114.14145,22.35667],[114.14145,22.35669],[114.14146,22.35671],[114.14146,22.35674],[114.14146,22.35676],[114.14145,22.35678],[114.14145,22.3568],[114.14144,22.35683],[114.14144,22.35685],[114.14144,22.35686],[114.14142,22.35689],[114.14141,22.35693],[114.14139,22.35698],[114.14138,22.35701],[114.14137,22.35705],[114.14136,22.35708],[114.14136,22.3571],[114.14136,22.35713],[114.14136,22.35715],[114.14135,22.35718],[114.14135,22.3572],[114.14135,22.35722],[114.14135,22.35725],[114.14136,22.35727],[114.14136,22.35729],[114.14137,22.35734],[114.14138,22.35739],[114.14139,22.35744],[114.14141,22.35749],[114.14141,22.35752],[114.14142,22.35756],[114.14143,22.35759],[114.14143,22.35761],[114.14145,22.35768],[114.14145,22.35773],[114.14146,22.35778],[114.14147,22.35782],[114.14148,22.35786],[114.14149,22.3579],[114.1415,22.35794],[114.1415,22.35798],[114.14151,22.35802],[114.14151,22.35805],[114.14152,22.35809],[114.14152,22.35813],[114.14153,22.35818],[114.14153,22.35821],[114.14154,22.35826],[114.14154,22.3583],[114.14154,22.35834],[114.14155,22.35839],[114.14155,22.35847],[114.14155,22.3585],[114.14156,22.35854],[114.14156,22.35858],[114.14156,22.35862],[114.14157,22.35865],[114.14157,22.35867],[114.14158,22.35869],[114.14158,22.35872],[114.14159,22.35874],[114.1416,22.35877],[114.14161,22.3588],[114.14162,22.35883],[114.14163,22.35886],[114.14164,22.35888],[114.14164,22.35888],[114.14165,22.3589],[114.14167,22.35894],[114.1417,22.35898],[114.14173,22.35905],[114.14174,22.35907],[114.14175,22.35908],[114.14176,22.3591],[114.14177,22.35912],[114.14179,22.35913],[114.1418,22.35914],[114.14183,22.35918],[114.14194,22.35929],[114.14194,22.35932],[114.14195,22.35935],[114.14209,22.35946],[114.14219,22.35951],[114.14224,22.35956],[114.14228,22.35958],[114.14233,22.35963],[114.14246,22.35968],[114.14268,22.35965],[114.14278,22.35964],[114.14282,22.35965],[114.14288,22.35968],[114.14297,22.35976],[114.14301,22.35983],[114.14303,22.35989],[114.14304,22.35994],[114.14305,22.36009],[114.14313,22.36021],[114.14312,22.36027],[114.14316,22.36035],[114.14318,22.36053],[114.14329,22.36064],[114.14335,22.36068],[114.14345,22.36073],[114.14357,22.36081],[114.14382,22.36099],[114.14394,22.36107],[114.14402,22.36113],[114.14411,22.36126],[114.14414,22.36132],[114.14416,22.36141],[114.14429,22.36151],[114.14442,22.36166],[114.14442,22.36166],[114.14444,22.36169],[114.14448,22.36172],[114.14454,22.3618],[114.1446,22.36187],[114.14469,22.36191],[114.14478,22.36196],[114.14483,22.36199],[114.1449,22.36202],[114.14494,22.362],[114.14499,22.362],[114.14504,22.36198],[114.14509,22.36198],[114.14513,22.36199],[114.14515,22.36199],[114.14515,22.36199],[114.14516,22.362],[114.14517,22.362],[114.14518,22.362],[114.1452,22.36202],[114.14521,22.36202],[114.14522,22.36203],[114.14523,22.36204],[114.14524,22.36205],[114.14525,22.36206],[114.14527,22.36208],[114.14529,22.3621],[114.14531,22.36212],[114.14535,22.36216],[114.14538,22.36218],[114.1454,22.3622],[114.14542,22.36222],[114.14544,22.36224],[114.14546,22.36226],[114.14547,22.36228],[114.14548,22.3623],[114.1455,22.36233],[114.14551,22.36235],[114.14551,22.36236],[114.14552,22.36237],[114.14552,22.36237],[114.14552,22.36238],[114.14551,22.36239],[114.14551,22.36239],[114.14551,22.3624],[114.1455,22.36241],[114.14549,22.36242],[114.14549,22.36243],[114.14548,22.36244],[114.14547,22.36244],[114.14545,22.36245],[114.14544,22.36246],[114.14543,22.36246],[114.14542,22.36246],[114.14541,22.36247],[114.14541,22.36247],[114.1454,22.36248],[114.14539,22.36249],[114.14539,22.3625],[114.14539,22.36251],[114.14538,22.36251],[114.14538,22.36253],[114.14538,22.36254],[114.14538,22.36256],[114.14539,22.36259],[114.1454,22.36262],[114.14537,22.36274],[114.14535,22.36277],[114.1453,22.36281],[114.14526,22.36282],[114.14526,22.36294],[114.14526,22.36303],[114.14526,22.36308],[114.14529,22.36313],[114.1453,22.36315],[114.14538,22.36315],[114.14546,22.36313],[114.14547,22.36314],[114.1455,22.36315],[114.14552,22.36318],[114.14553,22.36323],[114.14556,22.36328],[114.1456,22.36331],[114.14564,22.36334],[114.14568,22.3634],[114.1457,22.36349],[114.14574,22.36368],[114.14576,22.36377],[114.14576,22.36377],[114.1458,22.36383],[114.14581,22.36384],[114.14583,22.36387],[114.14586,22.3639],[114.14589,22.36393],[114.14592,22.36397],[114.14594,22.36401],[114.14596,22.36403],[114.14597,22.36405],[114.14597,22.36406],[114.14598,22.36408],[114.14599,22.3641],[114.146,22.36412],[114.146,22.36413],[114.146,22.36415],[114.14601,22.36417],[114.14601,22.36418],[114.14601,22.3642],[114.14602,22.36424],[114.14602,22.36426],[114.14602,22.3643],[114.14603,22.36433],[114.14603,22.36435],[114.14603,22.36439],[114.14603,22.36445],[114.14603,22.36448],[114.14603,22.36451],[114.14602,22.36454],[114.14602,22.36457],[114.14602,22.3646],[114.14601,22.36462],[114.14601,22.36464],[114.146,22.36466],[114.14599,22.36468],[114.14599,22.3647],[114.14598,22.36472],[114.14597,22.36473],[114.14596,22.36475],[114.14593,22.36479],[114.1459,22.36483],[114.14587,22.36487],[114.14584,22.36491],[114.14581,22.36494],[114.14578,22.36498],[114.14572,22.36504],[114.1457,22.36506],[114.14569,22.36508],[114.14566,22.3651],[114.14564,22.36511],[114.14563,22.36512],[114.14562,22.36512],[114.1456,22.36514],[114.14558,22.36514],[114.14557,22.36515],[114.14543,22.3652],[114.1454,22.36521],[114.14538,22.36522],[114.14535,22.36523],[114.14533,22.36525],[114.14531,22.36526],[114.14528,22.36528],[114.14527,22.36529],[114.14526,22.3653],[114.14525,22.36531],[114.14524,22.36532],[114.14523,22.36533],[114.14522,22.36535],[114.14522,22.36536],[114.14521,22.36537],[114.14521,22.36539],[114.1452,22.3654],[114.1452,22.36542],[114.1452,22.36544],[114.1452,22.36545],[114.14521,22.36547],[114.14521,22.36548],[114.14521,22.36549],[114.14522,22.36551],[114.14523,22.36552],[114.14523,22.36552],[114.14523,22.36553],[114.14524,22.36554],[114.14524,22.36555],[114.14525,22.36557],[114.14525,22.36558],[114.14526,22.36559],[114.14526,22.3656],[114.14526,22.36561],[114.14526,22.36562],[114.14526,22.36563],[114.14525,22.36564],[114.14525,22.36566],[114.14525,22.36567],[114.14525,22.36568],[114.14524,22.36569],[114.14524,22.3657],[114.14523,22.36571],[114.14523,22.36572],[114.14522,22.36573],[114.14521,22.36574],[114.1452,22.36576],[114.14519,22.36577],[114.14518,22.36578],[114.14517,22.36579],[114.14515,22.36581],[114.14514,22.36582],[114.14514,22.36582],[114.14514,22.36582],[114.14513,22.36583],[114.14512,22.36583],[114.14511,22.36584],[114.1451,22.36585],[114.14508,22.36586],[114.14507,22.36586],[114.14506,22.36587],[114.14505,22.36588],[114.14503,22.3659],[114.14501,22.36591],[114.14493,22.36597],[114.14493,22.36597],[114.14492,22.36597],[114.14492,22.36598],[114.14491,22.36598],[114.14491,22.36598],[114.1449,22.36599],[114.1449,22.36599],[114.1449,22.36599],[114.14489,22.366],[114.14489,22.366],[114.14489,22.366],[114.14489,22.36601],[114.14488,22.36602],[114.14488,22.36602],[114.14488,22.36602],[114.14487,22.36603],[114.14487,22.36603],[114.14487,22.36603],[114.14487,22.36604],[114.14486,22.36604],[114.14486,22.36605],[114.14486,22.36605],[114.14486,22.36605],[114.14485,22.36606],[114.14485,22.36606],[114.14485,22.36606],[114.14484,22.36607],[114.14484,22.36607],[114.14484,22.36608],[114.14484,22.36608],[114.14483,22.36608],[114.14483,22.36609],[114.14483,22.36609],[114.14482,22.36609],[114.14482,22.3661],[114.14481,22.3661],[114.14481,22.3661],[114.14481,22.3661],[114.1448,22.36611],[114.1448,22.36611],[114.14479,22.36611],[114.14479,22.36611],[114.14478,22.36612],[114.14478,22.36612],[114.14478,22.36612],[114.14477,22.36612],[114.14477,22.36612],[114.14476,22.36612],[114.14476,22.36613],[114.14475,22.36613],[114.14471,22.36613],[114.14471,22.36622],[114.14472,22.3663],[114.14472,22.3663],[114.14472,22.36631],[114.14472,22.36631],[114.14472,22.36631],[114.14472,22.36632],[114.14472,22.36632],[114.14472,22.36633],[114.14472,22.36633],[114.14472,22.36634],[114.14471,22.36634],[114.14471,22.36635],[114.14471,22.36635],[114.14471,22.36636],[114.14471,22.36636],[114.14471,22.36636],[114.14471,22.36637],[114.14471,22.36637],[114.14471,22.36638],[114.1447,22.36638],[114.1447,22.36639],[114.1447,22.36639],[114.1447,22.3664],[114.14469,22.3664],[114.14469,22.36641],[114.14469,22.36641],[114.14469,22.36642],[114.14469,22.36642],[114.14468,22.36642],[114.14468,22.36643],[114.14468,22.36643],[114.14468,22.36644],[114.14467,22.36644],[114.14467,22.36644],[114.14467,22.36645],[114.14467,22.36645],[114.14466,22.36645],[114.14466,22.36646],[114.14466,22.36646],[114.14465,22.36647],[114.14465,22.36647],[114.14465,22.36647],[114.14464,22.36648],[114.14464,22.36648],[114.14464,22.36648],[114.14464,22.36649],[114.14463,22.36649],[114.14463,22.3665],[114.14463,22.3665],[114.14463,22.3665],[114.14462,22.36651],[114.14462,22.36651],[114.14462,22.36652],[114.14462,22.36652],[114.14462,22.36652],[114.14461,22.36653],[114.14461,22.36653],[114.14461,22.36654],[114.14461,22.36654],[114.14461,22.36655],[114.1446,22.36655],[114.1446,22.36656],[114.1446,22.36656],[114.1446,22.36656],[114.1446,22.36657],[114.1446,22.36658],[114.1446,22.36658],[114.1446,22.36659],[114.1446,22.36659],[114.1446,22.3666],[114.14459,22.3666],[114.14459,22.3666],[114.14459,22.36661],[114.14459,22.36661],[114.14459,22.36662],[114.14459,22.36662],[114.14459,22.36663],[114.14459,22.36663],[114.14459,22.36664],[114.14459,22.36664],[114.14459,22.36665],[114.14458,22.36665],[114.14458,22.36665],[114.14458,22.36666],[114.14458,22.36667],[114.14458,22.36667],[114.14458,22.36668],[114.14458,22.36668],[114.14458,22.36669],[114.14457,22.36669],[114.14457,22.36669],[114.14457,22.3667],[114.14457,22.3667],[114.14457,22.36671],[114.14457,22.36671],[114.14457,22.36672],[114.14457,22.36672],[114.14456,22.36672],[114.14456,22.36673],[114.14456,22.36673],[114.14456,22.36674],[114.14456,22.36674],[114.14456,22.36675],[114.14455,22.36675],[114.14455,22.36676],[114.14455,22.36676],[114.14455,22.36677],[114.14455,22.36677],[114.14455,22.36677],[114.14454,22.36679],[114.14448,22.36689],[114.14446,22.36694],[114.14446,22.36709],[114.14446,22.36721],[114.14448,22.36727],[114.1445,22.3673],[114.14455,22.36732],[114.14461,22.36734],[114.14507,22.36733],[114.14517,22.36731],[114.14524,22.36728],[114.14528,22.36728],[114.14531,22.36729],[114.14534,22.36732],[114.14537,22.36737],[114.14539,22.36741],[114.14538,22.36744],[114.14537,22.36747],[114.1452,22.3677],[114.14514,22.36776],[114.1448,22.36805],[114.14476,22.36809],[114.14474,22.36813],[114.14474,22.36816],[114.14475,22.36821],[114.14477,22.36824],[114.14479,22.36826],[114.14488,22.36829],[114.14514,22.36837],[114.14523,22.3684],[114.14529,22.36844],[114.14531,22.36848],[114.14532,22.36851],[114.14533,22.36854],[114.14532,22.36859],[114.14518,22.36896],[114.14514,22.36901],[114.14504,22.36906],[114.14499,22.36911],[114.14497,22.36918],[114.14497,22.36923],[114.14498,22.36925],[114.14502,22.36929],[114.14509,22.36933],[114.14518,22.36935],[114.14534,22.36937],[114.14539,22.36938],[114.14561,22.36955],[114.14566,22.36959],[114.14571,22.36961],[114.14617,22.3697],[114.14631,22.36986],[114.14651,22.37016],[114.14686,22.37057],[114.14699,22.37079],[114.14686,22.37081],[114.14681,22.37085],[114.14677,22.37091],[114.14668,22.37109],[114.1466,22.37118],[114.14656,22.37121],[114.14655,22.37123],[114.14655,22.37128],[114.14654,22.3713],[114.14651,22.37132],[114.14642,22.37135],[114.14635,22.3714],[114.14631,22.37144],[114.14628,22.37149],[114.14624,22.37152],[114.14623,22.37155],[114.14625,22.37161],[114.14624,22.37163],[114.14621,22.37164],[114.14619,22.37167],[114.14614,22.37187],[114.14611,22.37191],[114.14604,22.37197],[114.14599,22.37204],[114.14593,22.37208],[114.14574,22.37217],[114.14559,22.37219],[114.14555,22.37221],[114.14553,22.37224],[114.14552,22.37227],[114.14552,22.3723],[114.1456,22.37241],[114.14562,22.37253],[114.1456,22.37258],[114.14554,22.37265],[114.14553,22.37268],[114.14553,22.37271],[114.14557,22.37281],[114.14556,22.37289],[114.14558,22.37295],[114.14557,22.373],[114.14548,22.37314],[114.14532,22.37329],[114.14527,22.37331],[114.14517,22.37331],[114.14514,22.37332],[114.14511,22.37334],[114.14508,22.37339],[114.14496,22.37359],[114.14496,22.37365],[114.14502,22.37383],[114.14503,22.3739],[114.14504,22.37397],[114.14505,22.37402],[114.14498,22.37414],[114.14498,22.37419],[114.14499,22.37425],[114.14505,22.37432],[114.14517,22.37443],[114.14522,22.37444],[114.14532,22.37441],[114.14536,22.37442],[114.14539,22.37445],[114.1454,22.37447],[114.1454,22.37451],[114.14537,22.37462],[114.14538,22.37468],[114.14541,22.37472],[114.14544,22.37475],[114.14554,22.3748],[114.14556,22.37483],[114.14558,22.37486],[114.14558,22.37493],[114.14553,22.37508],[114.14568,22.37515],[114.14574,22.37519],[114.14582,22.37526],[114.14586,22.37527],[114.14586,22.37528],[114.14587,22.3753],[114.14538,22.37575],[114.14501,22.37588],[114.14481,22.37599],[114.14427,22.37619],[114.14394,22.37629],[114.14366,22.37635],[114.14365,22.37635],[114.14365,22.37635],[114.14364,22.37635],[114.14364,22.37635],[114.14363,22.37635],[114.14363,22.37636],[114.14362,22.37636],[114.14362,22.37636],[114.14361,22.37636],[114.14361,22.37636],[114.1436,22.37636],[114.1436,22.37636],[114.14359,22.37637],[114.14359,22.37637],[114.14358,22.37637],[114.14358,22.37637],[114.14358,22.37637],[114.14357,22.37638],[114.14357,22.37638],[114.14356,22.37638],[114.14356,22.37638],[114.14355,22.37638],[114.14355,22.37639],[114.14354,22.37639],[114.14354,22.37639],[114.14354,22.3764],[114.14353,22.3764],[114.14353,22.3764],[114.14353,22.37641],[114.14353,22.37641],[114.14352,22.37641],[114.14352,22.37642],[114.14352,22.37642],[114.14352,22.37643],[114.14352,22.37643],[114.14352,22.37644],[114.14352,22.37644],[114.14352,22.37644],[114.14352,22.37645],[114.14352,22.37645],[114.14352,22.37645],[114.14352,22.37646],[114.14352,22.37646],[114.14352,22.37647],[114.14352,22.37648],[114.14353,22.37648],[114.14353,22.37648],[114.14353,22.37649],[114.14353,22.37649],[114.14354,22.3765],[114.14354,22.3765],[114.14354,22.3765],[114.14354,22.37651],[114.14354,22.37651],[114.14355,22.37652],[114.14355,22.37652],[114.14355,22.37652],[114.14355,22.37653],[114.14356,22.37653],[114.14356,22.37654],[114.14356,22.37654],[114.14357,22.37654],[114.14357,22.37655],[114.14357,22.37655],[114.14357,22.37655],[114.14358,22.37656],[114.14358,22.37656],[114.14358,22.37657],[114.14359,22.37657],[114.14359,22.37657],[114.14359,22.37658],[114.1436,22.37659],[114.14361,22.3766],[114.14362,22.37661],[114.14363,22.37662],[114.14365,22.37664],[114.14366,22.37665],[114.14367,22.37666],[114.14368,22.37667],[114.14371,22.3767],[114.14375,22.37673],[114.14378,22.37675],[114.14383,22.37679],[114.14385,22.37681],[114.14385,22.37682],[114.14386,22.37682],[114.14386,22.37683],[114.14386,22.37683],[114.14387,22.37684],[114.14388,22.37685],[114.14388,22.37686],[114.14388,22.37686],[114.14388,22.37687],[114.14388,22.37687],[114.14388,22.37687],[114.14389,22.37688],[114.14389,22.37688],[114.14389,22.37689],[114.14389,22.37689],[114.14389,22.3769],[114.14389,22.3769],[114.14383,22.37707],[114.14383,22.37707],[114.14383,22.37708],[114.14383,22.37708],[114.14383,22.37709],[114.14383,22.37709],[114.14383,22.37709],[114.14383,22.3771],[114.14383,22.3771],[114.14383,22.37711],[114.14383,22.37711],[114.14383,22.37712],[114.14384,22.37712],[114.14384,22.37712],[114.14384,22.37713],[114.14385,22.37713],[114.14385,22.37714],[114.14386,22.37715],[114.14387,22.37716],[114.14388,22.37716],[114.14389,22.37717],[114.1439,22.37718],[114.14391,22.37718],[114.14392,22.37719],[114.14392,22.37719],[114.14393,22.3772],[114.14393,22.37721],[114.14394,22.37722],[114.14394,22.37722],[114.14395,22.37723],[114.14395,22.37724],[114.14395,22.37725],[114.14395,22.37726],[114.14396,22.37727],[114.14396,22.37727],[114.14396,22.37728],[114.14396,22.37729],[114.14396,22.3773],[114.14396,22.37731],[114.14395,22.37732],[114.14395,22.37732],[114.14395,22.37732],[114.14395,22.37733],[114.14395,22.37733],[114.14395,22.37734],[114.14395,22.37734],[114.14395,22.37735],[114.14395,22.37735],[114.14395,22.37736],[114.14396,22.37736],[114.14396,22.37737],[114.14396,22.37737],[114.14396,22.37737],[114.14396,22.37738],[114.14396,22.37738],[114.14397,22.37739],[114.14397,22.37739],[114.14398,22.3774],[114.14398,22.3774],[114.14398,22.37741],[114.14399,22.37741],[114.14399,22.37741],[114.14399,22.37741],[114.144,22.37742],[114.144,22.37742],[114.14401,22.37742],[114.14401,22.37742],[114.14402,22.37742],[114.14402,22.37742],[114.14403,22.37742],[114.14403,22.37742],[114.14404,22.37742],[114.14405,22.37742],[114.14405,22.37742],[114.14406,22.37742],[114.14407,22.37742],[114.14408,22.37742],[114.14408,22.37742],[114.1441,22.37742],[114.14411,22.37742],[114.14413,22.37742],[114.14414,22.37742],[114.14415,22.37742],[114.14417,22.37742],[114.14418,22.37742],[114.14418,22.37742],[114.14419,22.37742],[114.1442,22.37742],[114.14421,22.37742],[114.14422,22.37742],[114.14423,22.37742],[114.14425,22.37743],[114.14426,22.37743],[114.14426,22.37743],[114.14427,22.37744],[114.14427,22.37744],[114.14428,22.37744],[114.14428,22.37745],[114.14429,22.37746],[114.1443,22.37747],[114.1443,22.37748],[114.14431,22.37749],[114.14431,22.37749],[114.14431,22.3775],[114.14432,22.37751],[114.14432,22.37752],[114.14432,22.37754],[114.14433,22.37755],[114.14433,22.37756],[114.14433,22.37756],[114.14433,22.37757],[114.14433,22.37757],[114.14433,22.37758],[114.14433,22.37758],[114.14432,22.37759],[114.14432,22.3776],[114.14432,22.3776],[114.14432,22.37761],[114.14431,22.37762],[114.14431,22.37763],[114.1443,22.37763],[114.1443,22.37764],[114.14429,22.37764],[114.14429,22.37765],[114.14428,22.37765],[114.14427,22.37766],[114.14426,22.37767],[114.14425,22.37768],[114.14424,22.37769],[114.14423,22.37769],[114.14422,22.3777],[114.14419,22.37772],[114.14416,22.37774],[114.14416,22.37775],[114.14415,22.37776],[114.14414,22.37776],[114.14414,22.37777],[114.14413,22.37778],[114.14413,22.37779],[114.14407,22.37787],[114.14369,22.37807],[114.14356,22.37815],[114.14355,22.37816],[114.14353,22.37816],[114.14352,22.37817],[114.1435,22.37818],[114.14349,22.37819],[114.14348,22.3782],[114.1429,22.37786],[114.14281,22.37797],[114.1428,22.37796],[114.14278,22.37796],[114.14275,22.37794],[114.14274,22.37794],[114.14272,22.37793],[114.14271,22.37793],[114.1427,22.37793],[114.14269,22.37792],[114.14267,22.37792],[114.14267,22.37792],[114.14265,22.37791],[114.14264,22.37791],[114.14263,22.37791],[114.14261,22.37791],[114.1426,22.37791],[114.14259,22.37791],[114.14257,22.37791],[114.14256,22.37791],[114.14254,22.3779],[114.14253,22.37791],[114.14252,22.37791],[114.14251,22.37791],[114.14249,22.37791],[114.14247,22.37791],[114.14246,22.37791],[114.14244,22.37791],[114.14242,22.37791],[114.1424,22.37792],[114.14239,22.37792],[114.14236,22.37792],[114.14234,22.37793],[114.14233,22.37793],[114.14232,22.37793],[114.1423,22.37794],[114.14229,22.37794],[114.14228,22.37795],[114.14227,22.37795],[114.14226,22.37795],[114.14224,22.37796],[114.14222,22.37797],[114.14221,22.37798],[114.1422,22.37798],[114.14218,22.37799],[114.14215,22.378],[114.14214,22.37801],[114.14212,22.37802],[114.14211,22.37803],[114.14209,22.37804],[114.14207,22.37805],[114.14206,22.37806],[114.14204,22.37807],[114.14203,22.37808],[114.14201,22.37809],[114.14199,22.3781],[114.14198,22.37811],[114.14196,22.37812],[114.14194,22.37814],[114.14192,22.37815],[114.14201,22.37844],[114.14228,22.37844],[114.14226,22.37868],[114.14249,22.3787],[114.14249,22.3787],[114.14251,22.3787],[114.14253,22.37871],[114.14254,22.37871],[114.14256,22.37871],[114.14257,22.37871],[114.14259,22.37872],[114.14261,22.37872],[114.14263,22.37873],[114.14264,22.37873],[114.14265,22.37873],[114.14267,22.37874],[114.14267,22.37874],[114.14269,22.37874],[114.1427,22.37875],[114.14271,22.37875],[114.14272,22.37876],[114.14273,22.37877],[114.14274,22.37877],[114.14275,22.37878],[114.14275,22.37878],[114.14276,22.37878],[114.14277,22.37879],[114.14277,22.3788],[114.14278,22.3788],[114.1428,22.37884],[114.14281,22.37885],[114.14282,22.37886],[114.14283,22.37888],[114.14284,22.37889],[114.14285,22.3789],[114.14285,22.37891],[114.14286,22.37892],[114.14287,22.37894],[114.14287,22.37895],[114.14288,22.37895],[114.14288,22.37896],[114.14288,22.37897],[114.14289,22.37898],[114.14289,22.37898],[114.14289,22.37899],[114.14289,22.379],[114.1429,22.37901],[114.1429,22.37902],[114.1429,22.37902],[114.1429,22.37903],[114.1429,22.37904],[114.1429,22.37905],[114.1429,22.37906],[114.1429,22.37906],[114.1429,22.37907],[114.14289,22.37909],[114.14289,22.3791],[114.14289,22.37911],[114.14289,22.37912],[114.14288,22.37914],[114.14288,22.37914],[114.14288,22.37915],[114.14289,22.37916],[114.14289,22.37917],[114.14289,22.37918],[114.14289,22.37918],[114.1429,22.37919],[114.1429,22.3792],[114.14291,22.37921],[114.14291,22.37922],[114.14291,22.37922],[114.14292,22.37922],[114.14292,22.37923],[114.14293,22.37923],[114.14293,22.37923],[114.14293,22.37924],[114.14293,22.37924],[114.14294,22.37925],[114.14294,22.37925],[114.14294,22.37925],[114.14294,22.37926],[114.14295,22.37926],[114.14295,22.37927],[114.14295,22.37927],[114.14295,22.37927],[114.14295,22.37928],[114.14295,22.37928],[114.14295,22.37929],[114.14295,22.37929],[114.14295,22.3793],[114.14295,22.37932],[114.14295,22.37932],[114.14295,22.37933],[114.14295,22.37934],[114.14295,22.37934],[114.14294,22.37935],[114.14294,22.37936],[114.14294,22.37936],[114.14293,22.37938],[114.14293,22.37938],[114.14292,22.37939],[114.14292,22.3794],[114.14291,22.37941],[114.1429,22.37942],[114.14289,22.37943],[114.14286,22.37946],[114.14284,22.37948],[114.14282,22.37949],[114.14281,22.37951],[114.14279,22.37952],[114.14278,22.37954],[114.14276,22.37955],[114.14275,22.37957],[114.14274,22.37958],[114.14274,22.37958],[114.14273,22.37959],[114.14272,22.3796],[114.14272,22.37961],[114.14271,22.37962],[114.1427,22.37963],[114.1427,22.37964],[114.14269,22.37965],[114.14266,22.37971],[114.14265,22.37972],[114.14265,22.37973],[114.14265,22.37973],[114.14264,22.37974],[114.14264,22.37975],[114.14263,22.37975],[114.14263,22.37976],[114.14262,22.37976],[114.14262,22.37977],[114.14261,22.37977],[114.1426,22.37978],[114.1426,22.37978],[114.14259,22.37979],[114.14256,22.37981],[114.14255,22.37981],[114.14255,22.37982],[114.14255,22.37982],[114.14254,22.37982],[114.14254,22.37983],[114.14254,22.37983],[114.14253,22.37983],[114.14253,22.37984],[114.14253,22.37984],[114.14252,22.37985],[114.14252,22.37985],[114.14252,22.37985],[114.14252,22.37986],[114.14252,22.37986],[114.14249,22.37992],[114.1424,22.38017],[114.14228,22.38023],[114.14227,22.38023],[114.14226,22.38023],[114.14226,22.38024],[114.14224,22.38024],[114.14224,22.38024],[114.14222,22.38025],[114.14209,22.38026],[114.14198,22.38028],[114.14186,22.38026],[114.14175,22.38039],[114.14174,22.38069],[114.14174,22.38071],[114.14174,22.38072],[114.14173,22.38073],[114.14173,22.38075],[114.14172,22.38076],[114.14172,22.38077],[114.14171,22.38078],[114.14171,22.38078],[114.1417,22.38079],[114.1417,22.3808],[114.14169,22.3808],[114.14168,22.38081],[114.14167,22.38082],[114.14167,22.38082],[114.14166,22.38082],[114.14165,22.38083],[114.14164,22.38083],[114.14163,22.38083],[114.14163,22.38083],[114.14162,22.38084],[114.14162,22.38084],[114.14161,22.38084],[114.14161,22.38084],[114.1416,22.38084],[114.14157,22.38084],[114.14155,22.38084],[114.14153,22.38085],[114.14152,22.38085],[114.14149,22.38085],[114.14148,22.38085],[114.14147,22.38086],[114.14146,22.38086],[114.14145,22.38086],[114.14144,22.38087],[114.14143,22.38087],[114.14141,22.38088],[114.1414,22.38088],[114.1414,22.38088],[114.14139,22.38088],[114.14139,22.38089],[114.14139,22.38089],[114.14138,22.38089],[114.14138,22.3809],[114.14137,22.3809],[114.14137,22.3809],[114.14137,22.38091],[114.14137,22.38091],[114.14136,22.38092],[114.14136,22.38092],[114.14136,22.38093],[114.14136,22.38094],[114.14137,22.38096],[114.14137,22.38097],[114.14137,22.38098],[114.14137,22.38099],[114.14138,22.381],[114.14138,22.38101],[114.14139,22.38102],[114.1414,22.38103],[114.1414,22.38104],[114.14141,22.38105],[114.14141,22.38105],[114.14142,22.38107],[114.14142,22.38108],[114.14142,22.38109],[114.14143,22.3811],[114.14143,22.38111],[114.14143,22.38112],[114.14143,22.38113],[114.14143,22.38113],[114.14143,22.38114],[114.14143,22.38116],[114.14142,22.38116],[114.14141,22.38116],[114.1414,22.38116],[114.14139,22.38116],[114.14138,22.38116],[114.14137,22.38117],[114.14136,22.38117],[114.14132,22.38116],[114.14125,22.38112],[114.14122,22.38111],[114.1412,22.3811],[114.14118,22.38109],[114.14115,22.38108],[114.14113,22.38106],[114.1411,22.38105],[114.14107,22.38104],[114.14104,22.38103],[114.14102,22.38102],[114.141,22.38101],[114.14098,22.38101],[114.14095,22.381],[114.14092,22.38099],[114.1409,22.38098],[114.14089,22.38097],[114.14088,22.38097],[114.14086,22.38096],[114.14085,22.38096],[114.14084,22.38095],[114.14083,22.38094],[114.14082,22.38094],[114.14081,22.38093],[114.1408,22.38093],[114.14079,22.38092],[114.14077,22.38091],[114.14077,22.38091],[114.14057,22.38077],[114.14055,22.38076],[114.14054,22.38074],[114.14052,22.38073],[114.1405,22.38072],[114.14048,22.3807],[114.14047,22.3807],[114.14045,22.38068],[114.14044,22.38067],[114.14042,22.38066],[114.1404,22.38065],[114.1404,22.38066],[114.14038,22.38067],[114.14036,22.38069],[114.14035,22.38071],[114.14034,22.38072],[114.14032,22.38074],[114.14032,22.38075],[114.1403,22.38077],[114.14029,22.38078],[114.14028,22.3808],[114.14027,22.38082],[114.14026,22.38084],[114.14024,22.38086],[114.14024,22.38088],[114.14023,22.3809],[114.14022,22.38092],[114.14021,22.38093],[114.14021,22.38092],[114.1402,22.38091],[114.1402,22.3809],[114.14019,22.38089],[114.14019,22.38088],[114.14018,22.38086],[114.14018,22.38085],[114.14017,22.38084],[114.14017,22.38083],[114.14017,22.38082],[114.14017,22.38081],[114.14016,22.38081],[114.14016,22.3808],[114.14015,22.3808],[114.14015,22.38079],[114.14015,22.38079],[114.14014,22.38079],[114.14014,22.38079],[114.14013,22.38079],[114.14013,22.38078],[114.14012,22.38078],[114.1401,22.38077],[114.14009,22.38076],[114.14008,22.38076],[114.14007,22.38075],[114.14006,22.38074],[114.14005,22.38073],[114.14004,22.38073],[114.14003,22.38072],[114.14003,22.38071],[114.14002,22.38071],[114.14001,22.3807],[114.14001,22.38069],[114.14,22.38069],[114.13999,22.38068],[114.13998,22.38067],[114.13997,22.38067],[114.13996,22.38066],[114.13995,22.38065],[114.13994,22.38064],[114.13993,22.38063],[114.13993,22.38062],[114.13983,22.38052],[114.13983,22.38052],[114.13982,22.38051],[114.13981,22.3805],[114.13981,22.38049],[114.1398,22.38049],[114.1398,22.38048],[114.1398,22.38047],[114.13979,22.38046],[114.13979,22.38046],[114.13979,22.38045],[114.13978,22.38044],[114.13978,22.38044],[114.13978,22.38043],[114.13978,22.38041],[114.13978,22.3804],[114.13978,22.38039],[114.13978,22.38038],[114.13978,22.38036],[114.13978,22.38035],[114.13978,22.38034],[114.13979,22.38033],[114.13979,22.38032],[114.13979,22.38031],[114.1398,22.3803],[114.1398,22.3803],[114.1398,22.38029],[114.1398,22.38029],[114.1398,22.38028],[114.1398,22.38028],[114.1398,22.38027],[114.13981,22.38027],[114.13981,22.38026],[114.13981,22.38025],[114.13981,22.38024],[114.13981,22.38022],[114.13981,22.38022],[114.13981,22.3802],[114.13981,22.38019],[114.13981,22.38018],[114.13981,22.38017],[114.13982,22.38016],[114.13982,22.38015],[114.13982,22.38015],[114.13982,22.38014],[114.13982,22.38014],[114.13982,22.38013],[114.13982,22.38013],[114.13982,22.38012],[114.13982,22.38012],[114.13982,22.38011],[114.13982,22.38011],[114.13982,22.38011],[114.13981,22.38006],[114.13981,22.38003],[114.13981,22.38001],[114.13981,22.38],[114.13981,22.37999],[114.13981,22.37998],[114.1398,22.37998],[114.1398,22.37997],[114.1398,22.37995],[114.13979,22.37994],[114.13979,22.37993],[114.13979,22.37992],[114.13979,22.37991],[114.13979,22.3799],[114.13979,22.37988],[114.13979,22.37987],[114.13979,22.37986],[114.13979,22.37985],[114.13979,22.37983],[114.13979,22.37981],[114.1398,22.3798],[114.1398,22.37978],[114.1398,22.37976],[114.1398,22.37975],[114.1398,22.37974],[114.1398,22.37971],[114.1398,22.3797],[114.1398,22.37969],[114.1398,22.37967],[114.1398,22.37966],[114.13981,22.3796],[114.13981,22.37959],[114.13982,22.37958],[114.13982,22.37957],[114.13981,22.37956],[114.13981,22.37956],[114.13981,22.37955],[114.13981,22.37954],[114.13981,22.37954],[114.1398,22.37953],[114.1398,22.37952],[114.1398,22.37951],[114.13979,22.3795],[114.13979,22.3795],[114.13978,22.37949],[114.13978,22.37948],[114.13977,22.37948],[114.13977,22.37947],[114.13969,22.37937],[114.13972,22.3793],[114.13961,22.37927],[114.1396,22.37926],[114.13959,22.37926],[114.13958,22.37926],[114.13956,22.37926],[114.13955,22.37925],[114.13954,22.37925],[114.13953,22.37925],[114.13952,22.37925],[114.13951,22.37925],[114.1395,22.37925],[114.13949,22.37925],[114.13949,22.37925],[114.13948,22.37925],[114.13947,22.37925],[114.13946,22.37925],[114.13944,22.37926],[114.13942,22.37926],[114.13941,22.37926],[114.1394,22.37926],[114.13939,22.37926],[114.13938,22.37926],[114.13937,22.37926],[114.13936,22.37926],[114.13935,22.37926],[114.13934,22.37926],[114.13934,22.37926],[114.13933,22.37926],[114.13932,22.37925],[114.13931,22.37925],[114.1393,22.37925],[114.13929,22.37924],[114.13928,22.37924],[114.13927,22.37924],[114.13926,22.37923],[114.13925,22.37923],[114.13924,22.37922],[114.13922,22.37922],[114.1392,22.37921],[114.1392,22.37921],[114.13918,22.3792],[114.13916,22.3792],[114.13915,22.3792],[114.13914,22.37919],[114.13913,22.37919],[114.13912,22.37919],[114.1391,22.37919],[114.13908,22.37919],[114.13906,22.37918],[114.13905,22.37918],[114.13903,22.37918],[114.13901,22.37918],[114.13899,22.37918],[114.13897,22.37918],[114.1388,22.37918],[114.13879,22.37918],[114.13878,22.37918],[114.13876,22.37918],[114.13875,22.37918],[114.13873,22.37918],[114.13872,22.37918],[114.13871,22.37918],[114.13869,22.37918],[114.13868,22.37919],[114.13867,22.37919],[114.13866,22.37919],[114.13864,22.37919],[114.13863,22.37919],[114.13862,22.37919],[114.13862,22.37919],[114.13861,22.37919],[114.13861,22.37919],[114.1386,22.37919],[114.1386,22.37919],[114.13859,22.37919],[114.13855,22.37918],[114.13853,22.37917],[114.13851,22.37917],[114.13848,22.37916],[114.13846,22.37916],[114.13845,22.37917],[114.13844,22.37918],[114.13844,22.3792],[114.13843,22.37921],[114.13843,22.37922],[114.13842,22.37923],[114.13842,22.37924],[114.13842,22.37924],[114.13842,22.37925],[114.13842,22.37925],[114.13842,22.37926],[114.13842,22.37926],[114.13842,22.37926],[114.13842,22.37927],[114.13842,22.37927],[114.13842,22.37928],[114.13842,22.37928],[114.13842,22.37929],[114.13842,22.37929],[114.13843,22.3793],[114.13843,22.3793],[114.13843,22.3793],[114.13843,22.37932],[114.13844,22.37933],[114.13844,22.37933],[114.13845,22.37935],[114.13845,22.37935],[114.13846,22.37936],[114.13846,22.37937],[114.13847,22.37937],[114.13847,22.37938],[114.13848,22.37939],[114.13849,22.3794],[114.1385,22.37941],[114.13851,22.37941],[114.13852,22.37942],[114.13853,22.37942],[114.13854,22.37943],[114.13855,22.37943],[114.13874,22.37954],[114.13875,22.37955],[114.13876,22.37955],[114.13876,22.37955],[114.13877,22.37956],[114.13877,22.37956],[114.13878,22.37957],[114.13878,22.37958],[114.13879,22.37958],[114.13879,22.37959],[114.1388,22.3796],[114.1388,22.3796],[114.1388,22.37961],[114.1388,22.37962],[114.13881,22.37964],[114.13882,22.37966],[114.13883,22.37967],[114.13884,22.37969],[114.13884,22.3797],[114.13885,22.37971],[114.13886,22.37972],[114.13886,22.37972],[114.13887,22.37973],[114.13888,22.37974],[114.13889,22.37975],[114.13889,22.37975],[114.1389,22.37976],[114.1389,22.37976],[114.13891,22.37976],[114.13891,22.37976],[114.13892,22.37977],[114.13893,22.37977],[114.13894,22.37977],[114.13895,22.37978],[114.13895,22.37978],[114.13896,22.37978],[114.13897,22.37978],[114.13897,22.37978],[114.13898,22.37978],[114.13899,22.37978],[114.13899,22.37978],[114.139,22.37978],[114.13901,22.37978],[114.13902,22.37978],[114.13903,22.37978],[114.13904,22.37978],[114.13905,22.37978],[114.13906,22.37977],[114.13907,22.37977],[114.13908,22.37977],[114.1391,22.37977],[114.13911,22.37976],[114.13913,22.37976],[114.13916,22.37975],[114.1392,22.37974],[114.1392,22.37974],[114.13921,22.37974],[114.13923,22.37973],[114.13924,22.37973],[114.13926,22.37973],[114.13926,22.37973],[114.13927,22.37973],[114.13927,22.37973],[114.13928,22.37973],[114.13928,22.37973],[114.13929,22.37973],[114.13929,22.37973],[114.1393,22.37973],[114.1393,22.37973],[114.13931,22.37973],[114.13931,22.37973],[114.13932,22.37974],[114.13932,22.37974],[114.13932,22.37974],[114.13933,22.37975],[114.13933,22.37975],[114.13933,22.37975],[114.13933,22.37976],[114.13933,22.37977],[114.13933,22.37977],[114.13933,22.37978],[114.13933,22.37978],[114.13933,22.37978],[114.13933,22.37979],[114.13933,22.3798],[114.13932,22.37981],[114.13932,22.37982],[114.13932,22.37983],[114.13932,22.37983],[114.1393,22.37985],[114.1393,22.37985],[114.1393,22.37987],[114.13929,22.37988],[114.13929,22.37989],[114.13929,22.3799],[114.13928,22.37991],[114.13927,22.37995],[114.13926,22.37996],[114.13926,22.37998],[114.13924,22.38001],[114.13923,22.38004],[114.13921,22.38007],[114.1392,22.38009],[114.13919,22.38011],[114.13918,22.38012],[114.13918,22.38012],[114.13917,22.38013],[114.13917,22.38014],[114.13916,22.38015],[114.13915,22.38016],[114.13915,22.38017],[114.13911,22.3802],[114.13908,22.38023],[114.13907,22.38023],[114.13907,22.38023],[114.13906,22.38023],[114.13906,22.38024],[114.13905,22.38024],[114.13905,22.38024],[114.13904,22.38024],[114.13903,22.38024],[114.13902,22.38024],[114.139,22.38025],[114.13899,22.38025],[114.13898,22.38026],[114.13897,22.38026],[114.13896,22.38026],[114.13895,22.38027],[114.13895,22.38027],[114.13893,22.38028],[114.13892,22.38028],[114.13891,22.38029],[114.1389,22.38029],[114.13889,22.3803],[114.13889,22.3803],[114.13888,22.38031],[114.13887,22.38032],[114.13886,22.38032],[114.13885,22.38033],[114.13885,22.38033],[114.13884,22.38034],[114.13883,22.38035],[114.13882,22.38036],[114.13881,22.38037],[114.13881,22.38037],[114.13878,22.38041],[114.13878,22.38041],[114.13877,22.38042],[114.13876,22.38043],[114.13876,22.38044],[114.13875,22.38044],[114.13874,22.38045],[114.13873,22.38046],[114.13872,22.38047],[114.13871,22.38047],[114.13871,22.38048],[114.1387,22.38048],[114.13869,22.38049],[114.13868,22.3805],[114.13867,22.3805],[114.13866,22.3805],[114.13865,22.38051],[114.13864,22.38051],[114.13863,22.38051],[114.13862,22.38051],[114.13861,22.38051],[114.1386,22.38051],[114.13859,22.38051],[114.13858,22.38051],[114.13857,22.38052],[114.13856,22.38052],[114.13855,22.38052],[114.13854,22.38052],[114.13854,22.38053],[114.13852,22.38053],[114.13851,22.38054],[114.13849,22.38055],[114.13848,22.38055],[114.13847,22.38056],[114.13846,22.38057],[114.13845,22.38057],[114.13845,22.38057],[114.13844,22.38058],[114.13843,22.38059],[114.13842,22.38059],[114.13842,22.38059],[114.13841,22.3806],[114.13841,22.3806],[114.13834,22.38068],[114.13833,22.3807],[114.13831,22.38071],[114.1383,22.38072],[114.13829,22.38073],[114.13828,22.38074],[114.13827,22.38075],[114.13827,22.38075],[114.13826,22.38075],[114.13825,22.38076],[114.13824,22.38077],[114.13823,22.38077],[114.13822,22.38078],[114.13821,22.38079],[114.1382,22.38079],[114.13819,22.38079],[114.13817,22.3808],[114.13816,22.38081],[114.13814,22.38081],[114.13812,22.38082],[114.13811,22.38082],[114.13811,22.38082],[114.1381,22.38083],[114.13809,22.38083],[114.13808,22.38084],[114.13808,22.38084],[114.13807,22.38084],[114.13807,22.38085],[114.13806,22.38085],[114.13806,22.38086],[114.13806,22.38086],[114.13806,22.38087],[114.13805,22.38087],[114.13805,22.38087],[114.13805,22.38088],[114.13805,22.38088],[114.13805,22.38089],[114.13805,22.38089],[114.13804,22.3809],[114.13804,22.3809],[114.13804,22.3809],[114.13804,22.38091],[114.13804,22.38091],[114.13804,22.38092],[114.13805,22.38092],[114.13805,22.38093],[114.13805,22.38093],[114.13805,22.38094],[114.13806,22.38095],[114.13806,22.38096],[114.13807,22.38097],[114.13807,22.38097],[114.13808,22.38098],[114.13808,22.38099],[114.13809,22.38099],[114.1381,22.381],[114.1381,22.381],[114.13811,22.38101],[114.13812,22.38101],[114.13812,22.38102],[114.13813,22.38102],[114.13814,22.38103],[114.13815,22.38103],[114.13816,22.38103],[114.13817,22.38104],[114.13817,22.38104],[114.13819,22.38105],[114.1382,22.38105],[114.13823,22.38106],[114.13826,22.38107],[114.13829,22.38108],[114.13832,22.38109],[114.13832,22.38109],[114.13833,22.38109],[114.13833,22.38109],[114.13834,22.3811],[114.13834,22.3811],[114.13835,22.3811],[114.13835,22.3811],[114.13836,22.3811],[114.13836,22.3811],[114.13837,22.3811],[114.13837,22.3811],[114.13838,22.3811],[114.13838,22.38111],[114.13839,22.38111],[114.13839,22.38111],[114.1384,22.38111],[114.1384,22.38111],[114.13841,22.38111],[114.13841,22.38111],[114.13842,22.38111],[114.13842,22.38111],[114.13843,22.38111],[114.13843,22.38111],[114.13844,22.38111],[114.13844,22.38111],[114.13845,22.38112],[114.13845,22.38112],[114.13846,22.38112],[114.13846,22.38112],[114.13847,22.38112],[114.13847,22.38112],[114.13848,22.38112],[114.13848,22.38112],[114.13849,22.38112],[114.13849,22.38112],[114.1385,22.38112],[114.1385,22.38112],[114.13851,22.38112],[114.13852,22.38112],[114.13852,22.38112],[114.13853,22.38112],[114.13853,22.38112],[114.13854,22.38111],[114.13854,22.38111],[114.13855,22.38111],[114.13855,22.38111],[114.13856,22.38111],[114.13856,22.38111],[114.13857,22.38111],[114.13857,22.38111],[114.13858,22.38111],[114.13858,22.38111],[114.13858,22.38111],[114.13859,22.3811],[114.1386,22.3811],[114.1386,22.3811],[114.13861,22.3811],[114.13861,22.3811],[114.13862,22.38109],[114.13862,22.38109],[114.13863,22.38109],[114.13863,22.38109],[114.13863,22.38109],[114.13864,22.38109],[114.13864,22.38108],[114.13865,22.38108],[114.13865,22.38108],[114.13866,22.38108],[114.13866,22.38108],[114.13867,22.38108],[114.13867,22.38107],[114.13868,22.38107],[114.13868,22.38107],[114.13868,22.38107],[114.13869,22.38107],[114.13869,22.38106],[114.1387,22.38106],[114.1387,22.38106],[114.13871,22.38106],[114.13871,22.38106],[114.13872,22.38105],[114.13872,22.38105],[114.13873,22.38105],[114.13873,22.38105],[114.13873,22.38105],[114.13874,22.38104],[114.13874,22.38104],[114.13875,22.38104],[114.13875,22.38104],[114.13876,22.38103],[114.13876,22.38103],[114.13876,22.38103],[114.13877,22.38103],[114.13907,22.38085],[114.13907,22.38085],[114.13908,22.38084],[114.13908,22.38084],[114.13909,22.38084],[114.13909,22.38084],[114.1391,22.38084],[114.1391,22.38084],[114.13911,22.38084],[114.13911,22.38084],[114.13912,22.38084],[114.13912,22.38084],[114.13914,22.38085],[114.13915,22.38086],[114.13916,22.38086],[114.13916,22.38086],[114.13917,22.38086],[114.13917,22.38086],[114.13918,22.38086],[114.13918,22.38086],[114.13919,22.38086],[114.13919,22.38086],[114.1392,22.38087],[114.1392,22.38087],[114.13921,22.38087],[114.13921,22.38087],[114.13922,22.38087],[114.13922,22.38087],[114.13923,22.38087],[114.13923,22.38087],[114.13924,22.38087],[114.13924,22.38087],[114.13925,22.38088],[114.13925,22.38088],[114.13925,22.38088],[114.13926,22.38088],[114.13927,22.38089],[114.13927,22.38089],[114.13927,22.3809],[114.13927,22.3809],[114.13928,22.3809],[114.13928,22.38091],[114.13928,22.38091],[114.13928,22.38092],[114.13928,22.38092],[114.13928,22.38093],[114.13928,22.38093],[114.13928,22.38094],[114.13928,22.38094],[114.13928,22.38095],[114.13928,22.38095],[114.13928,22.38096],[114.13927,22.38096],[114.13927,22.38097],[114.13927,22.38097],[114.13927,22.38097],[114.13927,22.38098],[114.13927,22.38098],[114.13927,22.38099],[114.13927,22.38099],[114.13927,22.381],[114.13927,22.381],[114.13926,22.38101],[114.13926,22.38101],[114.13926,22.38101],[114.13926,22.38102],[114.13926,22.38102],[114.13926,22.38103],[114.13926,22.38103],[114.13926,22.38104],[114.13926,22.38104],[114.13926,22.38105],[114.13926,22.38105],[114.13926,22.38106],[114.13926,22.38106],[114.13926,22.38107],[114.13926,22.38107],[114.13926,22.38107],[114.13926,22.38108],[114.13926,22.38108],[114.13926,22.38109],[114.13926,22.38109],[114.13926,22.3811],[114.13927,22.3811],[114.13927,22.38111],[114.13927,22.38111],[114.13927,22.38112],[114.13927,22.38112],[114.13927,22.38112],[114.13927,22.38113],[114.13927,22.38113],[114.13927,22.38114],[114.13927,22.38114],[114.13928,22.38115],[114.13928,22.38116],[114.13929,22.38118],[114.1393,22.38124],[114.1393,22.38127],[114.1393,22.3813],[114.13931,22.38132],[114.13931,22.38139],[114.13931,22.38141],[114.13931,22.38143],[114.13931,22.38145],[114.13932,22.38146],[114.13932,22.38148],[114.13932,22.38149],[114.13932,22.3815],[114.13932,22.38151],[114.13933,22.38152],[114.13933,22.38154],[114.13933,22.38155],[114.13934,22.38157],[114.13934,22.38159],[114.13935,22.38161],[114.13935,22.38163],[114.13936,22.38164],[114.13936,22.38166],[114.13937,22.38168],[114.13938,22.3817],[114.13939,22.38171],[114.13939,22.38173],[114.1394,22.38174],[114.13941,22.38175],[114.13941,22.38176],[114.13942,22.38178],[114.13943,22.38179],[114.13943,22.3818],[114.13944,22.38181],[114.13945,22.38182],[114.13946,22.38183],[114.13947,22.38183],[114.13948,22.38184],[114.13949,22.38185],[114.1395,22.38186],[114.13952,22.38187],[114.13953,22.38188],[114.13955,22.38189],[114.13957,22.3819],[114.13959,22.38191],[114.13961,22.38192],[114.13963,22.38194],[114.13965,22.38195],[114.13967,22.38196],[114.13969,22.38197],[114.13971,22.38197],[114.13973,22.38198],[114.13974,22.38199],[114.13975,22.38199],[114.13977,22.382]],[[114.1437,22.3169],[114.14403,22.31725],[114.14415,22.31714],[114.14416,22.3171],[114.14386,22.31679],[114.14382,22.3168],[114.1437,22.3169]]]]},"properties":{"M_NM_Eng":"Metro","SR_Eng":"Metro","PDD_Cat_En":"New Town","PDD_Eng":"Kwai Chung","M_NM_Tc":"都會區","SR_Tc":"都會區","PDD_Cat_Tc":"新市鎮","PDD_Tc":"葵涌","M_NM_Sc":"都会区","SR_Sc_1":"都会区","PDD_Cat_Sc":"新市镇","PDD_Sc":"葵涌","Y2019_Popu":319150,"Y2019_Empl":195950,"Y2026_Popu":315800,"Y2026_Empl":192350,"Y2031_Popu":319700,"Y2031_Empl":183600}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[114.20869,22.31269],[114.2087,22.31268],[114.20871,22.31278],[114.20868,22.31274],[114.20869,22.31269]]],[[[114.24044,22.3086],[114.24044,22.3086],[114.24044,22.3086],[114.2405,22.3086],[114.24051,22.30861],[114.24051,22.30861],[114.24051,22.30861],[114.24053,22.30862],[114.24054,22.30863],[114.24055,22.30864],[114.24056,22.30865],[114.24058,22.30866],[114.24061,22.30869],[114.24064,22.30871],[114.24065,22.30873],[114.24066,22.30874],[114.24068,22.30876],[114.24068,22.30876],[114.24068,22.30877],[114.24069,22.30878],[114.24069,22.30879],[114.2407,22.3088],[114.2407,22.30881],[114.24071,22.30881],[114.24072,22.30885],[114.24073,22.30887],[114.24074,22.30887],[114.24074,22.30888],[114.24075,22.30889],[114.24075,22.30889],[114.24076,22.3089],[114.24077,22.30892],[114.24081,22.30894],[114.24082,22.30895],[114.24083,22.30896],[114.24083,22.30896],[114.24084,22.30896],[114.24085,22.30897],[114.24085,22.30897],[114.24086,22.30897],[114.24087,22.30897],[114.2409,22.30898],[114.24091,22.30899],[114.24091,22.30899],[114.24093,22.30899],[114.24094,22.309],[114.24094,22.309],[114.24095,22.309],[114.24095,22.30901],[114.24096,22.30901],[114.24097,22.30902],[114.24098,22.30903],[114.24098,22.30903],[114.24099,22.30905],[114.241,22.30906],[114.24101,22.30907],[114.24102,22.30908],[114.24102,22.30909],[114.24103,22.30909],[114.24104,22.3091],[114.24104,22.3091],[114.24105,22.30911],[114.24106,22.30911],[114.24106,22.30911],[114.24107,22.30912],[114.2411,22.30913],[114.2411,22.30913],[114.24114,22.30913],[114.24115,22.30913],[114.24115,22.30913],[114.24116,22.30913],[114.24116,22.30913],[114.24117,22.30913],[114.24117,22.30913],[114.24118,22.30913],[114.24119,22.30913],[114.2412,22.30913],[114.24121,22.30913],[114.24123,22.30912],[114.24124,22.30912],[114.24125,22.30912],[114.24126,22.30912],[114.24128,22.30911],[114.24129,22.3091],[114.24131,22.30909],[114.24132,22.30909],[114.24133,22.30908],[114.24134,22.30908],[114.24136,22.30908],[114.24138,22.30908],[114.24138,22.30908],[114.24139,22.30908],[114.24141,22.30908],[114.24142,22.30908],[114.24144,22.30908],[114.24146,22.30908],[114.24148,22.30909],[114.24152,22.3091],[114.24154,22.30911],[114.24156,22.30912],[114.24159,22.30912],[114.24164,22.30913],[114.24168,22.30914],[114.24172,22.30915],[114.24173,22.30915],[114.24175,22.30916],[114.24177,22.30917],[114.24179,22.30918],[114.24179,22.30918],[114.2418,22.30919],[114.24182,22.3092],[114.24182,22.3092],[114.24184,22.30921],[114.24185,22.30922],[114.24185,22.30922],[114.24185,22.30922],[114.24185,22.30922],[114.24186,22.30923],[114.24186,22.30924],[114.24186,22.30925],[114.24186,22.30925],[114.24186,22.30926],[114.24186,22.30927],[114.24186,22.30928],[114.24186,22.30929],[114.24185,22.30931],[114.24185,22.30933],[114.24185,22.30934],[114.24185,22.30938],[114.24185,22.30938],[114.24185,22.30943],[114.24186,22.30948],[114.24186,22.30948],[114.24186,22.30949],[114.24186,22.30949],[114.24186,22.30952],[114.24187,22.30955],[114.24187,22.30957],[114.24188,22.30963],[114.24188,22.30964],[114.24188,22.30965],[114.24188,22.30966],[114.24188,22.30966],[114.24188,22.30967],[114.24188,22.30967],[114.24188,22.30968],[114.24188,22.30968],[114.24188,22.30969],[114.24188,22.30969],[114.24188,22.30969],[114.24187,22.3097],[114.24186,22.30972],[114.24185,22.30974],[114.24184,22.30975],[114.24184,22.30975],[114.24183,22.30976],[114.24181,22.3098],[114.24178,22.30985],[114.24178,22.30991],[114.24185,22.31008],[114.24186,22.31013],[114.24187,22.31019],[114.24186,22.31026],[114.24185,22.31027],[114.24185,22.31028],[114.24185,22.3103],[114.24184,22.31033],[114.24184,22.31034],[114.24183,22.31039],[114.24182,22.31045],[114.24182,22.3105],[114.24184,22.31056],[114.24186,22.31061],[114.2419,22.31063],[114.24193,22.31064],[114.24199,22.31064],[114.24203,22.31062],[114.24206,22.31058],[114.24207,22.31055],[114.24208,22.31054],[114.24214,22.31045],[114.24226,22.31037],[114.24232,22.31038],[114.24234,22.31049],[114.24236,22.31053],[114.24238,22.31055],[114.24238,22.31056],[114.24243,22.31063],[114.24243,22.31063],[114.24251,22.31075],[114.24257,22.31079],[114.24263,22.31082],[114.24271,22.31082],[114.24277,22.31082],[114.24283,22.31079],[114.24287,22.31073],[114.24289,22.31071],[114.24291,22.31069],[114.24294,22.31064],[114.24294,22.31064],[114.24295,22.31064],[114.24295,22.31063],[114.24296,22.31063],[114.24297,22.31063],[114.24297,22.31062],[114.24298,22.31062],[114.24299,22.31062],[114.24299,22.31062],[114.243,22.31062],[114.24301,22.31062],[114.24303,22.31062],[114.24306,22.31063],[114.24308,22.31063],[114.2431,22.31064],[114.24312,22.31065],[114.24314,22.31066],[114.24316,22.31066],[114.24316,22.31066],[114.24318,22.31067],[114.24319,22.31067],[114.2432,22.31067],[114.24325,22.31068],[114.24325,22.31068],[114.24335,22.31068],[114.24336,22.31069],[114.24336,22.31069],[114.24341,22.31073],[114.24346,22.31076],[114.24346,22.31077],[114.24349,22.31078],[114.24349,22.31079],[114.24349,22.31079],[114.2435,22.3108],[114.2435,22.3108],[114.24351,22.31081],[114.24351,22.31082],[114.24351,22.31082],[114.24352,22.31083],[114.24352,22.31083],[114.24352,22.31085],[114.24352,22.31086],[114.24352,22.31086],[114.24352,22.31087],[114.24352,22.31087],[114.24352,22.31087],[114.24352,22.31088],[114.24352,22.31089],[114.24351,22.3109],[114.24351,22.31093],[114.2435,22.31096],[114.2435,22.31098],[114.2435,22.31098],[114.2435,22.31099],[114.2435,22.311],[114.2435,22.31101],[114.24351,22.31101],[114.24351,22.31102],[114.24352,22.31103],[114.24352,22.31104],[114.24353,22.31104],[114.24354,22.31105],[114.24354,22.31106],[114.24355,22.31106],[114.24355,22.31106],[114.24358,22.31108],[114.24359,22.31109],[114.24359,22.31109],[114.2436,22.31109],[114.2436,22.3111],[114.2436,22.3111],[114.2436,22.3111],[114.24361,22.31111],[114.24361,22.31112],[114.24361,22.31112],[114.24361,22.31112],[114.24361,22.31113],[114.24361,22.31114],[114.24362,22.31116],[114.24362,22.31116],[114.24361,22.31118],[114.24361,22.31119],[114.24361,22.31119],[114.24361,22.3112],[114.24361,22.3112],[114.2436,22.31122],[114.2436,22.31122],[114.24358,22.31126],[114.24356,22.3113],[114.24354,22.31132],[114.24353,22.31134],[114.24353,22.31135],[114.24353,22.31136],[114.24353,22.31136],[114.24353,22.31137],[114.24353,22.31138],[114.24353,22.31139],[114.24353,22.31139],[114.24354,22.31141],[114.24355,22.31142],[114.24355,22.31143],[114.24355,22.31143],[114.24355,22.31143],[114.24356,22.31143],[114.24356,22.31143],[114.24356,22.31144],[114.24357,22.31144],[114.24357,22.31144],[114.24359,22.31145],[114.24364,22.31146],[114.24365,22.31146],[114.24374,22.3115],[114.24377,22.31151],[114.2438,22.31152],[114.24387,22.31153],[114.24387,22.31153],[114.24389,22.31153],[114.2439,22.31153],[114.24391,22.31154],[114.24391,22.31154],[114.24391,22.31154],[114.24391,22.31154],[114.24392,22.31154],[114.24392,22.31154],[114.24392,22.31155],[114.24393,22.31155],[114.24394,22.31156],[114.24394,22.31156],[114.24394,22.31156],[114.24394,22.31157],[114.24394,22.31164],[114.24394,22.31167],[114.24395,22.3117],[114.24395,22.31171],[114.24395,22.31172],[114.24395,22.31172],[114.24395,22.31172],[114.24395,22.31172],[114.24395,22.31173],[114.24395,22.31174],[114.24395,22.31174],[114.24396,22.31175],[114.24396,22.31176],[114.24396,22.31176],[114.24397,22.31178],[114.24398,22.31179],[114.24398,22.3118],[114.24399,22.31182],[114.244,22.31183],[114.24401,22.31183],[114.24402,22.31184],[114.24402,22.31185],[114.24402,22.31185],[114.24403,22.31185],[114.24404,22.31187],[114.24404,22.31187],[114.24404,22.31188],[114.24405,22.31188],[114.24405,22.31189],[114.24405,22.3119],[114.24405,22.31191],[114.24405,22.31191],[114.24406,22.31192],[114.24406,22.31192],[114.24406,22.31193],[114.24406,22.31194],[114.24405,22.31195],[114.24405,22.31196],[114.24405,22.31196],[114.24405,22.31197],[114.24405,22.31198],[114.24405,22.31198],[114.24405,22.31199],[114.24404,22.312],[114.24404,22.312],[114.24404,22.31201],[114.24403,22.31202],[114.24402,22.31203],[114.24401,22.31204],[114.244,22.31205],[114.244,22.31206],[114.24399,22.31207],[114.24397,22.31208],[114.24395,22.3121],[114.24394,22.31211],[114.2439,22.31214],[114.24387,22.31216],[114.24386,22.31217],[114.24385,22.31219],[114.24384,22.31219],[114.24384,22.3122],[114.24383,22.31221],[114.24382,22.31222],[114.24382,22.31223],[114.24381,22.31223],[114.24381,22.31224],[114.2438,22.31225],[114.2438,22.31226],[114.24379,22.31228],[114.24379,22.31229],[114.24378,22.31229],[114.24378,22.31231],[114.24377,22.31235],[114.24377,22.31236],[114.24377,22.31238],[114.24377,22.31239],[114.24377,22.31239],[114.24377,22.31241],[114.24377,22.31241],[114.24377,22.31242],[114.24377,22.31242],[114.24377,22.31243],[114.24377,22.31243],[114.24377,22.31244],[114.24377,22.31244],[114.24377,22.31244],[114.24377,22.31245],[114.24377,22.31246],[114.24377,22.31246],[114.24378,22.31247],[114.24378,22.31247],[114.24378,22.31248],[114.24378,22.31248],[114.24378,22.31249],[114.24378,22.31249],[114.24379,22.3125],[114.24379,22.31251],[114.2438,22.31252],[114.2438,22.31252],[114.2438,22.31252],[114.2438,22.31253],[114.24381,22.31253],[114.24381,22.31253],[114.24381,22.31254],[114.24383,22.31255],[114.24383,22.31256],[114.24384,22.31256],[114.24384,22.31257],[114.24384,22.31257],[114.24385,22.31258],[114.24386,22.31258],[114.24386,22.31258],[114.24387,22.31259],[114.24388,22.3126],[114.24388,22.3126],[114.24389,22.3126],[114.24389,22.31261],[114.2439,22.31261],[114.2439,22.31261],[114.2439,22.31262],[114.24391,22.31262],[114.24391,22.31262],[114.24392,22.31263],[114.24393,22.31264],[114.24393,22.31264],[114.24393,22.31264],[114.24393,22.31265],[114.24394,22.31265],[114.24394,22.31266],[114.24395,22.31267],[114.24395,22.31267],[114.24396,22.31267],[114.24396,22.31268],[114.24397,22.31269],[114.24397,22.31269],[114.24397,22.3127],[114.24398,22.3127],[114.24398,22.3127],[114.24398,22.31271],[114.24399,22.31272],[114.244,22.31273],[114.244,22.31274],[114.24401,22.31275],[114.24401,22.31275],[114.24401,22.31276],[114.24402,22.31276],[114.24402,22.31277],[114.24402,22.31277],[114.24402,22.31277],[114.24403,22.31278],[114.24403,22.31278],[114.24404,22.31279],[114.24404,22.31279],[114.24404,22.31279],[114.24404,22.3128],[114.24405,22.31281],[114.24406,22.31281],[114.24407,22.31282],[114.24408,22.31282],[114.24408,22.31282],[114.24411,22.31282],[114.24412,22.31282],[114.24412,22.31282],[114.24413,22.31282],[114.24414,22.31282],[114.24414,22.31282],[114.24416,22.31282],[114.24417,22.31282],[114.24418,22.31281],[114.24418,22.31281],[114.2442,22.31281],[114.2442,22.31281],[114.24421,22.31281],[114.24421,22.31281],[114.24422,22.31281],[114.24423,22.31281],[114.24424,22.31281],[114.24425,22.31281],[114.24426,22.31281],[114.24427,22.31281],[114.24427,22.31281],[114.24428,22.31281],[114.24429,22.31281],[114.2443,22.31281],[114.24431,22.31281],[114.24431,22.31281],[114.24432,22.31281],[114.24433,22.31281],[114.24434,22.31282],[114.24434,22.31282],[114.24435,22.31282],[114.24435,22.31282],[114.24436,22.31283],[114.24437,22.31283],[114.24438,22.31284],[114.24439,22.31284],[114.2444,22.31285],[114.2444,22.31285],[114.24441,22.31285],[114.24441,22.31286],[114.24442,22.31286],[114.24443,22.31287],[114.24444,22.31288],[114.24444,22.31288],[114.24445,22.31288],[114.24445,22.31289],[114.24446,22.31289],[114.24446,22.31289],[114.24446,22.3129],[114.24446,22.3129],[114.24447,22.31291],[114.24448,22.31291],[114.24448,22.31292],[114.24448,22.31292],[114.24448,22.31292],[114.24448,22.31293],[114.24449,22.31294],[114.24449,22.31294],[114.24449,22.31295],[114.24449,22.31296],[114.24449,22.31298],[114.24448,22.31298],[114.24448,22.31299],[114.24447,22.313],[114.24443,22.31308],[114.24442,22.31309],[114.24442,22.3131],[114.24442,22.3131],[114.24442,22.31311],[114.24442,22.31312],[114.24442,22.31312],[114.24441,22.31312],[114.24441,22.31314],[114.24441,22.31314],[114.24441,22.31315],[114.24441,22.31316],[114.24441,22.31316],[114.24442,22.31317],[114.24442,22.31317],[114.24442,22.31317],[114.24442,22.31318],[114.24443,22.31319],[114.24443,22.3132],[114.24443,22.3132],[114.24444,22.31321],[114.24444,22.31322],[114.24444,22.31322],[114.24445,22.31323],[114.24445,22.31324],[114.24446,22.31324],[114.24448,22.31325],[114.24448,22.31326],[114.24449,22.31326],[114.24449,22.31326],[114.24451,22.31327],[114.24452,22.31327],[114.24452,22.31327],[114.24453,22.31328],[114.24454,22.31328],[114.24455,22.31328],[114.24456,22.31329],[114.24457,22.31329],[114.24457,22.31329],[114.24458,22.31329],[114.24459,22.3133],[114.2446,22.3133],[114.2446,22.3133],[114.2446,22.31331],[114.24461,22.31331],[114.24462,22.31332],[114.24463,22.31332],[114.24464,22.31334],[114.24464,22.31334],[114.24464,22.31334],[114.24465,22.31335],[114.24465,22.31336],[114.24465,22.31336],[114.24465,22.31337],[114.24466,22.31338],[114.24466,22.31339],[114.24466,22.3134],[114.24466,22.31341],[114.24467,22.31342],[114.24467,22.31342],[114.24467,22.31343],[114.24467,22.31343],[114.24467,22.31343],[114.24467,22.31344],[114.24467,22.31344],[114.24467,22.31344],[114.24467,22.31345],[114.24468,22.31345],[114.24468,22.31346],[114.24468,22.31346],[114.24468,22.31347],[114.24468,22.31347],[114.24468,22.31347],[114.24468,22.31348],[114.24468,22.31349],[114.24469,22.3135],[114.2447,22.31351],[114.2447,22.31351],[114.2447,22.31351],[114.24471,22.31352],[114.24471,22.31352],[114.24472,22.31352],[114.24472,22.31353],[114.24473,22.31353],[114.24474,22.31353],[114.24474,22.31354],[114.24475,22.31354],[114.24476,22.31354],[114.24476,22.31354],[114.24477,22.31354],[114.24482,22.31355],[114.24496,22.31357],[114.24497,22.31358],[114.24497,22.31358],[114.24501,22.31358],[114.24503,22.31359],[114.24504,22.31359],[114.24504,22.31359],[114.24505,22.31359],[114.24506,22.31359],[114.24507,22.31358],[114.24509,22.31358],[114.24509,22.31358],[114.2451,22.31358],[114.24511,22.31357],[114.24511,22.31357],[114.24512,22.31356],[114.24513,22.31356],[114.24513,22.31355],[114.24514,22.31355],[114.24515,22.31354],[114.24515,22.31353],[114.24516,22.31353],[114.24516,22.31352],[114.24516,22.31352],[114.24517,22.31351],[114.24517,22.31351],[114.24518,22.31351],[114.24518,22.3135],[114.24519,22.3135],[114.24519,22.31349],[114.2452,22.31349],[114.2452,22.31349],[114.24521,22.31349],[114.24521,22.31348],[114.24522,22.31348],[114.24522,22.31348],[114.24523,22.31347],[114.24524,22.31347],[114.24525,22.31347],[114.24525,22.31347],[114.24526,22.31347],[114.24526,22.31347],[114.24527,22.31347],[114.24528,22.31347],[114.24529,22.31347],[114.2453,22.31347],[114.24531,22.31347],[114.24532,22.31347],[114.24532,22.31347],[114.24533,22.31348],[114.24533,22.31348],[114.24534,22.31348],[114.24534,22.31348],[114.24535,22.31348],[114.24535,22.31348],[114.24536,22.31348],[114.24536,22.31349],[114.24537,22.31349],[114.24537,22.31349],[114.24537,22.31349],[114.24538,22.31349],[114.24539,22.31349],[114.24539,22.3135],[114.2454,22.3135],[114.2454,22.3135],[114.24541,22.3135],[114.24541,22.3135],[114.24541,22.3135],[114.24542,22.3135],[114.24542,22.31351],[114.24543,22.31351],[114.24543,22.31351],[114.24544,22.31351],[114.24544,22.31352],[114.24545,22.31352],[114.24546,22.31352],[114.24546,22.31352],[114.24546,22.31353],[114.24546,22.31353],[114.24547,22.31353],[114.24547,22.31353],[114.24547,22.31353],[114.24548,22.31354],[114.24549,22.31354],[114.24549,22.31354],[114.24549,22.31354],[114.2455,22.31355],[114.2455,22.31355],[114.24551,22.31356],[114.24552,22.31356],[114.24552,22.31356],[114.24553,22.31357],[114.24554,22.31357],[114.24554,22.31358],[114.24554,22.31358],[114.24555,22.31358],[114.24555,22.31359],[114.24556,22.31359],[114.24556,22.31359],[114.24556,22.3136],[114.24556,22.3136],[114.24556,22.3136],[114.24557,22.31361],[114.24557,22.31361],[114.24557,22.31361],[114.24557,22.31361],[114.24557,22.31361],[114.24557,22.31362],[114.24556,22.31363],[114.24556,22.31363],[114.24556,22.31364],[114.24556,22.31364],[114.24556,22.31365],[114.24556,22.31365],[114.24555,22.31365],[114.24555,22.31366],[114.24555,22.31366],[114.24555,22.31367],[114.24554,22.31368],[114.24554,22.31368],[114.24554,22.31368],[114.24554,22.31369],[114.24554,22.3137],[114.24553,22.3137],[114.24553,22.31371],[114.24553,22.31371],[114.24553,22.31372],[114.24553,22.31372],[114.24553,22.31373],[114.24553,22.31373],[114.24553,22.31374],[114.24553,22.31374],[114.24553,22.31375],[114.24553,22.31376],[114.24553,22.31377],[114.24553,22.31377],[114.24553,22.31377],[114.24553,22.31378],[114.24553,22.31378],[114.24553,22.3138],[114.24553,22.31381],[114.24553,22.31381],[114.24553,22.31381],[114.24553,22.31382],[114.24554,22.31383],[114.24554,22.31384],[114.24554,22.31384],[114.24554,22.31385],[114.24554,22.31385],[114.24554,22.31386],[114.24554,22.31386],[114.24554,22.31386],[114.24554,22.31387],[114.24554,22.31387],[114.24554,22.31388],[114.24554,22.31388],[114.24554,22.31389],[114.24554,22.3139],[114.24554,22.3139],[114.24553,22.31391],[114.24553,22.31392],[114.24553,22.31392],[114.24553,22.31393],[114.24553,22.31393],[114.24553,22.31393],[114.24553,22.31394],[114.24553,22.31394],[114.24553,22.31394],[114.24553,22.31395],[114.24552,22.31395],[114.24552,22.31396],[114.24552,22.31396],[114.24552,22.31397],[114.24552,22.31397],[114.24552,22.31398],[114.24551,22.31399],[114.24551,22.314],[114.2455,22.31401],[114.2455,22.31401],[114.2455,22.31401],[114.2455,22.31402],[114.2455,22.31402],[114.2455,22.31402],[114.24549,22.31403],[114.24549,22.31404],[114.24549,22.31404],[114.24549,22.31404],[114.24549,22.31404],[114.24548,22.31404],[114.24548,22.31405],[114.24548,22.31405],[114.24548,22.31406],[114.24548,22.31406],[114.24547,22.31407],[114.24547,22.31407],[114.24547,22.31407],[114.24547,22.31408],[114.24546,22.31408],[114.24546,22.31408],[114.24546,22.31408],[114.24546,22.31408],[114.24546,22.31409],[114.24545,22.31409],[114.24545,22.3141],[114.24544,22.31411],[114.24544,22.31411],[114.24544,22.31412],[114.24543,22.31412],[114.24543,22.31413],[114.24543,22.31413],[114.24542,22.31414],[114.24542,22.31415],[114.24541,22.31415],[114.24541,22.31416],[114.24541,22.31416],[114.2454,22.31416],[114.2454,22.31417],[114.2454,22.31417],[114.24539,22.31418],[114.24539,22.31419],[114.24539,22.31419],[114.24538,22.31419],[114.24538,22.3142],[114.24538,22.3142],[114.24538,22.3142],[114.24537,22.31421],[114.24537,22.31422],[114.24537,22.31422],[114.24536,22.31423],[114.24536,22.31424],[114.24535,22.31425],[114.24535,22.31425],[114.24535,22.31425],[114.24535,22.31425],[114.24535,22.31426],[114.24535,22.31426],[114.24535,22.31426],[114.24534,22.31427],[114.24534,22.31427],[114.24534,22.31428],[114.24534,22.31429],[114.24534,22.31429],[114.24533,22.3143],[114.24533,22.3143],[114.24533,22.31431],[114.24533,22.31431],[114.24533,22.31432],[114.24533,22.31432],[114.24532,22.31432],[114.24532,22.31433],[114.24532,22.31433],[114.24532,22.31433],[114.24532,22.31433],[114.24532,22.31434],[114.24532,22.31434],[114.24532,22.31434],[114.24532,22.31435],[114.24532,22.31435],[114.24532,22.31435],[114.24531,22.31436],[114.24531,22.31436],[114.24531,22.31437],[114.24531,22.31437],[114.24531,22.31438],[114.24531,22.31439],[114.2453,22.31439],[114.2453,22.3144],[114.2453,22.3144],[114.2453,22.31441],[114.2453,22.31441],[114.2453,22.31441],[114.2453,22.31442],[114.2453,22.31442],[114.2453,22.31442],[114.24529,22.31443],[114.24529,22.31445],[114.24529,22.31445],[114.24529,22.31446],[114.24529,22.31446],[114.24529,22.31446],[114.24529,22.31446],[114.24529,22.31447],[114.24529,22.31448],[114.24528,22.31448],[114.24528,22.31449],[114.24528,22.31449],[114.24528,22.31449],[114.24528,22.3145],[114.24528,22.3145],[114.24528,22.31451],[114.24528,22.31451],[114.24528,22.31453],[114.24527,22.31453],[114.24527,22.31454],[114.24527,22.31454],[114.24526,22.31455],[114.24526,22.31455],[114.24526,22.31455],[114.24525,22.31456],[114.24525,22.31456],[114.24524,22.31456],[114.24524,22.31457],[114.24523,22.31457],[114.24523,22.31457],[114.24523,22.31457],[114.24522,22.31458],[114.24522,22.31458],[114.24522,22.31458],[114.24521,22.31459],[114.2452,22.31459],[114.2452,22.31459],[114.24519,22.3146],[114.24519,22.3146],[114.24518,22.31461],[114.24517,22.31462],[114.24517,22.31462],[114.24516,22.31463],[114.24515,22.31463],[114.24515,22.31464],[114.24515,22.31464],[114.24512,22.31467],[114.24512,22.31467],[114.24512,22.31467],[114.24509,22.31467],[114.24476,22.31475],[114.24475,22.31477],[114.24432,22.31533],[114.24423,22.31534],[114.24415,22.31534],[114.244,22.31532],[114.24335,22.31512],[114.24248,22.31529],[114.24226,22.31538],[114.24214,22.31544],[114.24211,22.31546],[114.24205,22.31549],[114.24202,22.31587],[114.24199,22.31597],[114.24194,22.31605],[114.24178,22.31633],[114.24183,22.31638],[114.24196,22.31645],[114.2421,22.31656],[114.24219,22.31668],[114.24234,22.3168],[114.2426,22.31699],[114.24281,22.31713],[114.24261,22.3174],[114.24259,22.31742],[114.24253,22.31751],[114.24225,22.3179],[114.2424,22.31818],[114.2424,22.31819],[114.24241,22.31822],[114.24242,22.31822],[114.24243,22.31831],[114.24243,22.31838],[114.24241,22.31846],[114.24239,22.31853],[114.24262,22.31923],[114.24264,22.31926],[114.24278,22.31949],[114.24289,22.31977],[114.24298,22.32001],[114.24304,22.32008],[114.24306,22.32013],[114.24307,22.32016],[114.2431,22.32022],[114.24312,22.32027],[114.24312,22.32031],[114.24313,22.32035],[114.24314,22.32041],[114.24314,22.32046],[114.24314,22.32054],[114.24313,22.32061],[114.24313,22.32063],[114.24312,22.32068],[114.24308,22.32075],[114.24308,22.32079],[114.24308,22.32079],[114.2431,22.32083],[114.24313,22.32086],[114.24317,22.3209],[114.24317,22.3209],[114.24318,22.32094],[114.24318,22.32098],[114.24316,22.32104],[114.24342,22.32104],[114.24342,22.32132],[114.24334,22.32132],[114.24324,22.32134],[114.24318,22.32137],[114.24307,22.32147],[114.2429,22.32166],[114.2429,22.32169],[114.24289,22.32176],[114.24289,22.32183],[114.24288,22.32191],[114.24287,22.32197],[114.24286,22.32199],[114.24286,22.32202],[114.24286,22.32203],[114.24285,22.32209],[114.24284,22.32215],[114.24284,22.3222],[114.24284,22.32225],[114.24283,22.32229],[114.24281,22.32236],[114.24281,22.32242],[114.2428,22.32248],[114.2428,22.32253],[114.24279,22.32258],[114.24278,22.32262],[114.24276,22.32269],[114.24275,22.32274],[114.24274,22.3228],[114.24272,22.32294],[114.24269,22.32304],[114.24267,22.32313],[114.24266,22.3232],[114.24264,22.32326],[114.24261,22.32335],[114.24258,22.32342],[114.24256,22.32349],[114.24253,22.32354],[114.24248,22.32362],[114.24244,22.3237],[114.2424,22.32377],[114.24235,22.32385],[114.24231,22.3239],[114.24221,22.324],[114.24209,22.32414],[114.24196,22.3243],[114.24173,22.32451],[114.24155,22.32467],[114.24137,22.32483],[114.24124,22.32495],[114.24107,22.32509],[114.24087,22.32524],[114.24076,22.32533],[114.24058,22.32546],[114.24043,22.32557],[114.24029,22.32566],[114.24011,22.32578],[114.23988,22.32594],[114.23969,22.32605],[114.23951,22.32618],[114.23926,22.32638],[114.23907,22.32654],[114.23888,22.32671],[114.2387,22.32687],[114.23852,22.32703],[114.23836,22.32718],[114.2382,22.32732],[114.23803,22.32748],[114.23784,22.32765],[114.23769,22.3278],[114.23755,22.32794],[114.23747,22.32802],[114.23743,22.32806],[114.2373,22.32819],[114.23715,22.32834],[114.23699,22.32848],[114.23687,22.3286],[114.2367,22.32875],[114.23652,22.32891],[114.23642,22.329],[114.23623,22.32915],[114.23608,22.32927],[114.23595,22.32937],[114.23578,22.3295],[114.23556,22.32967],[114.23539,22.32981],[114.23526,22.32991],[114.23513,22.33001],[114.23499,22.33012],[114.23484,22.33024],[114.23467,22.33038],[114.23453,22.33047],[114.23442,22.33055],[114.23434,22.33061],[114.23421,22.33069],[114.234,22.33081],[114.23383,22.3309],[114.23382,22.3309],[114.23369,22.33097],[114.23366,22.33099],[114.23354,22.33105],[114.23343,22.33109],[114.23329,22.33115],[114.23319,22.33118],[114.23307,22.33123],[114.23294,22.33126],[114.23283,22.33129],[114.23271,22.33132],[114.23259,22.33134],[114.23247,22.33135],[114.23235,22.33135],[114.23235,22.33135],[114.23235,22.33135],[114.23234,22.33135],[114.23224,22.33135],[114.23214,22.33135],[114.23198,22.33134],[114.23191,22.33132],[114.23176,22.33129],[114.23164,22.33124],[114.23148,22.33116],[114.23111,22.33098],[114.23084,22.33084],[114.23062,22.33073],[114.23048,22.33064],[114.23038,22.33058],[114.22966,22.33008],[114.22963,22.33006],[114.22959,22.33013],[114.22954,22.33021],[114.22951,22.33024],[114.22941,22.33029],[114.22932,22.33034],[114.22925,22.3304],[114.22922,22.33044],[114.22921,22.33049],[114.22922,22.33067],[114.22923,22.33082],[114.22924,22.33095],[114.22927,22.33107],[114.22936,22.33144],[114.22938,22.33153],[114.22939,22.33165],[114.22939,22.33171],[114.22939,22.33179],[114.22937,22.33187],[114.22936,22.33192],[114.22932,22.332],[114.22929,22.33206],[114.22923,22.33212],[114.22915,22.33221],[114.22908,22.33228],[114.229,22.33234],[114.22891,22.33241],[114.22884,22.33246],[114.22884,22.33247],[114.22883,22.33247],[114.22874,22.33255],[114.22869,22.3326],[114.22861,22.33267],[114.22855,22.33275],[114.22852,22.33279],[114.2285,22.33284],[114.22847,22.3329],[114.22844,22.33295],[114.22844,22.33296],[114.22844,22.33296],[114.22844,22.333],[114.22844,22.33302],[114.22844,22.33306],[114.22845,22.33308],[114.22846,22.3331],[114.22849,22.33315],[114.22851,22.33318],[114.22854,22.33322],[114.22857,22.33327],[114.22858,22.33329],[114.2286,22.33333],[114.2286,22.33337],[114.2286,22.33339],[114.2286,22.33341],[114.22859,22.33346],[114.22859,22.33348],[114.22859,22.33351],[114.2286,22.33355],[114.2286,22.33356],[114.22862,22.33359],[114.22863,22.33361],[114.22866,22.33364],[114.2287,22.33368],[114.22873,22.33372],[114.22878,22.33376],[114.22881,22.33381],[114.22883,22.33383],[114.22884,22.33386],[114.22885,22.33388],[114.22885,22.3339],[114.22884,22.33392],[114.22882,22.33394],[114.2288,22.33397],[114.22879,22.33398],[114.22878,22.334],[114.22877,22.334],[114.22874,22.33403],[114.22872,22.33405],[114.22871,22.33407],[114.22868,22.33411],[114.22866,22.33415],[114.22865,22.33418],[114.22865,22.33419],[114.22865,22.33419],[114.22864,22.3342],[114.22864,22.33421],[114.22864,22.33421],[114.22864,22.33422],[114.22864,22.33423],[114.22864,22.33424],[114.22864,22.33424],[114.22864,22.33425],[114.22864,22.33426],[114.22864,22.33435],[114.22829,22.33435],[114.22791,22.33435],[114.22736,22.33433],[114.22719,22.33432],[114.22714,22.33432],[114.22701,22.33431],[114.22687,22.33431],[114.22664,22.33427],[114.22663,22.33426],[114.22652,22.33424],[114.22599,22.33416],[114.22547,22.33411],[114.22525,22.3341],[114.22505,22.33408],[114.22487,22.33409],[114.22475,22.33412],[114.22462,22.33417],[114.22444,22.33425],[114.22432,22.33434],[114.22437,22.33441],[114.22432,22.33444],[114.22432,22.33444],[114.22429,22.33446],[114.22427,22.33446],[114.22426,22.33447],[114.22418,22.33449],[114.22418,22.33449],[114.22413,22.3345],[114.22412,22.33451],[114.22408,22.33451],[114.22404,22.33452],[114.22404,22.33452],[114.22403,22.33452],[114.22387,22.33451],[114.22372,22.33448],[114.22182,22.33395],[114.22177,22.33394],[114.22174,22.33394],[114.22168,22.33393],[114.22166,22.33392],[114.22163,22.33392],[114.2216,22.33392],[114.22157,22.33391],[114.2214,22.33389],[114.22086,22.33385],[114.22065,22.33384],[114.21879,22.33371],[114.21873,22.33371],[114.2185,22.33374],[114.21818,22.33382],[114.21821,22.33364],[114.21835,22.33304],[114.21812,22.333],[114.21476,22.33234],[114.21471,22.33233],[114.21469,22.33233],[114.21466,22.33232],[114.21463,22.33232],[114.2146,22.33231],[114.21457,22.33231],[114.21454,22.3323],[114.21451,22.3323],[114.21448,22.3323],[114.21445,22.3323],[114.21443,22.33229],[114.2144,22.33229],[114.21437,22.33229],[114.21434,22.33229],[114.21431,22.33229],[114.21425,22.33229],[114.21422,22.33229],[114.21419,22.33229],[114.21416,22.33229],[114.21413,22.33229],[114.21411,22.3323],[114.21408,22.3323],[114.21405,22.3323],[114.21402,22.33231],[114.21399,22.33231],[114.21396,22.33231],[114.21393,22.33232],[114.2139,22.33232],[114.21388,22.33233],[114.21385,22.33234],[114.21382,22.33234],[114.21379,22.33235],[114.21376,22.33235],[114.21371,22.33236],[114.21355,22.33241],[114.2135,22.33244],[114.2134,22.33249],[114.2132,22.33264],[114.21318,22.33265],[114.21306,22.33277],[114.21296,22.33287],[114.21292,22.33292],[114.21273,22.33315],[114.21247,22.33349],[114.2123,22.33372],[114.2123,22.33372],[114.21227,22.33376],[114.2122,22.33385],[114.21205,22.334],[114.21204,22.33401],[114.21202,22.33402],[114.21177,22.33419],[114.21169,22.33423],[114.2115,22.33431],[114.21123,22.33439],[114.21097,22.33441],[114.21072,22.33441],[114.21001,22.33428],[114.20999,22.33427],[114.2091,22.3341],[114.20844,22.33395],[114.20831,22.33392],[114.2081,22.33383],[114.20799,22.33376],[114.20797,22.33373],[114.20795,22.33371],[114.20793,22.33369],[114.20775,22.33344],[114.20764,22.33324],[114.20761,22.33308],[114.20761,22.33292],[114.20764,22.33274],[114.20771,22.33259],[114.20732,22.33288],[114.20525,22.33453],[114.20507,22.33467],[114.20511,22.33447],[114.2052,22.33423],[114.20526,22.33399],[114.20527,22.33389],[114.20528,22.33387],[114.20529,22.33378],[114.20529,22.33372],[114.20529,22.3337],[114.2053,22.33362],[114.2053,22.3336],[114.2053,22.33359],[114.2053,22.33357],[114.2053,22.33356],[114.2053,22.33353],[114.2053,22.3335],[114.2053,22.3335],[114.2053,22.33348],[114.2053,22.33345],[114.2053,22.33332],[114.2053,22.33331],[114.2053,22.33327],[114.2053,22.3332],[114.2053,22.33316],[114.2053,22.33316],[114.20523,22.33276],[114.20523,22.33275],[114.20523,22.33275],[114.20523,22.33274],[114.20523,22.3327],[114.20523,22.33263],[114.20523,22.33252],[114.20523,22.33251],[114.20522,22.33246],[114.20522,22.33236],[114.20522,22.33236],[114.20522,22.33226],[114.20521,22.33221],[114.20521,22.33206],[114.2052,22.33192],[114.20519,22.3316],[114.20518,22.33132],[114.20518,22.33132],[114.20518,22.33104],[114.20518,22.33036],[114.20518,22.33034],[114.20518,22.33034],[114.20516,22.33012],[114.20515,22.32997],[114.20514,22.32992],[114.20514,22.3299],[114.20514,22.32989],[114.20514,22.32987],[114.20514,22.32985],[114.20514,22.32984],[114.20514,22.32982],[114.20514,22.3298],[114.20514,22.32973],[114.20514,22.32968],[114.20514,22.32964],[114.20514,22.32963],[114.20514,22.32961],[114.20514,22.3296],[114.20514,22.32958],[114.20514,22.32956],[114.20514,22.32954],[114.20514,22.32953],[114.20514,22.3295],[114.20515,22.32949],[114.20515,22.32947],[114.20515,22.32945],[114.20515,22.32944],[114.20515,22.32942],[114.20516,22.32937],[114.20517,22.32931],[114.20517,22.3293],[114.20518,22.32928],[114.20518,22.32927],[114.20518,22.32925],[114.20518,22.32924],[114.20519,22.32924],[114.20519,22.32919],[114.2052,22.32917],[114.20521,22.32911],[114.20522,22.32907],[114.20523,22.32905],[114.20523,22.32904],[114.20523,22.32903],[114.20524,22.32901],[114.20524,22.329],[114.20524,22.32899],[114.20525,22.32898],[114.20525,22.32896],[114.20525,22.32895],[114.20526,22.32891],[114.20527,22.32889],[114.20527,22.32888],[114.20527,22.32887],[114.20527,22.32886],[114.20528,22.32884],[114.20528,22.32883],[114.20528,22.32882],[114.20529,22.32881],[114.20529,22.3288],[114.20529,22.32878],[114.2053,22.32876],[114.2053,22.32875],[114.2053,22.32874],[114.20531,22.32873],[114.20531,22.32871],[114.20531,22.3287],[114.20531,22.32869],[114.20532,22.32867],[114.20532,22.32866],[114.20532,22.32865],[114.20532,22.32864],[114.20532,22.32863],[114.20533,22.32862],[114.20533,22.3286],[114.20533,22.32859],[114.20533,22.32858],[114.20533,22.32857],[114.20533,22.32856],[114.20534,22.32855],[114.20534,22.32854],[114.20534,22.32853],[114.20534,22.32851],[114.20534,22.32849],[114.20535,22.32848],[114.20535,22.32847],[114.20535,22.32846],[114.20535,22.32845],[114.20535,22.32844],[114.20535,22.32843],[114.20535,22.32841],[114.20535,22.3284],[114.20535,22.32839],[114.20535,22.32838],[114.20535,22.32837],[114.20536,22.32836],[114.20536,22.32835],[114.20536,22.32833],[114.20536,22.32832],[114.20536,22.32831],[114.20536,22.3283],[114.20536,22.32829],[114.20536,22.32828],[114.20536,22.32825],[114.20536,22.32824],[114.20536,22.32823],[114.20536,22.32822],[114.20536,22.32821],[114.20536,22.3282],[114.20536,22.32817],[114.20535,22.32816],[114.20535,22.32815],[114.20535,22.32814],[114.20535,22.32813],[114.20535,22.32813],[114.20535,22.32812],[114.20535,22.32811],[114.20535,22.32809],[114.20535,22.32808],[114.20535,22.32807],[114.20534,22.32806],[114.20534,22.32805],[114.20534,22.32804],[114.20534,22.32803],[114.20534,22.32802],[114.20534,22.32801],[114.20534,22.328],[114.20533,22.32799],[114.20533,22.32797],[114.20533,22.32796],[114.20533,22.32795],[114.20533,22.32794],[114.20532,22.32791],[114.20531,22.32785],[114.2053,22.32784],[114.2053,22.32783],[114.2053,22.32781],[114.20529,22.3278],[114.20528,22.32777],[114.20528,22.32776],[114.20528,22.32775],[114.20527,22.32774],[114.20527,22.32772],[114.20526,22.3277],[114.20526,22.32769],[114.20525,22.32768],[114.20525,22.32766],[114.20524,22.32764],[114.20523,22.32763],[114.20523,22.32761],[114.20522,22.3276],[114.20521,22.32758],[114.2052,22.32755],[114.20519,22.32753],[114.20518,22.32752],[114.20518,22.32751],[114.20517,22.3275],[114.20517,22.32748],[114.20516,22.32746],[114.20515,22.32745],[114.20514,22.32743],[114.20512,22.32739],[114.20509,22.32733],[114.20505,22.32726],[114.20501,22.32718],[114.20498,22.32713],[114.20495,22.32707],[114.20493,22.32703],[114.2049,22.32699],[114.2049,22.32697],[114.20489,22.32696],[114.20488,22.32695],[114.20488,22.32694],[114.20487,22.32692],[114.20486,22.32691],[114.20486,22.3269],[114.20482,22.32683],[114.20479,22.32677],[114.20478,22.32675],[114.20464,22.32643],[114.20461,22.32635],[114.20461,22.32634],[114.20469,22.32559],[114.20473,22.32514],[114.20473,22.32513],[114.20436,22.3251],[114.20435,22.32497],[114.20434,22.32483],[114.20434,22.32458],[114.20436,22.32433],[114.2044,22.32407],[114.20444,22.32376],[114.20447,22.32352],[114.20451,22.32324],[114.20456,22.32291],[114.20459,22.32264],[114.20464,22.32239],[114.20472,22.32215],[114.20472,22.32213],[114.20416,22.32163],[114.20391,22.32179],[114.20379,22.32187],[114.20363,22.32195],[114.2034,22.32203],[114.20308,22.32213],[114.20268,22.32222],[114.20242,22.32225],[114.20207,22.32226],[114.20172,22.32226],[114.20151,22.32224],[114.20134,22.3222],[114.20101,22.32212],[114.20096,22.3221],[114.20095,22.3221],[114.20093,22.32209],[114.20107,22.32204],[114.20714,22.3166],[114.20711,22.31646],[114.20583,22.31523],[114.20573,22.31519],[114.20005,22.32028],[114.20011,22.32034],[114.20011,22.32045],[114.20079,22.32215],[114.20078,22.3221],[114.20074,22.32203],[114.20071,22.32202],[114.20052,22.32193],[114.20045,22.32189],[114.20036,22.32184],[114.20024,22.32177],[114.20012,22.3217],[114.19991,22.32156],[114.19965,22.32136],[114.19947,22.3212],[114.19925,22.321],[114.19907,22.32084],[114.19885,22.32064],[114.19864,22.32045],[114.19849,22.32031],[114.19835,22.32019],[114.19835,22.32018],[114.19752,22.31942],[114.19762,22.31933],[114.19823,22.31879],[114.1984,22.31863],[114.19881,22.31826],[114.19968,22.31748],[114.19968,22.31748],[114.19968,22.31748],[114.19986,22.31731],[114.19987,22.31732],[114.20074,22.31654],[114.20103,22.31628],[114.20103,22.31627],[114.2018,22.31558],[114.20196,22.31545],[114.20219,22.31523],[114.2022,22.31523],[114.20254,22.31492],[114.20272,22.31476],[114.20294,22.31456],[114.20312,22.3144],[114.20318,22.31435],[114.20318,22.31434],[114.20364,22.31393],[114.20365,22.31392],[114.20374,22.31384],[114.20375,22.31383],[114.20428,22.31336],[114.20428,22.31335],[114.20454,22.31313],[114.2049,22.3128],[114.20532,22.31243],[114.20546,22.3123],[114.20625,22.31159],[114.20623,22.31156],[114.2062,22.31156],[114.20614,22.31162],[114.2061,22.31158],[114.2062,22.31149],[114.20627,22.31157],[114.20635,22.3115],[114.20649,22.31138],[114.20669,22.31119],[114.20701,22.31073],[114.20711,22.31063],[114.20734,22.31043],[114.20757,22.31022],[114.2077,22.3101],[114.20797,22.30986],[114.20811,22.30982],[114.20828,22.30977],[114.20829,22.30977],[114.21063,22.30767],[114.21065,22.30769],[114.21548,22.30335],[114.21557,22.3033],[114.21566,22.30327],[114.21575,22.30327],[114.21592,22.30328],[114.21726,22.30458],[114.21733,22.3047],[114.21734,22.30482],[114.21733,22.30489],[114.21727,22.30498],[114.21578,22.30632],[114.21532,22.30683],[114.21547,22.30769],[114.21542,22.3079],[114.2153,22.3081],[114.21345,22.30975],[114.21339,22.3097],[114.21337,22.30972],[114.21343,22.30977],[114.21334,22.3098],[114.21316,22.30996],[114.21297,22.30977],[114.21301,22.30973],[114.21317,22.30988],[114.21327,22.30978],[114.21285,22.30938],[114.21243,22.30952],[114.21178,22.30994],[114.20884,22.31256],[114.20898,22.31243],[114.2087,22.31268],[114.20869,22.31269],[114.20868,22.3127],[114.20868,22.31272],[114.20868,22.31273],[114.20868,22.31274],[114.20869,22.31275],[114.20871,22.31278],[114.20861,22.31287],[114.20854,22.3128],[114.20842,22.3129],[114.20838,22.31287],[114.20828,22.31291],[114.2061,22.31486],[114.20615,22.31496],[114.2075,22.31627],[114.21098,22.31315],[114.21343,22.31552],[114.21343,22.31552],[114.21344,22.31552],[114.2143,22.31475],[114.21755,22.31143],[114.21839,22.31049],[114.21947,22.30913],[114.21965,22.30925],[114.22012,22.30865],[114.21995,22.30854],[114.22004,22.30844],[114.2202,22.30855],[114.22051,22.30815],[114.22004,22.30783],[114.22009,22.30777],[114.21872,22.30685],[114.21874,22.30678],[114.21878,22.30676],[114.21885,22.30676],[114.22017,22.30766],[114.22021,22.30761],[114.22068,22.30793],[114.22151,22.30671],[114.22155,22.30665],[114.22158,22.30662],[114.22165,22.30653],[114.22161,22.30654],[114.22154,22.30648],[114.22151,22.3064],[114.22112,22.30605],[114.22128,22.3059],[114.22167,22.30624],[114.22176,22.30627],[114.22183,22.30633],[114.22184,22.30633],[114.22197,22.30621],[114.22211,22.30611],[114.22221,22.30605],[114.22242,22.30596],[114.22258,22.30591],[114.22271,22.30587],[114.22278,22.30579],[114.22285,22.30584],[114.22332,22.30621],[114.22396,22.30671],[114.22405,22.30661],[114.22408,22.30653],[114.22407,22.30644],[114.22391,22.30632],[114.22327,22.30582],[114.2226,22.30529],[114.22505,22.30256],[114.22522,22.30247],[114.22735,22.30136],[114.22758,22.30093],[114.2283,22.29961],[114.22858,22.29921],[114.22884,22.29893],[114.22919,22.29864],[114.22946,22.29848],[114.22979,22.29833],[114.23005,22.29824],[114.23037,22.29816],[114.23072,22.29811],[114.23101,22.29811],[114.23126,22.29813],[114.23271,22.2983],[114.23274,22.29828],[114.23286,22.29826],[114.23288,22.29825],[114.23291,22.29825],[114.23293,22.29824],[114.23294,22.29824],[114.23296,22.29823],[114.23299,22.29822],[114.23301,22.29821],[114.23303,22.29821],[114.23308,22.29819],[114.23313,22.29819],[114.23317,22.29819],[114.23323,22.29819],[114.23328,22.29819],[114.23332,22.29819],[114.23337,22.29819],[114.23341,22.2982],[114.23345,22.29821],[114.2335,22.29822],[114.23354,22.29823],[114.23358,22.29824],[114.23362,22.29825],[114.23366,22.29826],[114.23369,22.29827],[114.23372,22.29828],[114.23375,22.29829],[114.23378,22.29831],[114.2338,22.29833],[114.23382,22.29835],[114.23384,22.29836],[114.23386,22.29837],[114.23387,22.29838],[114.23389,22.29839],[114.2339,22.29839],[114.23392,22.2984],[114.23394,22.2984],[114.23396,22.29841],[114.23397,22.29841],[114.23398,22.29841],[114.23399,22.29841],[114.23399,22.29841],[114.23401,22.29841],[114.23403,22.2984],[114.23405,22.2984],[114.23406,22.2984],[114.23408,22.2984],[114.23409,22.29841],[114.23411,22.29841],[114.23413,22.29841],[114.23415,22.29842],[114.23416,22.29842],[114.23417,22.29842],[114.23418,22.29842],[114.23419,22.29843],[114.2342,22.29843],[114.2342,22.29843],[114.2342,22.29843],[114.2342,22.29844],[114.2342,22.29844],[114.2342,22.29845],[114.2342,22.29846],[114.2342,22.29847],[114.2342,22.29848],[114.2342,22.29848],[114.23447,22.29852],[114.23447,22.29851],[114.23461,22.29853],[114.23461,22.29853],[114.23461,22.29853],[114.235,22.29857],[114.23508,22.29859],[114.23509,22.29861],[114.23516,22.29859],[114.23522,22.29868],[114.23528,22.29867],[114.23534,22.29862],[114.23611,22.29697],[114.23503,22.29645],[114.23497,22.29642],[114.23447,22.29617],[114.2343,22.29609],[114.23371,22.2958],[114.23393,22.2954],[114.23357,22.29524],[114.23335,22.29563],[114.23271,22.29532],[114.23269,22.29531],[114.23304,22.2947],[114.23337,22.29364],[114.23558,22.29155],[114.23554,22.29151],[114.23561,22.29145],[114.23565,22.29148],[114.23705,22.29015],[114.23708,22.29013],[114.23709,22.29013],[114.23712,22.29012],[114.23714,22.29012],[114.23716,22.29013],[114.23717,22.29013],[114.23718,22.29014],[114.2372,22.29015],[114.23722,22.29016],[114.23723,22.29017],[114.23724,22.29019],[114.23725,22.29021],[114.23725,22.29023],[114.23725,22.29025],[114.23725,22.29027],[114.23724,22.29029],[114.23722,22.29031],[114.2372,22.29033],[114.23721,22.29034],[114.23645,22.29107],[114.23643,22.29109],[114.23647,22.29112],[114.23782,22.29232],[114.23857,22.29158],[114.23855,22.29146],[114.23826,22.2909],[114.23823,22.29091],[114.23819,22.29084],[114.23819,22.29082],[114.23812,22.29083],[114.23807,22.29074],[114.23803,22.29076],[114.23798,22.29065],[114.23796,22.29065],[114.23792,22.29059],[114.23787,22.29061],[114.23786,22.29059],[114.23788,22.29057],[114.23787,22.29053],[114.23782,22.29042],[114.2377,22.29022],[114.23763,22.29009],[114.23762,22.29008],[114.23759,22.28993],[114.23767,22.28989],[114.23766,22.28988],[114.23764,22.28984],[114.23764,22.28983],[114.23761,22.28986],[114.23757,22.28982],[114.23756,22.28979],[114.23758,22.28978],[114.23751,22.28966],[114.23742,22.28972],[114.2373,22.28955],[114.23726,22.28947],[114.23725,22.28938],[114.23723,22.28931],[114.23731,22.28927],[114.23727,22.28916],[114.2372,22.28919],[114.23718,22.28915],[114.23714,22.28916],[114.23711,22.28917],[114.23704,22.28918],[114.23703,22.28916],[114.23712,22.28912],[114.23711,22.2891],[114.23706,22.289],[114.23704,22.28901],[114.237,22.28897],[114.23709,22.28891],[114.23699,22.28882],[114.23695,22.28885],[114.23684,22.28875],[114.23686,22.28873],[114.23683,22.28869],[114.23684,22.28868],[114.23673,22.28858],[114.23683,22.2885],[114.23684,22.28846],[114.23684,22.28845],[114.23677,22.28842],[114.23677,22.28836],[114.2368,22.28832],[114.23681,22.28828],[114.23677,22.28817],[114.2367,22.28813],[114.2367,22.28808],[114.23679,22.28807],[114.23691,22.28799],[114.23698,22.288],[114.23701,22.28798],[114.23709,22.28798],[114.23716,22.28796],[114.2372,22.28793],[114.23716,22.28789],[114.23718,22.28786],[114.2372,22.28785],[114.23725,22.28783],[114.23722,22.2878],[114.23732,22.28774],[114.23738,22.28776],[114.23745,22.28782],[114.23781,22.28758],[114.2378,22.28756],[114.23785,22.28753],[114.23787,22.28755],[114.238,22.28747],[114.23803,22.28751],[114.23812,22.28745],[114.23804,22.28737],[114.23811,22.28732],[114.23814,22.28735],[114.23818,22.28732],[114.23814,22.28728],[114.23821,22.28722],[114.23823,22.28724],[114.23828,22.28718],[114.23827,22.28716],[114.23838,22.28708],[114.23844,22.28715],[114.2385,22.28707],[114.23848,22.28706],[114.23852,22.28702],[114.23853,22.28703],[114.23857,22.28696],[114.23864,22.28702],[114.23869,22.28695],[114.23868,22.28694],[114.23876,22.28689],[114.23876,22.28688],[114.23876,22.28687],[114.23878,22.28685],[114.2388,22.28684],[114.23882,22.28683],[114.23897,22.28677],[114.23902,22.28676],[114.23939,22.28662],[114.23949,22.28654],[114.23962,22.28652],[114.23963,22.28628],[114.23967,22.28623],[114.23973,22.2862],[114.23991,22.28614],[114.24003,22.28621],[114.24012,22.2862],[114.24035,22.28621],[114.24037,22.2861],[114.24048,22.28604],[114.24062,22.28605],[114.24101,22.28603],[114.24113,22.28594],[114.24124,22.28589],[114.24169,22.28585],[114.24173,22.2859],[114.24176,22.2859],[114.24179,22.28585],[114.24178,22.2858],[114.24215,22.28562],[114.24225,22.28574],[114.24235,22.28576],[114.24243,22.2857],[114.24259,22.28564],[114.24256,22.28553],[114.24261,22.28551],[114.24265,22.28563],[114.24278,22.28562],[114.243,22.28564],[114.24305,22.28566],[114.24306,22.28569],[114.24315,22.28569],[114.2433,22.28572],[114.24325,22.28565],[114.24328,22.28564],[114.24334,22.28568],[114.24342,22.28573],[114.24345,22.28577],[114.24347,22.28582],[114.24347,22.28583],[114.24347,22.28584],[114.24348,22.28593],[114.24348,22.28596],[114.24348,22.28598],[114.24349,22.28599],[114.24349,22.286],[114.24349,22.28601],[114.24349,22.28601],[114.24349,22.28601],[114.24349,22.28601],[114.24351,22.28604],[114.24354,22.28606],[114.24358,22.28609],[114.24358,22.28609],[114.24361,22.2861],[114.24364,22.28613],[114.24366,22.28618],[114.24366,22.28619],[114.24359,22.28625],[114.24334,22.28643],[114.24328,22.28647],[114.24324,22.28649],[114.24318,22.28652],[114.24315,22.28653],[114.24306,22.28652],[114.24298,22.28651],[114.24282,22.2865],[114.24274,22.28645],[114.24266,22.28637],[114.24264,22.28638],[114.24256,22.28646],[114.24251,22.28648],[114.24249,22.28648],[114.24247,22.28648],[114.24242,22.28647],[114.24238,22.28644],[114.24223,22.28634],[114.2421,22.28631],[114.24202,22.28634],[114.24197,22.28642],[114.24196,22.28659],[114.24198,22.28681],[114.24199,22.28692],[114.24203,22.28698],[114.24223,22.28712],[114.24232,22.28721],[114.24235,22.2873],[114.24236,22.28741],[114.24236,22.28744],[114.24227,22.2877],[114.24224,22.28773],[114.24216,22.28765],[114.24212,22.28764],[114.24209,22.28765],[114.24203,22.28772],[114.2418,22.28802],[114.24158,22.28828],[114.24136,22.28864],[114.24118,22.28908],[114.24116,22.28927],[114.2412,22.28952],[114.24134,22.28978],[114.24154,22.29009],[114.24158,22.29023],[114.24157,22.2903],[114.24153,22.29037],[114.24141,22.29047],[114.24133,22.29056],[114.2413,22.29063],[114.24138,22.29094],[114.24139,22.29103],[114.24138,22.2911],[114.24132,22.29117],[114.24116,22.29128],[114.24108,22.2914],[114.24109,22.29152],[114.24121,22.2917],[114.24122,22.29178],[114.24121,22.29183],[114.24115,22.29194],[114.24109,22.292],[114.24106,22.29204],[114.24105,22.29208],[114.24107,22.29214],[114.24113,22.29219],[114.2412,22.29222],[114.24134,22.29221],[114.24137,22.29221],[114.24147,22.29224],[114.24149,22.29224],[114.24153,22.29228],[114.24153,22.29235],[114.24149,22.29241],[114.24147,22.29248],[114.24147,22.29264],[114.24148,22.2927],[114.24156,22.29283],[114.24161,22.29286],[114.24167,22.29287],[114.24185,22.29282],[114.24195,22.29283],[114.24208,22.29305],[114.2421,22.29311],[114.24211,22.29317],[114.24212,22.29324],[114.24213,22.2933],[114.24222,22.29336],[114.24225,22.29341],[114.24226,22.2935],[114.24227,22.29352],[114.24224,22.29357],[114.24221,22.29374],[114.24223,22.29392],[114.24215,22.29409],[114.24214,22.29412],[114.24215,22.29419],[114.24217,22.29422],[114.24222,22.29424],[114.24229,22.29425],[114.24237,22.29423],[114.24246,22.2942],[114.24255,22.29417],[114.24268,22.29418],[114.24269,22.29429],[114.24281,22.29439],[114.24294,22.29444],[114.24297,22.29455],[114.24309,22.29459],[114.24314,22.29462],[114.24327,22.29469],[114.24342,22.29476],[114.24355,22.29479],[114.24377,22.29486],[114.2439,22.29489],[114.24413,22.29503],[114.24426,22.29508],[114.24444,22.29511],[114.24455,22.2951],[114.24467,22.2951],[114.24479,22.29506],[114.24441,22.29493],[114.2443,22.29486],[114.24424,22.2948],[114.24432,22.29483],[114.24443,22.29484],[114.24454,22.29483],[114.24466,22.29482],[114.24478,22.29478],[114.24482,22.29476],[114.24492,22.29473],[114.24495,22.29472],[114.24503,22.2947],[114.24513,22.29468],[114.24519,22.29466],[114.24519,22.29466],[114.24525,22.29468],[114.24529,22.29472],[114.24535,22.29478],[114.24538,22.29482],[114.2454,22.29485],[114.24542,22.29489],[114.24543,22.29492],[114.24543,22.29504],[114.24543,22.29512],[114.24544,22.29522],[114.24544,22.29526],[114.24544,22.29528],[114.24542,22.29531],[114.24539,22.29535],[114.24535,22.29537],[114.24527,22.29541],[114.24524,22.29542],[114.24522,22.29543],[114.24519,22.29546],[114.24518,22.29547],[114.24517,22.2955],[114.24516,22.29562],[114.24514,22.2957],[114.24507,22.29575],[114.24497,22.29577],[114.2449,22.29582],[114.24485,22.2959],[114.2449,22.29597],[114.24495,22.2961],[114.24496,22.29614],[114.24507,22.2962],[114.24512,22.29625],[114.24527,22.29626],[114.24538,22.29629],[114.24542,22.29633],[114.24544,22.29642],[114.2455,22.29649],[114.2455,22.29651],[114.24542,22.2968],[114.24545,22.29691],[114.24543,22.29705],[114.2454,22.29718],[114.24537,22.29724],[114.24529,22.29745],[114.24521,22.2976],[114.2452,22.29762],[114.24516,22.29784],[114.24514,22.29788],[114.24512,22.29794],[114.24482,22.29801],[114.24477,22.29803],[114.24476,22.29812],[114.2448,22.29823],[114.24481,22.29837],[114.24476,22.29844],[114.24471,22.29847],[114.24467,22.29853],[114.24462,22.29871],[114.2445,22.29882],[114.24445,22.29891],[114.24442,22.29908],[114.24442,22.29911],[114.24437,22.2992],[114.24435,22.2993],[114.24435,22.29939],[114.2444,22.29951],[114.24443,22.29963],[114.24432,22.2997],[114.24423,22.29973],[114.24422,22.29974],[114.24409,22.29991],[114.24388,22.30008],[114.24379,22.30014],[114.24371,22.30016],[114.24369,22.30021],[114.24369,22.30026],[114.2437,22.30036],[114.24366,22.30043],[114.24358,22.30055],[114.24357,22.30063],[114.24359,22.30068],[114.24371,22.30077],[114.244,22.30108],[114.24407,22.30112],[114.24411,22.3012],[114.24413,22.30128],[114.24412,22.30137],[114.24408,22.30144],[114.24404,22.30148],[114.24404,22.30149],[114.24401,22.30151],[114.24396,22.30154],[114.24393,22.3016],[114.24391,22.30165],[114.24392,22.30171],[114.2439,22.30174],[114.24388,22.30176],[114.2439,22.30191],[114.24388,22.30194],[114.24379,22.30196],[114.24376,22.30199],[114.24374,22.30216],[114.2437,22.30224],[114.24365,22.30229],[114.24363,22.30231],[114.24353,22.30238],[114.24339,22.30238],[114.24315,22.30252],[114.24297,22.30248],[114.24289,22.30252],[114.24271,22.30268],[114.24257,22.30271],[114.24245,22.3028],[114.24225,22.30282],[114.24217,22.30287],[114.24215,22.30289],[114.24216,22.30296],[114.24218,22.30303],[114.24219,22.30306],[114.24224,22.30318],[114.24223,22.30323],[114.2422,22.30326],[114.24217,22.30329],[114.24199,22.30329],[114.24178,22.3035],[114.24174,22.3037],[114.24171,22.30376],[114.24167,22.3038],[114.24159,22.30384],[114.24146,22.30383],[114.24138,22.30386],[114.24136,22.30389],[114.24135,22.30395],[114.24144,22.30414],[114.24146,22.30418],[114.24147,22.30422],[114.24149,22.30428],[114.24149,22.30436],[114.24146,22.30442],[114.24143,22.30444],[114.24134,22.30446],[114.24104,22.30463],[114.241,22.30474],[114.24096,22.30477],[114.24095,22.30478],[114.24087,22.30476],[114.24076,22.30468],[114.24071,22.30468],[114.24068,22.30472],[114.24067,22.30477],[114.24066,22.30495],[114.24062,22.30501],[114.24057,22.30501],[114.24048,22.30494],[114.24041,22.30492],[114.2404,22.30492],[114.24033,22.30492],[114.24027,22.30496],[114.2402,22.30495],[114.24014,22.30501],[114.24013,22.30512],[114.24011,22.30515],[114.23999,22.30521],[114.23993,22.30526],[114.23992,22.3053],[114.23993,22.30533],[114.24016,22.30546],[114.24019,22.30549],[114.2402,22.30553],[114.24019,22.30558],[114.24013,22.30564],[114.24003,22.30573],[114.23994,22.30578],[114.23988,22.30584],[114.23986,22.3059],[114.23986,22.30591],[114.23986,22.30593],[114.23989,22.306],[114.23996,22.30607],[114.24002,22.30613],[114.24006,22.30617],[114.2401,22.30619],[114.24013,22.30626],[114.24012,22.30632],[114.24001,22.30637],[114.23993,22.30645],[114.23994,22.30657],[114.23997,22.30666],[114.24016,22.30699],[114.24038,22.30708],[114.24045,22.30719],[114.24048,22.30736],[114.2405,22.30764],[114.24044,22.30783],[114.24039,22.30789],[114.24037,22.30795],[114.2404,22.30798],[114.24059,22.30819],[114.24059,22.30828],[114.24056,22.30841],[114.24047,22.30859],[114.24044,22.3086],[114.24043,22.3086],[114.24044,22.3086],[114.24044,22.3086]]]]},"properties":{"M_NM_Eng":"Metro","SR_Eng":"Metro","PDD_Cat_En":"Kowloon","PDD_Eng":"Kwun Tong","M_NM_Tc":"都會區","SR_Tc":"都會區","PDD_Cat_Tc":"九龍","PDD_Tc":"觀塘","M_NM_Sc":"都会区","SR_Sc_1":"都会区","PDD_Cat_Sc":"九龙","PDD_Sc":"观塘","Y2019_Popu":693900,"Y2019_Empl":395350,"Y2026_Popu":769400,"Y2026_Empl":410550,"Y2031_Popu":741300,"Y2031_Empl":408250}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[114.2717,22.43214],[114.2719,22.43232],[114.27195,22.43254],[114.27213,22.43279],[114.27225,22.43291],[114.27223,22.43296],[114.27211,22.43294],[114.27195,22.43283],[114.27191,22.43278],[114.27182,22.43255],[114.27166,22.43233],[114.2715,22.43225],[114.27144,22.43215],[114.27147,22.43209],[114.2717,22.43214]]],[[[114.27259,22.43297],[114.27265,22.43306],[114.27261,22.43313],[114.2725,22.43315],[114.27239,22.43311],[114.27231,22.433],[114.27234,22.43296],[114.27244,22.43292],[114.27259,22.43297]]],[[[114.24197,22.43735],[114.24192,22.43746],[114.24178,22.43752],[114.24172,22.4375],[114.2416,22.43739],[114.24142,22.43734],[114.24078,22.43736],[114.24063,22.43713],[114.24026,22.43704],[114.24002,22.43691],[114.23978,22.43691],[114.23978,22.43686],[114.23901,22.43695],[114.2387,22.43691],[114.23827,22.43693],[114.23802,22.43688],[114.2377,22.43672],[114.23769,22.43664],[114.23758,22.43649],[114.23739,22.43638],[114.23733,22.43638],[114.23728,22.43635],[114.23722,22.43637],[114.23723,22.43631],[114.23718,22.4363],[114.23716,22.4362],[114.23713,22.43618],[114.2371,22.43618],[114.23705,22.43615],[114.237,22.43604],[114.237,22.43598],[114.23703,22.43593],[114.23699,22.43578],[114.237,22.43558],[114.23695,22.43553],[114.237,22.43552],[114.23704,22.43555],[114.23708,22.43554],[114.23722,22.43534],[114.23779,22.43477],[114.2379,22.43473],[114.23797,22.4347],[114.23818,22.43464],[114.23839,22.43458],[114.23848,22.43454],[114.23861,22.4345],[114.23868,22.43444],[114.23872,22.43439],[114.23874,22.43431],[114.23878,22.43423],[114.2389,22.43387],[114.23893,22.43379],[114.23899,22.43352],[114.23904,22.43332],[114.23905,22.4333],[114.23907,22.43327],[114.23909,22.43325],[114.2391,22.43323],[114.2391,22.43316],[114.23909,22.43311],[114.23909,22.43301],[114.23909,22.43283],[114.23909,22.43269],[114.23906,22.43239],[114.23903,22.43218],[114.23896,22.43196],[114.23886,22.43171],[114.23858,22.43131],[114.23855,22.43124],[114.23853,22.43118],[114.23851,22.43108],[114.23849,22.43105],[114.23838,22.43099],[114.23829,22.43097],[114.23819,22.43096],[114.23785,22.43086],[114.23771,22.43085],[114.2377,22.43084],[114.23757,22.43081],[114.23737,22.43071],[114.23729,22.43068],[114.23679,22.43017],[114.23642,22.42986],[114.23619,22.42979],[114.23568,22.42946],[114.23568,22.42946],[114.23568,22.42937],[114.23554,22.42924],[114.23551,22.42911],[114.23527,22.42872],[114.23511,22.4286],[114.23434,22.42937],[114.23427,22.42936],[114.23409,22.42954],[114.23398,22.42945],[114.23402,22.42942],[114.2341,22.42949],[114.23425,22.42934],[114.23423,22.42928],[114.23502,22.42848],[114.23501,22.42847],[114.23491,22.42837],[114.23477,22.42826],[114.23433,22.42792],[114.23425,22.42786],[114.23421,22.42784],[114.23413,22.4278],[114.23404,22.42777],[114.23393,22.42774],[114.23354,22.42762],[114.23349,22.42759],[114.23346,22.42754],[114.23348,22.4275],[114.2335,22.42745],[114.23354,22.42742],[114.23359,22.42742],[114.23369,22.42736],[114.23372,22.42733],[114.23374,22.4273],[114.2338,22.42725],[114.23382,22.42724],[114.23386,22.42722],[114.2338,22.42715],[114.23369,22.42713],[114.23366,22.42713],[114.23363,22.42714],[114.23255,22.42765],[114.2313,22.42825],[114.22826,22.42782],[114.22731,22.42686],[114.22628,22.42562],[114.22572,22.42482],[114.22517,22.42393],[114.22463,22.4229],[114.22417,22.42184],[114.2237,22.42043],[114.22163,22.41216],[114.2215,22.41165],[114.2215,22.41162],[114.22145,22.41146],[114.22142,22.41136],[114.2214,22.41128],[114.22134,22.4111],[114.22132,22.41105],[114.22131,22.41102],[114.22132,22.41102],[114.22133,22.41102],[114.22132,22.41099],[114.22131,22.41099],[114.22127,22.41089],[114.22125,22.41084],[114.2212,22.4107],[114.2212,22.4107],[114.22114,22.41055],[114.22114,22.41053],[114.22109,22.41041],[114.22104,22.41028],[114.22098,22.41014],[114.22091,22.40998],[114.2209,22.40997],[114.22083,22.4098],[114.22074,22.40963],[114.22068,22.4095],[114.22063,22.4094],[114.22061,22.40935],[114.22058,22.4093],[114.22058,22.4093],[114.22041,22.40898],[114.2203,22.4088],[114.22023,22.40868],[114.22019,22.40862],[114.22008,22.40844],[114.22006,22.40841],[114.21997,22.40827],[114.21996,22.40826],[114.21996,22.40826],[114.21993,22.40821],[114.21984,22.40809],[114.21979,22.40802],[114.21972,22.40792],[114.21972,22.40792],[114.2195,22.40764],[114.21943,22.40754],[114.21938,22.40748],[114.21928,22.40736],[114.21928,22.40736],[114.21929,22.40735],[114.21926,22.40731],[114.21925,22.40731],[114.21924,22.40732],[114.21924,22.40732],[114.21915,22.40721],[114.21915,22.4072],[114.21915,22.4072],[114.21915,22.40712],[114.21916,22.40707],[114.21917,22.40702],[114.21917,22.40702],[114.21918,22.40701],[114.21927,22.40683],[114.21928,22.40681],[114.2193,22.40679],[114.21931,22.40677],[114.21933,22.40675],[114.21934,22.40673],[114.21936,22.40671],[114.21938,22.4067],[114.21939,22.40668],[114.21942,22.40666],[114.21946,22.40663],[114.21962,22.40649],[114.21999,22.40618],[114.22025,22.40594],[114.22035,22.40584],[114.22048,22.40574],[114.22055,22.40567],[114.2206,22.40563],[114.22065,22.40559],[114.22073,22.40553],[114.22094,22.40535],[114.22098,22.40531],[114.22102,22.40528],[114.22107,22.40525],[114.2211,22.40523],[114.22114,22.40521],[114.22116,22.4052],[114.22129,22.40512],[114.22134,22.40509],[114.22139,22.40507],[114.22143,22.40504],[114.22148,22.40502],[114.22153,22.40501],[114.22154,22.40501],[114.22155,22.405],[114.22156,22.405],[114.22157,22.405],[114.22157,22.40499],[114.22158,22.40499],[114.22158,22.40499],[114.22158,22.40499],[114.22159,22.40499],[114.22159,22.40499],[114.22163,22.40497],[114.22168,22.40494],[114.22169,22.40493],[114.22186,22.40483],[114.22189,22.4048],[114.22193,22.40478],[114.22196,22.40475],[114.22199,22.40472],[114.222,22.4047],[114.22201,22.40469],[114.22202,22.40467],[114.22203,22.40466],[114.22205,22.40464],[114.22212,22.40457],[114.22218,22.40451],[114.22221,22.40448],[114.22225,22.40445],[114.22228,22.40442],[114.22232,22.40439],[114.22241,22.40432],[114.22245,22.40429],[114.22246,22.40428],[114.2225,22.40425],[114.22254,22.40422],[114.22259,22.40419],[114.22263,22.40416],[114.22266,22.40414],[114.2227,22.40412],[114.22274,22.40409],[114.22282,22.40405],[114.22289,22.40401],[114.22302,22.40395],[114.2231,22.40392],[114.22319,22.40388],[114.22321,22.40388],[114.22324,22.40387],[114.22328,22.40385],[114.22332,22.40384],[114.22337,22.40382],[114.22341,22.40381],[114.22345,22.40379],[114.22351,22.40378],[114.22356,22.40376],[114.22359,22.40375],[114.22363,22.40374],[114.22371,22.40372],[114.22374,22.40371],[114.22378,22.40369],[114.22379,22.40369],[114.22381,22.40368],[114.22383,22.40368],[114.22385,22.40367],[114.22393,22.40364],[114.22396,22.40364],[114.22398,22.40363],[114.22401,22.40362],[114.22406,22.4036],[114.22409,22.40359],[114.22412,22.40358],[114.22416,22.40356],[114.22423,22.40354],[114.22426,22.40353],[114.2243,22.40351],[114.22437,22.40348],[114.22444,22.40345],[114.2245,22.40343],[114.22454,22.40341],[114.22458,22.4034],[114.22462,22.40338],[114.22465,22.40337],[114.22469,22.40335],[114.22473,22.40333],[114.22476,22.40332],[114.22479,22.40331],[114.22482,22.40329],[114.22485,22.40328],[114.22492,22.40325],[114.22495,22.40323],[114.22497,22.40322],[114.22501,22.40321],[114.22504,22.40319],[114.22511,22.40316],[114.22518,22.40312],[114.22519,22.40312],[114.2252,22.40311],[114.22526,22.40308],[114.22529,22.40306],[114.22533,22.40304],[114.22537,22.40302],[114.22541,22.403],[114.22549,22.40296],[114.22558,22.40291],[114.22563,22.40288],[114.22567,22.40286],[114.22571,22.40283],[114.22576,22.40281],[114.22579,22.40279],[114.2258,22.40279],[114.22582,22.40277],[114.22585,22.40276],[114.22589,22.40274],[114.22592,22.40272],[114.22596,22.40269],[114.22599,22.40267],[114.22603,22.40265],[114.22606,22.40263],[114.22609,22.40261],[114.22613,22.40258],[114.22619,22.40254],[114.22624,22.40249],[114.2263,22.40245],[114.22635,22.4024],[114.22638,22.40237],[114.2264,22.40235],[114.22643,22.40232],[114.22645,22.40229],[114.22651,22.40222],[114.22653,22.40219],[114.22655,22.40217],[114.22658,22.40211],[114.22663,22.40204],[114.22664,22.40203],[114.22664,22.40202],[114.22666,22.40201],[114.22667,22.402],[114.22669,22.40198],[114.2267,22.40197],[114.22671,22.40196],[114.22672,22.40195],[114.22674,22.40194],[114.22675,22.40193],[114.22663,22.40189],[114.22591,22.40169],[114.22619,22.40125],[114.22734,22.40048],[114.22754,22.40034],[114.22756,22.40032],[114.22758,22.40031],[114.2276,22.40029],[114.22762,22.40028],[114.22764,22.40026],[114.22765,22.40024],[114.22767,22.40022],[114.22769,22.4002],[114.22771,22.40018],[114.22772,22.40015],[114.22774,22.40013],[114.22776,22.4001],[114.22777,22.40007],[114.22778,22.40005],[114.2278,22.40002],[114.22795,22.39969],[114.22813,22.39922],[114.22817,22.39913],[114.22819,22.39908],[114.22822,22.39902],[114.22823,22.399],[114.22825,22.39897],[114.22826,22.39894],[114.22828,22.39892],[114.2283,22.39889],[114.22831,22.39887],[114.22833,22.39884],[114.22835,22.39882],[114.22837,22.39879],[114.2284,22.39876],[114.22843,22.39873],[114.22845,22.3987],[114.22848,22.39867],[114.2285,22.39865],[114.22851,22.39864],[114.22854,22.3986],[114.22858,22.39857],[114.22863,22.39851],[114.22868,22.39846],[114.22869,22.39845],[114.22874,22.39839],[114.22881,22.39832],[114.22887,22.39827],[114.22893,22.39821],[114.22899,22.39816],[114.22905,22.39811],[114.22912,22.39806],[114.22919,22.39801],[114.22923,22.39798],[114.22926,22.39795],[114.2293,22.39792],[114.22933,22.39788],[114.22936,22.39784],[114.22939,22.39781],[114.22941,22.39777],[114.22943,22.39773],[114.22945,22.39769],[114.22946,22.39765],[114.22948,22.39761],[114.22956,22.39729],[114.22957,22.39724],[114.22959,22.39719],[114.22966,22.39697],[114.22968,22.39689],[114.2297,22.39682],[114.22971,22.39679],[114.22973,22.39676],[114.22974,22.39673],[114.22976,22.3967],[114.22977,22.39667],[114.22979,22.39665],[114.2298,22.39662],[114.22982,22.39659],[114.22986,22.39654],[114.2299,22.39649],[114.22994,22.39643],[114.22999,22.39638],[114.23006,22.39629],[114.23012,22.39622],[114.23018,22.39616],[114.23023,22.3961],[114.23032,22.396],[114.2304,22.3959],[114.23045,22.39584],[114.23049,22.39579],[114.23052,22.39575],[114.23055,22.39571],[114.23058,22.39567],[114.23061,22.39563],[114.23063,22.3956],[114.23065,22.39556],[114.23066,22.39553],[114.23068,22.39549],[114.23078,22.39529],[114.23087,22.3951],[114.23089,22.39506],[114.2309,22.39504],[114.23091,22.39502],[114.23093,22.39499],[114.23096,22.39495],[114.23099,22.39492],[114.23101,22.39488],[114.23104,22.39485],[114.23107,22.39482],[114.23112,22.39478],[114.23114,22.39476],[114.23117,22.39473],[114.23129,22.39463],[114.23134,22.39459],[114.2314,22.39454],[114.23143,22.39451],[114.23145,22.39448],[114.23148,22.39445],[114.23151,22.39443],[114.23153,22.3944],[114.23155,22.39437],[114.23158,22.39433],[114.2316,22.3943],[114.23161,22.39428],[114.23163,22.39425],[114.23164,22.39422],[114.23165,22.39419],[114.23171,22.39403],[114.23174,22.39394],[114.23177,22.39386],[114.23179,22.39381],[114.23181,22.39377],[114.23183,22.39373],[114.23186,22.39369],[114.23188,22.39366],[114.2319,22.39363],[114.23192,22.39359],[114.23194,22.39356],[114.23197,22.39354],[114.23199,22.39351],[114.23201,22.39349],[114.23204,22.39346],[114.23206,22.39345],[114.23208,22.39344],[114.23211,22.39341],[114.23214,22.39339],[114.23218,22.39337],[114.23222,22.39335],[114.23226,22.39334],[114.2323,22.39332],[114.23234,22.39331],[114.23239,22.39329],[114.23244,22.39328],[114.23248,22.39327],[114.23248,22.39304],[114.23248,22.39295],[114.23248,22.39285],[114.23248,22.39283],[114.23248,22.3928],[114.23248,22.39277],[114.23248,22.39267],[114.23248,22.39266],[114.23248,22.39264],[114.23248,22.39262],[114.23248,22.39261],[114.23248,22.39259],[114.23249,22.39249],[114.23249,22.39248],[114.2325,22.39246],[114.2325,22.39245],[114.2325,22.39243],[114.23251,22.39241],[114.23252,22.39238],[114.23252,22.39236],[114.23253,22.39232],[114.23254,22.3923],[114.23274,22.39186],[114.23288,22.39153],[114.23286,22.39151],[114.23283,22.39149],[114.23278,22.39146],[114.23272,22.39143],[114.2327,22.39142],[114.23266,22.3914],[114.23259,22.39136],[114.23256,22.39134],[114.23255,22.39133],[114.23254,22.39132],[114.23254,22.3913],[114.23253,22.3913],[114.23253,22.39129],[114.23253,22.39129],[114.23253,22.39129],[114.23253,22.39129],[114.23253,22.39129],[114.23253,22.39128],[114.23253,22.39128],[114.23253,22.39128],[114.23253,22.39128],[114.23253,22.39128],[114.23253,22.39127],[114.23253,22.39127],[114.23253,22.39127],[114.23253,22.39127],[114.23253,22.39127],[114.23253,22.39126],[114.23253,22.39126],[114.23253,22.39125],[114.23253,22.39125],[114.23253,22.39125],[114.23253,22.39124],[114.23253,22.39124],[114.23253,22.39123],[114.23253,22.39123],[114.23253,22.39123],[114.23253,22.39122],[114.23253,22.39121],[114.23253,22.39121],[114.23253,22.3912],[114.23253,22.3912],[114.23253,22.3912],[114.23254,22.39118],[114.23256,22.39114],[114.23256,22.39112],[114.23258,22.39106],[114.23259,22.39103],[114.23259,22.391],[114.23259,22.39096],[114.23259,22.39095],[114.23258,22.39093],[114.23257,22.39092],[114.23256,22.3909],[114.23254,22.39088],[114.23254,22.39088],[114.23254,22.39088],[114.23253,22.39087],[114.23253,22.39087],[114.23253,22.39087],[114.23253,22.39086],[114.23252,22.39086],[114.23252,22.39085],[114.23252,22.39085],[114.23251,22.39084],[114.23251,22.39084],[114.2325,22.39083],[114.2325,22.39083],[114.2325,22.39082],[114.23249,22.39082],[114.23249,22.39081],[114.23248,22.39081],[114.23247,22.3908],[114.23247,22.39079],[114.23247,22.39079],[114.23246,22.39078],[114.23246,22.39078],[114.23245,22.39077],[114.23245,22.39077],[114.23244,22.39076],[114.23244,22.39075],[114.23244,22.39075],[114.23241,22.39071],[114.2324,22.39071],[114.2324,22.3907],[114.23239,22.3907],[114.23239,22.39069],[114.23239,22.39069],[114.23238,22.39068],[114.23238,22.39068],[114.23237,22.39068],[114.23237,22.39067],[114.23236,22.39067],[114.23236,22.39066],[114.23236,22.39066],[114.23235,22.39066],[114.23235,22.39065],[114.23234,22.39065],[114.23234,22.39065],[114.23234,22.39064],[114.23233,22.39064],[114.23233,22.39064],[114.23232,22.39063],[114.23232,22.39063],[114.23232,22.39063],[114.23231,22.39063],[114.23231,22.39062],[114.23231,22.39062],[114.2323,22.39062],[114.2323,22.39061],[114.2323,22.39061],[114.23229,22.39061],[114.23229,22.39061],[114.23228,22.3906],[114.23227,22.39059],[114.23226,22.39058],[114.23225,22.39057],[114.23225,22.39057],[114.23225,22.39057],[114.23225,22.39057],[114.23225,22.39057],[114.23225,22.39056],[114.23224,22.39056],[114.23224,22.39056],[114.23224,22.39056],[114.23224,22.39056],[114.23224,22.39055],[114.23224,22.39055],[114.23224,22.39055],[114.23224,22.39055],[114.23224,22.39055],[114.23224,22.39055],[114.23224,22.39054],[114.23223,22.39054],[114.23222,22.39049],[114.23222,22.39049],[114.23221,22.39048],[114.23221,22.39047],[114.23221,22.39046],[114.23221,22.39046],[114.23221,22.39045],[114.2322,22.39044],[114.2322,22.39043],[114.2322,22.39043],[114.2322,22.39042],[114.2322,22.39042],[114.2322,22.39042],[114.23219,22.39041],[114.23219,22.39041],[114.23219,22.3904],[114.23219,22.39039],[114.23218,22.39039],[114.23218,22.39038],[114.23217,22.39037],[114.23217,22.39036],[114.23216,22.39035],[114.23216,22.39035],[114.23215,22.39034],[114.23215,22.39034],[114.23215,22.39034],[114.23215,22.39034],[114.23215,22.39033],[114.23215,22.39033],[114.23215,22.39033],[114.23214,22.39033],[114.23214,22.39032],[114.23214,22.39032],[114.23214,22.39032],[114.23214,22.39032],[114.23214,22.39031],[114.23214,22.39031],[114.23213,22.3903],[114.23213,22.3903],[114.23213,22.3903],[114.23213,22.39029],[114.23213,22.39029],[114.23213,22.39028],[114.23212,22.39028],[114.23212,22.39028],[114.23212,22.39027],[114.23212,22.39027],[114.23212,22.39027],[114.23212,22.39027],[114.23212,22.39027],[114.23212,22.39027],[114.23212,22.39027],[114.23212,22.39027],[114.23212,22.39027],[114.23212,22.39026],[114.23212,22.39026],[114.23212,22.39026],[114.23211,22.39026],[114.23211,22.39026],[114.23211,22.39026],[114.23211,22.39026],[114.23211,22.39026],[114.23211,22.39026],[114.23211,22.39026],[114.23211,22.39026],[114.23211,22.39026],[114.23211,22.39025],[114.23211,22.39025],[114.23211,22.39025],[114.23211,22.39025],[114.23211,22.39025],[114.23211,22.39025],[114.23211,22.39025],[114.23211,22.39024],[114.23211,22.39024],[114.23211,22.39024],[114.23211,22.39024],[114.23211,22.39024],[114.23211,22.39023],[114.23211,22.39023],[114.23211,22.39023],[114.23211,22.39023],[114.23211,22.39023],[114.23211,22.39023],[114.23212,22.39022],[114.23212,22.39022],[114.23212,22.39022],[114.23212,22.39022],[114.23212,22.39022],[114.23212,22.39022],[114.23212,22.39021],[114.23212,22.39021],[114.23212,22.39021],[114.23212,22.39021],[114.23212,22.3902],[114.23213,22.3902],[114.23213,22.3902],[114.23213,22.3902],[114.23213,22.3902],[114.23213,22.39019],[114.23213,22.39019],[114.23213,22.39019],[114.23214,22.39019],[114.23214,22.39019],[114.23214,22.39018],[114.23214,22.39018],[114.23214,22.39018],[114.23214,22.39018],[114.23215,22.39017],[114.23215,22.39017],[114.23215,22.39017],[114.23215,22.39017],[114.23215,22.39016],[114.23216,22.39016],[114.23216,22.39016],[114.23216,22.39016],[114.23216,22.39015],[114.23216,22.39015],[114.23217,22.39015],[114.23217,22.39014],[114.23218,22.39014],[114.23218,22.39013],[114.23219,22.39013],[114.23219,22.39013],[114.2322,22.39012],[114.23221,22.39012],[114.23221,22.39011],[114.23222,22.39011],[114.23223,22.3901],[114.23223,22.3901],[114.23224,22.39009],[114.23225,22.39009],[114.23226,22.39008],[114.23226,22.39008],[114.23227,22.39008],[114.23227,22.39008],[114.23227,22.39008],[114.23228,22.39008],[114.23228,22.39008],[114.23228,22.39007],[114.23229,22.39007],[114.23229,22.39007],[114.23229,22.39007],[114.2323,22.39007],[114.2323,22.39007],[114.23231,22.39007],[114.23231,22.39007],[114.23231,22.39007],[114.23233,22.39006],[114.23235,22.39006],[114.23238,22.39005],[114.2324,22.39005],[114.23242,22.39005],[114.23245,22.39004],[114.23254,22.39003],[114.23377,22.38997],[114.23452,22.38994],[114.23545,22.3899],[114.23618,22.38935],[114.23618,22.38935],[114.23619,22.38935],[114.23619,22.38936],[114.23619,22.38936],[114.23619,22.38937],[114.2362,22.38937],[114.2362,22.38937],[114.2362,22.38938],[114.2362,22.38938],[114.2362,22.38939],[114.23621,22.38939],[114.23621,22.38939],[114.23621,22.3894],[114.23621,22.3894],[114.23622,22.38941],[114.23622,22.38941],[114.23622,22.38942],[114.23622,22.38942],[114.23622,22.38943],[114.23623,22.38943],[114.23623,22.38943],[114.23623,22.38944],[114.23623,22.38944],[114.23623,22.38945],[114.23623,22.38945],[114.23624,22.38946],[114.23624,22.38946],[114.23624,22.38947],[114.23624,22.38947],[114.23624,22.38947],[114.23624,22.38948],[114.23624,22.38948],[114.23625,22.38949],[114.23625,22.38949],[114.23625,22.3895],[114.23625,22.3895],[114.23625,22.38951],[114.23625,22.38951],[114.23625,22.38951],[114.23626,22.38952],[114.23626,22.38952],[114.23626,22.38953],[114.23626,22.38953],[114.23626,22.38954],[114.23626,22.38954],[114.23626,22.38955],[114.23626,22.38955],[114.23627,22.38955],[114.23627,22.38956],[114.23627,22.38957],[114.23627,22.38957],[114.23627,22.38957],[114.23627,22.38958],[114.23627,22.38958],[114.23627,22.38959],[114.23627,22.38959],[114.23628,22.3896],[114.23628,22.3896],[114.23628,22.38961],[114.23628,22.38961],[114.23628,22.38961],[114.23628,22.38962],[114.23628,22.38962],[114.23629,22.38963],[114.23629,22.38963],[114.23629,22.38964],[114.23629,22.38964],[114.23629,22.38965],[114.23629,22.38965],[114.23629,22.38965],[114.23629,22.38966],[114.2363,22.38966],[114.2363,22.38967],[114.2363,22.38967],[114.2363,22.38968],[114.2363,22.38968],[114.2363,22.38969],[114.2363,22.38969],[114.2363,22.38969],[114.23631,22.3897],[114.23631,22.3897],[114.23631,22.38971],[114.23631,22.38971],[114.23631,22.38972],[114.23631,22.38972],[114.23631,22.38973],[114.23632,22.38973],[114.23632,22.38973],[114.23632,22.38974],[114.23642,22.39008],[114.23646,22.39025],[114.23676,22.39011],[114.23676,22.39012],[114.2368,22.39009],[114.23688,22.39],[114.23688,22.39],[114.23689,22.38999],[114.23696,22.38991],[114.23698,22.38989],[114.237,22.38987],[114.23701,22.38986],[114.23703,22.38984],[114.23706,22.38981],[114.23707,22.3898],[114.2371,22.38975],[114.2372,22.38964],[114.23723,22.3896],[114.23724,22.38959],[114.23726,22.38956],[114.23729,22.38954],[114.2373,22.38952],[114.23732,22.3895],[114.23735,22.38945],[114.23736,22.38944],[114.23736,22.38943],[114.23738,22.3894],[114.2374,22.38938],[114.23741,22.38936],[114.23745,22.38933],[114.23749,22.38929],[114.2375,22.38928],[114.23751,22.38926],[114.23755,22.38923],[114.23757,22.38921],[114.23759,22.3892],[114.23759,22.3892],[114.23761,22.38916],[114.23762,22.38915],[114.23764,22.38913],[114.23765,22.38913],[114.23765,22.38912],[114.23767,22.38911],[114.23768,22.3891],[114.23769,22.38908],[114.2377,22.38907],[114.23776,22.389],[114.23776,22.389],[114.23777,22.38899],[114.23781,22.38895],[114.23782,22.38895],[114.23783,22.38894],[114.23783,22.38893],[114.23784,22.38893],[114.23787,22.38891],[114.23788,22.3889],[114.2379,22.38889],[114.23792,22.38888],[114.23793,22.38888],[114.23795,22.38887],[114.23798,22.38883],[114.23798,22.38883],[114.238,22.38882],[114.23802,22.38881],[114.23803,22.3888],[114.23804,22.38879],[114.23808,22.38876],[114.2381,22.38875],[114.23812,22.38873],[114.23813,22.38872],[114.23817,22.38868],[114.23819,22.38867],[114.23819,22.38866],[114.2382,22.38865],[114.23822,22.38863],[114.23825,22.3886],[114.23828,22.38856],[114.23829,22.38856],[114.23831,22.38854],[114.23833,22.38853],[114.23834,22.38852],[114.23835,22.38851],[114.2384,22.38846],[114.23846,22.38843],[114.23847,22.38842],[114.23848,22.38841],[114.2385,22.3884],[114.23852,22.38839],[114.23853,22.38838],[114.23854,22.38838],[114.23857,22.38836],[114.23859,22.38835],[114.23861,22.38834],[114.23865,22.38831],[114.23867,22.38829],[114.23868,22.38828],[114.23869,22.38827],[114.2387,22.38825],[114.23872,22.38823],[114.23872,22.38823],[114.23872,22.38822],[114.23873,22.3882],[114.23873,22.38819],[114.23874,22.38819],[114.23874,22.38818],[114.23875,22.38817],[114.23875,22.38816],[114.23876,22.38813],[114.23878,22.38811],[114.23881,22.38806],[114.23883,22.38805],[114.23883,22.38805],[114.23885,22.38803],[114.23888,22.38801],[114.2389,22.38799],[114.23892,22.38798],[114.23894,22.38797],[114.23895,22.38796],[114.23898,22.38794],[114.23905,22.3879],[114.23906,22.38789],[114.23909,22.38787],[114.2391,22.38787],[114.23911,22.38786],[114.23915,22.38782],[114.23917,22.3878],[114.23917,22.3878],[114.23919,22.38779],[114.23921,22.38777],[114.23923,22.38776],[114.23927,22.38773],[114.23928,22.38771],[114.2393,22.3877],[114.2393,22.3877],[114.23933,22.38767],[114.23933,22.38767],[114.23934,22.38766],[114.23936,22.38765],[114.23938,22.38764],[114.23939,22.38762],[114.23939,22.38762],[114.2394,22.38761],[114.23941,22.3876],[114.23942,22.38759],[114.23943,22.38759],[114.23948,22.38754],[114.23951,22.38751],[114.23952,22.38751],[114.23952,22.3875],[114.23954,22.38748],[114.23954,22.38747],[114.23955,22.38747],[114.23956,22.38745],[114.23956,22.38744],[114.23957,22.38743],[114.23957,22.38742],[114.23957,22.38741],[114.23958,22.38737],[114.23958,22.38736],[114.23959,22.38731],[114.23959,22.3873],[114.2396,22.38726],[114.2396,22.38724],[114.2396,22.38723],[114.23961,22.38721],[114.23961,22.38719],[114.23962,22.38717],[114.23963,22.38714],[114.23963,22.38711],[114.23964,22.3871],[114.23964,22.3871],[114.23966,22.38706],[114.23966,22.38706],[114.23966,22.38705],[114.23967,22.38704],[114.23967,22.38704],[114.23967,22.38703],[114.23967,22.38703],[114.23968,22.38702],[114.23968,22.38702],[114.23968,22.38702],[114.23969,22.38702],[114.23969,22.38701],[114.23971,22.387],[114.23971,22.387],[114.23972,22.38699],[114.23972,22.38699],[114.23973,22.38699],[114.23973,22.38699],[114.23974,22.38699],[114.23977,22.38698],[114.2398,22.38697],[114.23981,22.38697],[114.23982,22.38697],[114.24005,22.38687],[114.24012,22.38681],[114.24019,22.38675],[114.24028,22.38648],[114.24609,22.38387],[114.2461,22.38449],[114.24622,22.38544],[114.24637,22.38631],[114.24656,22.38693],[114.24656,22.38694],[114.24656,22.38694],[114.24656,22.38697],[114.24656,22.38699],[114.24656,22.387],[114.24656,22.387],[114.24656,22.38703],[114.24656,22.38704],[114.24656,22.38706],[114.24658,22.38713],[114.24659,22.38715],[114.24659,22.38716],[114.24659,22.38717],[114.24659,22.38719],[114.24659,22.3872],[114.24659,22.38723],[114.24658,22.38728],[114.24658,22.3873],[114.24656,22.38734],[114.24655,22.38736],[114.24654,22.38739],[114.24654,22.3874],[114.24654,22.38741],[114.24654,22.38743],[114.24654,22.38744],[114.24654,22.38746],[114.24654,22.38746],[114.24654,22.38747],[114.24654,22.38749],[114.24655,22.3875],[114.24655,22.38752],[114.24655,22.38753],[114.24655,22.38754],[114.24657,22.38755],[114.24658,22.38756],[114.24659,22.38756],[114.2466,22.38757],[114.24661,22.38758],[114.24661,22.38758],[114.24662,22.38759],[114.24665,22.38761],[114.24666,22.38761],[114.24666,22.38761],[114.24668,22.38761],[114.2467,22.38762],[114.2467,22.38762],[114.24671,22.38762],[114.24672,22.38762],[114.24676,22.38764],[114.24679,22.38765],[114.24682,22.38767],[114.24685,22.38769],[114.24686,22.3877],[114.24686,22.38771],[114.24686,22.38772],[114.24687,22.38772],[114.24687,22.38773],[114.24688,22.38775],[114.2469,22.38777],[114.2469,22.38777],[114.24691,22.38779],[114.24692,22.3878],[114.24692,22.3878],[114.24694,22.38783],[114.24694,22.38784],[114.24696,22.38787],[114.24697,22.3879],[114.24698,22.38792],[114.24698,22.38794],[114.24698,22.38794],[114.24698,22.38795],[114.24698,22.38798],[114.24697,22.38801],[114.24697,22.38807],[114.24697,22.3881],[114.24697,22.38811],[114.24697,22.38812],[114.24697,22.38812],[114.24698,22.38813],[114.24699,22.38815],[114.247,22.38817],[114.24702,22.3882],[114.24705,22.38823],[114.2471,22.38828],[114.24763,22.38882],[114.24819,22.38923],[114.24866,22.38945],[114.24926,22.38959],[114.2498,22.38947],[114.25041,22.38947],[114.25108,22.3895],[114.25149,22.38964],[114.25195,22.38984],[114.25258,22.39037],[114.25285,22.39114],[114.25296,22.39201],[114.25319,22.39256],[114.25358,22.39338],[114.2541,22.39396],[114.25461,22.39425],[114.25528,22.39446],[114.2556,22.39485],[114.25591,22.39558],[114.25613,22.39666],[114.25627,22.39785],[114.25543,22.39784],[114.2528,22.39767],[114.25274,22.40116],[114.25274,22.40117],[114.2527,22.40269],[114.25268,22.40433],[114.25267,22.40895],[114.25246,22.40901],[114.25246,22.40902],[114.25246,22.40903],[114.25246,22.40903],[114.25245,22.40904],[114.25244,22.40905],[114.25243,22.40906],[114.25242,22.40908],[114.25242,22.40909],[114.25241,22.4091],[114.25241,22.40911],[114.2524,22.40915],[114.25239,22.40917],[114.25239,22.40919],[114.25238,22.4092],[114.25238,22.40921],[114.25237,22.40923],[114.25237,22.40924],[114.25238,22.40925],[114.25238,22.40925],[114.25236,22.40928],[114.25235,22.40928],[114.25235,22.40929],[114.25235,22.4093],[114.25234,22.40932],[114.25233,22.40935],[114.25233,22.40938],[114.25232,22.4094],[114.25231,22.40941],[114.25231,22.40942],[114.25229,22.40944],[114.25228,22.40945],[114.25228,22.40946],[114.25227,22.40948],[114.25226,22.4095],[114.25226,22.40951],[114.25225,22.40952],[114.25225,22.40953],[114.25223,22.40956],[114.25222,22.40957],[114.25221,22.40958],[114.25221,22.40958],[114.2522,22.40959],[114.25219,22.4096],[114.25218,22.4096],[114.25216,22.40961],[114.25216,22.40961],[114.25213,22.40964],[114.25212,22.40965],[114.25211,22.40966],[114.2521,22.40967],[114.25209,22.40967],[114.25208,22.40968],[114.25207,22.40969],[114.25206,22.40971],[114.25205,22.40972],[114.25204,22.40972],[114.25204,22.40973],[114.25204,22.40974],[114.25203,22.40975],[114.25203,22.40976],[114.25203,22.40977],[114.25202,22.40978],[114.25202,22.40978],[114.25201,22.40979],[114.25201,22.40979],[114.25198,22.40983],[114.25198,22.40984],[114.25197,22.40985],[114.25197,22.40985],[114.25197,22.40988],[114.25196,22.40991],[114.25196,22.40992],[114.25196,22.40993],[114.25196,22.40994],[114.25196,22.40995],[114.25197,22.40997],[114.25197,22.40997],[114.25196,22.40998],[114.25196,22.40999],[114.25195,22.41],[114.25194,22.41],[114.25192,22.41005],[114.25191,22.41007],[114.2519,22.4101],[114.25189,22.41012],[114.25189,22.41013],[114.25188,22.41015],[114.25188,22.41015],[114.25187,22.41016],[114.25184,22.41018],[114.25183,22.41019],[114.25183,22.41019],[114.25183,22.4102],[114.25182,22.41021],[114.25182,22.41022],[114.25181,22.41023],[114.25181,22.41023],[114.2518,22.41024],[114.2518,22.41026],[114.2518,22.41028],[114.25179,22.41029],[114.25178,22.41031],[114.25178,22.41034],[114.25179,22.41036],[114.25179,22.41038],[114.25179,22.41039],[114.25179,22.4104],[114.25177,22.41042],[114.25177,22.41043],[114.25176,22.41043],[114.25173,22.41046],[114.25172,22.41047],[114.25171,22.41049],[114.2517,22.41049],[114.25169,22.41051],[114.25168,22.41052],[114.25168,22.41053],[114.25167,22.41054],[114.25166,22.41055],[114.25165,22.41057],[114.25164,22.41058],[114.25163,22.4106],[114.25163,22.41061],[114.25163,22.41061],[114.25162,22.41063],[114.25162,22.41064],[114.25162,22.41065],[114.25161,22.41066],[114.25161,22.41067],[114.25161,22.41067],[114.25159,22.41069],[114.25159,22.4107],[114.25159,22.4107],[114.25157,22.41071],[114.25156,22.41073],[114.25155,22.41073],[114.25152,22.41076],[114.25151,22.41077],[114.25149,22.41078],[114.25148,22.41079],[114.25147,22.4108],[114.25145,22.41082],[114.25144,22.41083],[114.25144,22.41084],[114.25144,22.41085],[114.25144,22.41086],[114.25144,22.41088],[114.25143,22.41088],[114.25143,22.41089],[114.25143,22.4109],[114.25142,22.41091],[114.25139,22.41095],[114.25136,22.41099],[114.25135,22.41101],[114.25135,22.41103],[114.25135,22.41105],[114.25135,22.41109],[114.25135,22.4111],[114.25135,22.41111],[114.25134,22.41112],[114.25133,22.41114],[114.25133,22.41115],[114.25132,22.41116],[114.25131,22.41118],[114.2513,22.41119],[114.25129,22.4112],[114.25128,22.41122],[114.25125,22.41124],[114.25124,22.41125],[114.25124,22.41126],[114.25122,22.4113],[114.25121,22.41132],[114.25121,22.41132],[114.2512,22.41134],[114.25117,22.41139],[114.25116,22.4114],[114.25113,22.41142],[114.25112,22.41144],[114.25111,22.41145],[114.2511,22.41146],[114.25109,22.41148],[114.25108,22.41149],[114.25106,22.41151],[114.25105,22.41153],[114.25104,22.41156],[114.25102,22.41158],[114.25101,22.41159],[114.251,22.41161],[114.25099,22.41162],[114.25098,22.41163],[114.25098,22.41163],[114.25097,22.41164],[114.25097,22.41165],[114.25096,22.41167],[114.25095,22.41167],[114.25094,22.41169],[114.25092,22.41172],[114.25091,22.41173],[114.25089,22.41174],[114.25088,22.41175],[114.25088,22.41175],[114.25087,22.41176],[114.25087,22.41176],[114.25086,22.41176],[114.25083,22.41177],[114.2508,22.41178],[114.25078,22.41179],[114.25076,22.41179],[114.25075,22.4118],[114.25074,22.41181],[114.25073,22.41181],[114.25072,22.41182],[114.25068,22.41186],[114.25067,22.41186],[114.25065,22.41187],[114.25064,22.41187],[114.25064,22.41187],[114.25063,22.41188],[114.25062,22.41189],[114.25062,22.41189],[114.2506,22.41192],[114.25059,22.41193],[114.25056,22.41197],[114.25055,22.41198],[114.25052,22.41202],[114.25051,22.41203],[114.25051,22.41203],[114.25051,22.41204],[114.2505,22.41207],[114.25049,22.41208],[114.25049,22.4121],[114.25047,22.41212],[114.25045,22.41214],[114.25042,22.41218],[114.25039,22.41222],[114.25038,22.41224],[114.25037,22.41225],[114.25037,22.41225],[114.25034,22.4123],[114.25034,22.4123],[114.25033,22.41231],[114.2503,22.41235],[114.25025,22.4124],[114.25022,22.41242],[114.25022,22.41243],[114.2502,22.41244],[114.25018,22.41248],[114.25017,22.4125],[114.25016,22.41251],[114.25015,22.41251],[114.25013,22.41253],[114.25011,22.41254],[114.2501,22.41255],[114.25008,22.41257],[114.25007,22.41258],[114.25006,22.41259],[114.25003,22.41263],[114.25003,22.41264],[114.25001,22.41266],[114.24998,22.41269],[114.24997,22.4127],[114.24995,22.41272],[114.24993,22.41273],[114.24992,22.41274],[114.24989,22.41276],[114.24988,22.41278],[114.24987,22.41278],[114.24986,22.41279],[114.24985,22.4128],[114.24985,22.4128],[114.24984,22.41281],[114.24984,22.41282],[114.24983,22.41283],[114.24982,22.41285],[114.24981,22.41287],[114.2498,22.41289],[114.24977,22.41294],[114.24975,22.41296],[114.24974,22.41298],[114.24973,22.413],[114.24972,22.41302],[114.2497,22.41303],[114.24968,22.41305],[114.24967,22.41306],[114.24963,22.41309],[114.24962,22.4131],[114.2496,22.41311],[114.24958,22.41314],[114.24957,22.41315],[114.24956,22.41319],[114.24955,22.4132],[114.24955,22.41321],[114.24955,22.41321],[114.24952,22.41327],[114.24952,22.41328],[114.24951,22.41328],[114.25008,22.41371],[114.25016,22.41375],[114.25034,22.41385],[114.25039,22.41387],[114.25041,22.41388],[114.25047,22.41388],[114.25051,22.4139],[114.25055,22.41392],[114.25061,22.41398],[114.25066,22.41401],[114.25071,22.41402],[114.25076,22.41402],[114.25082,22.41402],[114.25092,22.41401],[114.25101,22.41403],[114.25106,22.41406],[114.2511,22.41409],[114.25112,22.4141],[114.25114,22.41411],[114.25118,22.41412],[114.25123,22.41414],[114.25125,22.41415],[114.25131,22.4142],[114.25134,22.41421],[114.25137,22.41422],[114.25141,22.41423],[114.25144,22.41424],[114.25148,22.41423],[114.25152,22.41423],[114.25154,22.41422],[114.25158,22.4142],[114.25164,22.41416],[114.25168,22.41415],[114.2517,22.41415],[114.25171,22.41415],[114.25181,22.4142],[114.25184,22.41421],[114.25187,22.41421],[114.2519,22.41421],[114.25192,22.4142],[114.25195,22.41418],[114.25199,22.41415],[114.25201,22.41414],[114.25218,22.41414],[114.25222,22.41415],[114.25226,22.41416],[114.25235,22.41421],[114.25236,22.41422],[114.25241,22.41423],[114.25256,22.41424],[114.25263,22.41425],[114.25264,22.41425],[114.25266,22.41426],[114.2527,22.41427],[114.25276,22.41427],[114.25282,22.41428],[114.25288,22.4143],[114.25294,22.41431],[114.25297,22.41432],[114.25303,22.41435],[114.25306,22.41435],[114.2531,22.41435],[114.25312,22.41435],[114.25315,22.41436],[114.25325,22.41438],[114.25329,22.4144],[114.25331,22.41442],[114.25337,22.41451],[114.25342,22.41457],[114.25343,22.41459],[114.25344,22.41463],[114.25345,22.41484],[114.25344,22.41489],[114.25342,22.41498],[114.25341,22.41502],[114.25341,22.41503],[114.25342,22.41505],[114.25345,22.41511],[114.25348,22.41517],[114.2535,22.41521],[114.25351,22.41523],[114.25351,22.41527],[114.25349,22.41533],[114.25349,22.41536],[114.2535,22.41537],[114.25356,22.41543],[114.25362,22.41553],[114.25364,22.41555],[114.25374,22.41562],[114.25379,22.41568],[114.25387,22.41574],[114.25395,22.41579],[114.25401,22.41582],[114.25405,22.41583],[114.25414,22.41587],[114.25416,22.41587],[114.25425,22.41587],[114.25427,22.41588],[114.2544,22.41593],[114.25445,22.41593],[114.2546,22.41596],[114.2548,22.416],[114.25487,22.41601],[114.25499,22.41601],[114.255,22.41601],[114.25503,22.41602],[114.25506,22.41603],[114.2551,22.41604],[114.25526,22.41614],[114.2553,22.41616],[114.25533,22.41619],[114.25537,22.41625],[114.2554,22.4163],[114.25547,22.41645],[114.25549,22.41655],[114.25557,22.41675],[114.25559,22.41679],[114.25563,22.41682],[114.25566,22.41684],[114.25568,22.41685],[114.25576,22.41687],[114.25582,22.41689],[114.25588,22.41689],[114.25595,22.41691],[114.256,22.41693],[114.256,22.41693],[114.25603,22.41694],[114.25605,22.41695],[114.25605,22.41695],[114.2561,22.41698],[114.25615,22.417],[114.25625,22.41701],[114.25627,22.41701],[114.25629,22.41702],[114.25631,22.41703],[114.25638,22.41708],[114.25643,22.41711],[114.25647,22.41713],[114.25649,22.41713],[114.2565,22.41713],[114.25652,22.41713],[114.25655,22.41711],[114.25657,22.41708],[114.2566,22.41704],[114.25664,22.41702],[114.25665,22.41701],[114.25668,22.417],[114.25677,22.417],[114.25682,22.41701],[114.25684,22.41702],[114.25689,22.41704],[114.25693,22.41707],[114.25696,22.41709],[114.25699,22.41713],[114.25702,22.41728],[114.25705,22.41734],[114.25708,22.4174],[114.25715,22.4175],[114.25716,22.41752],[114.25717,22.41754],[114.25717,22.41756],[114.25717,22.41762],[114.25719,22.41763],[114.25722,22.41767],[114.25725,22.41768],[114.25731,22.41771],[114.25741,22.41774],[114.25745,22.41775],[114.25747,22.41776],[114.25752,22.4178],[114.25758,22.41789],[114.25761,22.41791],[114.25766,22.41793],[114.25768,22.41794],[114.25788,22.41799],[114.25791,22.41799],[114.25793,22.41796],[114.25797,22.41796],[114.258,22.41794],[114.25807,22.41793],[114.25816,22.41794],[114.25819,22.41793],[114.25826,22.41793],[114.25828,22.41794],[114.25833,22.41795],[114.25834,22.41796],[114.25836,22.41798],[114.25838,22.418],[114.25842,22.41805],[114.25845,22.41808],[114.25847,22.41809],[114.25853,22.41811],[114.25861,22.41812],[114.25864,22.41812],[114.25866,22.41812],[114.25874,22.41815],[114.2588,22.41818],[114.25885,22.41822],[114.25887,22.41824],[114.25887,22.41824],[114.25889,22.41826],[114.2589,22.41828],[114.2589,22.4183],[114.25893,22.41837],[114.25902,22.41849],[114.25907,22.41854],[114.25919,22.41864],[114.25922,22.41868],[114.25924,22.41871],[114.25924,22.41872],[114.25926,22.41874],[114.25929,22.41877],[114.25932,22.41879],[114.25935,22.41881],[114.25937,22.41881],[114.25944,22.41881],[114.25944,22.41881],[114.25945,22.41882],[114.25948,22.41884],[114.25955,22.4189],[114.25964,22.41899],[114.2598,22.4191],[114.25993,22.41919],[114.25999,22.41924],[114.26001,22.41925],[114.26002,22.41926],[114.26008,22.41929],[114.26012,22.41932],[114.26022,22.41941],[114.26033,22.4195],[114.26042,22.41957],[114.26051,22.41963],[114.2606,22.41968],[114.26066,22.41971],[114.26071,22.41974],[114.26075,22.41976],[114.26084,22.41982],[114.26086,22.41983],[114.26089,22.41985],[114.26091,22.41987],[114.26092,22.41988],[114.26094,22.41991],[114.26095,22.41993],[114.26096,22.41995],[114.26098,22.41998],[114.26099,22.42],[114.261,22.42003],[114.26101,22.42008],[114.26102,22.42011],[114.26102,22.42012],[114.26102,22.42013],[114.26103,22.42015],[114.26103,22.42017],[114.26117,22.42019],[114.26131,22.42022],[114.26143,22.42028],[114.26154,22.42033],[114.26165,22.42039],[114.26173,22.42044],[114.26181,22.42049],[114.26188,22.42056],[114.26196,22.42064],[114.26201,22.42071],[114.26203,22.42073],[114.26206,22.42077],[114.26211,22.42082],[114.26216,22.42087],[114.26219,22.42091],[114.26222,22.42097],[114.26224,22.42104],[114.26225,22.42111],[114.26226,22.42117],[114.26225,22.42126],[114.26225,22.42135],[114.26224,22.42148],[114.26223,22.42158],[114.26221,22.4217],[114.26218,22.42184],[114.26215,22.42199],[114.2622,22.42201],[114.26227,22.42204],[114.26234,22.42208],[114.26243,22.42211],[114.26251,22.42215],[114.26261,22.4222],[114.26269,22.42225],[114.26275,22.42229],[114.26282,22.42235],[114.26288,22.42239],[114.26288,22.42243],[114.26288,22.42244],[114.26288,22.42245],[114.26289,22.42246],[114.26289,22.42247],[114.2629,22.42249],[114.2629,22.4225],[114.2629,22.42252],[114.2629,22.42255],[114.26289,22.42258],[114.26288,22.4226],[114.26288,22.42263],[114.26286,22.42267],[114.26285,22.4227],[114.26284,22.42274],[114.26283,22.42277],[114.26283,22.42279],[114.26283,22.4228],[114.26282,22.42282],[114.26282,22.42283],[114.26282,22.42285],[114.26282,22.42286],[114.26282,22.42288],[114.26283,22.4229],[114.26283,22.42293],[114.26284,22.42296],[114.26284,22.42301],[114.26284,22.42303],[114.26284,22.42305],[114.26284,22.42306],[114.26283,22.42308],[114.26283,22.42309],[114.26282,22.42311],[114.26282,22.42312],[114.26281,22.42314],[114.26279,22.42317],[114.26277,22.4232],[114.26276,22.42321],[114.26275,22.42322],[114.26275,22.42324],[114.26274,22.42325],[114.26274,22.42326],[114.26273,22.42328],[114.26273,22.42329],[114.26273,22.4233],[114.26273,22.42332],[114.26272,22.42333],[114.26272,22.42334],[114.26272,22.42337],[114.26272,22.42338],[114.26273,22.42339],[114.26273,22.42341],[114.26273,22.42342],[114.26273,22.42344],[114.26273,22.42344],[114.26272,22.42345],[114.26272,22.42347],[114.26271,22.42348],[114.2627,22.42349],[114.26269,22.4235],[114.26269,22.42351],[114.26268,22.42355],[114.26266,22.42358],[114.26265,22.42362],[114.26265,22.42366],[114.26264,22.42368],[114.26264,22.42369],[114.26264,22.42371],[114.26264,22.42373],[114.26264,22.42376],[114.26264,22.42378],[114.26265,22.4238],[114.26265,22.42382],[114.26266,22.42386],[114.26266,22.4239],[114.26268,22.42394],[114.26269,22.42398],[114.2627,22.42401],[114.26271,22.42403],[114.26272,22.42406],[114.26274,22.42408],[114.26277,22.42412],[114.2628,22.42416],[114.26281,22.42418],[114.26282,22.42419],[114.26284,22.42421],[114.26285,22.42423],[114.26287,22.42429],[114.2629,22.42434],[114.26292,22.42437],[114.26294,22.42439],[114.26296,22.42442],[114.26298,22.42445],[114.26299,22.42446],[114.26301,22.42447],[114.26301,22.42448],[114.26303,22.42449],[114.26303,22.42449],[114.26318,22.42456],[114.26325,22.42459],[114.26334,22.42439],[114.26339,22.42433],[114.26346,22.42418],[114.26346,22.42411],[114.26348,22.42408],[114.26349,22.42405],[114.2635,22.42403],[114.26352,22.424],[114.26354,22.42397],[114.26355,22.42395],[114.26357,22.42393],[114.26359,22.4239],[114.26361,22.42387],[114.26363,22.42384],[114.26365,22.42381],[114.26367,22.42379],[114.26369,22.42377],[114.26372,22.42374],[114.26374,22.42372],[114.26376,22.4237],[114.26379,22.42368],[114.26382,22.42365],[114.26385,22.42363],[114.26388,22.4236],[114.26391,22.42358],[114.26394,22.42356],[114.26398,22.42354],[114.26401,22.42352],[114.26405,22.4235],[114.26408,22.42348],[114.26412,22.42346],[114.26415,22.42344],[114.26419,22.42343],[114.26422,22.42341],[114.26426,22.42339],[114.2643,22.42338],[114.26433,22.42336],[114.26441,22.42334],[114.26448,22.42331],[114.26456,22.42329],[114.26462,22.42327],[114.26496,22.42316],[114.26502,22.42314],[114.2651,22.42311],[114.26517,22.42309],[114.26523,22.42307],[114.26529,22.42305],[114.26535,22.42303],[114.26541,22.423],[114.26544,22.42299],[114.26548,22.42302],[114.26584,22.42326],[114.26651,22.42311],[114.26716,22.42302],[114.26751,22.42303],[114.26768,22.42306],[114.26844,22.4231],[114.26849,22.4231],[114.26854,22.42309],[114.2686,22.42308],[114.26865,22.42306],[114.2687,22.42304],[114.26871,22.42303],[114.26872,22.423],[114.26873,22.42294],[114.26874,22.42285],[114.26875,22.42277],[114.26874,22.42268],[114.26872,22.42252],[114.2687,22.42234],[114.2687,22.42228],[114.26872,22.42222],[114.26875,22.42217],[114.26879,22.42212],[114.2688,22.42212],[114.26901,22.42222],[114.26916,22.42231],[114.26936,22.42242],[114.26954,22.42253],[114.26969,22.42264],[114.26983,22.42276],[114.26996,22.42287],[114.2701,22.42343],[114.27003,22.42349],[114.27002,22.4235],[114.26978,22.42369],[114.2694,22.42349],[114.26937,22.42356],[114.26936,22.42361],[114.26932,22.42365],[114.26929,22.4237],[114.26923,22.42376],[114.26917,22.42382],[114.26911,22.42388],[114.26904,22.42393],[114.26897,22.42399],[114.2689,22.42404],[114.26882,22.42409],[114.26875,22.42414],[114.26867,22.42418],[114.2686,22.42423],[114.26852,22.42427],[114.26845,22.42433],[114.26839,22.42441],[114.26836,22.42447],[114.26836,22.42454],[114.26837,22.42461],[114.26839,22.42469],[114.26841,22.42476],[114.26844,22.42482],[114.26848,22.4249],[114.26852,22.42497],[114.26857,22.42503],[114.26864,22.42509],[114.26871,22.42513],[114.2688,22.42516],[114.26889,22.42519],[114.26895,22.42521],[114.26901,22.42521],[114.26907,22.42522],[114.26914,22.42524],[114.26923,22.42527],[114.26931,22.42528],[114.26939,22.42529],[114.26943,22.42529],[114.26948,22.42528],[114.26953,22.42526],[114.26957,22.42523],[114.26964,22.42518],[114.26969,22.42513],[114.26974,22.42507],[114.26978,22.42501],[114.26981,22.42497],[114.26987,22.42489],[114.26993,22.42482],[114.26998,22.42477],[114.27005,22.42489],[114.27008,22.42495],[114.2701,22.425],[114.27013,22.42506],[114.27015,22.42514],[114.27017,22.42522],[114.27019,22.42529],[114.2702,22.42538],[114.2702,22.42545],[114.2702,22.42552],[114.2702,22.42556],[114.27021,22.42566],[114.27021,22.42577],[114.27021,22.42587],[114.27021,22.42598],[114.2702,22.42605],[114.2702,22.42613],[114.27027,22.42636],[114.27035,22.42658],[114.27036,22.42661],[114.27039,22.42664],[114.27054,22.42668],[114.27066,22.4267],[114.27068,22.4267],[114.27087,22.4267],[114.27088,22.4267],[114.27092,22.42676],[114.27098,22.42704],[114.27093,22.42723],[114.27076,22.42752],[114.27084,22.42768],[114.27085,22.4278],[114.27078,22.428],[114.27064,22.42802],[114.27063,22.4282],[114.27074,22.42821],[114.27071,22.42835],[114.27061,22.42841],[114.27059,22.42853],[114.27061,22.42854],[114.2705,22.42859],[114.27043,22.42867],[114.27039,22.42902],[114.27056,22.42909],[114.27056,22.4291],[114.27064,22.42972],[114.27071,22.42991],[114.27075,22.43003],[114.27075,22.43011],[114.27046,22.4305],[114.27022,22.43061],[114.2701,22.43088],[114.26989,22.43121],[114.26964,22.43135],[114.26953,22.43146],[114.26947,22.43173],[114.2697,22.43195],[114.26984,22.43181],[114.2699,22.43187],[114.26975,22.43203],[114.26941,22.43172],[114.26906,22.43192],[114.26896,22.43203],[114.26891,22.43218],[114.26898,22.43232],[114.26896,22.43243],[114.26889,22.43265],[114.26874,22.4329],[114.26867,22.43316],[114.26865,22.43339],[114.26868,22.43347],[114.26852,22.43362],[114.26852,22.43372],[114.26838,22.43388],[114.26794,22.4341],[114.26784,22.43398],[114.2677,22.43361],[114.26755,22.43347],[114.26716,22.43328],[114.26723,22.43348],[114.26717,22.43353],[114.2671,22.4335],[114.267,22.4334],[114.26679,22.43344],[114.26659,22.43358],[114.26654,22.43355],[114.26654,22.43343],[114.26641,22.43346],[114.26636,22.43351],[114.26639,22.43369],[114.26628,22.43365],[114.26614,22.43382],[114.26602,22.43361],[114.26586,22.43375],[114.26544,22.43365],[114.26538,22.43347],[114.2653,22.43342],[114.26524,22.43359],[114.26504,22.43366],[114.26488,22.43377],[114.26471,22.43391],[114.26446,22.43395],[114.26406,22.43385],[114.2639,22.43366],[114.26383,22.43344],[114.26381,22.43362],[114.26374,22.43374],[114.26338,22.4337],[114.26315,22.43359],[114.26311,22.43339],[114.26289,22.43314],[114.26265,22.43312],[114.26251,22.43307],[114.26227,22.43307],[114.26217,22.43301],[114.26194,22.43288],[114.2617,22.43275],[114.26161,22.43276],[114.26141,22.43287],[114.26139,22.43286],[114.26116,22.4327],[114.26114,22.43268],[114.26114,22.4325],[114.26123,22.43229],[114.26106,22.43255],[114.26097,22.43263],[114.26091,22.43267],[114.26089,22.43266],[114.26087,22.43263],[114.26087,22.43259],[114.26089,22.43252],[114.26081,22.43248],[114.26068,22.43236],[114.26054,22.43232],[114.26036,22.43234],[114.26033,22.43234],[114.2602,22.43241],[114.26011,22.43243],[114.26006,22.43243],[114.26,22.43242],[114.25998,22.43242],[114.25996,22.43243],[114.25994,22.43244],[114.25993,22.43245],[114.25993,22.43246],[114.25995,22.43248],[114.25995,22.43248],[114.26,22.43249],[114.26001,22.4325],[114.26001,22.4325],[114.26,22.43251],[114.26,22.43252],[114.25998,22.43252],[114.25996,22.43253],[114.25994,22.43252],[114.25991,22.43248],[114.25987,22.43246],[114.25982,22.43242],[114.2598,22.4324],[114.25976,22.43236],[114.25976,22.43247],[114.25972,22.43251],[114.25963,22.43259],[114.25936,22.43267],[114.25901,22.43259],[114.2587,22.43236],[114.25873,22.43231],[114.25871,22.43227],[114.25864,22.43221],[114.25856,22.43224],[114.25853,22.43236],[114.25839,22.43245],[114.25791,22.43248],[114.25777,22.43237],[114.25752,22.43232],[114.25746,22.43225],[114.25738,22.43214],[114.25738,22.43211],[114.2574,22.43194],[114.25737,22.4319],[114.25734,22.43187],[114.25732,22.43186],[114.25731,22.43187],[114.25729,22.43194],[114.25727,22.43194],[114.25726,22.43192],[114.25726,22.43185],[114.25724,22.43183],[114.25723,22.43181],[114.2573,22.43171],[114.25709,22.43166],[114.25702,22.43161],[114.25699,22.43156],[114.25701,22.43145],[114.25701,22.43139],[114.25694,22.43129],[114.2568,22.43117],[114.25675,22.43108],[114.25672,22.43098],[114.25653,22.43097],[114.25638,22.4309],[114.25631,22.43122],[114.25616,22.43131],[114.256,22.43152],[114.25563,22.43225],[114.25563,22.43236],[114.25558,22.43252],[114.25558,22.43263],[114.25556,22.43271],[114.25519,22.43306],[114.25502,22.43315],[114.25477,22.43318],[114.25459,22.43323],[114.25453,22.43322],[114.25449,22.43319],[114.25447,22.43316],[114.25437,22.43319],[114.25442,22.43334],[114.25433,22.43349],[114.25417,22.43366],[114.2543,22.43407],[114.25427,22.43433],[114.25417,22.43448],[114.25416,22.4345],[114.254,22.43457],[114.25392,22.43454],[114.25364,22.43459],[114.25338,22.43455],[114.25308,22.43445],[114.25294,22.43433],[114.25204,22.43386],[114.25178,22.43361],[114.25136,22.43347],[114.25117,22.43333],[114.25103,22.43319],[114.25084,22.43318],[114.25044,22.43325],[114.2504,22.43328],[114.25044,22.4333],[114.25045,22.43332],[114.25041,22.43334],[114.25025,22.43329],[114.25021,22.43332],[114.24993,22.43325],[114.24953,22.43307],[114.24946,22.43311],[114.24917,22.43301],[114.24906,22.43302],[114.24898,22.43298],[114.24899,22.43293],[114.24892,22.43287],[114.24865,22.43278],[114.2486,22.43279],[114.24865,22.43291],[114.24861,22.43295],[114.24859,22.43294],[114.2486,22.43285],[114.24855,22.43279],[114.24844,22.43276],[114.2484,22.43273],[114.24833,22.43252],[114.24823,22.43252],[114.24771,22.43233],[114.24756,22.43237],[114.24716,22.43219],[114.24709,22.43223],[114.24693,22.43202],[114.24679,22.43194],[114.24657,22.43153],[114.24647,22.43138],[114.24621,22.43112],[114.24614,22.43096],[114.24577,22.43074],[114.24556,22.43077],[114.24527,22.43085],[114.24485,22.43109],[114.24456,22.43147],[114.24439,22.43177],[114.24415,22.43218],[114.24395,22.43265],[114.24396,22.43269],[114.2439,22.43294],[114.24402,22.43287],[114.24404,22.43258],[114.24409,22.43261],[114.24411,22.43263],[114.24411,22.4328],[114.24406,22.43303],[114.24417,22.43325],[114.24448,22.4335],[114.24467,22.43381],[114.24481,22.43387],[114.24512,22.43391],[114.24528,22.43385],[114.2454,22.43387],[114.24544,22.43393],[114.24543,22.43405],[114.24552,22.43414],[114.24607,22.43455],[114.24644,22.4346],[114.24674,22.43473],[114.24689,22.4347],[114.24702,22.43478],[114.24718,22.43484],[114.24723,22.4348],[114.24725,22.4348],[114.24722,22.43484],[114.24724,22.43486],[114.24733,22.43489],[114.24752,22.43488],[114.24767,22.4348],[114.24776,22.43484],[114.24793,22.43501],[114.24798,22.43526],[114.24793,22.43535],[114.24775,22.43547],[114.24761,22.43575],[114.24766,22.43585],[114.24779,22.43596],[114.24782,22.43608],[114.24782,22.43615],[114.24763,22.43631],[114.24751,22.43632],[114.2472,22.4363],[114.24704,22.43625],[114.24698,22.43612],[114.24669,22.43609],[114.24652,22.436],[114.2464,22.43587],[114.24593,22.4356],[114.24554,22.43561],[114.24524,22.43543],[114.24501,22.4354],[114.24496,22.43547],[114.24478,22.4355],[114.24482,22.43558],[114.2448,22.43563],[114.24451,22.43572],[114.24404,22.4361],[114.24395,22.43622],[114.24395,22.43626],[114.24398,22.43633],[114.24395,22.43635],[114.24389,22.43629],[114.24382,22.43627],[114.24352,22.4365],[114.24351,22.43672],[114.24343,22.43683],[114.24337,22.43686],[114.24312,22.43682],[114.24304,22.43687],[114.24296,22.43697],[114.24288,22.43703],[114.24251,22.43722],[114.24246,22.4372],[114.24243,22.43718],[114.24197,22.43735]]],[[[114.22236,22.44118],[114.22226,22.44115],[114.22216,22.44105],[114.22207,22.44094],[114.22187,22.44059],[114.22187,22.4401],[114.22178,22.43952],[114.22166,22.43921],[114.22148,22.4388],[114.22136,22.4387],[114.22134,22.43865],[114.2213,22.43868],[114.22126,22.43863],[114.22123,22.43855],[114.22122,22.43853],[114.22119,22.43854],[114.22116,22.43851],[114.22119,22.43846],[114.22116,22.43846],[114.22119,22.43837],[114.22115,22.43824],[114.22111,22.43809],[114.22108,22.43782],[114.22113,22.43756],[114.22119,22.43752],[114.22125,22.43753],[114.22132,22.4375],[114.22152,22.43757],[114.22169,22.43766],[114.22175,22.4377],[114.22179,22.43782],[114.22183,22.43787],[114.22185,22.43784],[114.22188,22.43791],[114.22185,22.43796],[114.22183,22.43797],[114.22196,22.43825],[114.22214,22.4384],[114.22245,22.43858],[114.22254,22.43868],[114.22255,22.43875],[114.22258,22.43879],[114.22259,22.43874],[114.22264,22.43872],[114.22273,22.43881],[114.22281,22.43902],[114.2228,22.43908],[114.22283,22.43911],[114.22286,22.43906],[114.22292,22.43912],[114.2228,22.43923],[114.22278,22.4392],[114.22268,22.43937],[114.22264,22.43953],[114.22257,22.43969],[114.22258,22.43996],[114.22267,22.44003],[114.22275,22.4401],[114.22276,22.44015],[114.22272,22.44017],[114.22269,22.44012],[114.22262,22.44024],[114.22267,22.44041],[114.22266,22.44062],[114.22262,22.44066],[114.2226,22.44076],[114.22262,22.44084],[114.22262,22.4409],[114.22259,22.44098],[114.22255,22.44101],[114.22254,22.44109],[114.22251,22.441],[114.22248,22.44103],[114.2225,22.44108],[114.22245,22.44112],[114.22238,22.44111],[114.22236,22.44118]]]]},"properties":{"M_NM_Eng":"Non-Metro","SR_Eng":"NENT","PDD_Cat_En":"New Town","PDD_Eng":"Ma On Shan","M_NM_Tc":"非都會區","SR_Tc":"新界東北","PDD_Cat_Tc":"新市鎮","PDD_Tc":"馬鞍山","M_NM_Sc":"非都会区","SR_Sc_1":"新界东北","PDD_Cat_Sc":"新市镇","PDD_Sc":"马鞍山","Y2019_Popu":219950,"Y2019_Empl":34100,"Y2026_Popu":235200,"Y2026_Empl":36550,"Y2031_Popu":229800,"Y2031_Empl":35100}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[114.17461,22.3266],[114.17459,22.3266],[114.17456,22.32661],[114.17453,22.32662],[114.17451,22.32663],[114.17448,22.32664],[114.17447,22.32665],[114.1743,22.32671],[114.17427,22.32672],[114.17425,22.32673],[114.17422,22.32674],[114.1742,22.32675],[114.17417,22.32676],[114.17414,22.32676],[114.17411,22.32677],[114.17408,22.32677],[114.17405,22.32677],[114.17402,22.32677],[114.174,22.32677],[114.17397,22.32677],[114.17394,22.32677],[114.17215,22.32668],[114.1704,22.32661],[114.17024,22.3266],[114.16961,22.32657],[114.16906,22.32655],[114.16854,22.32653],[114.1685,22.32652],[114.16786,22.3265],[114.1672,22.32647],[114.16628,22.32643],[114.16601,22.32642],[114.16516,22.32638],[114.16436,22.32635],[114.16347,22.32631],[114.16245,22.32627],[114.16188,22.32624],[114.16065,22.32619],[114.16039,22.32618],[114.16119,22.32558],[114.16148,22.32536],[114.16167,22.32517],[114.16175,22.32505],[114.16176,22.32503],[114.15909,22.325],[114.15906,22.32499],[114.15899,22.32499],[114.15887,22.32497],[114.15873,22.32493],[114.15862,22.3249],[114.15852,22.32485],[114.15842,22.32481],[114.15834,22.32476],[114.15825,22.3247],[114.15804,22.32453],[114.15814,22.32444],[114.15831,22.3243],[114.15835,22.32426],[114.15866,22.32402],[114.15881,22.32388],[114.15885,22.32384],[114.15905,22.32367],[114.1591,22.32362],[114.15915,22.32357],[114.1592,22.32352],[114.15925,22.32347],[114.15929,22.32342],[114.15933,22.32337],[114.15938,22.32331],[114.15942,22.32326],[114.15946,22.3232],[114.15949,22.32315],[114.15952,22.3231],[114.15955,22.32304],[114.15958,22.32298],[114.15961,22.32293],[114.15963,22.32287],[114.15966,22.32281],[114.15968,22.32275],[114.1597,22.32269],[114.15972,22.32263],[114.15974,22.32257],[114.15975,22.32251],[114.15976,22.32246],[114.15978,22.32239],[114.15979,22.32232],[114.1598,22.32218],[114.15982,22.32209],[114.15982,22.32207],[114.15981,22.32191],[114.1598,22.32142],[114.15977,22.32042],[114.15977,22.32036],[114.15976,22.32021],[114.15976,22.32015],[114.15976,22.32008],[114.15976,22.32002],[114.15976,22.31995],[114.15976,22.31988],[114.15977,22.31982],[114.15977,22.31975],[114.15978,22.31969],[114.15978,22.31962],[114.15979,22.31956],[114.1598,22.31949],[114.15981,22.31944],[114.15981,22.31876],[114.15984,22.31871],[114.15987,22.31862],[114.16005,22.31868],[114.16006,22.31866],[114.16019,22.31838],[114.16047,22.31769],[114.16049,22.3177],[114.16106,22.31788],[114.16126,22.31794],[114.16169,22.31809],[114.16195,22.31819],[114.16324,22.31865],[114.16335,22.31865],[114.16335,22.31865],[114.16375,22.31867],[114.16551,22.31874],[114.16607,22.31876],[114.16613,22.31877],[114.16624,22.31814],[114.16629,22.31778],[114.16643,22.31694],[114.16648,22.31663],[114.16649,22.31657],[114.16649,22.31657],[114.1666,22.316],[114.16699,22.31607],[114.16726,22.31612],[114.16775,22.3162],[114.16822,22.31629],[114.16865,22.31636],[114.16876,22.31585],[114.1689,22.31514],[114.16952,22.31525],[114.17014,22.31536],[114.17058,22.31543],[114.17076,22.31547],[114.17133,22.31557],[114.17186,22.31566],[114.17217,22.31571],[114.17274,22.31582],[114.17313,22.31588],[114.17351,22.31595],[114.17353,22.31595],[114.1739,22.31647],[114.17403,22.31664],[114.17432,22.31704],[114.17432,22.31704],[114.17432,22.31705],[114.17432,22.31705],[114.17438,22.31713],[114.17437,22.31714],[114.17383,22.31844],[114.17316,22.32003],[114.17311,22.32014],[114.17304,22.32013],[114.17303,22.32012],[114.17303,22.32012],[114.17294,22.3206],[114.17294,22.32067],[114.17287,22.32208],[114.17297,22.32264],[114.1731,22.32344],[114.17312,22.32346],[114.17346,22.32402],[114.1737,22.32474],[114.17373,22.32481],[114.17376,22.32482],[114.17385,22.32499],[114.17443,22.32607],[114.1747,22.32658],[114.1746,22.32658],[114.17461,22.3266]]]},"properties":{"M_NM_Eng":"Metro","SR_Eng":"Metro","PDD_Cat_En":"Kowloon","PDD_Eng":"Mong Kok","M_NM_Tc":"都會區","SR_Tc":"都會區","PDD_Cat_Tc":"九龍","PDD_Tc":"旺角","M_NM_Sc":"都会区","SR_Sc_1":"都会区","PDD_Cat_Sc":"九龙","PDD_Sc":"旺角","Y2019_Popu":141600,"Y2019_Empl":126650,"Y2026_Popu":131850,"Y2026_Empl":131950,"Y2031_Popu":109450,"Y2031_Empl":129700}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[113.93278,22.28158],[113.93276,22.28163],[113.93273,22.28173],[113.93258,22.2817],[113.93256,22.28168],[113.93254,22.28162],[113.93256,22.28157],[113.93261,22.28154],[113.93272,22.28153],[113.93278,22.28158]]],[[[114.07727,22.28225],[114.07727,22.28227],[114.07723,22.28228],[114.07721,22.28228],[114.0772,22.28226],[114.0772,22.28225],[114.07725,22.28224],[114.07727,22.28225]]],[[[114.07768,22.28231],[114.0777,22.28232],[114.07769,22.28234],[114.07767,22.28236],[114.07765,22.28235],[114.07763,22.28233],[114.07766,22.2823],[114.07768,22.28231]]],[[[114.07593,22.28236],[114.0759,22.28237],[114.07586,22.28237],[114.07584,22.28236],[114.07583,22.28235],[114.07584,22.28234],[114.07588,22.28234],[114.07591,22.28232],[114.07594,22.28232],[114.07595,22.28233],[114.07593,22.28236]]],[[[114.07384,22.28405],[114.07386,22.28406],[114.07388,22.28409],[114.07386,22.2841],[114.07385,22.28411],[114.07382,22.2841],[114.07381,22.28409],[114.07382,22.28407],[114.07383,22.28405],[114.07384,22.28405]]],[[[114.07408,22.28433],[114.07407,22.28436],[114.07405,22.28437],[114.07401,22.28436],[114.074,22.28435],[114.07401,22.28434],[114.07405,22.28433],[114.07408,22.28433]]],[[[114.07918,22.28452],[114.07914,22.28454],[114.07913,22.28454],[114.07911,22.28455],[114.07909,22.28455],[114.07908,22.28454],[114.0791,22.28453],[114.07914,22.28452],[114.07917,22.28451],[114.07918,22.28452]]],[[[114.07712,22.28633],[114.07715,22.28634],[114.07713,22.28636],[114.07708,22.28635],[114.07707,22.28634],[114.07708,22.28632],[114.07712,22.28633]]],[[[114.07847,22.28673],[114.07848,22.28673],[114.07849,22.28674],[114.07849,22.28675],[114.07848,22.28675],[114.07843,22.28674],[114.07843,22.28673],[114.07844,22.28672],[114.07845,22.28672],[114.07847,22.28673]]],[[[114.07874,22.28688],[114.07875,22.28684],[114.07864,22.28677],[114.07853,22.28666],[114.07837,22.28663],[114.07837,22.28654],[114.07828,22.28651],[114.07819,22.28645],[114.07808,22.28642],[114.07803,22.28644],[114.07797,22.28644],[114.0775,22.28632],[114.0774,22.28635],[114.07739,22.28641],[114.07732,22.28638],[114.07728,22.28639],[114.07728,22.28635],[114.07707,22.28628],[114.07705,22.28627],[114.07707,22.28625],[114.07712,22.28625],[114.07714,22.28624],[114.07698,22.28617],[114.07615,22.28603],[114.07609,22.28592],[114.07592,22.28582],[114.07569,22.28575],[114.0756,22.28568],[114.07552,22.28573],[114.07542,22.28557],[114.07527,22.2855],[114.07499,22.28524],[114.07488,22.28508],[114.0748,22.285],[114.0746,22.28497],[114.07452,22.28489],[114.07451,22.28484],[114.07444,22.28477],[114.07446,22.2847],[114.07443,22.28465],[114.07434,22.28459],[114.07422,22.28453],[114.07422,22.28451],[114.07424,22.28448],[114.07414,22.28436],[114.0741,22.28416],[114.07406,22.28411],[114.07402,22.28412],[114.07398,22.28415],[114.07394,22.28415],[114.07391,22.28413],[114.0739,22.28411],[114.07392,22.28409],[114.07397,22.28408],[114.07394,22.28407],[114.07393,22.28401],[114.0739,22.28399],[114.07391,22.28397],[114.07394,22.28396],[114.07397,22.28396],[114.07402,22.28401],[114.07405,22.28403],[114.07408,22.28402],[114.07408,22.28401],[114.07405,22.28397],[114.07406,22.28396],[114.07408,22.28395],[114.07409,22.28391],[114.07411,22.28389],[114.07413,22.28389],[114.07414,22.28388],[114.07413,22.28386],[114.07409,22.28387],[114.07408,22.28385],[114.0741,22.28378],[114.07414,22.28377],[114.07408,22.28373],[114.07408,22.28371],[114.07413,22.28369],[114.07412,22.28364],[114.07415,22.28349],[114.07427,22.28344],[114.07426,22.28323],[114.07439,22.28311],[114.07439,22.28307],[114.07436,22.283],[114.07429,22.28297],[114.07427,22.2829],[114.0743,22.28279],[114.07436,22.28267],[114.07455,22.28277],[114.07466,22.28262],[114.07472,22.28259],[114.0748,22.28254],[114.07466,22.2824],[114.0747,22.2823],[114.07449,22.28221],[114.07453,22.28214],[114.07476,22.28207],[114.07495,22.28215],[114.07497,22.2822],[114.07503,22.28215],[114.07503,22.28212],[114.07504,22.28211],[114.07507,22.28212],[114.07509,22.28217],[114.07514,22.28213],[114.07519,22.28212],[114.07542,22.28217],[114.07561,22.28218],[114.07584,22.28227],[114.07576,22.28241],[114.0759,22.28244],[114.07591,22.28246],[114.07588,22.2825],[114.07592,22.28252],[114.07618,22.28243],[114.07622,22.28253],[114.07634,22.28251],[114.07642,22.28247],[114.07651,22.28246],[114.07653,22.28244],[114.07652,22.2824],[114.0765,22.28237],[114.07651,22.28236],[114.07653,22.28235],[114.07657,22.28237],[114.07657,22.28238],[114.07655,22.28241],[114.07656,22.28247],[114.07664,22.28246],[114.07665,22.28243],[114.0767,22.28238],[114.07663,22.28223],[114.07679,22.28212],[114.07691,22.28211],[114.07693,22.28212],[114.07692,22.28216],[114.07702,22.28224],[114.07709,22.28222],[114.07714,22.28221],[114.07713,22.28218],[114.07715,22.28216],[114.0772,22.28217],[114.07724,22.28213],[114.07717,22.28207],[114.07711,22.28209],[114.07709,22.28208],[114.07709,22.28206],[114.07714,22.28199],[114.07722,22.28196],[114.07728,22.28197],[114.07728,22.28203],[114.07735,22.282],[114.07735,22.28202],[114.07729,22.28216],[114.07727,22.28219],[114.07719,22.28221],[114.07718,22.28228],[114.07731,22.28239],[114.07742,22.28244],[114.07771,22.28241],[114.07788,22.28228],[114.078,22.28227],[114.07804,22.28223],[114.07806,22.28217],[114.07811,22.28215],[114.07815,22.28218],[114.07818,22.28223],[114.07824,22.28221],[114.07827,22.28213],[114.07843,22.28212],[114.07854,22.28217],[114.07853,22.28225],[114.07858,22.28232],[114.07864,22.28222],[114.07859,22.28219],[114.07861,22.28217],[114.0787,22.2822],[114.07896,22.28215],[114.07915,22.2822],[114.07923,22.28228],[114.07941,22.28234],[114.07944,22.28236],[114.07954,22.2824],[114.0796,22.28251],[114.07974,22.28252],[114.07975,22.28255],[114.07974,22.2826],[114.07968,22.28264],[114.07972,22.28287],[114.07986,22.2831],[114.07982,22.28338],[114.07969,22.28351],[114.07957,22.28368],[114.07926,22.28382],[114.07903,22.28399],[114.07894,22.28408],[114.07888,22.28427],[114.07891,22.28432],[114.07886,22.28439],[114.07897,22.28457],[114.07889,22.28467],[114.07886,22.28479],[114.0789,22.28485],[114.07899,22.28486],[114.07903,22.28489],[114.07904,22.28492],[114.07901,22.28503],[114.07903,22.2851],[114.07918,22.28507],[114.07929,22.28508],[114.07946,22.28517],[114.0795,22.28514],[114.07962,22.28512],[114.07963,22.28522],[114.07973,22.28528],[114.07973,22.28529],[114.07968,22.28528],[114.07965,22.28531],[114.07962,22.28535],[114.07965,22.28541],[114.07964,22.28545],[114.07955,22.2855],[114.07949,22.28556],[114.07948,22.2856],[114.07945,22.28582],[114.07962,22.28599],[114.07974,22.28605],[114.07981,22.28608],[114.07988,22.28617],[114.07988,22.28625],[114.07982,22.28641],[114.07972,22.2867],[114.07971,22.28679],[114.07966,22.28683],[114.07945,22.28687],[114.07909,22.28686],[114.07874,22.28688]]],[[[114.07963,22.28697],[114.07965,22.287],[114.07963,22.28702],[114.07959,22.287],[114.07958,22.28698],[114.07958,22.28695],[114.07955,22.28694],[114.07954,22.28692],[114.07955,22.28689],[114.07959,22.28689],[114.07964,22.2869],[114.07967,22.28686],[114.07969,22.28686],[114.07973,22.28691],[114.07974,22.28695],[114.07974,22.28697],[114.07971,22.28698],[114.07966,22.28695],[114.07964,22.28695],[114.07963,22.28697]]],[[[114.05922,22.28739],[114.05922,22.28741],[114.05922,22.28742],[114.05921,22.28743],[114.05918,22.28742],[114.05919,22.28738],[114.05922,22.28739]]],[[[114.05887,22.28741],[114.05888,22.28743],[114.05887,22.28744],[114.05884,22.28744],[114.05883,22.28743],[114.05883,22.28741],[114.05884,22.28741],[114.05887,22.28741]]],[[[114.05893,22.28753],[114.05891,22.28754],[114.0589,22.28753],[114.0589,22.28752],[114.05888,22.28753],[114.05885,22.28753],[114.05883,22.28752],[114.05882,22.28751],[114.05882,22.2875],[114.05884,22.28747],[114.05887,22.28746],[114.0589,22.28746],[114.05892,22.28746],[114.05893,22.28745],[114.05891,22.28743],[114.05888,22.2874],[114.05884,22.28739],[114.05882,22.2874],[114.05881,22.28736],[114.05881,22.28733],[114.05881,22.28732],[114.05884,22.28733],[114.05887,22.28732],[114.05891,22.28732],[114.05893,22.2873],[114.05894,22.2873],[114.05895,22.28733],[114.05894,22.28736],[114.05895,22.28739],[114.05897,22.28739],[114.059,22.28741],[114.059,22.28742],[114.05898,22.28746],[114.05897,22.28746],[114.05896,22.28745],[114.05894,22.28746],[114.05894,22.28749],[114.05892,22.28748],[114.05891,22.28749],[114.05894,22.2875],[114.05893,22.28753]]],[[[114.05982,22.28818],[114.05982,22.28819],[114.05982,22.2882],[114.05983,22.28821],[114.05984,22.28822],[114.05983,22.28823],[114.05981,22.28823],[114.05979,22.28822],[114.05978,22.28821],[114.05978,22.28819],[114.05979,22.28817],[114.05982,22.28815],[114.05983,22.28814],[114.05984,22.28814],[114.05986,22.28816],[114.05986,22.28817],[114.05983,22.28817],[114.05982,22.28818]]],[[[114.05734,22.28871],[114.05735,22.28872],[114.05735,22.28873],[114.05734,22.28874],[114.0573,22.28872],[114.05731,22.28871],[114.05732,22.28871],[114.05734,22.28871]]],[[[114.05735,22.28876],[114.05735,22.28877],[114.05733,22.28877],[114.0573,22.28877],[114.0573,22.28876],[114.05733,22.28875],[114.05735,22.28876]]],[[[114.05859,22.28962],[114.05859,22.28965],[114.05857,22.28967],[114.05854,22.28968],[114.05851,22.28967],[114.05849,22.28965],[114.05849,22.28964],[114.05851,22.28962],[114.05857,22.2896],[114.05857,22.28959],[114.05846,22.28946],[114.05838,22.28943],[114.05835,22.28935],[114.05824,22.28925],[114.0582,22.28925],[114.05816,22.28924],[114.05815,22.28918],[114.058,22.28913],[114.05786,22.2891],[114.05761,22.28911],[114.05738,22.28918],[114.05736,22.2892],[114.05738,22.28924],[114.05737,22.28925],[114.05732,22.28924],[114.05735,22.28928],[114.05734,22.28929],[114.05722,22.28929],[114.05717,22.28926],[114.05718,22.28931],[114.05719,22.28932],[114.05718,22.28933],[114.05714,22.28927],[114.05714,22.28926],[114.05712,22.28926],[114.0571,22.28929],[114.05708,22.28929],[114.05706,22.28925],[114.05707,22.28923],[114.05706,22.28918],[114.05707,22.28915],[114.05706,22.28912],[114.05701,22.28909],[114.05699,22.28908],[114.05695,22.28908],[114.05695,22.28907],[114.05695,22.28905],[114.05696,22.28905],[114.05703,22.28907],[114.0571,22.28908],[114.05716,22.28907],[114.05722,22.28908],[114.05717,22.28902],[114.05714,22.28893],[114.05704,22.2889],[114.05702,22.2888],[114.05708,22.2888],[114.05719,22.28884],[114.05723,22.28882],[114.05728,22.28884],[114.05735,22.28884],[114.05737,22.28887],[114.05738,22.28885],[114.05744,22.28885],[114.05736,22.2888],[114.0574,22.28873],[114.05778,22.28866],[114.05801,22.28867],[114.05805,22.28859],[114.05805,22.28848],[114.05812,22.28837],[114.05813,22.28833],[114.05767,22.28814],[114.05764,22.28808],[114.05757,22.28791],[114.05777,22.28782],[114.05783,22.28783],[114.05795,22.28788],[114.0579,22.28803],[114.05793,22.28805],[114.05798,22.28803],[114.05799,22.28797],[114.05807,22.28788],[114.05814,22.28791],[114.05816,22.28799],[114.05823,22.28795],[114.05836,22.28796],[114.0583,22.2879],[114.0583,22.28779],[114.05845,22.28767],[114.05875,22.28769],[114.05878,22.28774],[114.05897,22.2878],[114.05917,22.2878],[114.05936,22.28787],[114.05939,22.28784],[114.05943,22.28785],[114.05961,22.28802],[114.05967,22.28813],[114.05975,22.28826],[114.05989,22.28831],[114.06002,22.28826],[114.0602,22.28831],[114.06027,22.28838],[114.06023,22.28849],[114.06031,22.28856],[114.06035,22.28857],[114.06042,22.28846],[114.06051,22.28838],[114.06058,22.28838],[114.06067,22.28848],[114.06054,22.28872],[114.06037,22.28874],[114.0604,22.28878],[114.06046,22.28885],[114.06046,22.28892],[114.06038,22.28888],[114.0604,22.28897],[114.06034,22.28909],[114.06024,22.28912],[114.06002,22.28909],[114.06005,22.28918],[114.05995,22.28918],[114.05983,22.28914],[114.0598,22.28924],[114.05985,22.28931],[114.05986,22.28936],[114.05982,22.2894],[114.05979,22.28939],[114.05975,22.28934],[114.05976,22.28932],[114.05978,22.2893],[114.05977,22.28928],[114.05968,22.28931],[114.05958,22.2893],[114.05952,22.28935],[114.05945,22.28935],[114.05939,22.2894],[114.0593,22.28942],[114.05922,22.28954],[114.05922,22.2896],[114.059,22.28962],[114.05897,22.28965],[114.05892,22.28967],[114.05879,22.28965],[114.0587,22.28961],[114.05864,22.28962],[114.05861,22.2896],[114.05859,22.28962]]],[[[113.93456,22.32346],[113.93452,22.32351],[113.93448,22.32356],[113.93444,22.32361],[113.93439,22.32366],[113.93434,22.3237],[113.93426,22.32373],[113.9342,22.32378],[113.93413,22.32381],[113.93406,22.32384],[113.93404,22.32384],[113.93398,22.32386],[113.93391,22.32387],[113.93384,22.32388],[113.93375,22.32388],[113.93367,22.32387],[113.93361,22.32387],[113.93352,22.32385],[113.93344,22.32382],[113.93335,22.32379],[113.93324,22.32376],[113.93315,22.32373],[113.93306,22.3237],[113.93296,22.32368],[113.93285,22.32365],[113.93275,22.32361],[113.93262,22.32357],[113.93251,22.32353],[113.93238,22.32349],[113.93227,22.32345],[113.93212,22.3234],[113.93198,22.32336],[113.93185,22.32332],[113.93173,22.32328],[113.93161,22.32324],[113.9315,22.3232],[113.93138,22.32316],[113.93124,22.32311],[113.93111,22.32308],[113.931,22.32304],[113.93087,22.323],[113.93074,22.32296],[113.9306,22.32291],[113.93049,22.32288],[113.93036,22.32283],[113.93023,22.32279],[113.93011,22.32275],[113.92998,22.32271],[113.92985,22.32267],[113.92975,22.32264],[113.92963,22.3226],[113.92951,22.32256],[113.92937,22.32252],[113.92926,22.32248],[113.92913,22.32244],[113.9291,22.32243],[113.92896,22.32238],[113.92882,22.32233],[113.92864,22.32228],[113.92849,22.32223],[113.92839,22.3222],[113.92839,22.3222],[113.92836,22.32219],[113.9283,22.32217],[113.92824,22.32216],[113.92817,22.32214],[113.9281,22.32211],[113.92802,22.32209],[113.92794,22.32206],[113.92787,22.32204],[113.92779,22.32201],[113.9277,22.32199],[113.92762,22.32196],[113.92754,22.32194],[113.92747,22.32192],[113.9274,22.32189],[113.92733,22.32187],[113.92725,22.32184],[113.92717,22.32182],[113.92709,22.3218],[113.92701,22.32177],[113.92693,22.32175],[113.92687,22.32173],[113.92681,22.3217],[113.92677,22.32169],[113.92676,22.32169],[113.92671,22.32167],[113.92664,22.32165],[113.92656,22.32162],[113.92649,22.3216],[113.92641,22.32157],[113.92634,22.32155],[113.92626,22.32152],[113.92618,22.32149],[113.92609,22.32147],[113.92602,22.32144],[113.92595,22.32141],[113.92589,22.3214],[113.92584,22.32138],[113.92579,22.32136],[113.92573,22.32134],[113.92567,22.32132],[113.9256,22.3213],[113.92553,22.32129],[113.92546,22.32127],[113.92539,22.32124],[113.92532,22.32122],[113.92526,22.3212],[113.92521,22.32119],[113.92516,22.32117],[113.92509,22.32115],[113.92501,22.32112],[113.92492,22.32109],[113.92484,22.32106],[113.92475,22.32103],[113.92466,22.321],[113.92458,22.32098],[113.92449,22.32095],[113.92442,22.32092],[113.92434,22.3209],[113.92428,22.32087],[113.92415,22.32083],[113.9239,22.32075],[113.92384,22.32073],[113.92374,22.3207],[113.92364,22.32067],[113.92355,22.32064],[113.92345,22.32061],[113.92336,22.32058],[113.92326,22.32055],[113.92316,22.32051],[113.92306,22.32048],[113.92296,22.32045],[113.92285,22.32042],[113.92276,22.32039],[113.92267,22.32035],[113.92257,22.32033],[113.92246,22.3203],[113.92235,22.32026],[113.92226,22.32023],[113.92218,22.3202],[113.92208,22.32017],[113.922,22.32015],[113.9219,22.32011],[113.9218,22.32009],[113.92172,22.32006],[113.92164,22.32003],[113.92155,22.32],[113.92147,22.31997],[113.92138,22.31994],[113.92128,22.31992],[113.9212,22.31989],[113.92112,22.31986],[113.92103,22.31984],[113.92094,22.31982],[113.92087,22.31979],[113.92079,22.31976],[113.92071,22.31973],[113.92063,22.3197],[113.92054,22.31968],[113.92047,22.31965],[113.92038,22.31963],[113.92031,22.3196],[113.92023,22.31957],[113.92016,22.31955],[113.92007,22.31953],[113.92,22.3195],[113.91992,22.31948],[113.91984,22.31945],[113.91976,22.31943],[113.91969,22.3194],[113.91962,22.31938],[113.91956,22.31936],[113.91949,22.31934],[113.91948,22.31934],[113.91941,22.31932],[113.91934,22.31929],[113.91928,22.31927],[113.91921,22.31925],[113.91915,22.31922],[113.91907,22.3192],[113.919,22.31918],[113.91893,22.31916],[113.91887,22.31913],[113.91879,22.31911],[113.91872,22.31909],[113.91866,22.31907],[113.9186,22.31905],[113.91856,22.31904],[113.91856,22.31903],[113.9185,22.31901],[113.91842,22.31899],[113.91834,22.31897],[113.91826,22.31894],[113.91819,22.31892],[113.91812,22.3189],[113.91804,22.31887],[113.91798,22.31885],[113.91791,22.31883],[113.91784,22.3188],[113.91777,22.31878],[113.91771,22.31876],[113.91763,22.31873],[113.91756,22.31871],[113.91748,22.31869],[113.91741,22.31866],[113.91733,22.31864],[113.91726,22.31861],[113.91717,22.31858],[113.9171,22.31856],[113.91701,22.31853],[113.91693,22.31851],[113.91685,22.31848],[113.91677,22.31846],[113.91669,22.31843],[113.91661,22.3184],[113.91653,22.31838],[113.91645,22.31835],[113.91638,22.31834],[113.9163,22.31831],[113.91622,22.31829],[113.91615,22.31827],[113.91607,22.31824],[113.916,22.31821],[113.91593,22.31819],[113.91586,22.31817],[113.91579,22.31814],[113.91571,22.31812],[113.9157,22.31811],[113.91524,22.31796],[113.91521,22.31795],[113.91517,22.31793],[113.9151,22.31791],[113.91503,22.3179],[113.91497,22.31788],[113.91491,22.31786],[113.91485,22.31784],[113.9148,22.31782],[113.91476,22.3178],[113.91471,22.31779],[113.91468,22.31778],[113.91467,22.31778],[113.91459,22.31775],[113.9145,22.31772],[113.91448,22.31771],[113.91444,22.3177],[113.91439,22.31769],[113.91433,22.31767],[113.91427,22.31765],[113.91422,22.31763],[113.91416,22.31761],[113.9141,22.3176],[113.91405,22.31759],[113.91402,22.31757],[113.91401,22.31757],[113.91394,22.31755],[113.91388,22.31753],[113.91382,22.31751],[113.91374,22.31748],[113.91367,22.31746],[113.91361,22.31744],[113.91354,22.31742],[113.91347,22.3174],[113.91343,22.31739],[113.91338,22.31738],[113.91332,22.31736],[113.91326,22.31733],[113.91319,22.31731],[113.91312,22.31728],[113.91304,22.31726],[113.91298,22.31723],[113.91291,22.31721],[113.91283,22.31719],[113.91277,22.31717],[113.9127,22.31715],[113.91264,22.31713],[113.91256,22.31711],[113.91249,22.31708],[113.91243,22.31706],[113.91236,22.31704],[113.91229,22.31702],[113.91222,22.317],[113.91215,22.31698],[113.91214,22.31698],[113.91207,22.31696],[113.91199,22.31693],[113.91192,22.31691],[113.91186,22.31689],[113.9118,22.31687],[113.91173,22.31685],[113.91167,22.31683],[113.91161,22.31681],[113.91155,22.31679],[113.9115,22.31678],[113.91145,22.31676],[113.91138,22.31674],[113.91131,22.31672],[113.91126,22.3167],[113.9112,22.31667],[113.91114,22.31665],[113.91108,22.31664],[113.91102,22.31662],[113.91096,22.3166],[113.9109,22.31658],[113.91084,22.31656],[113.91078,22.31655],[113.91072,22.31652],[113.91067,22.3165],[113.91061,22.31648],[113.91055,22.31647],[113.9105,22.31644],[113.91044,22.31642],[113.91038,22.3164],[113.91033,22.31638],[113.91027,22.31636],[113.91021,22.31634],[113.91015,22.31632],[113.91009,22.31631],[113.91004,22.31629],[113.90997,22.31627],[113.90991,22.31625],[113.90985,22.31624],[113.90979,22.31621],[113.90973,22.3162],[113.90968,22.31618],[113.90962,22.31616],[113.90956,22.31615],[113.9095,22.31613],[113.90944,22.31611],[113.90939,22.3161],[113.90936,22.31608],[113.90936,22.31608],[113.90923,22.31604],[113.90915,22.31602],[113.90906,22.31599],[113.90897,22.31596],[113.90888,22.31593],[113.90881,22.31589],[113.90872,22.31587],[113.90863,22.31584],[113.90854,22.31581],[113.90846,22.31578],[113.90838,22.31576],[113.9083,22.31573],[113.90823,22.3157],[113.90816,22.31569],[113.90809,22.31567],[113.90801,22.31564],[113.90794,22.31562],[113.90786,22.3156],[113.90779,22.31557],[113.90771,22.31555],[113.90763,22.31552],[113.90756,22.3155],[113.9075,22.31548],[113.90743,22.31545],[113.90735,22.31543],[113.90728,22.31541],[113.90721,22.31539],[113.90714,22.31537],[113.90708,22.31534],[113.90702,22.31532],[113.90695,22.31529],[113.90687,22.31527],[113.90681,22.31525],[113.90674,22.31523],[113.90668,22.31521],[113.9066,22.31519],[113.90653,22.31516],[113.90645,22.31514],[113.90639,22.31512],[113.9063,22.31509],[113.90623,22.31507],[113.90616,22.31505],[113.9061,22.31503],[113.90603,22.31501],[113.90597,22.31498],[113.90591,22.31496],[113.90584,22.31494],[113.90577,22.31492],[113.90572,22.3149],[113.90565,22.31489],[113.90559,22.31486],[113.90553,22.31484],[113.90547,22.31483],[113.90542,22.31481],[113.90536,22.31478],[113.9053,22.31477],[113.90525,22.31475],[113.90519,22.31473],[113.90514,22.31472],[113.90508,22.3147],[113.90503,22.31468],[113.90498,22.31467],[113.90494,22.31465],[113.90493,22.31465],[113.90488,22.31464],[113.90483,22.31462],[113.90477,22.31461],[113.90471,22.31459],[113.90467,22.31457],[113.90461,22.31455],[113.90456,22.31454],[113.90451,22.31452],[113.90448,22.31451],[113.90447,22.31451],[113.90398,22.31434],[113.90388,22.31431],[113.90378,22.31427],[113.90367,22.31424],[113.90357,22.31421],[113.90347,22.31417],[113.90337,22.31415],[113.90329,22.31412],[113.90319,22.31409],[113.90309,22.31406],[113.90299,22.31403],[113.90289,22.31399],[113.9028,22.31396],[113.9027,22.31392],[113.9026,22.31389],[113.9025,22.31386],[113.90239,22.31383],[113.90229,22.3138],[113.90218,22.31377],[113.90207,22.31374],[113.90196,22.3137],[113.90186,22.31366],[113.90175,22.31363],[113.90165,22.31359],[113.90127,22.31347],[113.90096,22.31337],[113.9009,22.31335],[113.9008,22.31332],[113.90072,22.31329],[113.90062,22.31326],[113.90054,22.31323],[113.90045,22.3132],[113.90036,22.31317],[113.90026,22.31314],[113.90018,22.31312],[113.9001,22.3131],[113.90001,22.31307],[113.89992,22.31304],[113.89981,22.31301],[113.89972,22.31297],[113.89962,22.31294],[113.89952,22.31291],[113.89943,22.31288],[113.89933,22.31285],[113.89923,22.31282],[113.89913,22.31279],[113.89904,22.31276],[113.89895,22.31273],[113.89886,22.3127],[113.89878,22.31267],[113.89869,22.31263],[113.89859,22.31261],[113.8985,22.31258],[113.89841,22.31254],[113.89832,22.31252],[113.89824,22.31249],[113.89817,22.31247],[113.89813,22.31246],[113.89805,22.31244],[113.89798,22.31241],[113.8979,22.31239],[113.89782,22.31236],[113.89774,22.31233],[113.89767,22.31231],[113.89766,22.31231],[113.89759,22.31228],[113.89751,22.31226],[113.89744,22.31223],[113.89736,22.31221],[113.89729,22.31219],[113.89724,22.31217],[113.89723,22.31217],[113.8971,22.31211],[113.89701,22.31209],[113.89692,22.31207],[113.89683,22.31204],[113.89673,22.312],[113.89664,22.31197],[113.89655,22.31194],[113.89646,22.31191],[113.89639,22.31189],[113.89629,22.31186],[113.8962,22.31183],[113.8961,22.3118],[113.89601,22.31177],[113.89591,22.31174],[113.89582,22.31171],[113.89574,22.31168],[113.89566,22.31165],[113.89556,22.31162],[113.89547,22.31159],[113.89538,22.31156],[113.89531,22.31153],[113.89529,22.31153],[113.89518,22.3115],[113.8951,22.31148],[113.89501,22.31145],[113.89493,22.31143],[113.89484,22.31139],[113.89475,22.31136],[113.89465,22.31133],[113.89455,22.3113],[113.89446,22.31127],[113.89439,22.31125],[113.89434,22.31123],[113.89424,22.3112],[113.89413,22.31117],[113.89403,22.31113],[113.89392,22.3111],[113.89382,22.31107],[113.89381,22.31107],[113.89373,22.31104],[113.89363,22.31101],[113.89354,22.31099],[113.89344,22.31096],[113.89335,22.31092],[113.89329,22.31088],[113.89327,22.31088],[113.8932,22.31082],[113.89311,22.31077],[113.89304,22.3107],[113.89296,22.31063],[113.8929,22.31057],[113.89285,22.3105],[113.8928,22.31044],[113.89276,22.31038],[113.89275,22.31038],[113.89271,22.3103],[113.89267,22.31022],[113.89264,22.31014],[113.89261,22.31005],[113.89259,22.30996],[113.89256,22.30986],[113.89255,22.30976],[113.89254,22.30971],[113.89254,22.30967],[113.89254,22.30958],[113.89254,22.30948],[113.89255,22.30937],[113.89257,22.30927],[113.8926,22.30918],[113.8926,22.30917],[113.89264,22.30908],[113.89264,22.30907],[113.89268,22.30898],[113.89273,22.3089],[113.89278,22.30881],[113.89283,22.30874],[113.89288,22.30866],[113.89289,22.30866],[113.89294,22.3086],[113.89301,22.30853],[113.89309,22.30847],[113.89317,22.30842],[113.89317,22.30842],[113.89325,22.30837],[113.89334,22.30832],[113.89342,22.30828],[113.89343,22.30828],[113.89351,22.30825],[113.89361,22.30822],[113.89371,22.30818],[113.89371,22.30818],[113.89381,22.30816],[113.89391,22.30814],[113.89392,22.30813],[113.894,22.3081],[113.89401,22.3081],[113.8941,22.30807],[113.89421,22.30804],[113.89432,22.30801],[113.89443,22.30799],[113.89453,22.30796],[113.89463,22.30793],[113.89474,22.30791],[113.89485,22.3079],[113.89494,22.30787],[113.89506,22.30783],[113.89516,22.3078],[113.89527,22.30777],[113.89538,22.30775],[113.8955,22.30772],[113.8956,22.3077],[113.89568,22.30769],[113.89577,22.30764],[113.89585,22.3076],[113.89595,22.30756],[113.89602,22.3075],[113.89609,22.30744],[113.89615,22.30737],[113.89621,22.30729],[113.89625,22.30719],[113.89629,22.30711],[113.8963,22.30709],[113.89633,22.30701],[113.89636,22.30692],[113.8964,22.30682],[113.89644,22.30673],[113.89647,22.30663],[113.8965,22.30653],[113.89653,22.30645],[113.89656,22.30637],[113.89659,22.30628],[113.89662,22.30619],[113.89665,22.30612],[113.89682,22.3057],[113.89684,22.30563],[113.89686,22.30556],[113.89689,22.3055],[113.89692,22.30544],[113.89694,22.30539],[113.89694,22.30535],[113.89694,22.3053],[113.89693,22.30527],[113.8969,22.30525],[113.89686,22.30524],[113.89686,22.30524],[113.89683,22.30518],[113.89683,22.30518],[113.89683,22.30518],[113.89683,22.30518],[113.89668,22.30513],[113.89673,22.30501],[113.89679,22.30482],[113.89695,22.30439],[113.89701,22.30424],[113.89705,22.30426],[113.89705,22.30426],[113.89715,22.30429],[113.89736,22.30436],[113.89748,22.30404],[113.89763,22.30365],[113.89766,22.30356],[113.89767,22.30353],[113.89769,22.3035],[113.89811,22.30236],[113.89813,22.3023],[113.89811,22.30228],[113.8981,22.30225],[113.89811,22.30221],[113.89814,22.30215],[113.89815,22.3021],[113.89816,22.30203],[113.89817,22.30197],[113.89818,22.3019],[113.89818,22.30182],[113.89817,22.30175],[113.89817,22.30168],[113.89815,22.30161],[113.89813,22.30155],[113.89811,22.30147],[113.89809,22.30142],[113.89809,22.30142],[113.89808,22.3014],[113.89804,22.30134],[113.89801,22.30127],[113.89797,22.30121],[113.89792,22.30116],[113.89788,22.3011],[113.89784,22.30105],[113.8978,22.301],[113.89775,22.30095],[113.89772,22.3009],[113.89769,22.30085],[113.89768,22.30084],[113.89765,22.30079],[113.89758,22.3007],[113.89758,22.30069],[113.89745,22.30054],[113.89735,22.3004],[113.89722,22.30024],[113.8971,22.30009],[113.89698,22.29994],[113.89687,22.29978],[113.89668,22.29956],[113.89656,22.29941],[113.89629,22.29905],[113.8961,22.2988],[113.89592,22.29859],[113.89577,22.29838],[113.89558,22.29814],[113.89549,22.29804],[113.89532,22.29782],[113.89517,22.29764],[113.89504,22.29746],[113.8949,22.29729],[113.89475,22.29711],[113.89464,22.29697],[113.89452,22.2968],[113.8944,22.29665],[113.8943,22.29654],[113.89425,22.29645],[113.89419,22.29635],[113.89414,22.29627],[113.89407,22.29616],[113.89404,22.29603],[113.894,22.29587],[113.89399,22.2957],[113.89396,22.29558],[113.89396,22.29547],[113.89399,22.29532],[113.89399,22.29528],[113.894,22.2952],[113.89404,22.29508],[113.89408,22.29494],[113.89408,22.29493],[113.89414,22.2948],[113.89419,22.29471],[113.89425,22.29462],[113.89436,22.29445],[113.89454,22.29427],[113.89472,22.29412],[113.89485,22.29403],[113.89494,22.29398],[113.89512,22.2939],[113.89527,22.29383],[113.8954,22.29379],[113.89555,22.29376],[113.89574,22.29374],[113.89592,22.29374],[113.89607,22.29374],[113.89621,22.29374],[113.89645,22.29375],[113.89665,22.29374],[113.897,22.29374],[113.89725,22.29374],[113.8974,22.29374],[113.89759,22.29373],[113.8977,22.29374],[113.89778,22.29374],[113.8983,22.29372],[113.89861,22.29373],[113.89872,22.29373],[113.89884,22.29372],[113.89897,22.29372],[113.89907,22.29374],[113.89913,22.29375],[113.89916,22.29376],[113.89928,22.2938],[113.89937,22.29383],[113.89945,22.29384],[113.89951,22.29387],[113.89964,22.2939],[113.89973,22.29393],[113.89982,22.29396],[113.89991,22.29399],[113.89999,22.29402],[113.90006,22.29405],[113.90012,22.29407],[113.90017,22.29409],[113.9002,22.29411],[113.90026,22.29413],[113.90036,22.29417],[113.90045,22.29419],[113.90052,22.2942],[113.90057,22.29421],[113.90065,22.29422],[113.90069,22.29423],[113.90078,22.29425],[113.90085,22.29428],[113.90093,22.2943],[113.90101,22.29433],[113.90109,22.29435],[113.90115,22.29436],[113.9012,22.29438],[113.90129,22.29439],[113.90138,22.29442],[113.90148,22.29444],[113.90158,22.29446],[113.90166,22.29449],[113.90172,22.2945],[113.90178,22.29451],[113.90186,22.29453],[113.90195,22.29455],[113.90205,22.29457],[113.90215,22.29459],[113.90226,22.29462],[113.90236,22.29464],[113.90245,22.29467],[113.90255,22.29469],[113.90269,22.29472],[113.90276,22.29473],[113.90287,22.29475],[113.90308,22.2948],[113.90319,22.29482],[113.90332,22.29484],[113.90344,22.29486],[113.90357,22.29488],[113.90372,22.2949],[113.90385,22.29493],[113.90399,22.29495],[113.9041,22.29497],[113.90423,22.29498],[113.90435,22.295],[113.9045,22.29502],[113.90461,22.29503],[113.90475,22.29505],[113.90487,22.29507],[113.90498,22.29508],[113.905,22.29508],[113.9051,22.29509],[113.90522,22.29511],[113.90533,22.29512],[113.90545,22.29514],[113.90558,22.29514],[113.90573,22.29516],[113.90584,22.29517],[113.90595,22.29518],[113.90609,22.29519],[113.90622,22.29521],[113.90636,22.29522],[113.9065,22.29523],[113.90661,22.29524],[113.90675,22.29525],[113.90687,22.29525],[113.90707,22.29527],[113.90729,22.29528],[113.90754,22.29529],[113.90776,22.2953],[113.90777,22.2953],[113.90804,22.29531],[113.90831,22.29532],[113.90878,22.29532],[113.90929,22.29532],[113.90929,22.29532],[113.90934,22.29532],[113.90941,22.29532],[113.90948,22.29532],[113.90956,22.29532],[113.90965,22.29532],[113.90974,22.29532],[113.90984,22.29532],[113.90992,22.29532],[113.91,22.29532],[113.91009,22.29532],[113.91017,22.29532],[113.91027,22.29533],[113.91035,22.29532],[113.91043,22.29532],[113.91051,22.29532],[113.91061,22.29532],[113.9107,22.29532],[113.9108,22.29532],[113.91089,22.29533],[113.91097,22.29533],[113.91107,22.29533],[113.91116,22.29532],[113.91126,22.29532],[113.91135,22.29533],[113.91145,22.29533],[113.91155,22.29533],[113.91165,22.29532],[113.91175,22.29532],[113.91187,22.29532],[113.91198,22.29533],[113.91207,22.29533],[113.91218,22.29533],[113.91226,22.29533],[113.91228,22.29533],[113.91237,22.29533],[113.91248,22.29534],[113.91259,22.29533],[113.91268,22.29533],[113.91276,22.29533],[113.91285,22.29533],[113.91295,22.29533],[113.91301,22.29533],[113.91307,22.29533],[113.91312,22.29534],[113.91315,22.29535],[113.91327,22.29535],[113.91415,22.29535],[113.91439,22.29535],[113.91442,22.29535],[113.91442,22.29535],[113.91591,22.29536],[113.916,22.29535],[113.91605,22.29535],[113.91615,22.29534],[113.91615,22.29534],[113.91621,22.29534],[113.91629,22.29534],[113.91636,22.29534],[113.91642,22.29533],[113.91649,22.29532],[113.91651,22.29531],[113.91657,22.29531],[113.91664,22.29529],[113.91671,22.29527],[113.91679,22.29525],[113.91687,22.29523],[113.91695,22.29521],[113.91702,22.29519],[113.9171,22.29516],[113.91717,22.29514],[113.91724,22.29512],[113.91732,22.2951],[113.9174,22.29509],[113.91748,22.29507],[113.91756,22.29504],[113.91763,22.29501],[113.91771,22.29499],[113.91779,22.29498],[113.91787,22.29495],[113.91795,22.29493],[113.91801,22.29491],[113.91809,22.29488],[113.91817,22.29485],[113.91823,22.29483],[113.91829,22.29482],[113.91833,22.2948],[113.91839,22.29478],[113.91847,22.29476],[113.91854,22.29474],[113.91862,22.29471],[113.91868,22.29469],[113.91874,22.29468],[113.9188,22.29465],[113.91888,22.29463],[113.91894,22.29461],[113.919,22.29459],[113.91906,22.29458],[113.91912,22.29456],[113.91918,22.29454],[113.91924,22.29451],[113.91931,22.29449],[113.91939,22.29447],[113.91947,22.29445],[113.91954,22.29443],[113.91954,22.29443],[113.9196,22.29441],[113.91967,22.29439],[113.91974,22.29437],[113.9198,22.29436],[113.91987,22.29434],[113.91992,22.29433],[113.91996,22.29431],[113.91997,22.29431],[113.9204,22.29418],[113.92062,22.29412],[113.92086,22.29404],[113.92112,22.29397],[113.92139,22.29389],[113.92162,22.29382],[113.92185,22.29374],[113.92206,22.29368],[113.92233,22.2936],[113.92252,22.29355],[113.92278,22.29347],[113.92304,22.2934],[113.92328,22.29332],[113.92352,22.29324],[113.92372,22.29318],[113.92393,22.29312],[113.92416,22.29305],[113.92436,22.29299],[113.92462,22.29291],[113.92487,22.29284],[113.92513,22.29276],[113.9254,22.29268],[113.92574,22.29256],[113.92572,22.29246],[113.92888,22.29151],[113.929,22.29151],[113.92907,22.2916],[113.93022,22.29125],[113.9316,22.29084],[113.93159,22.29075],[113.93163,22.29069],[113.93196,22.29058],[113.93256,22.29018],[113.93261,22.29026],[113.93284,22.29033],[113.93394,22.29057],[113.9341,22.2907],[113.93421,22.29085],[113.93422,22.29085],[113.93447,22.29099],[113.93446,22.29102],[113.93447,22.29103],[113.93445,22.29111],[113.93454,22.29122],[113.93454,22.29134],[113.93475,22.2915],[113.93484,22.29162],[113.93511,22.29172],[113.93512,22.29185],[113.93544,22.29207],[113.93559,22.29227],[113.93573,22.29234],[113.93596,22.29274],[113.93605,22.2928],[113.93609,22.29285],[113.93629,22.29293],[113.93643,22.29305],[113.93656,22.29316],[113.93663,22.29315],[113.93668,22.29319],[113.93669,22.29327],[113.93681,22.2934],[113.93688,22.29338],[113.93698,22.29342],[113.93758,22.29401],[113.93782,22.29424],[113.93787,22.29429],[113.93799,22.29441],[113.93838,22.2948],[113.93776,22.29592],[113.93746,22.29667],[113.93726,22.29751],[113.9373,22.29766],[113.93727,22.29802],[113.93712,22.29828],[113.93716,22.2983],[113.93715,22.29835],[113.93708,22.29837],[113.93708,22.29841],[113.93713,22.29852],[113.93721,22.29857],[113.93715,22.29861],[113.93718,22.29871],[113.93711,22.29872],[113.93705,22.29882],[113.93688,22.2992],[113.93682,22.29927],[113.93666,22.29945],[113.9366,22.29958],[113.93659,22.29971],[113.93664,22.29987],[113.93679,22.30014],[113.93701,22.30033],[113.93699,22.30044],[113.93704,22.30062],[113.93702,22.30067],[113.93701,22.30074],[113.937,22.30076],[113.93687,22.30092],[113.93691,22.30096],[113.93689,22.30104],[113.9368,22.30106],[113.93667,22.30115],[113.93668,22.30131],[113.93686,22.30166],[113.93727,22.30216],[113.93798,22.30235],[113.93861,22.30264],[113.93909,22.30265],[113.9396,22.30291],[113.93979,22.30315],[113.93996,22.30323],[113.94027,22.30359],[113.94026,22.30361],[113.94019,22.30364],[113.94018,22.30365],[113.9402,22.30373],[113.94026,22.30375],[113.94028,22.30377],[113.94027,22.30379],[113.94024,22.30379],[113.94019,22.30378],[113.94014,22.30385],[113.94012,22.30387],[113.94006,22.30386],[113.93995,22.30382],[113.93991,22.30381],[113.93985,22.30385],[113.93983,22.30388],[113.93981,22.30394],[113.93979,22.30396],[113.9398,22.30398],[113.93974,22.30399],[113.93973,22.304],[113.93973,22.30402],[113.93973,22.30406],[113.93975,22.30411],[113.93976,22.30415],[113.93978,22.30422],[113.9398,22.30425],[113.93981,22.30428],[113.9398,22.30431],[113.93979,22.30435],[113.93977,22.30451],[113.93977,22.30456],[113.93982,22.3046],[113.93982,22.30461],[113.93981,22.30463],[113.9398,22.30464],[113.93979,22.30466],[113.93977,22.30472],[113.93952,22.30491],[113.93932,22.30495],[113.93928,22.30501],[113.93928,22.30506],[113.93927,22.30509],[113.93894,22.30527],[113.93889,22.30532],[113.93887,22.30537],[113.93885,22.30545],[113.93884,22.30555],[113.93886,22.30572],[113.93893,22.30585],[113.93893,22.30588],[113.93891,22.30592],[113.93892,22.30596],[113.93894,22.30597],[113.93898,22.30596],[113.939,22.30597],[113.93899,22.30599],[113.93895,22.306],[113.93894,22.30604],[113.93891,22.30607],[113.93898,22.30624],[113.93885,22.30644],[113.93878,22.30682],[113.93886,22.30689],[113.93891,22.30701],[113.93896,22.30699],[113.939,22.30701],[113.939,22.30721],[113.9391,22.30755],[113.93902,22.30771],[113.93904,22.30789],[113.93904,22.30803],[113.93892,22.3081],[113.93892,22.30848],[113.9391,22.30874],[113.93916,22.3089],[113.93945,22.30918],[113.93954,22.30935],[113.93958,22.30945],[113.93961,22.30976],[113.9396,22.30988],[113.93955,22.31012],[113.93958,22.31028],[113.93957,22.31037],[113.93965,22.3105],[113.93966,22.31062],[113.93975,22.31074],[113.93979,22.31089],[113.94011,22.31146],[113.94029,22.31163],[113.94041,22.31168],[113.94044,22.31171],[113.94049,22.3118],[113.9405,22.31181],[113.94058,22.31183],[113.94059,22.31184],[113.94073,22.31186],[113.9409,22.31184],[113.94119,22.31177],[113.94132,22.3119],[113.94144,22.312],[113.94152,22.31205],[113.94161,22.31212],[113.94167,22.31216],[113.94184,22.31227],[113.94199,22.31235],[113.94201,22.31237],[113.94218,22.31244],[113.94243,22.31253],[113.94253,22.31256],[113.94285,22.31263],[113.9434,22.31273],[113.94447,22.31292],[113.94506,22.31303],[113.94535,22.31308],[113.94556,22.31312],[113.94653,22.31348],[113.94755,22.31376],[113.94851,22.31376],[113.94998,22.31338],[113.95121,22.31299],[113.95244,22.31232],[113.95384,22.31151],[113.95495,22.31121],[113.95639,22.3108],[113.95735,22.31058],[113.95773,22.31055],[113.95808,22.31066],[113.95866,22.31111],[113.95884,22.31127],[113.95884,22.31127],[113.95884,22.31127],[113.95904,22.31145],[113.95921,22.31177],[113.96175,22.31971],[113.96192,22.32136],[113.96198,22.32292],[113.96183,22.32327],[113.96157,22.32346],[113.96119,22.32348],[113.96077,22.3234],[113.96054,22.32305],[113.96037,22.32087],[113.96026,22.32047],[113.95988,22.32033],[113.95938,22.32041],[113.9511,22.32258],[113.95043,22.32255],[113.94988,22.32228],[113.94951,22.32183],[113.94922,22.32091],[113.94922,22.32091],[113.94746,22.31536],[113.947,22.31484],[113.94627,22.31446],[113.94535,22.31429],[113.94428,22.3141],[113.94376,22.314],[113.94327,22.31391],[113.94281,22.31395],[113.94261,22.31408],[113.94238,22.31424],[113.94365,22.31597],[113.94421,22.31857],[113.94497,22.31842],[113.94499,22.31852],[113.94423,22.31866],[113.94432,22.31907],[113.9444,22.31911],[113.94451,22.31928],[113.94471,22.31924],[113.94472,22.31928],[113.94452,22.31932],[113.94455,22.31941],[113.94477,22.3196],[113.9449,22.31974],[113.945,22.31975],[113.94514,22.31981],[113.9451,22.31994],[113.94495,22.31996],[113.94489,22.32003],[113.9448,22.32014],[113.94478,22.32019],[113.94481,22.32025],[113.94481,22.32034],[113.94498,22.32042],[113.94504,22.32039],[113.94597,22.32039],[113.94606,22.31977],[113.94606,22.31964],[113.946,22.31951],[113.9458,22.31949],[113.94578,22.31949],[113.94577,22.31947],[113.94576,22.31946],[113.94576,22.31945],[113.94578,22.31942],[113.9458,22.31942],[113.94606,22.31941],[113.94609,22.31944],[113.94619,22.31976],[113.94619,22.3198],[113.9461,22.32042],[113.94595,22.3208],[113.94586,22.32086],[113.94574,22.32087],[113.94571,22.32095],[113.94572,22.321],[113.94581,22.32099],[113.94598,22.32282],[113.94587,22.32283],[113.94583,22.32287],[113.94568,22.32291],[113.94574,22.32316],[113.94574,22.3232],[113.94571,22.32327],[113.94568,22.32331],[113.94565,22.32334],[113.94537,22.32346],[113.94526,22.32347],[113.94516,22.32346],[113.9451,22.3235],[113.94509,22.32355],[113.94506,22.32362],[113.94503,22.32366],[113.94501,22.32368],[113.945,22.32368],[113.94496,22.32369],[113.94497,22.32377],[113.94474,22.32379],[113.94473,22.32373],[113.9447,22.32372],[113.94468,22.32371],[113.94466,22.3237],[113.94465,22.32368],[113.94462,22.32366],[113.94461,22.32365],[113.94458,22.32358],[113.9445,22.32355],[113.94448,22.32354],[113.94441,22.32345],[113.94436,22.3234],[113.94433,22.32338],[113.94431,22.32335],[113.94426,22.32332],[113.94421,22.3233],[113.94419,22.32328],[113.94416,22.32325],[113.94416,22.32323],[113.94415,22.32321],[113.94399,22.32311],[113.94382,22.32299],[113.94361,22.32264],[113.94239,22.3224],[113.94157,22.32228],[113.94097,22.32214],[113.93929,22.32183],[113.9362,22.32084],[113.9359,22.32078],[113.93569,22.32085],[113.93556,22.32105],[113.93539,22.3215],[113.93533,22.32179],[113.93529,22.32184],[113.93467,22.32343],[113.93459,22.32339],[113.93456,22.32346]]],[[[113.979,22.3269],[113.97897,22.32699],[113.97895,22.32733],[113.97883,22.32744],[113.9786,22.32742],[113.97847,22.32728],[113.97841,22.32725],[113.97845,22.32703],[113.97854,22.32697],[113.97861,22.32686],[113.97883,22.32688],[113.9789,22.32675],[113.9789,22.32655],[113.97902,22.32647],[113.9792,22.32652],[113.97935,22.32666],[113.9793,22.32676],[113.97916,22.32674],[113.979,22.3269]]],[[[114.05898,22.32954],[114.05908,22.32958],[114.05911,22.3296],[114.05906,22.32968],[114.05896,22.32972],[114.05884,22.32976],[114.0585,22.32978],[114.05845,22.32977],[114.05826,22.32971],[114.05825,22.32967],[114.0584,22.32957],[114.05856,22.32955],[114.05883,22.32952],[114.05898,22.32954]]],[[[113.96788,22.33152],[113.96745,22.33171],[113.96718,22.33191],[113.96708,22.33202],[113.9669,22.3321],[113.96678,22.33217],[113.96666,22.33223],[113.96655,22.33224],[113.96651,22.33228],[113.96633,22.33256],[113.96617,22.33279],[113.96604,22.33296],[113.96601,22.33339],[113.96603,22.33349],[113.96612,22.33359],[113.96614,22.33375],[113.96597,22.33375],[113.96591,22.33371],[113.96573,22.33357],[113.96539,22.33344],[113.96528,22.33318],[113.96525,22.33302],[113.96523,22.33285],[113.96522,22.33272],[113.96522,22.33254],[113.96522,22.33245],[113.96517,22.33208],[113.96514,22.33193],[113.96512,22.33175],[113.9651,22.33162],[113.9651,22.33148],[113.9651,22.33128],[113.96507,22.33112],[113.96504,22.33087],[113.96504,22.33063],[113.96499,22.33046],[113.96497,22.33029],[113.96498,22.33014],[113.96516,22.32951],[113.96524,22.32934],[113.96572,22.32915],[113.96627,22.32908],[113.96655,22.32887],[113.96671,22.32885],[113.96685,22.32887],[113.96712,22.32905],[113.96752,22.32956],[113.96798,22.32988],[113.96807,22.32999],[113.96837,22.33035],[113.96861,22.3306],[113.96891,22.331],[113.96904,22.33137],[113.96869,22.33153],[113.96815,22.33148],[113.96788,22.33152]]],[[[114.02261,22.33623],[114.02254,22.33628],[114.02248,22.33632],[114.02234,22.33634],[114.02212,22.33631],[114.02207,22.33625],[114.02208,22.33614],[114.02209,22.33607],[114.02244,22.33566],[114.02245,22.3355],[114.02248,22.33538],[114.02255,22.33519],[114.02269,22.33521],[114.02276,22.33507],[114.023,22.335],[114.02336,22.33481],[114.0235,22.33452],[114.02345,22.33445],[114.02369,22.33419],[114.02374,22.33407],[114.02374,22.33393],[114.02385,22.33378],[114.02379,22.3337],[114.02374,22.33343],[114.02378,22.3333],[114.02409,22.33311],[114.02437,22.33317],[114.02445,22.33324],[114.02447,22.33331],[114.0241,22.33377],[114.02412,22.3339],[114.02402,22.33434],[114.02411,22.33445],[114.02407,22.33464],[114.02412,22.33476],[114.0242,22.33467],[114.02426,22.33469],[114.02406,22.33504],[114.02377,22.33516],[114.02376,22.3353],[114.02385,22.33534],[114.02381,22.3355],[114.02384,22.33571],[114.02365,22.33578],[114.02354,22.33574],[114.02341,22.33577],[114.02338,22.33577],[114.02334,22.33577],[114.02328,22.33583],[114.02313,22.33596],[114.02276,22.33616],[114.02268,22.33615],[114.02261,22.33623]]],[[[113.98103,22.33831],[113.98099,22.33829],[113.98094,22.33824],[113.9809,22.33823],[113.98088,22.33821],[113.9809,22.33818],[113.98097,22.33812],[113.98102,22.33814],[113.98108,22.33824],[113.98108,22.33829],[113.98105,22.33829],[113.98103,22.33831]]],[[[113.98336,22.34048],[113.98328,22.3405],[113.98257,22.34018],[113.98248,22.34032],[113.98253,22.34036],[113.98248,22.34043],[113.98232,22.34034],[113.98238,22.34026],[113.98244,22.3403],[113.98254,22.34016],[113.98241,22.34008],[113.98229,22.33994],[113.98213,22.33966],[113.9819,22.33939],[113.98148,22.33837],[113.98137,22.33825],[113.98119,22.33816],[113.98116,22.33785],[113.9808,22.337],[113.98037,22.33564],[113.98025,22.33489],[113.98031,22.33479],[113.98033,22.33449],[113.98043,22.33405],[113.98058,22.3339],[113.98074,22.33386],[113.98093,22.33393],[113.98104,22.33404],[113.98118,22.33436],[113.98159,22.33503],[113.98219,22.33569],[113.98262,22.33631],[113.98277,22.33662],[113.98337,22.33823],[113.98359,22.33861],[113.98362,22.33912],[113.98359,22.33938],[113.98358,22.33947],[113.98348,22.34011],[113.98336,22.34048]]],[[[114.06241,22.34132],[114.06237,22.34129],[114.06239,22.34121],[114.06225,22.34125],[114.06216,22.34122],[114.06216,22.34118],[114.06213,22.34117],[114.06239,22.34101],[114.06237,22.34099],[114.06233,22.341],[114.06219,22.34109],[114.0621,22.34113],[114.06208,22.34111],[114.06211,22.34098],[114.06207,22.34093],[114.06158,22.34081],[114.06144,22.34068],[114.06163,22.34062],[114.06181,22.34051],[114.06187,22.34032],[114.06178,22.34028],[114.06176,22.34018],[114.06182,22.34017],[114.06186,22.34021],[114.06205,22.34026],[114.06216,22.34016],[114.0622,22.34006],[114.06208,22.33999],[114.06199,22.34],[114.06196,22.33998],[114.06203,22.33993],[114.06196,22.33981],[114.06201,22.33977],[114.062,22.33969],[114.06208,22.33959],[114.06205,22.33951],[114.06215,22.33937],[114.0621,22.33932],[114.06238,22.33915],[114.06251,22.33923],[114.06267,22.33913],[114.06291,22.33907],[114.06312,22.3391],[114.06319,22.33915],[114.06344,22.33916],[114.06359,22.33928],[114.06354,22.33942],[114.06368,22.33949],[114.0638,22.33956],[114.06389,22.33963],[114.06387,22.33967],[114.06381,22.33966],[114.06376,22.33975],[114.06392,22.33991],[114.06387,22.34002],[114.0636,22.34009],[114.0635,22.34009],[114.06337,22.34004],[114.06308,22.34017],[114.06298,22.34026],[114.06289,22.34042],[114.06283,22.34067],[114.06278,22.34071],[114.06277,22.34085],[114.06267,22.34093],[114.06259,22.34093],[114.06251,22.34099],[114.06249,22.34099],[114.06242,22.34105],[114.06246,22.34107],[114.06251,22.34102],[114.06255,22.34102],[114.06257,22.341],[114.06259,22.34102],[114.06259,22.34104],[114.06248,22.34113],[114.06248,22.34116],[114.06258,22.34111],[114.06269,22.34113],[114.06258,22.34125],[114.0625,22.3412],[114.06241,22.34132]]],[[[114.0466,22.34682],[114.04655,22.34684],[114.04651,22.34686],[114.0464,22.3469],[114.04614,22.34705],[114.04604,22.34718],[114.04597,22.34733],[114.04588,22.34745],[114.04582,22.34749],[114.04573,22.34753],[114.04564,22.34754],[114.04556,22.34754],[114.0455,22.34751],[114.04542,22.34746],[114.04522,22.34731],[114.04509,22.34727],[114.04504,22.34714],[114.04469,22.34698],[114.04463,22.34692],[114.04455,22.34674],[114.04442,22.34668],[114.0444,22.34662],[114.04447,22.34632],[114.0446,22.34609],[114.04458,22.34601],[114.04452,22.34579],[114.04441,22.34568],[114.04441,22.34559],[114.04446,22.34555],[114.04417,22.34549],[114.0442,22.34534],[114.04417,22.34519],[114.04425,22.34511],[114.04422,22.34478],[114.04427,22.34464],[114.04447,22.3445],[114.04452,22.34434],[114.04461,22.34427],[114.04461,22.34405],[114.04459,22.34402],[114.04462,22.34391],[114.04462,22.3437],[114.04451,22.34365],[114.04468,22.34339],[114.04464,22.34337],[114.04464,22.34337],[114.04457,22.34333],[114.04457,22.34333],[114.04452,22.3433],[114.0445,22.34327],[114.04448,22.34324],[114.04449,22.34321],[114.04364,22.34291],[114.0434,22.34349],[114.04344,22.3435],[114.04342,22.34356],[114.04333,22.34353],[114.04355,22.34298],[114.04339,22.34292],[114.04322,22.34334],[114.04316,22.34347],[114.04303,22.34342],[114.04322,22.34295],[114.04329,22.34279],[114.04322,22.34276],[114.04206,22.34236],[114.04212,22.34222],[114.04198,22.34211],[114.0419,22.34191],[114.0418,22.3411],[114.04174,22.34095],[114.04164,22.34091],[114.04136,22.34091],[114.04126,22.34097],[114.04128,22.34111],[114.04006,22.34123],[114.04001,22.3406],[114.03966,22.3406],[114.03933,22.34052],[114.03933,22.34045],[114.03955,22.34026],[114.03956,22.34019],[114.03917,22.33971],[114.03889,22.3399],[114.03843,22.33933],[114.03862,22.3392],[114.03837,22.33888],[114.03756,22.33845],[114.03734,22.33832],[114.03414,22.3366],[114.03317,22.33599],[114.03191,22.3365],[114.03179,22.33654],[114.03159,22.33659],[114.0314,22.3366],[114.0312,22.33659],[114.031,22.33655],[114.03079,22.33648],[114.03055,22.33635],[114.03042,22.33624],[114.03028,22.3361],[114.03021,22.33599],[114.02973,22.33526],[114.02959,22.33505],[114.02939,22.33481],[114.02914,22.33453],[114.02867,22.33409],[114.02788,22.33335],[114.02748,22.33298],[114.02742,22.3329],[114.02737,22.33281],[114.02736,22.33273],[114.02736,22.33265],[114.02739,22.33257],[114.02741,22.33252],[114.02758,22.33224],[114.02762,22.33216],[114.02763,22.3321],[114.02763,22.33202],[114.02748,22.33141],[114.02745,22.33126],[114.02743,22.33116],[114.02737,22.33094],[114.02729,22.33072],[114.02723,22.33066],[114.0271,22.33052],[114.02708,22.33048],[114.0264,22.32969],[114.02643,22.32962],[114.02514,22.32823],[114.02466,22.32778],[114.02384,22.32715],[114.02294,22.32661],[114.02218,22.32624],[114.0212,22.32587],[114.02103,22.32586],[114.02067,22.3259],[114.02067,22.32597],[114.02085,22.326],[114.02084,22.32613],[114.02062,22.32623],[114.02057,22.32628],[114.02055,22.32653],[114.02056,22.32659],[114.02082,22.32685],[114.02097,22.32699],[114.02116,22.32707],[114.02131,22.3272],[114.02154,22.32731],[114.02175,22.32746],[114.02184,22.32755],[114.02191,22.3278],[114.02193,22.32792],[114.02208,22.32814],[114.02211,22.32828],[114.0222,22.32837],[114.02224,22.32849],[114.0225,22.3287],[114.02264,22.32876],[114.02267,22.32874],[114.02271,22.32876],[114.0228,22.32882],[114.02279,22.32883],[114.02284,22.32886],[114.0228,22.3289],[114.02275,22.32889],[114.02268,22.32886],[114.02265,22.32886],[114.02262,22.32888],[114.0226,22.32889],[114.02256,22.32897],[114.02251,22.32906],[114.02245,22.32925],[114.02244,22.32933],[114.02247,22.3294],[114.02259,22.3296],[114.02263,22.32965],[114.02272,22.32972],[114.02275,22.32973],[114.02276,22.32975],[114.02279,22.32978],[114.02279,22.3298],[114.0228,22.32995],[114.0228,22.33],[114.0228,22.33006],[114.02281,22.33009],[114.02285,22.33014],[114.02286,22.33017],[114.02285,22.33019],[114.02284,22.33024],[114.02283,22.33036],[114.02283,22.33039],[114.02284,22.33043],[114.02285,22.33046],[114.02286,22.33047],[114.0229,22.33053],[114.02292,22.33056],[114.02294,22.33061],[114.02295,22.33065],[114.02295,22.33068],[114.02295,22.3307],[114.02294,22.33073],[114.02293,22.33076],[114.02291,22.33079],[114.02289,22.33085],[114.02287,22.33088],[114.02287,22.33093],[114.02287,22.33094],[114.02287,22.33096],[114.02288,22.33099],[114.02291,22.33108],[114.02294,22.33117],[114.02298,22.33118],[114.02301,22.3312],[114.02305,22.33123],[114.02309,22.33127],[114.0231,22.33128],[114.02312,22.33128],[114.02315,22.33128],[114.02321,22.33128],[114.02324,22.33127],[114.02326,22.33126],[114.0233,22.33126],[114.02333,22.33126],[114.02337,22.33126],[114.02342,22.33128],[114.02347,22.33131],[114.02348,22.33133],[114.02351,22.33138],[114.02353,22.3314],[114.02355,22.33142],[114.02357,22.33143],[114.02361,22.33146],[114.02365,22.33149],[114.02369,22.33152],[114.02372,22.33153],[114.02377,22.33153],[114.02381,22.33153],[114.02383,22.33154],[114.02389,22.33157],[114.02392,22.33158],[114.02394,22.3316],[114.02397,22.33162],[114.02398,22.33162],[114.02399,22.33163],[114.02401,22.33167],[114.02402,22.33171],[114.02404,22.33173],[114.02405,22.33175],[114.02406,22.33177],[114.02407,22.33176],[114.02408,22.33177],[114.0241,22.33179],[114.02409,22.3318],[114.0241,22.33181],[114.02407,22.33185],[114.02407,22.33188],[114.02407,22.3319],[114.02408,22.33194],[114.02408,22.33197],[114.02408,22.33198],[114.02408,22.33199],[114.02435,22.33182],[114.02431,22.33178],[114.02435,22.33176],[114.02439,22.33181],[114.02409,22.33202],[114.02409,22.33204],[114.0241,22.33206],[114.02413,22.33208],[114.02414,22.33209],[114.02418,22.33211],[114.02421,22.33213],[114.02424,22.33216],[114.02424,22.33216],[114.02426,22.33215],[114.02426,22.33214],[114.02434,22.33217],[114.02433,22.33226],[114.02435,22.33227],[114.02434,22.33233],[114.02432,22.33233],[114.0243,22.33233],[114.02429,22.33233],[114.02427,22.33237],[114.02422,22.33243],[114.0242,22.33247],[114.02418,22.33253],[114.02416,22.33256],[114.02413,22.33262],[114.02411,22.33265],[114.0241,22.33266],[114.02408,22.33267],[114.02405,22.33266],[114.02402,22.33265],[114.02399,22.33266],[114.02397,22.33268],[114.02394,22.33269],[114.02397,22.3327],[114.02396,22.33272],[114.02394,22.33273],[114.02387,22.33274],[114.0238,22.33268],[114.02377,22.33263],[114.02377,22.3326],[114.0238,22.33256],[114.02382,22.33255],[114.02367,22.33241],[114.02351,22.33228],[114.02337,22.33219],[114.02323,22.33212],[114.02312,22.33209],[114.02305,22.33209],[114.023,22.33211],[114.02252,22.33237],[114.02241,22.33234],[114.02245,22.33226],[114.02234,22.33222],[114.02233,22.33215],[114.02212,22.33205],[114.0219,22.332],[114.02155,22.33197],[114.02135,22.33199],[114.02094,22.33214],[114.0207,22.33234],[114.0205,22.33269],[114.02054,22.33295],[114.02049,22.33302],[114.02038,22.33304],[114.02023,22.33314],[114.02019,22.33336],[114.02015,22.33358],[114.02,22.33364],[114.01997,22.33355],[114.01975,22.3335],[114.01955,22.3332],[114.01946,22.33296],[114.01943,22.33288],[114.01924,22.33261],[114.01911,22.33245],[114.01893,22.3324],[114.01863,22.33208],[114.01852,22.33175],[114.01854,22.33136],[114.01851,22.3312],[114.01834,22.33098],[114.0181,22.33051],[114.01793,22.33025],[114.01765,22.33002],[114.01751,22.32984],[114.01713,22.32946],[114.01679,22.32927],[114.01647,22.32914],[114.01609,22.32903],[114.01572,22.32899],[114.01525,22.32908],[114.01498,22.32918],[114.0146,22.32916],[114.01439,22.3291],[114.01427,22.329],[114.01405,22.32903],[114.01396,22.32891],[114.01369,22.32878],[114.01319,22.3287],[114.01292,22.32865],[114.01262,22.32863],[114.01248,22.32859],[114.01245,22.32853],[114.01232,22.32848],[114.01216,22.32849],[114.01192,22.32839],[114.01181,22.32832],[114.01155,22.32814],[114.01138,22.32813],[114.01121,22.32797],[114.01105,22.32779],[114.01104,22.32763],[114.01113,22.32751],[114.01118,22.32736],[114.01128,22.32731],[114.01132,22.32724],[114.01149,22.32669],[114.01139,22.32664],[114.01132,22.32666],[114.01121,22.3267],[114.01115,22.32672],[114.01114,22.32671],[114.01114,22.3267],[114.01116,22.32665],[114.01129,22.32655],[114.01134,22.3265],[114.01137,22.32643],[114.0115,22.32635],[114.01153,22.32629],[114.01154,22.3262],[114.01157,22.32606],[114.01159,22.32601],[114.01165,22.32593],[114.01166,22.32589],[114.01166,22.32587],[114.01158,22.32563],[114.01147,22.32547],[114.01138,22.32541],[114.01128,22.32537],[114.01082,22.32525],[114.01058,22.32525],[114.01048,22.32526],[114.00917,22.32517],[114.00911,22.32516],[114.00902,22.32514],[114.00854,22.32495],[114.00844,22.32491],[114.00828,22.3247],[114.00807,22.3241],[114.00798,22.32399],[114.00684,22.3235],[114.0037,22.3221],[114.00334,22.32206],[114.00303,22.32173],[114.00301,22.32151],[114.00295,22.32149],[114.00287,22.32154],[114.00278,22.32141],[114.00218,22.32113],[114.00189,22.321],[114.00134,22.32082],[114.00125,22.32087],[114.00081,22.32072],[114.0004,22.32066],[114.00008,22.32083],[113.99966,22.32086],[113.99962,22.32094],[113.99939,22.3209],[113.99935,22.32089],[113.99935,22.32083],[113.9993,22.32077],[113.99908,22.32073],[113.99892,22.32064],[113.99887,22.32058],[113.99889,22.3205],[113.99885,22.32043],[113.99862,22.32019],[113.9985,22.31994],[113.99831,22.31979],[113.99811,22.31974],[113.99792,22.31973],[113.99732,22.31993],[113.99713,22.31991],[113.99711,22.31981],[113.99612,22.31872],[113.99637,22.31858],[113.99639,22.31848],[113.99699,22.31815],[113.9972,22.31734],[113.9961,22.3158],[113.99521,22.31477],[113.99473,22.31434],[113.99391,22.31366],[113.99384,22.31359],[113.99277,22.31272],[113.9923,22.31236],[113.99165,22.31194],[113.9914,22.31182],[113.99106,22.3117],[113.9909,22.31167],[113.99039,22.31163],[113.99019,22.31161],[113.98903,22.31146],[113.98685,22.31124],[113.98645,22.31114],[113.98567,22.31072],[113.98563,22.31067],[113.98563,22.31061],[113.9845,22.30996],[113.98444,22.30998],[113.98436,22.30997],[113.98199,22.30862],[113.98017,22.30757],[113.9797,22.30726],[113.9795,22.30704],[113.97892,22.30624],[113.97775,22.30457],[113.97725,22.30386],[113.97717,22.30377],[113.97708,22.30369],[113.97692,22.30358],[113.97683,22.30354],[113.97498,22.30248],[113.97461,22.30229],[113.97421,22.30209],[113.97412,22.30205],[113.97287,22.30143],[113.97158,22.30081],[113.97087,22.30048],[113.97075,22.30042],[113.97061,22.30037],[113.97048,22.30032],[113.97033,22.30027],[113.97001,22.30017],[113.96952,22.30002],[113.96905,22.29991],[113.96865,22.29978],[113.96855,22.29976],[113.96831,22.29968],[113.96824,22.29967],[113.96814,22.29968],[113.96805,22.2997],[113.96794,22.29971],[113.96789,22.2997],[113.96772,22.29966],[113.96776,22.29951],[113.96781,22.29934],[113.96782,22.29929],[113.96788,22.29905],[113.96793,22.29888],[113.96804,22.29847],[113.96809,22.29827],[113.97034,22.29881],[113.97048,22.29885],[113.97127,22.29906],[113.97255,22.29955],[113.97497,22.30057],[113.97554,22.30082],[113.97597,22.30101],[113.97617,22.30107],[113.97646,22.30117],[113.97693,22.30128],[113.97714,22.30132],[113.97733,22.30136],[113.97734,22.3014],[113.97739,22.30141],[113.97742,22.30138],[113.97759,22.30142],[113.97787,22.30146],[113.97877,22.30166],[113.97965,22.30183],[113.97968,22.30179],[113.97963,22.30164],[113.97964,22.30154],[113.97958,22.30151],[113.97956,22.30145],[113.97956,22.30137],[113.97961,22.30126],[113.9797,22.30117],[113.97969,22.30108],[113.97972,22.30099],[113.9797,22.30087],[113.97977,22.30082],[113.97979,22.30074],[113.97982,22.30042],[113.97992,22.30027],[113.98005,22.30015],[113.9802,22.29989],[113.98017,22.2997],[113.98021,22.29939],[113.98025,22.2991],[113.98035,22.29882],[113.9802,22.2985],[113.9803,22.29829],[113.98038,22.29828],[113.98039,22.29823],[113.98023,22.29821],[113.98019,22.29816],[113.98022,22.29801],[113.98031,22.29788],[113.98029,22.29766],[113.98011,22.2974],[113.97996,22.29683],[113.97989,22.29669],[113.97982,22.29645],[113.97971,22.29632],[113.97961,22.29627],[113.97959,22.29625],[113.97959,22.29623],[113.97959,22.29615],[113.97961,22.29609],[113.97961,22.29595],[113.97956,22.29581],[113.97949,22.29567],[113.97947,22.29565],[113.97946,22.29552],[113.97946,22.29547],[113.97949,22.29536],[113.97951,22.29534],[113.97954,22.2952],[113.9796,22.29502],[113.97958,22.29489],[113.97957,22.29484],[113.97956,22.2948],[113.97957,22.29462],[113.97957,22.29456],[113.97961,22.29449],[113.97961,22.29446],[113.9796,22.29443],[113.97957,22.29439],[113.97951,22.29436],[113.97949,22.29432],[113.97949,22.29419],[113.97942,22.29406],[113.97941,22.29403],[113.97943,22.29374],[113.9792,22.29352],[113.97921,22.29355],[113.97923,22.29361],[113.9793,22.29403],[113.9793,22.29413],[113.9793,22.29416],[113.97931,22.2942],[113.97932,22.29428],[113.97934,22.29436],[113.97935,22.29443],[113.97937,22.2945],[113.97937,22.29456],[113.97937,22.29458],[113.97937,22.29466],[113.97939,22.29469],[113.97941,22.29472],[113.97942,22.29476],[113.97941,22.29479],[113.97938,22.2948],[113.97936,22.29478],[113.97935,22.29476],[113.97932,22.29475],[113.97932,22.29496],[113.97926,22.295],[113.97925,22.2951],[113.97913,22.2952],[113.979,22.29524],[113.97859,22.29519],[113.97823,22.29503],[113.97808,22.29486],[113.97815,22.29452],[113.9782,22.29445],[113.97814,22.29443],[113.9781,22.29446],[113.97801,22.29483],[113.97785,22.29504],[113.97777,22.29523],[113.97767,22.29577],[113.97788,22.29578],[113.97798,22.29587],[113.97794,22.29617],[113.97777,22.29639],[113.97775,22.29664],[113.97775,22.29675],[113.97759,22.29677],[113.97739,22.29697],[113.9774,22.29703],[113.97752,22.29708],[113.97749,22.29717],[113.97753,22.29722],[113.97741,22.29743],[113.97726,22.29751],[113.97694,22.29758],[113.97686,22.29758],[113.97658,22.29742],[113.97628,22.29749],[113.97617,22.29745],[113.97599,22.29772],[113.97598,22.29789],[113.97619,22.29795],[113.97622,22.29786],[113.97638,22.29779],[113.97658,22.29797],[113.97665,22.2981],[113.97665,22.29833],[113.97682,22.29878],[113.97706,22.29899],[113.97725,22.29903],[113.97718,22.29928],[113.97722,22.29932],[113.9772,22.29934],[113.97699,22.29937],[113.9769,22.29942],[113.97682,22.29942],[113.97669,22.29934],[113.97663,22.29934],[113.9766,22.29941],[113.97654,22.29942],[113.97648,22.29937],[113.97651,22.29932],[113.97643,22.29916],[113.97654,22.29907],[113.97646,22.29888],[113.9763,22.29878],[113.97594,22.29873],[113.97589,22.29875],[113.97579,22.29898],[113.97571,22.29904],[113.97556,22.29908],[113.97554,22.29915],[113.97543,22.29916],[113.97536,22.29908],[113.97529,22.29912],[113.97523,22.29917],[113.97518,22.29924],[113.97496,22.29917],[113.97494,22.2991],[113.97483,22.29903],[113.97468,22.29902],[113.97455,22.29893],[113.97446,22.29891],[113.97436,22.29882],[113.97411,22.29875],[113.97375,22.2988],[113.97351,22.29886],[113.97316,22.29891],[113.97309,22.29885],[113.97297,22.29878],[113.97291,22.29871],[113.97283,22.29868],[113.97272,22.29869],[113.97241,22.29852],[113.97228,22.29844],[113.97221,22.29829],[113.97208,22.29808],[113.97197,22.29795],[113.97179,22.2979],[113.97178,22.29774],[113.97185,22.29761],[113.97182,22.29751],[113.97183,22.29758],[113.97169,22.29775],[113.97169,22.29784],[113.97166,22.29787],[113.97131,22.29788],[113.97104,22.29793],[113.97078,22.29795],[113.97068,22.29795],[113.97051,22.29773],[113.97049,22.29711],[113.97042,22.2971],[113.97042,22.29714],[113.97042,22.29719],[113.97041,22.29732],[113.97042,22.2974],[113.97041,22.29747],[113.97042,22.29752],[113.97042,22.29774],[113.97039,22.29778],[113.97037,22.2978],[113.9703,22.29781],[113.97028,22.2978],[113.96994,22.29769],[113.96959,22.29753],[113.96915,22.29741],[113.96882,22.29739],[113.96843,22.29743],[113.96814,22.29753],[113.96798,22.29772],[113.96787,22.29784],[113.96779,22.29816],[113.96789,22.29822],[113.96783,22.29842],[113.96771,22.29883],[113.96766,22.29899],[113.96759,22.29924],[113.96757,22.29931],[113.96753,22.29945],[113.96749,22.29959],[113.96703,22.29947],[113.96695,22.29976],[113.9669,22.29975],[113.96698,22.29946],[113.9664,22.29934],[113.96609,22.29915],[113.96463,22.2988],[113.96448,22.29876],[113.96446,22.29869],[113.96439,22.29873],[113.96305,22.29843],[113.96148,22.29823],[113.96146,22.29818],[113.9614,22.29821],[113.96093,22.29812],[113.95999,22.29787],[113.95914,22.29755],[113.95908,22.29746],[113.95903,22.2975],[113.95896,22.29749],[113.95734,22.29685],[113.9571,22.29679],[113.95683,22.29667],[113.95679,22.29666],[113.95676,22.29669],[113.95672,22.29669],[113.95669,22.29666],[113.95666,22.29661],[113.95667,22.29657],[113.95665,22.29657],[113.95662,22.29662],[113.95657,22.29665],[113.9565,22.29666],[113.95649,22.29664],[113.95657,22.2965],[113.95512,22.29549],[113.95508,22.2959],[113.95498,22.29663],[113.95493,22.29707],[113.95491,22.29726],[113.9549,22.29728],[113.95489,22.29729],[113.95488,22.2973],[113.95485,22.29731],[113.95412,22.29736],[113.95389,22.29738],[113.95375,22.29739],[113.95336,22.2974],[113.95308,22.2974],[113.95287,22.2974],[113.95274,22.2974],[113.95255,22.2974],[113.95242,22.29739],[113.95227,22.29737],[113.95192,22.29733],[113.95173,22.29731],[113.95145,22.29728],[113.95124,22.29726],[113.95102,22.29724],[113.95073,22.2972],[113.95046,22.29716],[113.95003,22.29711],[113.94963,22.29706],[113.94936,22.29703],[113.94921,22.29701],[113.94904,22.29699],[113.94879,22.29698],[113.94868,22.29697],[113.94861,22.29698],[113.94844,22.29701],[113.94821,22.29705],[113.94811,22.29707],[113.94788,22.29709],[113.94771,22.29711],[113.94761,22.29711],[113.94748,22.2971],[113.94741,22.29709],[113.94726,22.29706],[113.94713,22.29703],[113.94698,22.29698],[113.94684,22.29694],[113.94671,22.29687],[113.94657,22.29679],[113.94643,22.29669],[113.94631,22.2966],[113.94627,22.29655],[113.94626,22.29654],[113.94625,22.29652],[113.94626,22.29649],[113.94627,22.29646],[113.94585,22.29607],[113.9453,22.29557],[113.94515,22.29542],[113.94514,22.29543],[113.94513,22.29543],[113.94511,22.29544],[113.9451,22.29544],[113.94508,22.29544],[113.94506,22.29544],[113.94505,22.29544],[113.94504,22.29544],[113.94503,22.29544],[113.94467,22.2951],[113.94467,22.29509],[113.94466,22.29508],[113.94466,22.29506],[113.94466,22.29504],[113.94466,22.29503],[113.94467,22.29501],[113.94467,22.29499],[113.94468,22.29498],[113.94392,22.29427],[113.94052,22.29387],[113.94053,22.29402],[113.94045,22.29456],[113.94025,22.29454],[113.94033,22.294],[113.94037,22.29385],[113.94015,22.29382],[113.94004,22.29372],[113.93998,22.29375],[113.93993,22.29372],[113.93913,22.29298],[113.93871,22.29259],[113.93857,22.29245],[113.93852,22.29242],[113.93843,22.29235],[113.93664,22.29066],[113.93658,22.29059],[113.93657,22.29056],[113.9365,22.29035],[113.93645,22.29019],[113.93645,22.28944],[113.93646,22.28925],[113.93647,22.289],[113.93646,22.28891],[113.93635,22.28853],[113.93628,22.28841],[113.93565,22.28798],[113.93546,22.28784],[113.93542,22.2878],[113.93542,22.28777],[113.93542,22.28775],[113.93543,22.28772],[113.93548,22.28769],[113.93548,22.28767],[113.93544,22.28759],[113.93542,22.28758],[113.93537,22.28754],[113.93534,22.28752],[113.93529,22.28751],[113.93527,22.28754],[113.93522,22.28751],[113.93524,22.28748],[113.93523,22.28742],[113.93521,22.28739],[113.93514,22.28735],[113.93503,22.28731],[113.93504,22.28728],[113.93505,22.28725],[113.93509,22.28725],[113.93512,22.28721],[113.93513,22.28714],[113.93512,22.28711],[113.93497,22.28692],[113.93484,22.28681],[113.93477,22.28673],[113.93467,22.2865],[113.9346,22.28627],[113.93453,22.28629],[113.93447,22.28626],[113.93434,22.28629],[113.93409,22.28632],[113.93408,22.28624],[113.93432,22.28621],[113.93433,22.28624],[113.93446,22.28623],[113.93451,22.28618],[113.93473,22.28616],[113.93474,22.28612],[113.93456,22.28599],[113.93454,22.28597],[113.93451,22.28594],[113.93449,22.28592],[113.93448,22.2859],[113.93448,22.28587],[113.93448,22.2858],[113.93449,22.28574],[113.93449,22.28571],[113.93448,22.28568],[113.93442,22.28557],[113.93439,22.28551],[113.93438,22.28546],[113.93437,22.28542],[113.93436,22.28536],[113.93435,22.28531],[113.93438,22.28531],[113.9344,22.28541],[113.93443,22.2855],[113.93445,22.28555],[113.93451,22.28567],[113.93453,22.2857],[113.93453,22.28574],[113.93452,22.28581],[113.93452,22.28587],[113.93452,22.28589],[113.93452,22.2859],[113.93456,22.28596],[113.93465,22.28585],[113.9347,22.28588],[113.93472,22.28591],[113.93477,22.28588],[113.93481,22.28583],[113.93497,22.28566],[113.93506,22.28572],[113.93508,22.2857],[113.93514,22.28575],[113.93519,22.28575],[113.93517,22.28566],[113.93519,22.28565],[113.93522,22.28566],[113.93524,22.28568],[113.93524,22.2857],[113.93535,22.2857],[113.93535,22.28574],[113.93548,22.28577],[113.93566,22.28586],[113.93571,22.28595],[113.93574,22.28599],[113.93586,22.28602],[113.93601,22.28606],[113.93614,22.28609],[113.9362,22.28611],[113.93622,22.28611],[113.93624,22.28611],[113.93635,22.2861],[113.93644,22.2861],[113.93648,22.2861],[113.93656,22.28609],[113.9366,22.28609],[113.93667,22.28609],[113.93673,22.2861],[113.93676,22.2861],[113.93679,22.28609],[113.9368,22.28609],[113.93682,22.28608],[113.93682,22.28607],[113.93684,22.28606],[113.93684,22.28605],[113.9369,22.28596],[113.93695,22.2859],[113.93702,22.28583],[113.93711,22.28572],[113.93715,22.28569],[113.93719,22.28561],[113.93722,22.28556],[113.93724,22.28552],[113.93725,22.28543],[113.93714,22.28542],[113.93712,22.28553],[113.93707,22.28561],[113.93704,22.28565],[113.93701,22.28568],[113.93696,22.2857],[113.93693,22.28572],[113.93693,22.28572],[113.93689,22.28575],[113.93681,22.28582],[113.93676,22.28587],[113.93673,22.28589],[113.93671,22.2859],[113.93667,22.28594],[113.93657,22.28601],[113.93654,22.28601],[113.93647,22.28599],[113.9363,22.28592],[113.93615,22.28586],[113.93612,22.28583],[113.93609,22.2858],[113.93614,22.28578],[113.93618,22.28577],[113.93629,22.2858],[113.93631,22.2858],[113.93637,22.28574],[113.9364,22.28572],[113.93644,22.28571],[113.93652,22.2857],[113.9366,22.28572],[113.93667,22.28571],[113.9367,22.28569],[113.93675,22.28563],[113.93678,22.28559],[113.9368,22.28554],[113.9368,22.28551],[113.93677,22.28552],[113.93675,22.28549],[113.9367,22.2855],[113.93668,22.28551],[113.93664,22.28552],[113.93659,22.28554],[113.93658,22.28554],[113.93658,22.28552],[113.93664,22.28547],[113.93669,22.2854],[113.93665,22.28541],[113.93664,22.2854],[113.93661,22.28536],[113.93657,22.28529],[113.9365,22.2851],[113.93648,22.28507],[113.93642,22.28504],[113.93649,22.28519],[113.93648,22.28519],[113.93651,22.28528],[113.93653,22.28536],[113.93652,22.28541],[113.9365,22.28545],[113.93645,22.28549],[113.93637,22.28553],[113.93633,22.28552],[113.93623,22.28555],[113.93617,22.2856],[113.9361,22.2856],[113.93598,22.28557],[113.93597,22.28559],[113.93595,22.28557],[113.93593,22.28559],[113.93591,22.28557],[113.93595,22.28552],[113.93592,22.2855],[113.93584,22.28557],[113.93579,22.28553],[113.93573,22.28547],[113.93572,22.28542],[113.93567,22.28534],[113.93559,22.28526],[113.9356,22.28522],[113.93554,22.28525],[113.93548,22.28517],[113.93549,22.28512],[113.93546,22.28504],[113.93551,22.28502],[113.93548,22.28491],[113.93534,22.28502],[113.93525,22.28511],[113.93521,22.28508],[113.93533,22.28493],[113.93544,22.28484],[113.93541,22.2848],[113.93536,22.28484],[113.93531,22.28479],[113.93533,22.28476],[113.93528,22.28472],[113.93527,22.28473],[113.93519,22.28467],[113.93511,22.28465],[113.93507,22.28461],[113.93503,22.28464],[113.93501,22.28469],[113.935,22.28478],[113.93497,22.28478],[113.93496,22.28476],[113.9349,22.28474],[113.93491,22.28472],[113.93484,22.28469],[113.93489,22.28457],[113.93495,22.28459],[113.93499,22.28448],[113.93493,22.28445],[113.93491,22.2845],[113.9347,22.28444],[113.93471,22.28438],[113.9346,22.28426],[113.93448,22.2842],[113.9344,22.28414],[113.93433,22.28408],[113.93432,22.28405],[113.93435,22.28396],[113.93438,22.28392],[113.93444,22.28391],[113.93445,22.2839],[113.93446,22.28388],[113.93445,22.28384],[113.93442,22.2838],[113.93439,22.28379],[113.93435,22.2838],[113.93432,22.2838],[113.93428,22.28377],[113.93425,22.28376],[113.93421,22.28376],[113.93417,22.28375],[113.93411,22.28372],[113.93409,22.28374],[113.93404,22.2838],[113.93402,22.28382],[113.93399,22.28383],[113.93398,22.28384],[113.93393,22.28386],[113.9339,22.28385],[113.93381,22.28377],[113.93378,22.2838],[113.93372,22.28375],[113.93371,22.28373],[113.93373,22.28371],[113.93351,22.28353],[113.9335,22.28344],[113.93347,22.28337],[113.93344,22.28329],[113.93343,22.28322],[113.93341,22.28315],[113.93334,22.283],[113.93329,22.28294],[113.93321,22.28296],[113.93316,22.28296],[113.93312,22.28295],[113.93309,22.28293],[113.93302,22.28286],[113.933,22.28282],[113.933,22.28278],[113.93302,22.28269],[113.93306,22.2826],[113.9331,22.28254],[113.93313,22.2825],[113.93324,22.28247],[113.93327,22.28247],[113.9333,22.28244],[113.93334,22.28243],[113.9334,22.2824],[113.93351,22.28237],[113.93373,22.28231],[113.93379,22.28229],[113.93392,22.28227],[113.93405,22.28225],[113.93412,22.28222],[113.93428,22.2822],[113.93427,22.28215],[113.93412,22.28216],[113.93403,22.28214],[113.93397,22.28216],[113.93387,22.28216],[113.93382,22.28215],[113.93366,22.2822],[113.93356,22.28223],[113.93346,22.28226],[113.93333,22.28229],[113.93326,22.28232],[113.93322,22.28234],[113.93315,22.28243],[113.9331,22.28244],[113.93307,22.28243],[113.93306,22.28241],[113.93306,22.28238],[113.93307,22.28233],[113.93308,22.2823],[113.93312,22.28222],[113.93314,22.28211],[113.93317,22.28205],[113.93319,22.28201],[113.93322,22.28195],[113.9333,22.28184],[113.93334,22.28177],[113.93351,22.28129],[113.93373,22.28062],[113.93372,22.28055],[113.93372,22.28041],[113.93377,22.28024],[113.9338,22.28006],[113.93382,22.27992],[113.93394,22.27958],[113.934,22.27947],[113.93399,22.27935],[113.93381,22.27927],[113.93368,22.27939],[113.93367,22.27944],[113.93368,22.27947],[113.93357,22.27976],[113.93349,22.27995],[113.93336,22.28015],[113.93296,22.2798],[113.93284,22.27975],[113.9327,22.27967],[113.93255,22.2796],[113.93256,22.27964],[113.93262,22.27969],[113.93269,22.27973],[113.93278,22.2798],[113.93286,22.27986],[113.9329,22.27988],[113.93282,22.27998],[113.93282,22.28],[113.93284,22.27999],[113.9328,22.28003],[113.9328,22.28006],[113.93279,22.28007],[113.93276,22.28008],[113.93272,22.28006],[113.93261,22.28007],[113.93259,22.28003],[113.93259,22.28],[113.93264,22.27998],[113.93269,22.27997],[113.93272,22.27998],[113.93277,22.27995],[113.93274,22.27993],[113.93275,22.2799],[113.93266,22.27984],[113.93264,22.27986],[113.93253,22.27979],[113.93253,22.27976],[113.93249,22.27975],[113.93252,22.2797],[113.93246,22.27969],[113.93242,22.27972],[113.93252,22.28002],[113.93253,22.28011],[113.93256,22.28013],[113.9326,22.28021],[113.93263,22.28019],[113.93264,22.28015],[113.93272,22.28014],[113.93274,22.28015],[113.93285,22.28027],[113.93289,22.28037],[113.93292,22.28053],[113.93294,22.28065],[113.933,22.28081],[113.93298,22.28091],[113.9329,22.28104],[113.93277,22.28115],[113.9327,22.28115],[113.93266,22.28117],[113.93267,22.28139],[113.93267,22.28143],[113.93263,22.28145],[113.93259,22.28146],[113.93227,22.28126],[113.93216,22.28125],[113.93194,22.28124],[113.93182,22.28126],[113.93116,22.28094],[113.93084,22.28082],[113.93054,22.28078],[113.93034,22.28071],[113.93036,22.28055],[113.92996,22.28042],[113.92984,22.28026],[113.92987,22.28008],[113.92986,22.27996],[113.9294,22.27992],[113.92928,22.28015],[113.92924,22.28038],[113.92919,22.28038],[113.92896,22.28027],[113.92898,22.28017],[113.92891,22.2801],[113.92881,22.28012],[113.92865,22.28023],[113.92855,22.28022],[113.92851,22.28016],[113.92864,22.2801],[113.92862,22.28],[113.9286,22.27996],[113.92849,22.27995],[113.92846,22.27985],[113.92838,22.2798],[113.92829,22.27991],[113.92821,22.27991],[113.92812,22.28007],[113.92787,22.28001],[113.9278,22.28004],[113.92773,22.28034],[113.92771,22.28046],[113.92769,22.28054],[113.92762,22.28057],[113.92756,22.28058],[113.92763,22.28081],[113.92766,22.28193],[113.92748,22.28242],[113.92746,22.28268],[113.92726,22.28329],[113.92704,22.28353],[113.92685,22.28391],[113.92623,22.28431],[113.92623,22.28431],[113.92619,22.28428],[113.92618,22.28427],[113.92617,22.28426],[113.92616,22.28426],[113.92614,22.28425],[113.92612,22.28424],[113.9261,22.28422],[113.9261,22.28421],[113.92609,22.2842],[113.92608,22.28419],[113.92607,22.28417],[113.92606,22.28416],[113.92605,22.28415],[113.92604,22.28413],[113.92604,22.28412],[113.92603,22.2841],[113.92602,22.28409],[113.92599,22.28406],[113.92599,22.28405],[113.92597,22.28404],[113.92596,22.28402],[113.92594,22.28402],[113.92594,22.28401],[113.92592,22.284],[113.92591,22.284],[113.92587,22.28397],[113.92584,22.28395],[113.92583,22.28394],[113.9258,22.28393],[113.92577,22.28392],[113.92576,22.28391],[113.92575,22.2839],[113.92574,22.28389],[113.92573,22.28388],[113.92571,22.28386],[113.9257,22.28385],[113.92569,22.28384],[113.92569,22.28384],[113.92568,22.28382],[113.92565,22.28379],[113.92565,22.28379],[113.92563,22.28377],[113.92562,22.28377],[113.92561,22.28374],[113.92561,22.28374],[113.92561,22.28373],[113.9256,22.28372],[113.9256,22.28371],[113.9256,22.2837],[113.9256,22.28369],[113.9256,22.28369],[113.9256,22.28368],[113.9256,22.28367],[113.92559,22.28366],[113.92559,22.28365],[113.92558,22.28364],[113.92556,22.28363],[113.92555,22.28362],[113.92553,22.2836],[113.92553,22.2836],[113.92552,22.28359],[113.9255,22.28358],[113.9255,22.28357],[113.92548,22.28356],[113.92546,22.28353],[113.92545,22.28352],[113.92543,22.28351],[113.92543,22.2835],[113.92542,22.28349],[113.92541,22.28348],[113.92539,22.28346],[113.92538,22.28345],[113.92537,22.28344],[113.92536,22.28343],[113.92534,22.28342],[113.9253,22.28338],[113.92529,22.28338],[113.92527,22.28336],[113.92526,22.28335],[113.92526,22.28335],[113.92525,22.28334],[113.92524,22.28333],[113.92523,22.28333],[113.9252,22.28331],[113.92519,22.2833],[113.92518,22.28329],[113.92516,22.28329],[113.92514,22.28327],[113.92513,22.28327],[113.92513,22.28327],[113.9251,22.28326],[113.92508,22.28326],[113.92504,22.28324],[113.92502,22.28324],[113.92501,22.28324],[113.925,22.28323],[113.92496,22.28322],[113.92495,22.28322],[113.92494,22.28322],[113.92493,22.28321],[113.92492,22.28321],[113.92491,22.2832],[113.9249,22.2832],[113.92489,22.2832],[113.92488,22.2832],[113.92487,22.28319],[113.92487,22.28319],[113.92486,22.28319],[113.92485,22.28319],[113.92484,22.28319],[113.92482,22.2832],[113.9248,22.2832],[113.92479,22.2832],[113.92477,22.2832],[113.92475,22.28319],[113.92474,22.28319],[113.92473,22.28319],[113.92471,22.2832],[113.92468,22.2832],[113.92466,22.2832],[113.92464,22.28321],[113.92462,22.28321],[113.9246,22.28321],[113.92459,22.28321],[113.92458,22.28321],[113.92457,22.28321],[113.92454,22.28321],[113.92452,22.28321],[113.9245,22.28321],[113.92449,22.2832],[113.92447,22.2832],[113.92445,22.2832],[113.92445,22.2832],[113.92444,22.28319],[113.9244,22.28317],[113.92439,22.28317],[113.92438,22.28316],[113.92438,22.28316],[113.92437,22.28315],[113.92436,22.28314],[113.92435,22.28313],[113.92434,22.28312],[113.92433,22.28312],[113.92432,22.28311],[113.92424,22.28307],[113.92423,22.28306],[113.92422,22.28306],[113.9242,22.28305],[113.92419,22.28305],[113.92419,22.28304],[113.92418,22.28304],[113.92417,22.28303],[113.92415,22.28302],[113.92415,22.28302],[113.92412,22.28301],[113.92412,22.283],[113.92411,22.283],[113.9241,22.28299],[113.92409,22.28298],[113.92408,22.28297],[113.92407,22.28297],[113.92404,22.28295],[113.92404,22.28294],[113.92403,22.28293],[113.92401,22.28292],[113.924,22.28291],[113.92399,22.28289],[113.92398,22.28289],[113.92397,22.28288],[113.92395,22.28287],[113.92395,22.28286],[113.92392,22.28285],[113.92391,22.28284],[113.92388,22.28282],[113.92386,22.28281],[113.92385,22.2828],[113.92383,22.28279],[113.92381,22.28278],[113.92379,22.28277],[113.92378,22.28276],[113.92377,22.28276],[113.92374,22.28275],[113.92372,22.28275],[113.92371,22.28275],[113.9237,22.28274],[113.92368,22.28274],[113.92367,22.28274],[113.92367,22.28274],[113.92363,22.28273],[113.92361,22.28272],[113.9236,22.28272],[113.92359,22.28271],[113.92358,22.28271],[113.92357,22.28271],[113.92356,22.2827],[113.92353,22.28269],[113.92353,22.28268],[113.92352,22.28268],[113.92351,22.28267],[113.9235,22.28267],[113.92348,22.28267],[113.92346,22.28266],[113.92345,22.28266],[113.92344,22.28266],[113.92342,22.28266],[113.9234,22.28265],[113.92339,22.28264],[113.92338,22.28264],[113.92336,22.28263],[113.92335,22.28262],[113.92331,22.28261],[113.92329,22.28261],[113.92327,22.2826],[113.92325,22.2826],[113.92323,22.28259],[113.92319,22.28258],[113.92318,22.28257],[113.92317,22.28257],[113.92315,22.28256],[113.92313,22.28256],[113.92311,22.28255],[113.9231,22.28255],[113.92309,22.28255],[113.92309,22.28254],[113.92308,22.28253],[113.92307,22.28253],[113.92301,22.28248],[113.92295,22.28244],[113.92289,22.2824],[113.92284,22.28236],[113.92278,22.28233],[113.92272,22.28229],[113.92266,22.28226],[113.9226,22.28222],[113.92254,22.28219],[113.92233,22.28211],[113.9222,22.28206],[113.92208,22.282],[113.92196,22.28194],[113.92184,22.28188],[113.92171,22.28182],[113.92163,22.28179],[113.92157,22.28177],[113.92151,22.28175],[113.92145,22.28173],[113.92139,22.28172],[113.92133,22.2817],[113.92127,22.28169],[113.92121,22.28167],[113.92115,22.28166],[113.92109,22.28165],[113.92103,22.28163],[113.92097,22.28162],[113.92091,22.28161],[113.92089,22.28161],[113.92087,22.28161],[113.92086,22.28161],[113.92085,22.28161],[113.92083,22.2816],[113.92082,22.2816],[113.9208,22.2816],[113.92078,22.28159],[113.92077,22.28159],[113.92076,22.28158],[113.92075,22.28158],[113.92073,22.28157],[113.92072,22.28157],[113.92071,22.28156],[113.92069,22.28156],[113.92068,22.28155],[113.92066,22.28154],[113.92065,22.28153],[113.92064,22.28152],[113.92062,22.28151],[113.92061,22.2815],[113.9206,22.28149],[113.92059,22.28148],[113.92059,22.28148],[113.92058,22.28147],[113.92057,22.28146],[113.92055,22.28145],[113.92053,22.28144],[113.92052,22.28143],[113.9205,22.28142],[113.92049,22.28142],[113.92047,22.28141],[113.92047,22.28141],[113.92046,22.2814],[113.92044,22.28139],[113.92044,22.28139],[113.92042,22.28138],[113.92039,22.28136],[113.92037,22.28134],[113.92036,22.28134],[113.92035,22.28133],[113.92034,22.28133],[113.92031,22.28132],[113.9203,22.28132],[113.92029,22.28131],[113.92028,22.28131],[113.92028,22.28131],[113.92026,22.2813],[113.92026,22.2813],[113.92025,22.2813],[113.92023,22.28128],[113.92022,22.28127],[113.92022,22.28127],[113.92021,22.28125],[113.9202,22.28124],[113.92018,22.28121],[113.92018,22.2812],[113.92016,22.28117],[113.92015,22.28115],[113.92014,22.28115],[113.92014,22.28114],[113.92012,22.28112],[113.9201,22.2811],[113.9201,22.28109],[113.92009,22.28109],[113.92008,22.28108],[113.92008,22.28107],[113.92005,22.28105],[113.92005,22.28105],[113.92004,22.28104],[113.92002,22.28103],[113.92002,22.28103],[113.92001,22.28103],[113.92,22.28103],[113.91999,22.28103],[113.91998,22.28102],[113.91996,22.28101],[113.91992,22.28098],[113.91992,22.28098],[113.91989,22.28096],[113.91988,22.28095],[113.91987,22.28094],[113.91986,22.28094],[113.91986,22.28093],[113.91985,22.28093],[113.91983,22.28092],[113.91983,22.28091],[113.91982,22.28091],[113.91981,22.28089],[113.9198,22.28088],[113.91978,22.28086],[113.91977,22.28085],[113.91976,22.28084],[113.91976,22.28083],[113.91974,22.28082],[113.91973,22.28082],[113.91973,22.28081],[113.9197,22.2808],[113.91969,22.2808],[113.91966,22.28078],[113.91964,22.28077],[113.91961,22.28075],[113.9196,22.28074],[113.9196,22.28074],[113.9196,22.28074],[113.91958,22.28073],[113.91957,22.28072],[113.91956,22.28072],[113.91954,22.2807],[113.91953,22.28069],[113.9195,22.28067],[113.91949,22.28066],[113.91948,22.28065],[113.91948,22.28064],[113.91947,22.28063],[113.91945,22.2806],[113.91944,22.28059],[113.91943,22.28058],[113.91942,22.28056],[113.91941,22.28055],[113.91939,22.28052],[113.91937,22.28048],[113.91936,22.28047],[113.91936,22.28046],[113.91935,22.28045],[113.91935,22.28044],[113.91935,22.28043],[113.91935,22.28042],[113.91935,22.2804],[113.91934,22.28038],[113.91933,22.28039],[113.91932,22.28038],[113.91931,22.28038],[113.9193,22.28038],[113.91929,22.28038],[113.91927,22.28037],[113.91926,22.28037],[113.91925,22.28036],[113.91924,22.28035],[113.91924,22.28034],[113.91922,22.28033],[113.9192,22.28032],[113.91919,22.28031],[113.91916,22.28029],[113.91913,22.28028],[113.91911,22.28026],[113.9191,22.28025],[113.91909,22.28024],[113.91906,22.28022],[113.91905,22.2802],[113.91902,22.28018],[113.91901,22.28017],[113.919,22.28016],[113.91898,22.28014],[113.91897,22.28013],[113.91895,22.28011],[113.91895,22.28009],[113.91894,22.28008],[113.91893,22.28005],[113.91893,22.28003],[113.91892,22.28001],[113.91892,22.28],[113.91892,22.27999],[113.91891,22.27995],[113.91891,22.27993],[113.9189,22.27992],[113.91889,22.27991],[113.91888,22.2799],[113.91887,22.2799],[113.91886,22.2799],[113.91882,22.2799],[113.91879,22.27989],[113.91878,22.27989],[113.91876,22.27989],[113.91875,22.27989],[113.91874,22.27988],[113.91872,22.27987],[113.91871,22.27987],[113.91866,22.27982],[113.91864,22.27981],[113.91863,22.2798],[113.91862,22.27978],[113.91862,22.27977],[113.91861,22.27976],[113.91861,22.27975],[113.91861,22.27974],[113.91861,22.27973],[113.91861,22.27972],[113.9186,22.2797],[113.91858,22.27969],[113.91857,22.27968],[113.91855,22.27966],[113.91853,22.27965],[113.91852,22.27964],[113.9185,22.27963],[113.91847,22.27961],[113.91846,22.27961],[113.91842,22.27959],[113.91839,22.27959],[113.91839,22.27958],[113.91838,22.27958],[113.91838,22.27957],[113.91837,22.27956],[113.91836,22.27954],[113.91836,22.27952],[113.91835,22.27949],[113.91834,22.27946],[113.91832,22.2794],[113.91832,22.27939],[113.91833,22.27937],[113.91833,22.27936],[113.91833,22.27936],[113.91832,22.27934],[113.91832,22.27933],[113.91831,22.27932],[113.91831,22.2793],[113.9183,22.27929],[113.91829,22.27926],[113.91828,22.27924],[113.91827,22.27922],[113.91826,22.27919],[113.91826,22.27916],[113.91825,22.27912],[113.91825,22.2791],[113.91825,22.27908],[113.91825,22.27907],[113.91825,22.27906],[113.91825,22.27906],[113.91824,22.27904],[113.91824,22.27903],[113.91823,22.27901],[113.91823,22.279],[113.91823,22.27899],[113.91822,22.27895],[113.91822,22.27893],[113.91822,22.27892],[113.91821,22.2789],[113.91821,22.27888],[113.91821,22.27886],[113.91819,22.27885],[113.91816,22.27881],[113.91813,22.27879],[113.91812,22.27878],[113.91811,22.27877],[113.91811,22.27875],[113.9181,22.27874],[113.91809,22.27872],[113.91808,22.27871],[113.91807,22.27868],[113.91805,22.27864],[113.91804,22.27862],[113.91803,22.27859],[113.91802,22.27856],[113.918,22.27854],[113.91799,22.27853],[113.91799,22.27852],[113.91798,22.27852],[113.91797,22.2785],[113.91796,22.27849],[113.91795,22.27848],[113.91794,22.27846],[113.91793,22.27843],[113.91791,22.2784],[113.91789,22.27837],[113.91788,22.27834],[113.91787,22.27833],[113.91786,22.27832],[113.91785,22.27831],[113.91783,22.27829],[113.9178,22.27828],[113.91775,22.27825],[113.91774,22.27825],[113.91773,22.27825],[113.91772,22.27825],[113.91771,22.27825],[113.91769,22.27825],[113.91768,22.27825],[113.91767,22.27824],[113.91766,22.27823],[113.91765,22.27823],[113.91763,22.27822],[113.91761,22.27822],[113.91757,22.2782],[113.91755,22.2782],[113.91754,22.27819],[113.91754,22.27818],[113.91753,22.27817],[113.91752,22.27816],[113.91751,22.27815],[113.91749,22.27814],[113.91742,22.2781],[113.9174,22.27808],[113.91738,22.27807],[113.91736,22.27806],[113.91733,22.27804],[113.91731,22.27803],[113.91726,22.278],[113.91722,22.27798],[113.91721,22.27797],[113.9172,22.27797],[113.9172,22.27795],[113.91719,22.27791],[113.91718,22.27789],[113.91717,22.27787],[113.91716,22.27786],[113.91714,22.27784],[113.9171,22.27782],[113.91708,22.2778],[113.91704,22.27778],[113.91703,22.27777],[113.91701,22.27776],[113.91698,22.27774],[113.91696,22.27772],[113.91693,22.2777],[113.91691,22.27769],[113.91689,22.27767],[113.91686,22.27765],[113.91684,22.27764],[113.91682,22.27762],[113.9168,22.27761],[113.91679,22.2776],[113.91678,22.27759],[113.91677,22.27757],[113.91677,22.27756],[113.91676,22.27754],[113.91676,22.27751],[113.91676,22.27749],[113.91675,22.27749],[113.91673,22.27747],[113.91671,22.27745],[113.9167,22.27744],[113.91669,22.27743],[113.91668,22.27742],[113.91668,22.27742],[113.91669,22.27741],[113.91669,22.2774],[113.91669,22.27739],[113.91668,22.27738],[113.91668,22.27737],[113.91667,22.27737],[113.91666,22.27737],[113.91665,22.27737],[113.91664,22.27737],[113.91663,22.27736],[113.91663,22.27736],[113.91662,22.27735],[113.91662,22.27734],[113.91662,22.27732],[113.91662,22.27731],[113.91662,22.27731],[113.91665,22.27729],[113.91666,22.27728],[113.91666,22.27727],[113.91667,22.27726],[113.91667,22.27725],[113.91668,22.27724],[113.91669,22.27723],[113.9167,22.27722],[113.91671,22.27721],[113.91672,22.27721],[113.91673,22.2772],[113.91675,22.27719],[113.91675,22.27718],[113.91676,22.27717],[113.91676,22.27716],[113.91676,22.27715],[113.91677,22.27714],[113.91678,22.27713],[113.91682,22.2771],[113.91684,22.2771],[113.91685,22.27709],[113.91686,22.27709],[113.91687,22.27709],[113.91688,22.27708],[113.91689,22.27708],[113.9169,22.27707],[113.91691,22.27706],[113.91692,22.27705],[113.91693,22.27703],[113.91695,22.27701],[113.91697,22.27699],[113.91697,22.27699],[113.91699,22.27698],[113.91699,22.27697],[113.917,22.27696],[113.91701,22.27695],[113.91701,22.27693],[113.91702,22.2769],[113.91702,22.27689],[113.91702,22.27688],[113.91702,22.27687],[113.91701,22.27686],[113.91701,22.27685],[113.917,22.27684],[113.91698,22.27683],[113.91697,22.27682],[113.91696,22.2768],[113.91695,22.27679],[113.91695,22.27678],[113.91695,22.27677],[113.91694,22.27677],[113.91693,22.27676],[113.91692,22.27676],[113.91691,22.27675],[113.91689,22.27675],[113.91688,22.27675],[113.91687,22.27675],[113.91685,22.27675],[113.91683,22.27674],[113.91681,22.27674],[113.91678,22.27674],[113.91677,22.27674],[113.91676,22.27673],[113.91675,22.27673],[113.91675,22.27672],[113.91674,22.2767],[113.91673,22.2767],[113.91672,22.27669],[113.91671,22.27667],[113.91669,22.27664],[113.91669,22.27664],[113.91668,22.27663],[113.91667,22.27663],[113.91666,22.27662],[113.91665,22.27661],[113.91665,22.27661],[113.91664,22.2766],[113.91664,22.27659],[113.91664,22.27659],[113.91663,22.27658],[113.91662,22.27657],[113.91661,22.27656],[113.91661,22.27655],[113.91661,22.27654],[113.91661,22.27653],[113.91662,22.27652],[113.91661,22.27651],[113.9166,22.27652],[113.9166,22.27652],[113.91659,22.27652],[113.91658,22.27652],[113.91655,22.27652],[113.91652,22.27652],[113.9165,22.27652],[113.91649,22.27652],[113.91648,22.27651],[113.91647,22.2765],[113.91645,22.27649],[113.91645,22.27648],[113.91644,22.27646],[113.91643,22.27645],[113.91643,22.27644],[113.91644,22.27642],[113.91645,22.2764],[113.91645,22.2764],[113.91646,22.27639],[113.91646,22.27638],[113.91645,22.27638],[113.91644,22.27637],[113.91641,22.27634],[113.9164,22.27633],[113.91639,22.27631],[113.91638,22.27628],[113.91637,22.27627],[113.91636,22.27624],[113.91634,22.2762],[113.91632,22.27617],[113.91632,22.27615],[113.91632,22.27614],[113.91632,22.27611],[113.91632,22.27609],[113.91633,22.27608],[113.91633,22.27606],[113.91632,22.27604],[113.91631,22.27602],[113.91629,22.27598],[113.91628,22.27597],[113.91626,22.27596],[113.91623,22.27592],[113.91622,22.27591],[113.91618,22.27587],[113.91617,22.27586],[113.91616,22.27585],[113.91616,22.27584],[113.91615,22.27583],[113.91614,22.27582],[113.91613,22.2758],[113.91612,22.27578],[113.91612,22.27576],[113.91612,22.27575],[113.91613,22.27575],[113.91613,22.27574],[113.91614,22.27574],[113.91616,22.27574],[113.91616,22.27573],[113.91572,22.27512],[113.91556,22.27491],[113.91516,22.27449],[113.91435,22.27364],[113.91427,22.27355],[113.914,22.27333],[113.91255,22.27184],[113.91192,22.27116],[113.91149,22.27055],[113.91126,22.27007],[113.91089,22.26947],[113.9106,22.26859],[113.91052,22.26795],[113.91049,22.2672],[113.9105,22.26691],[113.91064,22.26626],[113.91077,22.26546],[113.91094,22.26456],[113.91107,22.26369],[113.91117,22.26291],[113.91181,22.26117],[113.91191,22.26077],[113.91212,22.26022],[113.9127,22.25859],[113.91346,22.25757],[113.91446,22.2563],[113.91522,22.25535],[113.91595,22.25442],[113.91609,22.25425],[113.91675,22.25343],[113.91781,22.25206],[113.91797,22.25179],[113.91836,22.25138],[113.91906,22.25048],[113.92018,22.24899],[113.92094,22.24899],[113.92428,22.24891],[113.92554,22.24886],[113.9261,22.24889],[113.92673,22.24885],[113.93201,22.24875],[113.93307,22.24873],[113.93327,22.24871],[113.93372,22.24827],[113.93386,22.24812],[113.93417,22.24779],[113.93443,22.24752],[113.93534,22.24658],[113.93554,22.24644],[113.9357,22.24626],[113.93584,22.24608],[113.93634,22.24562],[113.93662,22.24574],[113.93713,22.24595],[113.93718,22.24597],[113.93747,22.24607],[113.93777,22.2462],[113.93812,22.24635],[113.93866,22.24658],[113.93964,22.24696],[113.9406,22.24731],[113.94171,22.24777],[113.94237,22.24801],[113.94304,22.24825],[113.94307,22.24827],[113.94308,22.24827],[113.94308,22.24828],[113.94359,22.24857],[113.94376,22.24867],[113.94488,22.2493],[113.94514,22.24944],[113.94539,22.24958],[113.94557,22.24965],[113.94583,22.24975],[113.94624,22.25],[113.94638,22.25009],[113.94693,22.25043],[113.94902,22.25163],[113.95026,22.25234],[113.95096,22.25275],[113.95115,22.25285],[113.95166,22.25314],[113.95193,22.25419],[113.95209,22.25482],[113.95215,22.25503],[113.95223,22.25528],[113.95234,22.25579],[113.95255,22.25664],[113.95258,22.25677],[113.95259,22.2568],[113.95269,22.25719],[113.95334,22.25743],[113.95361,22.25753],[113.95548,22.25825],[113.95728,22.25892],[113.95915,22.25968],[113.96047,22.26016],[113.96094,22.26034],[113.96147,22.26057],[113.96361,22.26137],[113.9647,22.26178],[113.96649,22.26246],[113.96829,22.26312],[113.97044,22.2661],[113.97053,22.26606],[113.97134,22.26564],[113.97397,22.26428],[113.97474,22.26385],[113.97547,22.26345],[113.97585,22.26324],[113.97613,22.26308],[113.98262,22.26044],[113.98496,22.2595],[113.98495,22.2595],[113.98493,22.25942],[113.98489,22.25936],[113.98485,22.25933],[113.98481,22.25932],[113.98474,22.25933],[113.98469,22.25932],[113.98464,22.25933],[113.9846,22.2593],[113.98458,22.25923],[113.98452,22.25918],[113.98447,22.25913],[113.9844,22.25911],[113.98434,22.25909],[113.98428,22.2591],[113.98422,22.25912],[113.98417,22.25915],[113.98412,22.25916],[113.98407,22.25915],[113.98409,22.2591],[113.98413,22.25906],[113.98417,22.25903],[113.9842,22.25899],[113.98426,22.25895],[113.98431,22.25893],[113.98438,22.25891],[113.98444,22.25889],[113.9845,22.25887],[113.98458,22.25885],[113.98464,22.25885],[113.9847,22.25886],[113.98474,22.25887],[113.98478,22.25887],[113.98483,22.25887],[113.98488,22.25885],[113.9849,22.25881],[113.98493,22.25876],[113.98493,22.25871],[113.98492,22.25866],[113.98491,22.25859],[113.9849,22.25853],[113.98489,22.25848],[113.98489,22.25843],[113.98493,22.25841],[113.98497,22.25841],[113.98501,22.25841],[113.98506,22.25841],[113.98511,22.25839],[113.98514,22.25836],[113.98516,22.25835],[113.98519,22.25832],[113.98525,22.25829],[113.98532,22.25829],[113.98538,22.25828],[113.98543,22.25826],[113.98546,22.25822],[113.9855,22.25819],[113.98556,22.25816],[113.98562,22.25816],[113.98566,22.25819],[113.98571,22.2582],[113.98575,22.2582],[113.9858,22.25818],[113.98582,22.25813],[113.98584,22.25808],[113.98582,22.25804],[113.98583,22.25799],[113.98584,22.25794],[113.98589,22.25794],[113.98591,22.25795],[113.98595,22.25796],[113.98599,22.25796],[113.986,22.25793],[113.98599,22.25789],[113.986,22.25785],[113.98601,22.2578],[113.98601,22.25778],[113.98602,22.25774],[113.98607,22.25773],[113.98612,22.25774],[113.98617,22.25773],[113.98624,22.25773],[113.98627,22.25771],[113.98632,22.25767],[113.9864,22.25764],[113.98645,22.25762],[113.98649,22.25761],[113.98654,22.2576],[113.9866,22.2576],[113.98666,22.25758],[113.98671,22.2576],[113.98674,22.25764],[113.98676,22.25769],[113.98678,22.25773],[113.9868,22.25777],[113.98683,22.25778],[113.98687,22.25778],[113.98691,22.25777],[113.98695,22.25775],[113.98698,22.25774],[113.98703,22.25772],[113.98708,22.25771],[113.98712,22.25772],[113.98717,22.25775],[113.98721,22.25779],[113.98723,22.25782],[113.98725,22.25785],[113.98726,22.25791],[113.98726,22.25795],[113.98728,22.25799],[113.98731,22.25803],[113.98737,22.25809],[113.98739,22.25813],[113.9874,22.25818],[113.98742,22.25824],[113.98744,22.25828],[113.98746,22.25831],[113.9875,22.25828],[113.98756,22.2582],[113.9876,22.25816],[113.98764,22.25811],[113.98767,22.25807],[113.98768,22.25801],[113.9877,22.25794],[113.98773,22.25784],[113.98774,22.25776],[113.98776,22.2577],[113.98777,22.25764],[113.98778,22.25764],[113.98778,22.25765],[113.98778,22.25767],[113.98779,22.25768],[113.98779,22.25769],[113.98779,22.2577],[113.98778,22.25771],[113.98777,22.25775],[113.98777,22.25776],[113.98777,22.25778],[113.98778,22.25781],[113.98778,22.25782],[113.98778,22.25784],[113.98779,22.25785],[113.9878,22.25787],[113.98781,22.25788],[113.98782,22.25789],[113.98783,22.2579],[113.98783,22.25791],[113.98784,22.25792],[113.98786,22.25794],[113.98787,22.25795],[113.98789,22.25797],[113.9879,22.25799],[113.9879,22.25801],[113.98791,22.25802],[113.98792,22.25806],[113.98792,22.25808],[113.98792,22.25808],[113.98792,22.25813],[113.98791,22.25815],[113.98791,22.25816],[113.9879,22.2582],[113.98789,22.25822],[113.98789,22.25824],[113.98788,22.25827],[113.98787,22.25829],[113.98787,22.25831],[113.98786,22.25832],[113.98785,22.25833],[113.98782,22.25847],[113.9878,22.25854],[113.9878,22.25856],[113.98781,22.25861],[113.98781,22.25863],[113.98779,22.25865],[113.98764,22.25877],[113.9876,22.25882],[113.98751,22.25898],[113.98748,22.25905],[113.98743,22.25912],[113.98739,22.25923],[113.98736,22.25931],[113.98735,22.25941],[113.98733,22.25951],[113.98734,22.25954],[113.98735,22.25958],[113.98735,22.25964],[113.98735,22.25967],[113.98735,22.25969],[113.98737,22.25973],[113.98738,22.25975],[113.98743,22.25979],[113.98745,22.25981],[113.9875,22.25984],[113.98754,22.25986],[113.98757,22.25989],[113.98765,22.25994],[113.9877,22.25998],[113.98776,22.26003],[113.98778,22.26004],[113.98792,22.26007],[113.98794,22.26008],[113.98797,22.26009],[113.988,22.26013],[113.98805,22.26019],[113.98809,22.26024],[113.9881,22.26026],[113.98812,22.2603],[113.98812,22.26033],[113.9881,22.26039],[113.98808,22.26046],[113.98806,22.2605],[113.98805,22.26061],[113.98805,22.26065],[113.98806,22.26068],[113.9881,22.26073],[113.98814,22.26077],[113.98821,22.26082],[113.98823,22.26084],[113.98828,22.26092],[113.98828,22.26096],[113.98828,22.261],[113.98827,22.26107],[113.98822,22.26116],[113.98818,22.26127],[113.98817,22.2613],[113.98817,22.26134],[113.98818,22.26135],[113.98819,22.26137],[113.98822,22.26139],[113.98825,22.2614],[113.98839,22.26144],[113.98843,22.26147],[113.98845,22.26148],[113.98847,22.26152],[113.98849,22.26156],[113.98852,22.26162],[113.98853,22.26167],[113.98853,22.2617],[113.98854,22.26185],[113.98856,22.26197],[113.98854,22.26208],[113.98851,22.26225],[113.98851,22.26228],[113.98862,22.26246],[113.98866,22.26258],[113.98874,22.26274],[113.98885,22.26289],[113.98886,22.26303],[113.98886,22.26309],[113.98887,22.26316],[113.98891,22.26326],[113.98897,22.26335],[113.98905,22.26343],[113.98923,22.26356],[113.98928,22.26359],[113.98935,22.26362],[113.98909,22.26395],[113.98905,22.264],[113.98901,22.26406],[113.98898,22.26411],[113.98894,22.2642],[113.98891,22.26429],[113.9889,22.26438],[113.98889,22.26447],[113.98889,22.26453],[113.98891,22.26463],[113.98892,22.26469],[113.98894,22.26473],[113.98896,22.26479],[113.98899,22.26484],[113.98902,22.26488],[113.98905,22.26493],[113.98909,22.26497],[113.98913,22.26502],[113.98917,22.26505],[113.98921,22.26508],[113.98926,22.26512],[113.9897,22.26549],[113.98975,22.26555],[113.98977,22.26558],[113.9898,22.26564],[113.98982,22.2657],[113.98982,22.26575],[113.98982,22.26575],[113.98982,22.26576],[113.98982,22.26576],[113.98982,22.26577],[113.98982,22.26577],[113.98982,22.26578],[113.98982,22.26578],[113.98982,22.26579],[113.98982,22.26579],[113.98981,22.26579],[113.98981,22.2658],[113.98981,22.2658],[113.98981,22.26581],[113.98981,22.26581],[113.98981,22.26582],[113.98981,22.26582],[113.98981,22.26582],[113.98981,22.26583],[113.98981,22.26583],[113.9898,22.26584],[113.9898,22.26584],[113.9898,22.26585],[113.9898,22.26585],[113.9898,22.26586],[113.9898,22.26586],[113.9898,22.26586],[113.98979,22.26587],[113.98979,22.26587],[113.98979,22.26588],[113.98979,22.26588],[113.98979,22.26588],[113.98978,22.26589],[113.98978,22.26589],[113.98978,22.2659],[113.98977,22.2659],[113.98977,22.26591],[113.98977,22.26591],[113.98977,22.26592],[113.98976,22.26592],[113.98976,22.26592],[113.98976,22.26593],[113.98976,22.26593],[113.98975,22.26593],[113.98975,22.26594],[113.98975,22.26594],[113.98974,22.26595],[113.98974,22.26595],[113.98974,22.26595],[113.98973,22.26596],[113.98973,22.26596],[113.98973,22.26596],[113.98972,22.26597],[113.98972,22.26597],[113.98972,22.26597],[113.98971,22.26597],[113.98971,22.26598],[113.98971,22.26598],[113.9897,22.26598],[113.9897,22.26599],[113.9897,22.26599],[113.98969,22.26599],[113.98969,22.266],[113.98968,22.266],[113.98968,22.266],[113.98968,22.266],[113.98967,22.26601],[113.98967,22.26601],[113.98966,22.26601],[113.98966,22.26601],[113.98966,22.26602],[113.98965,22.26602],[113.98965,22.26602],[113.98964,22.26602],[113.98964,22.26602],[113.98963,22.26603],[113.98963,22.26603],[113.98962,22.26603],[113.98962,22.26603],[113.98961,22.26603],[113.98961,22.26603],[113.9896,22.26603],[113.9896,22.26603],[113.98959,22.26603],[113.98959,22.26603],[113.98958,22.26603],[113.98957,22.26604],[113.98957,22.26604],[113.98956,22.26604],[113.98956,22.26604],[113.98955,22.26604],[113.98955,22.26604],[113.98954,22.26604],[113.98953,22.26604],[113.98953,22.26604],[113.98952,22.26604],[113.98952,22.26604],[113.98951,22.26604],[113.98951,22.26605],[113.9895,22.26605],[113.9895,22.26605],[113.98949,22.26605],[113.98949,22.26605],[113.98948,22.26605],[113.98947,22.26605],[113.98947,22.26605],[113.98946,22.26605],[113.98945,22.26605],[113.98945,22.26605],[113.98944,22.26605],[113.98943,22.26606],[113.98942,22.26606],[113.98941,22.26606],[113.98941,22.26606],[113.9894,22.26606],[113.98939,22.26606],[113.98939,22.26606],[113.98938,22.26606],[113.98938,22.26606],[113.98937,22.26606],[113.98937,22.26606],[113.98936,22.26606],[113.98936,22.26606],[113.98935,22.26606],[113.98935,22.26606],[113.98934,22.26606],[113.98934,22.26606],[113.98933,22.26606],[113.98933,22.26606],[113.98933,22.26606],[113.98932,22.26606],[113.98932,22.26606],[113.98931,22.26606],[113.98931,22.26606],[113.9893,22.26606],[113.98929,22.26606],[113.98929,22.26607],[113.98928,22.26607],[113.98928,22.26607],[113.98927,22.26607],[113.98926,22.26607],[113.98925,22.26607],[113.98925,22.26607],[113.98924,22.26607],[113.98924,22.26607],[113.98923,22.26607],[113.98923,22.26607],[113.98922,22.26607],[113.98922,22.26607],[113.98921,22.26607],[113.98921,22.26607],[113.9892,22.26607],[113.9892,22.26607],[113.98919,22.26607],[113.98919,22.26607],[113.98918,22.26607],[113.98917,22.26607],[113.98916,22.26607],[113.98915,22.26608],[113.98914,22.26608],[113.98913,22.26608],[113.98913,22.26608],[113.98912,22.26608],[113.98911,22.26608],[113.9891,22.26608],[113.98909,22.26608],[113.98909,22.26608],[113.98908,22.26608],[113.98907,22.26608],[113.98907,22.26608],[113.98906,22.26608],[113.98906,22.26608],[113.98905,22.26609],[113.98905,22.26609],[113.98904,22.26609],[113.98904,22.26609],[113.98903,22.26609],[113.98901,22.26609],[113.989,22.26609],[113.98894,22.26609],[113.98893,22.26609],[113.9889,22.26609],[113.9889,22.26609],[113.98887,22.26609],[113.98887,22.26609],[113.98885,22.26609],[113.98885,22.26609],[113.98884,22.26609],[113.98884,22.26609],[113.98883,22.26609],[113.98883,22.26609],[113.98882,22.26609],[113.98882,22.26609],[113.98881,22.26608],[113.98881,22.26608],[113.9888,22.26608],[113.98879,22.26608],[113.98879,22.26608],[113.98878,22.26608],[113.98878,22.26608],[113.98877,22.26608],[113.98877,22.26608],[113.98876,22.26608],[113.98876,22.26608],[113.98876,22.26607],[113.98875,22.26607],[113.98875,22.26607],[113.98874,22.26607],[113.98874,22.26607],[113.98873,22.26607],[113.98873,22.26607],[113.98872,22.26607],[113.98871,22.26607],[113.9887,22.26607],[113.98869,22.26607],[113.98868,22.26607],[113.98867,22.26606],[113.98867,22.26606],[113.98866,22.26606],[113.98866,22.26606],[113.98864,22.26606],[113.98864,22.26606],[113.98863,22.26606],[113.98863,22.26606],[113.98862,22.26607],[113.98862,22.26607],[113.98861,22.26607],[113.98861,22.26607],[113.9886,22.26607],[113.9886,22.26607],[113.98859,22.26607],[113.98859,22.26607],[113.98858,22.26607],[113.98858,22.26607],[113.98857,22.26607],[113.98856,22.26608],[113.98856,22.26608],[113.98855,22.26608],[113.98855,22.26608],[113.98854,22.26608],[113.98853,22.26608],[113.98853,22.26608],[113.98852,22.26608],[113.98852,22.26608],[113.98851,22.26608],[113.98851,22.26609],[113.98851,22.26609],[113.9885,22.26609],[113.9885,22.26609],[113.98849,22.26609],[113.98849,22.26609],[113.98848,22.26609],[113.98848,22.26609],[113.98847,22.26609],[113.98847,22.26609],[113.98846,22.26609],[113.98846,22.26609],[113.98845,22.26609],[113.98845,22.2661],[113.98844,22.2661],[113.98844,22.2661],[113.98843,22.2661],[113.98842,22.2661],[113.98842,22.2661],[113.98841,22.2661],[113.98841,22.2661],[113.98841,22.2661],[113.9883,22.26613],[113.98829,22.26612],[113.98829,22.26612],[113.98828,22.26612],[113.98828,22.26612],[113.98828,22.26611],[113.98827,22.26611],[113.98827,22.26611],[113.98826,22.2661],[113.98826,22.2661],[113.98826,22.2661],[113.98825,22.2661],[113.98825,22.26609],[113.98825,22.26609],[113.98824,22.26609],[113.98824,22.26609],[113.98823,22.26608],[113.98823,22.26608],[113.98823,22.26608],[113.98822,22.26607],[113.98822,22.26607],[113.98821,22.26607],[113.98821,22.26607],[113.98821,22.26606],[113.9882,22.26606],[113.9882,22.26606],[113.9882,22.26605],[113.98819,22.26605],[113.98819,22.26605],[113.98818,22.26605],[113.98818,22.26604],[113.98818,22.26604],[113.98817,22.26604],[113.98817,22.26604],[113.98817,22.26603],[113.98816,22.26603],[113.98816,22.26603],[113.98815,22.26602],[113.98815,22.26602],[113.98815,22.26602],[113.98814,22.26602],[113.98814,22.26601],[113.98813,22.26601],[113.98813,22.26601],[113.98813,22.266],[113.98812,22.266],[113.98812,22.266],[113.98812,22.266],[113.98811,22.26599],[113.98811,22.26599],[113.9881,22.26599],[113.9881,22.26598],[113.9881,22.26598],[113.98809,22.26598],[113.98809,22.26598],[113.98809,22.26597],[113.98808,22.26597],[113.98808,22.26597],[113.98808,22.26596],[113.98807,22.26596],[113.98807,22.26596],[113.98806,22.26595],[113.98806,22.26595],[113.98806,22.26595],[113.98805,22.26595],[113.98805,22.26594],[113.98805,22.26594],[113.98804,22.26594],[113.98804,22.26593],[113.98803,22.26593],[113.98803,22.26593],[113.98803,22.26593],[113.98802,22.26592],[113.98802,22.26592],[113.98801,22.26592],[113.98801,22.26592],[113.98801,22.26591],[113.988,22.26591],[113.988,22.26591],[113.98799,22.26591],[113.98799,22.2659],[113.98798,22.2659],[113.98798,22.2659],[113.98797,22.2659],[113.98797,22.26589],[113.98797,22.26589],[113.98796,22.26589],[113.98795,22.26588],[113.98795,22.26588],[113.98794,22.26588],[113.98794,22.26587],[113.98793,22.26587],[113.98793,22.26587],[113.98792,22.26587],[113.98791,22.26586],[113.98791,22.26586],[113.9879,22.26586],[113.9879,22.26585],[113.98789,22.26585],[113.98788,22.26585],[113.98788,22.26585],[113.98788,22.26584],[113.98787,22.26584],[113.98787,22.26584],[113.98786,22.26584],[113.98786,22.26584],[113.98785,22.26583],[113.98785,22.26583],[113.98785,22.26583],[113.98784,22.26583],[113.98784,22.26583],[113.98783,22.26582],[113.98783,22.26582],[113.98782,22.26582],[113.98782,22.26582],[113.98781,22.26582],[113.98781,22.26582],[113.9878,22.26582],[113.9878,22.26581],[113.9878,22.26581],[113.98779,22.26581],[113.98779,22.26581],[113.98778,22.26581],[113.98778,22.26581],[113.98777,22.26581],[113.98777,22.26581],[113.98775,22.2658],[113.98775,22.2658],[113.98774,22.2658],[113.98774,22.2658],[113.98773,22.2658],[113.98773,22.2658],[113.98772,22.2658],[113.98772,22.2658],[113.98771,22.2658],[113.98771,22.26579],[113.9877,22.26579],[113.98769,22.26579],[113.98768,22.26579],[113.98768,22.26579],[113.98767,22.26579],[113.98767,22.26579],[113.98766,22.26578],[113.98766,22.26578],[113.98765,22.26578],[113.98765,22.26578],[113.98764,22.26578],[113.98764,22.26578],[113.98763,22.26578],[113.98763,22.26578],[113.98762,22.26578],[113.98762,22.26578],[113.98762,22.26578],[113.98761,22.26577],[113.9876,22.26577],[113.98759,22.26577],[113.98759,22.26577],[113.98758,22.26577],[113.98757,22.26577],[113.98756,22.26577],[113.98756,22.26577],[113.98755,22.26577],[113.98754,22.26577],[113.98753,22.26576],[113.98752,22.26576],[113.98752,22.26576],[113.98751,22.26576],[113.9875,22.26576],[113.9875,22.26576],[113.98749,22.26576],[113.98749,22.26576],[113.98749,22.26576],[113.98748,22.26576],[113.98747,22.26576],[113.98747,22.26576],[113.98746,22.26576],[113.98745,22.26576],[113.98745,22.26576],[113.98744,22.26576],[113.98744,22.26576],[113.98743,22.26576],[113.98743,22.26576],[113.98742,22.26576],[113.98732,22.26574],[113.9872,22.26573],[113.98708,22.26572],[113.98698,22.26572],[113.98684,22.26573],[113.98679,22.26574],[113.98673,22.26575],[113.98668,22.26577],[113.98663,22.2658],[113.98658,22.26583],[113.98654,22.26586],[113.9865,22.26591],[113.98648,22.26593],[113.98644,22.26603],[113.9864,22.26609],[113.98639,22.26612],[113.98639,22.26616],[113.98639,22.26619],[113.98637,22.26622],[113.98637,22.26625],[113.98639,22.26636],[113.98639,22.26638],[113.98641,22.26655],[113.98649,22.26675],[113.98666,22.26703],[113.98673,22.26735],[113.98673,22.26753],[113.98672,22.26753],[113.98671,22.26753],[113.9867,22.26753],[113.9867,22.26753],[113.98669,22.26753],[113.98669,22.26753],[113.98668,22.26753],[113.98668,22.26754],[113.98668,22.26754],[113.98667,22.26754],[113.98626,22.26756],[113.98624,22.26756],[113.98624,22.26756],[113.98622,22.26756],[113.98622,22.26756],[113.98621,22.26756],[113.9862,22.26756],[113.9862,22.26756],[113.98619,22.26756],[113.98619,22.26756],[113.98618,22.26756],[113.98618,22.26756],[113.98618,22.26757],[113.98617,22.26757],[113.98617,22.26757],[113.98617,22.26757],[113.98616,22.26758],[113.98616,22.26758],[113.98616,22.26759],[113.98616,22.26759],[113.98615,22.2676],[113.98615,22.2676],[113.98615,22.2676],[113.98615,22.26761],[113.98614,22.26761],[113.98614,22.26762],[113.98614,22.26762],[113.98614,22.26763],[113.98614,22.26763],[113.98613,22.26763],[113.98613,22.26764],[113.98613,22.26764],[113.98613,22.26765],[113.98613,22.26765],[113.98613,22.26765],[113.98612,22.26766],[113.98612,22.26766],[113.98612,22.26767],[113.98612,22.26767],[113.98612,22.26768],[113.98612,22.26768],[113.98612,22.26768],[113.98612,22.26774],[113.98612,22.26774],[113.98612,22.26775],[113.98612,22.26775],[113.98612,22.26776],[113.98612,22.26777],[113.98612,22.26777],[113.98612,22.26778],[113.98612,22.26778],[113.98611,22.26778],[113.98611,22.26779],[113.98611,22.2678],[113.98611,22.2678],[113.98611,22.26781],[113.98611,22.26781],[113.98611,22.26782],[113.9861,22.26783],[113.9861,22.26783],[113.9861,22.26784],[113.9861,22.26784],[113.9861,22.26785],[113.9861,22.26785],[113.9861,22.26786],[113.9861,22.26786],[113.9861,22.26786],[113.9861,22.26787],[113.98609,22.26787],[113.98609,22.26788],[113.98609,22.26788],[113.98609,22.26789],[113.98609,22.26789],[113.98609,22.2679],[113.98609,22.2679],[113.98609,22.2679],[113.98609,22.26791],[113.98609,22.26791],[113.98609,22.26792],[113.98609,22.26793],[113.98609,22.26793],[113.98609,22.26794],[113.98609,22.26794],[113.98609,22.26794],[113.98609,22.26795],[113.98609,22.26795],[113.98609,22.26796],[113.98609,22.26796],[113.9861,22.26797],[113.9861,22.26797],[113.9861,22.26797],[113.9861,22.26798],[113.9861,22.26798],[113.98611,22.26799],[113.98611,22.26799],[113.98611,22.268],[113.98611,22.268],[113.98611,22.268],[113.98612,22.26801],[113.98612,22.26801],[113.98612,22.26802],[113.98612,22.26802],[113.98612,22.26802],[113.98613,22.26803],[113.98613,22.26803],[113.98613,22.26804],[113.98613,22.26804],[113.98613,22.26805],[113.98614,22.26805],[113.98614,22.26805],[113.98614,22.26806],[113.98614,22.26806],[113.98614,22.26807],[113.98614,22.26807],[113.98615,22.26807],[113.98615,22.26808],[113.98615,22.26808],[113.98615,22.26809],[113.98615,22.26809],[113.98616,22.2681],[113.98616,22.2681],[113.98616,22.2681],[113.98616,22.26811],[113.98616,22.26811],[113.98617,22.26812],[113.98617,22.26812],[113.98617,22.26812],[113.98617,22.26813],[113.98617,22.26813],[113.98618,22.26814],[113.98618,22.26814],[113.98618,22.26815],[113.98619,22.26815],[113.98619,22.26816],[113.98619,22.26816],[113.9862,22.26817],[113.9862,22.26817],[113.9862,22.26818],[113.9862,22.26818],[113.98621,22.26818],[113.98621,22.26819],[113.98621,22.26819],[113.98621,22.26819],[113.98622,22.2682],[113.98622,22.2682],[113.98622,22.26821],[113.98623,22.26821],[113.98623,22.26821],[113.98623,22.26822],[113.98623,22.26822],[113.98624,22.26822],[113.98624,22.26823],[113.98624,22.26823],[113.98625,22.26823],[113.98625,22.26824],[113.98625,22.26824],[113.98626,22.26824],[113.98626,22.26825],[113.98626,22.26825],[113.98626,22.26825],[113.98627,22.26826],[113.98627,22.26826],[113.98627,22.26826],[113.98628,22.26827],[113.98628,22.26827],[113.98628,22.26827],[113.98629,22.26828],[113.98629,22.26828],[113.98629,22.26828],[113.9863,22.26829],[113.9863,22.26829],[113.9863,22.26829],[113.98631,22.2683],[113.98631,22.2683],[113.98632,22.26831],[113.98632,22.26831],[113.98632,22.26831],[113.98633,22.26832],[113.98633,22.26832],[113.98633,22.26832],[113.98634,22.26833],[113.98634,22.26833],[113.98634,22.26833],[113.98635,22.26834],[113.98635,22.26834],[113.98636,22.26835],[113.98636,22.26835],[113.98637,22.26836],[113.98637,22.26836],[113.98638,22.26836],[113.98638,22.26837],[113.98638,22.26837],[113.98639,22.26837],[113.98639,22.26837],[113.98639,22.26838],[113.9864,22.26838],[113.9864,22.26838],[113.98641,22.26838],[113.98641,22.26839],[113.98641,22.26839],[113.98642,22.26839],[113.98642,22.26839],[113.98643,22.2684],[113.98643,22.2684],[113.98643,22.2684],[113.98644,22.2684],[113.98644,22.26841],[113.98645,22.26841],[113.98689,22.26837],[113.98689,22.26836],[113.9869,22.26836],[113.9869,22.26836],[113.98691,22.26836],[113.98691,22.26836],[113.98692,22.26836],[113.98692,22.26835],[113.98693,22.26835],[113.98693,22.26835],[113.98693,22.26835],[113.98694,22.26835],[113.98694,22.26835],[113.98695,22.26834],[113.98695,22.26834],[113.98696,22.26834],[113.98696,22.26834],[113.98696,22.26833],[113.98697,22.26833],[113.98697,22.26833],[113.98698,22.26833],[113.98698,22.26832],[113.98698,22.26832],[113.98699,22.26832],[113.98699,22.26832],[113.987,22.26831],[113.987,22.26831],[113.987,22.26831],[113.98701,22.2683],[113.98701,22.2683],[113.98701,22.2683],[113.98702,22.2683],[113.98702,22.26829],[113.98703,22.26829],[113.98703,22.26829],[113.98703,22.26828],[113.98704,22.26828],[113.98704,22.26828],[113.98704,22.26828],[113.98705,22.26827],[113.98705,22.26827],[113.98706,22.26826],[113.98706,22.26826],[113.98706,22.26825],[113.98707,22.26825],[113.98707,22.26825],[113.98707,22.26824],[113.98707,22.26824],[113.98708,22.26823],[113.98708,22.26823],[113.98708,22.26823],[113.98709,22.26822],[113.98709,22.26822],[113.98709,22.26822],[113.9871,22.26822],[113.9871,22.26822],[113.98711,22.26821],[113.98713,22.26821],[113.98713,22.26822],[113.98714,22.26822],[113.98714,22.26822],[113.98715,22.26822],[113.98715,22.26822],[113.98716,22.26822],[113.98716,22.26822],[113.98716,22.26822],[113.98717,22.26822],[113.98717,22.26822],[113.98718,22.26822],[113.98718,22.26823],[113.98719,22.26823],[113.98719,22.26823],[113.9872,22.26823],[113.9872,22.26823],[113.98721,22.26823],[113.98721,22.26823],[113.98722,22.26824],[113.98722,22.26824],[113.98723,22.26824],[113.98723,22.26824],[113.98724,22.26824],[113.98724,22.26824],[113.98725,22.26824],[113.98725,22.26824],[113.98726,22.26824],[113.98727,22.26824],[113.98727,22.26824],[113.98728,22.26824],[113.98728,22.26823],[113.98729,22.26823],[113.98729,22.26823],[113.9873,22.26823],[113.98731,22.26823],[113.98731,22.26823],[113.98732,22.26823],[113.98732,22.26823],[113.98735,22.26823],[113.98736,22.26823],[113.98736,22.26823],[113.98737,22.26823],[113.98737,22.26823],[113.98738,22.26823],[113.98738,22.26823],[113.98739,22.26823],[113.98739,22.26823],[113.9874,22.26823],[113.98741,22.26824],[113.98742,22.26824],[113.98742,22.26824],[113.98742,22.26825],[113.98743,22.26825],[113.98743,22.26825],[113.98743,22.26826],[113.98744,22.26826],[113.98744,22.26826],[113.98744,22.26827],[113.98745,22.26827],[113.98745,22.26827],[113.98745,22.26828],[113.98746,22.26828],[113.98746,22.26828],[113.98747,22.26828],[113.98747,22.26828],[113.98748,22.26828],[113.98748,22.26828],[113.98749,22.26828],[113.98749,22.26828],[113.9875,22.26828],[113.9875,22.26828],[113.98751,22.26828],[113.98752,22.26828],[113.98752,22.26828],[113.98753,22.26828],[113.98753,22.26827],[113.98754,22.26827],[113.98755,22.26827],[113.98774,22.26835],[113.98768,22.26848],[113.98768,22.26849],[113.98768,22.26849],[113.98767,22.26849],[113.98767,22.2685],[113.98767,22.2685],[113.98766,22.2685],[113.98766,22.26851],[113.98766,22.26851],[113.98765,22.26851],[113.98765,22.26852],[113.98765,22.26852],[113.98764,22.26852],[113.98764,22.26853],[113.98763,22.26853],[113.98763,22.26854],[113.98763,22.26854],[113.98762,22.26854],[113.98762,22.26855],[113.98762,22.26855],[113.98761,22.26855],[113.98761,22.26855],[113.98761,22.26856],[113.9876,22.26856],[113.9876,22.26856],[113.98759,22.26856],[113.98759,22.26857],[113.98759,22.26857],[113.98758,22.26857],[113.98758,22.26858],[113.98757,22.26858],[113.98757,22.26858],[113.98757,22.26858],[113.98756,22.26859],[113.98756,22.26859],[113.98755,22.26859],[113.98755,22.26859],[113.98755,22.26859],[113.98754,22.2686],[113.98753,22.2686],[113.98753,22.2686],[113.98752,22.26861],[113.98752,22.26861],[113.98752,22.26861],[113.98751,22.26861],[113.98751,22.26861],[113.9875,22.26862],[113.98749,22.26862],[113.98749,22.26862],[113.98748,22.26862],[113.98748,22.26863],[113.98748,22.26863],[113.98747,22.26863],[113.98747,22.26863],[113.98746,22.26864],[113.98746,22.26864],[113.98746,22.26864],[113.98745,22.26864],[113.98745,22.26865],[113.98744,22.26865],[113.98744,22.26865],[113.98744,22.26865],[113.98743,22.26866],[113.98743,22.26866],[113.98742,22.26866],[113.98742,22.26866],[113.98742,22.26867],[113.98741,22.26867],[113.98741,22.26867],[113.9874,22.26868],[113.9874,22.26868],[113.9874,22.26868],[113.98739,22.26868],[113.98739,22.26869],[113.98739,22.26869],[113.98738,22.26869],[113.98738,22.2687],[113.98738,22.2687],[113.98737,22.2687],[113.98737,22.26871],[113.98737,22.26871],[113.98736,22.26871],[113.98736,22.26872],[113.98736,22.26872],[113.98735,22.26872],[113.98735,22.26873],[113.98735,22.26873],[113.98734,22.26873],[113.98734,22.26874],[113.98734,22.26874],[113.98733,22.26874],[113.98733,22.26875],[113.98733,22.26875],[113.98733,22.26875],[113.98732,22.26876],[113.98732,22.26876],[113.98732,22.26877],[113.98731,22.26877],[113.98731,22.26877],[113.98731,22.26878],[113.9873,22.26879],[113.9873,22.26879],[113.9873,22.26879],[113.9873,22.2688],[113.9873,22.2688],[113.98729,22.26881],[113.98729,22.26881],[113.98729,22.26881],[113.98729,22.26882],[113.98729,22.26882],[113.98728,22.26883],[113.98728,22.26883],[113.98728,22.26883],[113.98728,22.26884],[113.98727,22.26885],[113.98727,22.26885],[113.98727,22.26886],[113.98727,22.26886],[113.98727,22.26886],[113.98727,22.26887],[113.98726,22.26887],[113.98726,22.26888],[113.98726,22.26888],[113.98726,22.26888],[113.98726,22.26889],[113.98725,22.26889],[113.98725,22.2689],[113.98725,22.2689],[113.98725,22.26891],[113.98725,22.26891],[113.98725,22.26891],[113.98724,22.26892],[113.98724,22.26892],[113.98724,22.26893],[113.98724,22.26893],[113.98724,22.26894],[113.98724,22.26894],[113.98724,22.26894],[113.98723,22.26895],[113.98723,22.26895],[113.98723,22.26896],[113.98723,22.26897],[113.98723,22.26897],[113.98723,22.26898],[113.98723,22.26898],[113.98723,22.26898],[113.98723,22.26899],[113.98723,22.26899],[113.98723,22.269],[113.98723,22.269],[113.98723,22.26901],[113.98723,22.26901],[113.98723,22.26902],[113.98723,22.26902],[113.98723,22.26903],[113.98722,22.26904],[113.98722,22.26905],[113.98722,22.26906],[113.98722,22.26907],[113.98722,22.26907],[113.98722,22.26907],[113.98722,22.26908],[113.98722,22.26908],[113.98722,22.26909],[113.98722,22.2691],[113.98721,22.2691],[113.98721,22.26911],[113.98721,22.26911],[113.98721,22.26912],[113.98721,22.26912],[113.98721,22.26913],[113.98721,22.26913],[113.98721,22.26914],[113.9872,22.26914],[113.9872,22.26915],[113.9872,22.26915],[113.9872,22.26915],[113.9872,22.26916],[113.9872,22.26916],[113.9872,22.26917],[113.98719,22.26918],[113.98719,22.26918],[113.98719,22.26918],[113.98719,22.26919],[113.98719,22.26919],[113.98719,22.2692],[113.98719,22.2692],[113.98718,22.26921],[113.98718,22.26921],[113.98718,22.26921],[113.98718,22.26922],[113.98718,22.26922],[113.98718,22.26923],[113.98717,22.26923],[113.98717,22.26924],[113.98717,22.26924],[113.98717,22.26924],[113.98717,22.26925],[113.98717,22.26925],[113.98716,22.26926],[113.98716,22.26926],[113.98716,22.26926],[113.98716,22.26927],[113.98716,22.26927],[113.98715,22.26928],[113.98715,22.26929],[113.98715,22.26929],[113.98715,22.26929],[113.98714,22.2693],[113.98714,22.2693],[113.98714,22.26931],[113.98714,22.26931],[113.98713,22.26931],[113.98713,22.26932],[113.98713,22.26932],[113.98713,22.26933],[113.98713,22.26933],[113.98712,22.26933],[113.98712,22.26934],[113.98712,22.26934],[113.98712,22.26935],[113.98711,22.26935],[113.98711,22.26935],[113.98711,22.26936],[113.98711,22.26936],[113.98711,22.26937],[113.9871,22.26937],[113.9871,22.26937],[113.9871,22.26938],[113.9871,22.26938],[113.9871,22.26939],[113.98709,22.26939],[113.98709,22.26939],[113.98709,22.2694],[113.98709,22.2694],[113.98708,22.26941],[113.98708,22.26941],[113.98708,22.26941],[113.98708,22.26942],[113.98708,22.26942],[113.98707,22.26943],[113.98707,22.26943],[113.98707,22.26943],[113.98706,22.26944],[113.98706,22.26945],[113.98706,22.26945],[113.98705,22.26946],[113.98705,22.26946],[113.98705,22.26947],[113.98705,22.26947],[113.98704,22.26947],[113.98704,22.26948],[113.98704,22.26948],[113.98704,22.26948],[113.98703,22.26949],[113.98703,22.26949],[113.98703,22.2695],[113.98702,22.2695],[113.98702,22.2695],[113.98702,22.26951],[113.98702,22.26951],[113.98701,22.26951],[113.98701,22.26952],[113.98701,22.26952],[113.98701,22.26953],[113.987,22.26953],[113.987,22.26953],[113.987,22.26954],[113.98699,22.26954],[113.98699,22.26954],[113.98699,22.26955],[113.98699,22.26955],[113.98698,22.26956],[113.98698,22.26956],[113.98698,22.26956],[113.98697,22.26957],[113.98697,22.26957],[113.98697,22.26957],[113.98697,22.26958],[113.98696,22.26959],[113.98696,22.26959],[113.98696,22.26959],[113.98695,22.2696],[113.98695,22.2696],[113.98695,22.26961],[113.98694,22.26961],[113.98694,22.26962],[113.98694,22.26962],[113.98693,22.26963],[113.98693,22.26963],[113.98693,22.26964],[113.98693,22.26964],[113.98693,22.26964],[113.98692,22.26965],[113.98692,22.26966],[113.98692,22.26966],[113.98691,22.26967],[113.98691,22.26967],[113.98691,22.26968],[113.9869,22.26968],[113.9869,22.26968],[113.9869,22.26969],[113.9869,22.26969],[113.9869,22.2697],[113.98689,22.2697],[113.98689,22.2697],[113.98689,22.26971],[113.98689,22.26971],[113.98688,22.26972],[113.98688,22.26972],[113.98688,22.26972],[113.98688,22.26973],[113.98688,22.26973],[113.98688,22.26974],[113.98687,22.26974],[113.98687,22.26975],[113.98687,22.26975],[113.98687,22.26975],[113.98687,22.26976],[113.98686,22.26976],[113.98686,22.26977],[113.98686,22.26977],[113.98686,22.26977],[113.98686,22.26978],[113.98686,22.26978],[113.98685,22.26979],[113.98685,22.26979],[113.98685,22.2698],[113.98685,22.2698],[113.98685,22.2698],[113.98685,22.26981],[113.98684,22.26981],[113.98685,22.26981],[113.98685,22.26981],[113.98686,22.26981],[113.98686,22.26981],[113.98687,22.26981],[113.98687,22.2698],[113.98688,22.2698],[113.98688,22.2698],[113.98689,22.2698],[113.98689,22.2698],[113.9869,22.2698],[113.9869,22.2698],[113.9869,22.2698],[113.98691,22.2698],[113.98692,22.26979],[113.98692,22.26979],[113.98693,22.26979],[113.98694,22.26979],[113.98695,22.26979],[113.98696,22.26979],[113.98697,22.26979],[113.98697,22.26979],[113.98698,22.26979],[113.98699,22.26979],[113.98699,22.26979],[113.987,22.26978],[113.987,22.26978],[113.98701,22.26978],[113.98701,22.26978],[113.98702,22.26978],[113.98702,22.26978],[113.98703,22.26978],[113.98703,22.26978],[113.98704,22.26979],[113.98704,22.26979],[113.98705,22.26979],[113.98705,22.26979],[113.98706,22.2698],[113.98706,22.2698],[113.98706,22.2698],[113.98707,22.2698],[113.98707,22.26981],[113.98707,22.26981],[113.98708,22.26981],[113.98708,22.26982],[113.98708,22.26982],[113.98708,22.26983],[113.98709,22.26983],[113.98709,22.26983],[113.98709,22.26984],[113.98709,22.26984],[113.98709,22.26985],[113.98709,22.26985],[113.98709,22.26986],[113.9871,22.26986],[113.9871,22.26987],[113.9871,22.26987],[113.9871,22.26988],[113.9871,22.26989],[113.9871,22.2699],[113.9871,22.2699],[113.9871,22.26991],[113.9871,22.26991],[113.9871,22.26992],[113.9871,22.26992],[113.9871,22.26994],[113.9871,22.26994],[113.9871,22.26996],[113.9871,22.26996],[113.9871,22.26997],[113.9871,22.26997],[113.9871,22.26997],[113.9871,22.26998],[113.9871,22.26998],[113.9871,22.26999],[113.9871,22.26999],[113.9871,22.27],[113.9871,22.27],[113.9871,22.27001],[113.98709,22.27001],[113.98709,22.27001],[113.98709,22.27002],[113.98709,22.27002],[113.98709,22.27003],[113.98709,22.27003],[113.98709,22.27004],[113.98709,22.27004],[113.98707,22.27015],[113.98705,22.27025],[113.98704,22.27036],[113.98703,22.27049],[113.98704,22.27057],[113.98707,22.27066],[113.98709,22.27074],[113.98712,22.27084],[113.98717,22.2709],[113.98721,22.27096],[113.98726,22.27101],[113.98732,22.27105],[113.98738,22.27108],[113.98741,22.2711],[113.98747,22.27112],[113.98753,22.27112],[113.98761,22.27112],[113.98767,22.27111],[113.98774,22.27108],[113.98776,22.2711],[113.98782,22.27116],[113.988,22.27147],[113.98804,22.2715],[113.98806,22.27153],[113.98807,22.27155],[113.98807,22.27159],[113.98808,22.27159],[113.98818,22.27173],[113.98836,22.27193],[113.98851,22.27205],[113.98853,22.27238],[113.98858,22.27291],[113.9886,22.27314],[113.98869,22.27326],[113.98806,22.27293],[113.98764,22.27286],[113.98746,22.27288],[113.98716,22.27289],[113.98718,22.27292],[113.98737,22.27327],[113.98748,22.27366],[113.98707,22.27371],[113.98685,22.27372],[113.98685,22.27372],[113.9866,22.27368],[113.98657,22.27366],[113.98642,22.2736],[113.98613,22.27359],[113.98567,22.27357],[113.98556,22.27357],[113.98547,22.27358],[113.98546,22.27358],[113.98545,22.27358],[113.98539,22.27359],[113.98534,22.27358],[113.98532,22.27354],[113.98531,22.27353],[113.9853,22.27349],[113.98529,22.27346],[113.98528,22.27346],[113.98523,22.27341],[113.98521,22.2734],[113.98519,22.27339],[113.98513,22.27337],[113.98505,22.27336],[113.98496,22.27337],[113.98496,22.27337],[113.98494,22.27337],[113.98489,22.27338],[113.98488,22.27338],[113.98483,22.27339],[113.98478,22.27338],[113.98473,22.27338],[113.98469,22.27339],[113.98466,22.27341],[113.98466,22.27341],[113.98465,22.27344],[113.98465,22.27347],[113.98468,22.27349],[113.98468,22.2735],[113.98473,22.27352],[113.98477,22.27353],[113.98479,22.27354],[113.98484,22.27357],[113.98485,22.27358],[113.98486,22.27359],[113.9849,22.27362],[113.98497,22.2737],[113.98499,22.27375],[113.98501,22.2738],[113.98501,22.27386],[113.98501,22.27389],[113.98499,22.27395],[113.98498,22.27399],[113.98497,22.27403],[113.98499,22.27408],[113.98503,22.2741],[113.98508,22.27411],[113.98516,22.27413],[113.98527,22.27416],[113.9853,22.27419],[113.98533,22.27422],[113.98536,22.27427],[113.98542,22.27431],[113.9855,22.2744],[113.98556,22.27444],[113.98563,22.27451],[113.98568,22.27456],[113.98576,22.27461],[113.9858,22.27462],[113.98587,22.27462],[113.98591,22.27461],[113.98594,22.2746],[113.98599,22.27458],[113.98603,22.27457],[113.98606,22.27457],[113.98608,22.2746],[113.98611,22.27462],[113.98612,22.27466],[113.98615,22.27471],[113.98616,22.27474],[113.98619,22.27477],[113.98622,22.27477],[113.98626,22.27477],[113.98633,22.27476],[113.98637,22.27478],[113.9864,22.27481],[113.98642,22.27484],[113.98642,22.27489],[113.98645,22.27494],[113.98646,22.275],[113.98647,22.27506],[113.98649,22.27513],[113.98653,22.27517],[113.98656,22.2752],[113.9866,22.27525],[113.98661,22.27529],[113.98662,22.27534],[113.98663,22.27539],[113.98664,22.27543],[113.98667,22.27546],[113.98671,22.27549],[113.98676,22.27551],[113.98683,22.27551],[113.98688,22.27552],[113.98693,22.27551],[113.98699,22.27552],[113.98703,22.27549],[113.98709,22.27547],[113.98716,22.27545],[113.9872,22.27546],[113.98724,22.27549],[113.98727,22.27551],[113.98732,22.27554],[113.98734,22.27558],[113.98735,22.27563],[113.98734,22.2757],[113.98733,22.27575],[113.98732,22.27578],[113.98734,22.2758],[113.98736,22.2758],[113.9874,22.27581],[113.98744,22.27583],[113.98749,22.27586],[113.98753,22.27589],[113.98757,22.2759],[113.98762,22.27591],[113.98766,22.27592],[113.98769,22.27594],[113.98773,22.27596],[113.98775,22.27598],[113.98776,22.27603],[113.98777,22.27607],[113.98778,22.27613],[113.98779,22.27619],[113.9878,22.27624],[113.98781,22.27628],[113.98782,22.27633],[113.98784,22.27638],[113.98788,22.27639],[113.98791,22.27641],[113.98796,22.27643],[113.988,22.27644],[113.98805,22.27646],[113.98806,22.27648],[113.98807,22.27651],[113.9881,22.27654],[113.98813,22.27656],[113.98817,22.27658],[113.98821,22.27659],[113.98827,22.27661],[113.98831,22.27662],[113.98842,22.27663],[113.98847,22.27664],[113.98851,22.27663],[113.98857,22.27662],[113.98861,22.27656],[113.98864,22.2765],[113.98866,22.27645],[113.98866,22.27638],[113.98867,22.27633],[113.98872,22.27629],[113.98877,22.27629],[113.98881,22.27629],[113.98881,22.27629],[113.98882,22.27635],[113.98886,22.27638],[113.9889,22.2764],[113.98894,22.27642],[113.98898,22.27643],[113.98902,22.27646],[113.98906,22.27649],[113.98908,22.27655],[113.98913,22.27658],[113.98916,22.27658],[113.98922,22.27658],[113.98928,22.27657],[113.98935,22.27658],[113.9894,22.2766],[113.98946,22.27662],[113.98951,22.27664],[113.98952,22.27667],[113.98953,22.27667],[113.98967,22.27657],[113.99072,22.27736],[113.99225,22.27735],[113.99235,22.27732],[113.99243,22.27729],[113.99251,22.27724],[113.99257,22.27719],[113.99259,22.27715],[113.99262,22.27706],[113.99265,22.27696],[113.99274,22.27621],[113.99318,22.27624],[113.99319,22.27626],[113.99319,22.27627],[113.9932,22.2763],[113.99321,22.27632],[113.99321,22.27634],[113.99322,22.27635],[113.99322,22.27637],[113.99323,22.27638],[113.99324,22.2764],[113.99325,22.27641],[113.99326,22.27642],[113.99327,22.27643],[113.99327,22.27643],[113.99327,22.27644],[113.99327,22.27645],[113.99327,22.27645],[113.99326,22.27646],[113.99325,22.27649],[113.99324,22.2765],[113.9932,22.27653],[113.99318,22.27655],[113.99317,22.27657],[113.99316,22.27658],[113.99315,22.2766],[113.99315,22.27661],[113.99315,22.27663],[113.99315,22.27665],[113.99315,22.27667],[113.99316,22.27669],[113.99317,22.27672],[113.99318,22.27674],[113.99319,22.27675],[113.9932,22.27676],[113.99323,22.27678],[113.99324,22.2768],[113.99325,22.27681],[113.99325,22.27682],[113.99326,22.27683],[113.99326,22.27685],[113.99326,22.27686],[113.99326,22.27688],[113.99327,22.27696],[113.99327,22.27697],[113.99327,22.27698],[113.99328,22.27699],[113.99329,22.277],[113.9933,22.27702],[113.99331,22.27703],[113.99332,22.27705],[113.99332,22.27706],[113.99334,22.27711],[113.99334,22.27712],[113.99335,22.27714],[113.99336,22.27715],[113.99337,22.27715],[113.99338,22.27716],[113.9934,22.27717],[113.99342,22.27718],[113.99343,22.27719],[113.99345,22.27721],[113.99346,22.27721],[113.99347,22.27723],[113.99348,22.27725],[113.99349,22.27726],[113.99349,22.27728],[113.99349,22.27729],[113.9935,22.2773],[113.9935,22.27731],[113.99353,22.27734],[113.99354,22.27736],[113.99354,22.27737],[113.99355,22.2774],[113.99356,22.27741],[113.99356,22.27742],[113.99357,22.27743],[113.99359,22.27746],[113.9936,22.27747],[113.99361,22.27748],[113.99363,22.27749],[113.99365,22.27749],[113.99366,22.2775],[113.99368,22.27751],[113.99369,22.27752],[113.99371,22.27753],[113.99373,22.27754],[113.99374,22.27755],[113.99375,22.27756],[113.99377,22.2776],[113.99379,22.27765],[113.99381,22.27769],[113.99383,22.27772],[113.99385,22.27776],[113.99385,22.27778],[113.99386,22.2778],[113.99387,22.27782],[113.99387,22.27783],[113.99387,22.27783],[113.99387,22.27785],[113.99388,22.27787],[113.99388,22.27789],[113.99388,22.27791],[113.99388,22.27794],[113.99389,22.27797],[113.99389,22.27798],[113.99391,22.27803],[113.99392,22.27806],[113.99392,22.27807],[113.99393,22.27809],[113.99394,22.2781],[113.99396,22.27814],[113.99399,22.27818],[113.994,22.27819],[113.99401,22.27819],[113.99403,22.2782],[113.99405,22.27821],[113.99406,22.27822],[113.99407,22.27822],[113.99409,22.27823],[113.99411,22.27825],[113.99412,22.27826],[113.99413,22.27827],[113.99414,22.27828],[113.99415,22.27829],[113.99417,22.2783],[113.99418,22.27831],[113.9942,22.27833],[113.99422,22.27834],[113.99424,22.27835],[113.99426,22.27837],[113.99427,22.27837],[113.99429,22.27838],[113.99431,22.27839],[113.99433,22.27841],[113.99435,22.27842],[113.99436,22.27844],[113.99436,22.27845],[113.99436,22.27847],[113.99437,22.27848],[113.99437,22.27851],[113.99436,22.27853],[113.99436,22.27855],[113.99435,22.27857],[113.99433,22.27861],[113.99432,22.27863],[113.99431,22.27865],[113.99429,22.27867],[113.99428,22.27868],[113.99426,22.2787],[113.99423,22.27873],[113.9942,22.27877],[113.99418,22.27878],[113.99416,22.2788],[113.99413,22.27883],[113.99411,22.27886],[113.9941,22.27887],[113.99409,22.27889],[113.99408,22.2789],[113.99408,22.27891],[113.99408,22.27892],[113.99409,22.27893],[113.99409,22.27894],[113.99409,22.27895],[113.99409,22.27896],[113.99409,22.27898],[113.9941,22.279],[113.9941,22.27903],[113.9941,22.27905],[113.99411,22.27906],[113.99411,22.27907],[113.99412,22.27909],[113.99416,22.27914],[113.99419,22.27917],[113.9942,22.27918],[113.99422,22.2792],[113.99423,22.27922],[113.99424,22.27924],[113.99425,22.27926],[113.99427,22.27928],[113.99428,22.27929],[113.99429,22.27931],[113.9943,22.27933],[113.99432,22.27935],[113.99433,22.27937],[113.99434,22.27939],[113.99436,22.2794],[113.99437,22.27942],[113.99438,22.27943],[113.99439,22.27944],[113.99439,22.27945],[113.9944,22.27947],[113.9944,22.27949],[113.99439,22.2795],[113.99439,22.27952],[113.99439,22.27957],[113.99439,22.2796],[113.99439,22.27963],[113.99439,22.27967],[113.99439,22.27969],[113.99439,22.27971],[113.9944,22.27974],[113.99441,22.27978],[113.99442,22.2798],[113.99442,22.27983],[113.99442,22.27985],[113.99441,22.27987],[113.9944,22.2799],[113.99439,22.27993],[113.99438,22.27995],[113.99437,22.27996],[113.99437,22.27998],[113.99436,22.28001],[113.99436,22.28004],[113.99436,22.28006],[113.99434,22.2801],[113.99434,22.28012],[113.99434,22.28013],[113.99435,22.28015],[113.99437,22.28017],[113.99437,22.28019],[113.99438,22.28022],[113.99438,22.28025],[113.99437,22.28029],[113.99437,22.28032],[113.99436,22.28034],[113.99436,22.28037],[113.99437,22.28041],[113.99437,22.28044],[113.99437,22.28047],[113.99436,22.28049],[113.99436,22.28051],[113.99435,22.28052],[113.99436,22.28053],[113.99437,22.28054],[113.99438,22.28057],[113.9944,22.28058],[113.99442,22.2806],[113.99444,22.28061],[113.99446,22.28063],[113.99447,22.28064],[113.99449,22.28065],[113.9945,22.28066],[113.99451,22.28067],[113.99453,22.28069],[113.99454,22.2807],[113.99457,22.28072],[113.99458,22.28073],[113.99459,22.28074],[113.9946,22.28076],[113.99461,22.28078],[113.99462,22.2808],[113.99464,22.28083],[113.99466,22.28086],[113.99467,22.28088],[113.99469,22.28089],[113.9947,22.28091],[113.99471,22.28093],[113.99472,22.28096],[113.99472,22.28098],[113.99472,22.28098],[113.99474,22.28101],[113.99475,22.28103],[113.99475,22.28104],[113.99476,22.28106],[113.99476,22.28108],[113.99477,22.28108],[113.99478,22.2811],[113.99481,22.28112],[113.99483,22.28114],[113.99484,22.28116],[113.99486,22.28117],[113.99488,22.28119],[113.99491,22.2812],[113.99493,22.28122],[113.99495,22.28123],[113.99497,22.28124],[113.995,22.28126],[113.99509,22.28131],[113.99511,22.28132],[113.99513,22.28134],[113.99514,22.28135],[113.99515,22.28136],[113.99516,22.28138],[113.99515,22.2814],[113.99515,22.28141],[113.99514,22.28143],[113.99512,22.28145],[113.9951,22.28148],[113.99509,22.2815],[113.99505,22.28155],[113.99503,22.28159],[113.99502,22.28161],[113.99501,22.28164],[113.99501,22.28165],[113.995,22.28166],[113.99499,22.28169],[113.99499,22.28169],[113.99499,22.28171],[113.99499,22.28171],[113.99499,22.28173],[113.99499,22.28175],[113.99499,22.28176],[113.99499,22.28179],[113.995,22.2818],[113.99501,22.28183],[113.99502,22.28184],[113.99503,22.28185],[113.99503,22.28186],[113.99503,22.28188],[113.99503,22.28189],[113.99503,22.2819],[113.99504,22.28192],[113.99505,22.28195],[113.99505,22.28197],[113.99505,22.28198],[113.99507,22.282],[113.99507,22.28202],[113.99508,22.28203],[113.99508,22.28203],[113.99508,22.28204],[113.99509,22.28208],[113.99509,22.28209],[113.9951,22.28211],[113.9951,22.28214],[113.9951,22.28217],[113.9951,22.2822],[113.99511,22.28221],[113.99511,22.28222],[113.99511,22.28224],[113.99512,22.28226],[113.99513,22.28227],[113.99514,22.28229],[113.99515,22.28229],[113.99515,22.2823],[113.99519,22.28232],[113.9952,22.28233],[113.99523,22.28234],[113.99524,22.28235],[113.99525,22.28236],[113.99526,22.28237],[113.99529,22.28239],[113.9953,22.28239],[113.99531,22.2824],[113.99531,22.28241],[113.99532,22.28241],[113.99533,22.28243],[113.99533,22.28244],[113.99533,22.28245],[113.99534,22.28247],[113.99534,22.28248],[113.99534,22.2825],[113.99534,22.28252],[113.99534,22.28253],[113.99534,22.28256],[113.99534,22.2826],[113.99534,22.28262],[113.99534,22.28263],[113.99534,22.28266],[113.99534,22.28268],[113.99534,22.28269],[113.99534,22.2827],[113.99534,22.28271],[113.99534,22.28272],[113.99535,22.28275],[113.99536,22.2828],[113.99536,22.2828],[113.99537,22.28283],[113.99538,22.28286],[113.99538,22.28286],[113.99539,22.28288],[113.9954,22.2829],[113.9954,22.2829],[113.99541,22.28292],[113.99542,22.28294],[113.99544,22.28296],[113.99545,22.28297],[113.99546,22.28298],[113.99547,22.28299],[113.99548,22.28299],[113.99549,22.28299],[113.99551,22.283],[113.99553,22.28301],[113.99555,22.28301],[113.99558,22.28301],[113.99558,22.28302],[113.99561,22.28302],[113.99563,22.28302],[113.99565,22.28303],[113.99568,22.28304],[113.9957,22.28305],[113.99571,22.28305],[113.99573,22.28306],[113.99574,22.28307],[113.99575,22.28307],[113.99576,22.28308],[113.99577,22.28309],[113.99579,22.2831],[113.9958,22.28311],[113.9958,22.28311],[113.99582,22.28312],[113.99584,22.28312],[113.99585,22.28312],[113.99586,22.28312],[113.99588,22.28313],[113.9959,22.28314],[113.99592,22.28315],[113.99593,22.28316],[113.99594,22.28317],[113.99594,22.28317],[113.99595,22.28319],[113.99596,22.2832],[113.99596,22.28321],[113.99597,22.28323],[113.99598,22.28324],[113.99599,22.28324],[113.99599,22.28325],[113.99601,22.28327],[113.99606,22.28331],[113.99607,22.28333],[113.99608,22.28335],[113.99608,22.28337],[113.99608,22.28339],[113.99608,22.28339],[113.99607,22.28341],[113.99606,22.28343],[113.99606,22.28344],[113.99606,22.28344],[113.99606,22.28346],[113.99606,22.28347],[113.99606,22.28348],[113.99607,22.2835],[113.99433,22.28364],[113.99432,22.28364],[113.99431,22.28365],[113.99431,22.28367],[113.99431,22.28369],[113.9943,22.2837],[113.99428,22.28372],[113.99426,22.28373],[113.99425,22.28374],[113.99423,22.28375],[113.99422,22.28376],[113.9942,22.28376],[113.99418,22.28377],[113.99416,22.28377],[113.99413,22.28377],[113.9941,22.28377],[113.99409,22.28377],[113.99408,22.28377],[113.99407,22.28376],[113.99405,22.28375],[113.99404,22.28371],[113.99403,22.2837],[113.99402,22.28369],[113.994,22.28368],[113.99397,22.28369],[113.99394,22.28369],[113.99391,22.28371],[113.99389,22.28373],[113.99385,22.28375],[113.99382,22.28376],[113.99379,22.28377],[113.99374,22.28377],[113.99373,22.28377],[113.99368,22.28379],[113.99365,22.2838],[113.99362,22.28381],[113.99359,22.28382],[113.99357,22.28383],[113.99355,22.28384],[113.99353,22.28385],[113.99351,22.28386],[113.99348,22.28386],[113.99345,22.28387],[113.99342,22.28386],[113.9934,22.28387],[113.99338,22.28388],[113.99336,22.28389],[113.99335,22.28389],[113.99333,22.28389],[113.9933,22.28389],[113.99328,22.28388],[113.99326,22.28387],[113.99324,22.28387],[113.99321,22.28386],[113.99318,22.28385],[113.99315,22.28385],[113.99313,22.28384],[113.99309,22.28385],[113.99308,22.28383],[113.99307,22.28382],[113.99306,22.28382],[113.99305,22.28382],[113.99303,22.28383],[113.99302,22.28382],[113.99301,22.2838],[113.993,22.2838],[113.99299,22.28379],[113.99297,22.28379],[113.99223,22.28401],[113.9922,22.28402],[113.99218,22.28403],[113.99216,22.28404],[113.99215,22.28405],[113.99213,22.28405],[113.99211,22.28406],[113.99206,22.28407],[113.99205,22.28407],[113.99203,22.28407],[113.992,22.28408],[113.99198,22.28408],[113.99195,22.28409],[113.99191,22.2841],[113.9919,22.28411],[113.99181,22.28414],[113.99179,22.28415],[113.99177,22.28417],[113.99175,22.28418],[113.99173,22.2842],[113.99172,22.28421],[113.99171,22.28422],[113.99169,22.28425],[113.99168,22.28427],[113.99166,22.28428],[113.99164,22.2843],[113.99163,22.28432],[113.99162,22.28433],[113.9916,22.28437],[113.99159,22.28439],[113.99158,22.28441],[113.99158,22.28442],[113.99158,22.28443],[113.99158,22.28444],[113.99159,22.28445],[113.99165,22.28458],[113.99166,22.28461],[113.99167,22.28463],[113.99167,22.28464],[113.99167,22.28465],[113.99168,22.28466],[113.99169,22.28467],[113.9917,22.28469],[113.9917,22.2847],[113.9917,22.28471],[113.9917,22.28471],[113.9917,22.28471],[113.9917,22.28472],[113.9917,22.28472],[113.99169,22.28472],[113.99169,22.28473],[113.9917,22.28476],[113.9917,22.28477],[113.99171,22.2848],[113.99171,22.28483],[113.99171,22.28484],[113.99171,22.28485],[113.99171,22.28485],[113.99172,22.28487],[113.99173,22.28488],[113.99173,22.28489],[113.99174,22.28492],[113.99175,22.28494],[113.99176,22.28497],[113.99177,22.285],[113.99178,22.285],[113.99179,22.28501],[113.99179,22.28502],[113.9918,22.28503],[113.99181,22.28503],[113.99183,22.28504],[113.99185,22.28504],[113.99186,22.28504],[113.99187,22.28505],[113.99189,22.28506],[113.99191,22.28507],[113.99193,22.28508],[113.99194,22.28509],[113.99195,22.2851],[113.99196,22.28511],[113.99198,22.28514],[113.992,22.28519],[113.99201,22.28521],[113.99203,22.28525],[113.99204,22.28526],[113.99205,22.28527],[113.99206,22.28528],[113.99206,22.28529],[113.99207,22.28529],[113.99208,22.28529],[113.9921,22.2853],[113.99214,22.28531],[113.99216,22.28531],[113.99219,22.28532],[113.99223,22.28533],[113.99226,22.28534],[113.99227,22.28534],[113.9923,22.28534],[113.99232,22.28534],[113.99233,22.28534],[113.99234,22.28534],[113.99238,22.28534],[113.99242,22.28534],[113.99246,22.28535],[113.99248,22.28536],[113.99251,22.28537],[113.99253,22.28539],[113.99254,22.28539],[113.99255,22.2854],[113.99256,22.2854],[113.99261,22.28541],[113.99263,22.28541],[113.99265,22.28542],[113.99267,22.28542],[113.99269,22.28544],[113.99271,22.28545],[113.99273,22.28545],[113.99276,22.28547],[113.99277,22.28549],[113.99279,22.28551],[113.99279,22.28552],[113.99281,22.28555],[113.99282,22.28557],[113.99283,22.28558],[113.99285,22.28559],[113.99288,22.2856],[113.9929,22.28562],[113.99292,22.28563],[113.99294,22.28563],[113.99296,22.28563],[113.99297,22.28564],[113.99298,22.28565],[113.993,22.28566],[113.99302,22.28568],[113.99305,22.2857],[113.99307,22.28571],[113.99309,22.28573],[113.9931,22.28574],[113.99314,22.28577],[113.99317,22.28579],[113.99322,22.28583],[113.99325,22.28586],[113.99326,22.28587],[113.99328,22.28588],[113.9933,22.28589],[113.99331,22.28589],[113.99332,22.2859],[113.99334,22.2859],[113.99335,22.2859],[113.99337,22.28591],[113.9934,22.28592],[113.99342,22.28593],[113.99344,22.28594],[113.99347,22.28595],[113.99351,22.28597],[113.99353,22.28598],[113.99356,22.286],[113.99358,22.28602],[113.9936,22.28602],[113.99361,22.28601],[113.99363,22.28601],[113.99365,22.28601],[113.99369,22.28603],[113.99373,22.28604],[113.99377,22.28605],[113.99381,22.28606],[113.99383,22.28607],[113.99384,22.28607],[113.99386,22.28608],[113.99388,22.28608],[113.99394,22.28608],[113.99395,22.28608],[113.99397,22.28609],[113.99398,22.2861],[113.994,22.28611],[113.99401,22.28613],[113.99405,22.28615],[113.99406,22.28616],[113.99408,22.28617],[113.9941,22.28618],[113.99412,22.28619],[113.99417,22.2862],[113.99418,22.2862],[113.9942,22.28621],[113.99422,22.28622],[113.99424,22.28624],[113.99426,22.28625],[113.99427,22.28626],[113.99429,22.28627],[113.99433,22.28628],[113.99435,22.28628],[113.99438,22.28628],[113.9944,22.28628],[113.99442,22.28628],[113.99448,22.2863],[113.99451,22.28631],[113.99453,22.28632],[113.99457,22.28633],[113.99459,22.28634],[113.99461,22.28634],[113.99463,22.28635],[113.99467,22.28636],[113.99469,22.28637],[113.99471,22.28637],[113.99476,22.2864],[113.99479,22.28641],[113.99485,22.28643],[113.99488,22.28645],[113.99491,22.28646],[113.99493,22.28646],[113.99496,22.28647],[113.99498,22.28649],[113.99503,22.28651],[113.99505,22.28653],[113.99509,22.28655],[113.99511,22.28656],[113.99514,22.28657],[113.99517,22.28658],[113.9952,22.28658],[113.99526,22.28659],[113.9953,22.28659],[113.99534,22.28659],[113.99536,22.28659],[113.99539,22.28659],[113.99542,22.2866],[113.99544,22.2866],[113.99547,22.28661],[113.99549,22.28662],[113.99552,22.28664],[113.99555,22.28665],[113.99556,22.28666],[113.99558,22.28667],[113.99559,22.28669],[113.99561,22.2867],[113.99562,22.28671],[113.99563,22.28671],[113.99565,22.28672],[113.99571,22.28674],[113.99577,22.28678],[113.9958,22.2868],[113.99583,22.28682],[113.99587,22.28684],[113.9959,22.28685],[113.99592,22.28686],[113.99594,22.28687],[113.99596,22.28689],[113.99598,22.28691],[113.996,22.28693],[113.99603,22.28699],[113.99605,22.287],[113.99609,22.28703],[113.99613,22.28706],[113.99616,22.28707],[113.99617,22.28709],[113.99619,22.2871],[113.99622,22.28712],[113.99624,22.28714],[113.99627,22.28716],[113.99632,22.28719],[113.99634,22.2872],[113.99635,22.2872],[113.99635,22.28722],[113.99634,22.28723],[113.99634,22.28723],[113.99634,22.28724],[113.99634,22.28724],[113.99633,22.28725],[113.99633,22.28725],[113.99633,22.28726],[113.99633,22.28726],[113.99632,22.28727],[113.99632,22.28727],[113.99632,22.28728],[113.99632,22.28728],[113.99632,22.28729],[113.99631,22.28729],[113.99631,22.2873],[113.99631,22.2873],[113.99631,22.28731],[113.99631,22.28731],[113.9963,22.28732],[113.9963,22.28732],[113.9963,22.28733],[113.9963,22.28734],[113.99629,22.28734],[113.99629,22.28735],[113.99629,22.28735],[113.99629,22.28736],[113.99629,22.28736],[113.99628,22.28737],[113.99628,22.28737],[113.99628,22.28738],[113.99628,22.28738],[113.99628,22.28739],[113.99627,22.28739],[113.99627,22.2874],[113.99627,22.2874],[113.99627,22.28741],[113.99627,22.28741],[113.99627,22.28742],[113.99626,22.28742],[113.99626,22.28743],[113.99626,22.28744],[113.99626,22.28744],[113.99626,22.28745],[113.99626,22.28745],[113.99625,22.28746],[113.99625,22.28746],[113.99625,22.28747],[113.99625,22.28747],[113.99625,22.28748],[113.99625,22.28748],[113.99625,22.28749],[113.99625,22.28749],[113.99625,22.2875],[113.99625,22.28751],[113.99625,22.28751],[113.99625,22.28752],[113.99624,22.28752],[113.99624,22.28753],[113.99624,22.28753],[113.99624,22.28754],[113.99624,22.28754],[113.99624,22.28755],[113.99624,22.28756],[113.99624,22.28756],[113.99624,22.28757],[113.99624,22.28757],[113.99624,22.28758],[113.99624,22.28758],[113.99624,22.28759],[113.99624,22.28759],[113.99624,22.2876],[113.99624,22.2876],[113.99624,22.28761],[113.99624,22.28762],[113.99624,22.28762],[113.99624,22.28763],[113.99624,22.28763],[113.99624,22.28764],[113.99624,22.28764],[113.99624,22.28765],[113.99624,22.28765],[113.99622,22.28861],[113.99622,22.28862],[113.99622,22.28862],[113.99622,22.28863],[113.99622,22.28863],[113.99622,22.28864],[113.99622,22.28865],[113.99622,22.28865],[113.99622,22.28866],[113.99621,22.28866],[113.99621,22.28867],[113.99621,22.28867],[113.99621,22.28868],[113.99621,22.28868],[113.99621,22.28869],[113.99621,22.28869],[113.99621,22.2887],[113.99621,22.28871],[113.99621,22.28871],[113.99621,22.28872],[113.99621,22.28872],[113.99621,22.28873],[113.99621,22.28873],[113.99621,22.28873],[113.99621,22.28874],[113.99621,22.28874],[113.99621,22.28874],[113.99621,22.28875],[113.99621,22.28875],[113.99621,22.28876],[113.9962,22.28877],[113.9962,22.28877],[113.9962,22.28878],[113.9962,22.28878],[113.9962,22.28879],[113.9962,22.28879],[113.9962,22.2888],[113.9962,22.2888],[113.9962,22.28881],[113.9962,22.28881],[113.9962,22.28882],[113.9962,22.28883],[113.99619,22.28883],[113.99619,22.28884],[113.99619,22.28884],[113.99619,22.28885],[113.99619,22.28885],[113.99619,22.28886],[113.99619,22.28886],[113.99619,22.28887],[113.99619,22.28887],[113.99619,22.28888],[113.99619,22.28889],[113.99619,22.28889],[113.99618,22.2889],[113.99618,22.2889],[113.99618,22.28891],[113.99618,22.28891],[113.99618,22.28892],[113.99618,22.28892],[113.99618,22.28893],[113.99618,22.28893],[113.99618,22.28894],[113.99618,22.28895],[113.99617,22.28895],[113.99617,22.28896],[113.99617,22.28896],[113.99617,22.28897],[113.99617,22.28897],[113.99617,22.28898],[113.99617,22.28898],[113.99617,22.28899],[113.99616,22.289],[113.99616,22.28901],[113.99616,22.28901],[113.99616,22.28902],[113.99616,22.28902],[113.99616,22.28903],[113.99616,22.28904],[113.99615,22.28904],[113.99615,22.28905],[113.99615,22.28905],[113.99615,22.28906],[113.99615,22.28906],[113.99615,22.28907],[113.99615,22.28907],[113.99614,22.28908],[113.99614,22.28908],[113.99614,22.28909],[113.99614,22.28909],[113.99614,22.2891],[113.99613,22.2891],[113.99613,22.28911],[113.99613,22.28911],[113.99613,22.28912],[113.99613,22.28912],[113.99613,22.28913],[113.99612,22.28914],[113.99612,22.28914],[113.99612,22.28915],[113.99612,22.28915],[113.99612,22.28916],[113.99611,22.28916],[113.99611,22.28917],[113.99611,22.28917],[113.99611,22.28918],[113.99611,22.28918],[113.9961,22.28919],[113.9961,22.28919],[113.9961,22.2892],[113.9961,22.2892],[113.99609,22.28921],[113.99609,22.28921],[113.99609,22.28922],[113.99609,22.28922],[113.99609,22.28923],[113.99608,22.28924],[113.99608,22.28924],[113.99608,22.28925],[113.99608,22.28925],[113.99608,22.28926],[113.99607,22.28926],[113.99607,22.28927],[113.99607,22.28927],[113.99607,22.28928],[113.99606,22.28929],[113.99606,22.2893],[113.99606,22.2893],[113.99605,22.28931],[113.99605,22.28931],[113.99605,22.28932],[113.99605,22.28932],[113.99605,22.28933],[113.99604,22.28933],[113.99604,22.28934],[113.99604,22.28934],[113.99603,22.28935],[113.99603,22.28936],[113.99603,22.28936],[113.99603,22.28937],[113.99602,22.28938],[113.99602,22.28939],[113.99602,22.28939],[113.99601,22.2894],[113.99601,22.2894],[113.99601,22.28941],[113.99601,22.28942],[113.996,22.28942],[113.996,22.28943],[113.996,22.28943],[113.996,22.28944],[113.99599,22.28944],[113.99599,22.28945],[113.99599,22.28945],[113.99599,22.28946],[113.99598,22.28946],[113.99598,22.28947],[113.99598,22.28947],[113.99598,22.28948],[113.99597,22.28948],[113.99597,22.28949],[113.99597,22.28949],[113.99597,22.2895],[113.99596,22.2895],[113.99596,22.28951],[113.99596,22.28951],[113.99595,22.28952],[113.99595,22.28952],[113.99594,22.28953],[113.99594,22.28954],[113.99594,22.28954],[113.99594,22.28955],[113.99593,22.28955],[113.99593,22.28956],[113.99593,22.28957],[113.99592,22.28958],[113.99592,22.28958],[113.99591,22.28959],[113.99591,22.2896],[113.99591,22.2896],[113.9959,22.28961],[113.9959,22.28961],[113.9959,22.28962],[113.9959,22.28962],[113.99589,22.28963],[113.99589,22.28963],[113.99589,22.28964],[113.99589,22.28964],[113.99588,22.28965],[113.99588,22.28965],[113.99588,22.28966],[113.99587,22.28967],[113.99587,22.28968],[113.99586,22.28968],[113.99586,22.28969],[113.99586,22.28969],[113.99586,22.2897],[113.99585,22.2897],[113.99585,22.28971],[113.99585,22.28971],[113.99584,22.28972],[113.99584,22.28973],[113.99584,22.28973],[113.99583,22.28974],[113.99583,22.28975],[113.99583,22.28976],[113.99582,22.28976],[113.99582,22.28977],[113.99582,22.28978],[113.99581,22.28979],[113.99581,22.28979],[113.9958,22.2898],[113.9958,22.2898],[113.9958,22.28981],[113.9958,22.28981],[113.99579,22.28982],[113.99579,22.28983],[113.99579,22.28983],[113.99578,22.28984],[113.99578,22.28984],[113.99578,22.28985],[113.99577,22.28986],[113.99577,22.28986],[113.99577,22.28986],[113.99577,22.28987],[113.99576,22.28987],[113.99576,22.28988],[113.99576,22.28988],[113.99576,22.28989],[113.99575,22.28989],[113.99575,22.2899],[113.99575,22.2899],[113.99574,22.28991],[113.99574,22.28991],[113.99574,22.28992],[113.99573,22.28993],[113.99573,22.28994],[113.99572,22.28995],[113.99572,22.28996],[113.99572,22.28996],[113.99571,22.28997],[113.99571,22.28998],[113.99571,22.28998],[113.9957,22.28999],[113.9957,22.28999],[113.9957,22.29],[113.9957,22.29],[113.9957,22.29],[113.99568,22.29003],[113.99567,22.29006],[113.99565,22.29009],[113.99564,22.29012],[113.99563,22.29015],[113.99562,22.29017],[113.9956,22.2902],[113.99559,22.29023],[113.99555,22.29041],[113.99554,22.29044],[113.99553,22.29048],[113.99552,22.29052],[113.99551,22.29055],[113.9955,22.29059],[113.99549,22.29063],[113.99549,22.29067],[113.99548,22.2907],[113.99547,22.29074],[113.99547,22.29078],[113.99546,22.29087],[113.99545,22.29093],[113.99544,22.291],[113.99544,22.29106],[113.99543,22.29113],[113.99543,22.2912],[113.99543,22.29126],[113.99542,22.29133],[113.99542,22.29136],[113.99542,22.29138],[113.99542,22.2914],[113.99542,22.29142],[113.99542,22.29144],[113.99543,22.29147],[113.99543,22.29149],[113.99543,22.29151],[113.99543,22.29153],[113.99543,22.29155],[113.99544,22.29157],[113.99544,22.29159],[113.99545,22.29162],[113.99545,22.29164],[113.99545,22.29166],[113.99546,22.29168],[113.99547,22.2917],[113.99547,22.29172],[113.99548,22.29174],[113.99548,22.29176],[113.99549,22.29178],[113.9955,22.2918],[113.99552,22.29186],[113.99553,22.2919],[113.99555,22.29194],[113.99556,22.29198],[113.99558,22.29202],[113.9956,22.29206],[113.99562,22.2921],[113.99563,22.29214],[113.99565,22.29218],[113.99567,22.29222],[113.99569,22.29225],[113.9957,22.29226],[113.99571,22.29228],[113.99572,22.2923],[113.99573,22.29232],[113.99574,22.29234],[113.99574,22.29236],[113.9958,22.2925],[113.99583,22.29259],[113.99585,22.29265],[113.99587,22.29271],[113.99589,22.29277],[113.9959,22.29282],[113.99592,22.29288],[113.99593,22.29294],[113.99594,22.293],[113.99595,22.29306],[113.99596,22.29312],[113.99597,22.29318],[113.99598,22.29322],[113.99598,22.29324],[113.99599,22.29326],[113.99599,22.29328],[113.99599,22.2933],[113.996,22.29332],[113.996,22.29334],[113.99601,22.29336],[113.99602,22.29338],[113.99602,22.29339],[113.99603,22.29341],[113.99604,22.29343],[113.99604,22.29345],[113.99605,22.29347],[113.99606,22.29349],[113.99607,22.29351],[113.99608,22.29353],[113.99609,22.29354],[113.99622,22.29372],[113.99633,22.29387],[113.99634,22.29388],[113.99635,22.29389],[113.99635,22.2939],[113.99636,22.29391],[113.99637,22.29392],[113.99637,22.29393],[113.99638,22.29394],[113.9964,22.29398],[113.99641,22.29401],[113.99643,22.29404],[113.99645,22.29407],[113.99646,22.29411],[113.99647,22.29412],[113.99648,22.29413],[113.99648,22.29414],[113.99648,22.29416],[113.99649,22.29417],[113.99649,22.29418],[113.9965,22.29419],[113.9965,22.2942],[113.99651,22.29421],[113.99651,22.29422],[113.99651,22.29423],[113.99652,22.29425],[113.99652,22.29426],[113.99652,22.29427],[113.99653,22.29428],[113.99653,22.29431],[113.99654,22.29433],[113.99654,22.29436],[113.99655,22.29438],[113.99655,22.2944],[113.99656,22.29443],[113.99656,22.29445],[113.99657,22.29447],[113.99657,22.29449],[113.99657,22.2945],[113.99657,22.29453],[113.99657,22.29455],[113.99658,22.29458],[113.99658,22.2946],[113.99658,22.29461],[113.99658,22.29463],[113.99658,22.29466],[113.99658,22.29471],[113.99659,22.29473],[113.99659,22.29474],[113.99659,22.29475],[113.99659,22.29478],[113.99659,22.2948],[113.99659,22.29481],[113.99658,22.29484],[113.99658,22.29486],[113.99658,22.29489],[113.99658,22.29493],[113.99658,22.29495],[113.99658,22.29497],[113.99658,22.295],[113.99658,22.29502],[113.99658,22.29503],[113.99657,22.29504],[113.99656,22.29525],[113.99655,22.29542],[113.99655,22.29542],[113.99654,22.29552],[113.99652,22.29581],[113.9965,22.29608],[113.99649,22.29631],[113.99648,22.29636],[113.99648,22.29639],[113.99648,22.2964],[113.99644,22.29669],[113.9964,22.297],[113.99638,22.29716],[113.99638,22.2972],[113.99638,22.29722],[113.99638,22.29723],[113.99638,22.29726],[113.99638,22.29727],[113.99638,22.29729],[113.99638,22.29731],[113.99638,22.29732],[113.99638,22.29734],[113.99638,22.29735],[113.99638,22.29736],[113.99638,22.29737],[113.99639,22.29739],[113.99639,22.2974],[113.99639,22.29741],[113.99639,22.29742],[113.99641,22.29751],[113.99643,22.29759],[113.99644,22.29762],[113.99645,22.29762],[113.99645,22.29763],[113.99646,22.29764],[113.99646,22.29765],[113.99647,22.29766],[113.99651,22.29775],[113.99653,22.2978],[113.99655,22.29785],[113.99657,22.2979],[113.99658,22.29795],[113.99659,22.29799],[113.9966,22.29802],[113.99661,22.29806],[113.99662,22.29809],[113.99662,22.29813],[113.99661,22.29816],[113.99661,22.29819],[113.99661,22.29823],[113.9966,22.29826],[113.99659,22.29829],[113.99655,22.29841],[113.99644,22.29876],[113.99694,22.29875],[113.99749,22.29876],[113.99752,22.29876],[113.99755,22.29876],[113.99758,22.29876],[113.99762,22.29876],[113.99765,22.29876],[113.99768,22.29877],[113.99771,22.29877],[113.99774,22.29877],[113.99777,22.29877],[113.9978,22.29878],[113.99783,22.29878],[113.99786,22.29879],[113.99797,22.2988],[113.99803,22.29882],[113.9981,22.29883],[113.99817,22.29885],[113.99824,22.29886],[113.99831,22.29888],[113.99838,22.2989],[113.9985,22.29894],[113.99872,22.29901],[113.99905,22.29912],[113.99959,22.29934],[113.9996,22.29935],[113.99998,22.29952],[114.00019,22.29962],[113.99985,22.30019],[113.99959,22.30063],[113.99953,22.30073],[113.99949,22.30081],[113.99948,22.30084],[113.99947,22.30084],[113.99947,22.30085],[113.99946,22.30086],[113.99946,22.30086],[113.99946,22.30087],[113.99945,22.30088],[113.99945,22.30088],[113.99945,22.30089],[113.99944,22.3009],[113.99944,22.3009],[113.99944,22.30091],[113.99943,22.30092],[113.99943,22.30092],[113.99943,22.30093],[113.99942,22.30094],[113.99942,22.30094],[113.99942,22.30095],[113.99941,22.30096],[113.99941,22.30096],[113.99941,22.30097],[113.99941,22.30098],[113.9994,22.30098],[113.9994,22.30099],[113.9994,22.301],[113.9994,22.30101],[113.9994,22.30101],[113.99939,22.30102],[113.99939,22.30103],[113.99939,22.30103],[113.99939,22.30104],[113.99939,22.30105],[113.99939,22.30106],[113.99939,22.30107],[113.99939,22.30107],[113.99939,22.30108],[113.99939,22.30109],[113.99939,22.30109],[113.99939,22.3011],[113.99939,22.30111],[113.99939,22.30112],[113.9994,22.30112],[113.9994,22.30113],[113.9994,22.30114],[113.99941,22.30114],[113.99941,22.30115],[113.99941,22.30116],[113.99942,22.30116],[113.99943,22.30117],[113.99943,22.30117],[113.99944,22.30117],[113.99945,22.30118],[113.99945,22.30118],[113.99946,22.30118],[113.99947,22.30119],[113.99948,22.30119],[113.99949,22.30119],[113.99949,22.30119],[113.9995,22.3012],[113.99951,22.3012],[113.99952,22.3012],[113.99952,22.3012],[113.99953,22.30121],[113.99954,22.30121],[113.99954,22.30121],[113.99955,22.30122],[113.99956,22.30122],[113.99957,22.30122],[113.99957,22.30122],[113.99958,22.30123],[113.99959,22.30123],[113.99959,22.30123],[113.99959,22.30123],[113.9996,22.30124],[113.99961,22.30124],[113.99962,22.30124],[113.99962,22.30124],[113.99963,22.30125],[113.99964,22.30125],[113.99964,22.30125],[113.99965,22.30126],[113.99966,22.30126],[113.99967,22.30126],[113.99968,22.30127],[113.99969,22.30127],[113.99969,22.30127],[113.9997,22.30127],[113.99971,22.30127],[113.99972,22.30127],[113.99972,22.30128],[113.99973,22.30128],[113.99974,22.30128],[113.99975,22.30128],[113.99975,22.30128],[113.99976,22.30128],[113.99977,22.30129],[113.99978,22.30129],[113.99978,22.30129],[113.99979,22.30129],[113.9998,22.3013],[113.99981,22.3013],[113.99982,22.3013],[113.99983,22.3013],[113.99983,22.3013],[113.99984,22.30131],[113.99985,22.30131],[113.99986,22.30131],[113.99986,22.30131],[113.99987,22.30131],[113.99988,22.30132],[113.99989,22.30132],[113.99989,22.30132],[113.9999,22.30132],[113.99991,22.30133],[113.99992,22.30133],[113.99992,22.30133],[113.99993,22.30133],[113.99994,22.30134],[113.99994,22.30134],[113.99995,22.30134],[113.99996,22.30135],[113.99997,22.30135],[113.99997,22.30135],[113.99998,22.30136],[113.99999,22.30136],[113.99999,22.30137],[114.0,22.30137],[114.00001,22.30137],[114.00001,22.30138],[114.00002,22.30138],[114.00003,22.30139],[114.00003,22.30139],[114.00004,22.30139],[114.00004,22.3014],[114.00005,22.3014],[114.00006,22.30141],[114.00006,22.30141],[114.00007,22.30142],[114.00007,22.30142],[114.00008,22.30143],[114.00008,22.30144],[114.00009,22.30145],[114.00009,22.30145],[114.0001,22.30146],[114.0001,22.30146],[114.00011,22.30147],[114.00011,22.30147],[114.00012,22.30148],[114.00012,22.30149],[114.00013,22.30149],[114.00013,22.3015],[114.00014,22.3015],[114.00014,22.30151],[114.00015,22.30152],[114.00015,22.30152],[114.00015,22.30153],[114.00016,22.30153],[114.00016,22.30154],[114.00017,22.30155],[114.00017,22.30155],[114.00017,22.30156],[114.00018,22.30156],[114.00018,22.30157],[114.00019,22.30158],[114.00019,22.30158],[114.00019,22.30159],[114.0002,22.3016],[114.0002,22.3016],[114.0002,22.30161],[114.00021,22.30162],[114.00021,22.30162],[114.00021,22.30163],[114.00022,22.30163],[114.00022,22.30164],[114.00023,22.30165],[114.00023,22.30166],[114.00023,22.30167],[114.00024,22.30167],[114.00024,22.30168],[114.00024,22.30169],[114.00025,22.30169],[114.00025,22.3017],[114.00025,22.3017],[114.00026,22.30171],[114.00026,22.30172],[114.00027,22.30172],[114.00027,22.30173],[114.00027,22.30174],[114.00028,22.30174],[114.00028,22.30175],[114.00028,22.30176],[114.00029,22.30176],[114.00029,22.30177],[114.00029,22.30178],[114.0003,22.30178],[114.0003,22.30179],[114.0003,22.3018],[114.00031,22.3018],[114.00031,22.30181],[114.00031,22.30181],[114.00032,22.30182],[114.00032,22.30183],[114.00032,22.30183],[114.00033,22.30184],[114.00033,22.30185],[114.00033,22.30185],[114.00033,22.30186],[114.00034,22.30187],[114.00034,22.30187],[114.00034,22.30188],[114.00035,22.30189],[114.00035,22.30189],[114.00035,22.3019],[114.00036,22.30191],[114.00036,22.30191],[114.00037,22.30193],[114.00037,22.30194],[114.00037,22.30195],[114.00038,22.30195],[114.00038,22.30196],[114.00038,22.30197],[114.00039,22.30197],[114.00039,22.30198],[114.00039,22.30199],[114.0004,22.30199],[114.0004,22.302],[114.0004,22.30201],[114.00041,22.30201],[114.00041,22.30202],[114.00041,22.30203],[114.00042,22.30203],[114.00042,22.30204],[114.00042,22.30204],[114.00043,22.30205],[114.00043,22.30206],[114.00043,22.30206],[114.00044,22.30207],[114.00044,22.30208],[114.00045,22.30209],[114.00045,22.30209],[114.00045,22.3021],[114.00046,22.30211],[114.00046,22.30211],[114.00046,22.30212],[114.00047,22.30213],[114.00047,22.30213],[114.00047,22.30214],[114.00048,22.30214],[114.00048,22.30215],[114.00049,22.30216],[114.00049,22.30216],[114.00049,22.30217],[114.0005,22.30218],[114.0005,22.30218],[114.00051,22.30219],[114.00051,22.30219],[114.00052,22.3022],[114.00052,22.30221],[114.00053,22.30221],[114.00053,22.30222],[114.00053,22.30222],[114.00054,22.30223],[114.00054,22.30223],[114.00055,22.30224],[114.00055,22.30225],[114.00056,22.30225],[114.00056,22.30226],[114.00057,22.30226],[114.00057,22.30227],[114.00058,22.30227],[114.00058,22.30228],[114.00059,22.30228],[114.00059,22.30229],[114.0006,22.30229],[114.00061,22.3023],[114.00061,22.3023],[114.00062,22.30231],[114.00062,22.30232],[114.00063,22.30232],[114.00063,22.30233],[114.00064,22.30233],[114.00064,22.30234],[114.00065,22.30234],[114.00065,22.30235],[114.00066,22.30235],[114.00067,22.30236],[114.00067,22.30236],[114.00068,22.30237],[114.00068,22.30237],[114.00069,22.30238],[114.00069,22.30238],[114.0007,22.30238],[114.00071,22.30239],[114.00071,22.30239],[114.00072,22.3024],[114.00072,22.3024],[114.00073,22.30241],[114.00077,22.30244],[114.00081,22.30248],[114.00085,22.30251],[114.0009,22.30255],[114.0009,22.30255],[114.00091,22.30256],[114.00091,22.30256],[114.00092,22.30257],[114.00093,22.30257],[114.00093,22.30258],[114.00094,22.30259],[114.00094,22.30259],[114.00095,22.3026],[114.00095,22.3026],[114.00096,22.30261],[114.00096,22.30261],[114.00097,22.30262],[114.00097,22.30262],[114.00097,22.30263],[114.00098,22.30264],[114.00098,22.30264],[114.00099,22.30265],[114.00099,22.30265],[114.001,22.30266],[114.001,22.30267],[114.001,22.30267],[114.00101,22.30268],[114.00101,22.30269],[114.00102,22.30269],[114.00102,22.3027],[114.00103,22.30271],[114.00103,22.30271],[114.00103,22.30272],[114.00103,22.30273],[114.00104,22.30273],[114.00104,22.30274],[114.00104,22.30275],[114.00105,22.30275],[114.00105,22.30276],[114.00105,22.30277],[114.00105,22.30277],[114.00106,22.30278],[114.00106,22.30279],[114.00106,22.30279],[114.00107,22.3028],[114.00107,22.30281],[114.00107,22.30281],[114.00107,22.30282],[114.00108,22.30283],[114.00108,22.30283],[114.00108,22.30284],[114.00108,22.30285],[114.00109,22.30286],[114.00109,22.30286],[114.00109,22.30287],[114.00109,22.30288],[114.00109,22.30288],[114.0011,22.30289],[114.0011,22.3029],[114.0011,22.3029],[114.0011,22.30291],[114.00111,22.30292],[114.00111,22.30292],[114.00111,22.30293],[114.00111,22.30294],[114.00111,22.30295],[114.00112,22.30295],[114.00112,22.30296],[114.00112,22.30297],[114.00112,22.30297],[114.00112,22.30298],[114.00113,22.30299],[114.00113,22.30299],[114.00113,22.303],[114.00114,22.30302],[114.00114,22.30304],[114.00114,22.30305],[114.00115,22.30307],[114.00115,22.30309],[114.00116,22.30311],[114.00116,22.30312],[114.00117,22.30314],[114.00118,22.30316],[114.00118,22.30318],[114.00118,22.30319],[114.00119,22.30321],[114.0012,22.30323],[114.0012,22.30325],[114.00121,22.30327],[114.00122,22.30329],[114.00122,22.30331],[114.00123,22.30332],[114.00123,22.30334],[114.00124,22.30336],[114.00124,22.30337],[114.00125,22.30339],[114.00126,22.30341],[114.00126,22.30343],[114.00127,22.30345],[114.00127,22.30346],[114.00128,22.30347],[114.00128,22.30348],[114.00128,22.30348],[114.00128,22.30349],[114.00128,22.3035],[114.00128,22.3035],[114.00129,22.30351],[114.00129,22.30352],[114.00129,22.30352],[114.00129,22.30353],[114.0013,22.30354],[114.0013,22.30355],[114.0013,22.30355],[114.0013,22.30356],[114.0013,22.30357],[114.00131,22.30357],[114.00131,22.30358],[114.00131,22.30359],[114.00131,22.30359],[114.00132,22.3036],[114.00132,22.30361],[114.00132,22.30361],[114.00132,22.30362],[114.00133,22.30363],[114.00133,22.30363],[114.00133,22.30364],[114.00134,22.30365],[114.00134,22.30365],[114.00134,22.30366],[114.00134,22.30367],[114.00135,22.30367],[114.00135,22.30368],[114.00135,22.30369],[114.00136,22.30369],[114.00136,22.3037],[114.00136,22.30371],[114.00137,22.30371],[114.00137,22.30372],[114.00137,22.30373],[114.00138,22.30374],[114.00138,22.30374],[114.00139,22.30375],[114.00139,22.30375],[114.0014,22.30376],[114.0014,22.30377],[114.0014,22.30377],[114.00141,22.30378],[114.00141,22.30378],[114.00142,22.30379],[114.00142,22.30379],[114.00143,22.3038],[114.00143,22.30381],[114.00144,22.30381],[114.00144,22.30382],[114.00145,22.30382],[114.00145,22.30383],[114.00146,22.30383],[114.00146,22.30384],[114.00147,22.30384],[114.00147,22.30385],[114.00148,22.30385],[114.00149,22.30386],[114.00149,22.30386],[114.0015,22.30387],[114.0015,22.30387],[114.00151,22.30388],[114.00151,22.30388],[114.00152,22.30389],[114.00153,22.30389],[114.00153,22.3039],[114.00154,22.3039],[114.00154,22.30391],[114.00155,22.30391],[114.00156,22.30392],[114.00156,22.30392],[114.00157,22.30392],[114.00158,22.30393],[114.00158,22.30393],[114.00159,22.30394],[114.0016,22.30394],[114.00161,22.30395],[114.00162,22.30395],[114.00163,22.30396],[114.00165,22.30397],[114.00165,22.30397],[114.00166,22.30397],[114.00168,22.30398],[114.00168,22.30398],[114.0017,22.30399],[114.0017,22.30399],[114.00172,22.304],[114.00172,22.304],[114.00174,22.30401],[114.00175,22.30401],[114.00176,22.30402],[114.00177,22.30402],[114.00178,22.30403],[114.00179,22.30403],[114.0018,22.30404],[114.00181,22.30404],[114.00182,22.30405],[114.00183,22.30405],[114.00184,22.30405],[114.00186,22.30406],[114.00187,22.30406],[114.00188,22.30407],[114.00189,22.30407],[114.00189,22.30407],[114.00191,22.30408],[114.00192,22.30408],[114.00193,22.30409],[114.00195,22.3041],[114.00197,22.3041],[114.00198,22.3041],[114.002,22.30411],[114.00201,22.30411],[114.00203,22.30412],[114.00205,22.30413],[114.00207,22.30413],[114.00208,22.30414],[114.00211,22.30414],[114.00212,22.30415],[114.00214,22.30415],[114.00216,22.30416],[114.00217,22.30417],[114.00219,22.30417],[114.00221,22.30418],[114.00222,22.30418],[114.00224,22.30419],[114.00225,22.30419],[114.00227,22.3042],[114.00229,22.30421],[114.00231,22.30421],[114.00233,22.30422],[114.00234,22.30422],[114.00235,22.30423],[114.00235,22.30423],[114.00236,22.30423],[114.00237,22.30423],[114.00238,22.30423],[114.00238,22.30424],[114.00239,22.30424],[114.0024,22.30424],[114.00241,22.30424],[114.00241,22.30424],[114.00242,22.30425],[114.00243,22.30425],[114.00244,22.30425],[114.00244,22.30425],[114.00245,22.30426],[114.00246,22.30426],[114.00247,22.30426],[114.00247,22.30426],[114.00248,22.30427],[114.00249,22.30427],[114.00249,22.30427],[114.0025,22.30427],[114.00251,22.30428],[114.00252,22.30428],[114.00252,22.30428],[114.00253,22.30428],[114.00254,22.30429],[114.00254,22.30429],[114.00255,22.30429],[114.00256,22.30429],[114.00257,22.3043],[114.00257,22.3043],[114.00258,22.3043],[114.00259,22.30431],[114.00259,22.30431],[114.00261,22.30431],[114.00261,22.30432],[114.00262,22.30432],[114.00263,22.30432],[114.00264,22.30433],[114.00264,22.30433],[114.00265,22.30434],[114.00266,22.30434],[114.00266,22.30434],[114.00267,22.30435],[114.00268,22.30435],[114.00268,22.30435],[114.00269,22.30436],[114.00269,22.30436],[114.0027,22.30437],[114.00271,22.30437],[114.00271,22.30437],[114.00272,22.30438],[114.00273,22.30438],[114.00273,22.30439],[114.00274,22.30439],[114.00274,22.3044],[114.00275,22.3044],[114.00276,22.30441],[114.00276,22.30441],[114.00277,22.30441],[114.00277,22.30442],[114.00278,22.30442],[114.00279,22.30443],[114.00279,22.30443],[114.0028,22.30444],[114.0028,22.30444],[114.00281,22.30445],[114.00281,22.30445],[114.00282,22.30446],[114.00282,22.30447],[114.00283,22.30447],[114.00283,22.30448],[114.00284,22.30448],[114.00284,22.30449],[114.00285,22.30449],[114.00285,22.3045],[114.00286,22.3045],[114.00286,22.30451],[114.00287,22.30452],[114.00288,22.30452],[114.00288,22.30453],[114.00289,22.30454],[114.00289,22.30454],[114.0029,22.30455],[114.0029,22.30455],[114.00291,22.30456],[114.00291,22.30456],[114.00291,22.30457],[114.00292,22.30457],[114.00292,22.30458],[114.00293,22.30459],[114.00293,22.30459],[114.00294,22.3046],[114.00294,22.3046],[114.00295,22.30461],[114.00295,22.30462],[114.00296,22.30462],[114.00296,22.30463],[114.00296,22.30463],[114.00297,22.30464],[114.00297,22.30465],[114.00298,22.30465],[114.00298,22.30466],[114.00299,22.30466],[114.00299,22.30467],[114.00299,22.30468],[114.003,22.30468],[114.003,22.30469],[114.00301,22.30469],[114.00301,22.3047],[114.00301,22.30471],[114.00302,22.30471],[114.00302,22.30472],[114.00302,22.30473],[114.00303,22.30473],[114.00303,22.30474],[114.00304,22.30475],[114.00304,22.30475],[114.00304,22.30476],[114.00305,22.30477],[114.00306,22.30478],[114.00307,22.30479],[114.00308,22.30481],[114.00309,22.30482],[114.0031,22.30483],[114.00311,22.30484],[114.00312,22.30485],[114.00313,22.30486],[114.00313,22.30488],[114.00314,22.30489],[114.00315,22.3049],[114.00316,22.30491],[114.00317,22.30492],[114.00318,22.30493],[114.00319,22.30494],[114.0032,22.30495],[114.00321,22.30496],[114.00321,22.30497],[114.00322,22.30498],[114.00323,22.30498],[114.00324,22.30499],[114.00325,22.30501],[114.00325,22.30501],[114.00326,22.30502],[114.00327,22.30503],[114.00328,22.30504],[114.00328,22.30504],[114.00329,22.30505],[114.0033,22.30507],[114.00331,22.30508],[114.00332,22.30508],[114.00333,22.30509],[114.00334,22.3051],[114.00334,22.30511],[114.00335,22.30511],[114.00335,22.30512],[114.00336,22.30512],[114.00336,22.30513],[114.00337,22.30513],[114.00337,22.30514],[114.00338,22.30514],[114.00338,22.30515],[114.00339,22.30515],[114.00339,22.30516],[114.0034,22.30516],[114.00341,22.30517],[114.00341,22.30517],[114.00342,22.30518],[114.00342,22.30518],[114.00343,22.30519],[114.00343,22.30519],[114.00344,22.3052],[114.00344,22.3052],[114.00345,22.30521],[114.00345,22.30521],[114.00346,22.30522],[114.00347,22.30522],[114.00347,22.30523],[114.00348,22.30523],[114.00348,22.30524],[114.00349,22.30524],[114.00349,22.30525],[114.0035,22.30525],[114.00351,22.30526],[114.00351,22.30526],[114.00352,22.30527],[114.00352,22.30527],[114.00353,22.30528],[114.00353,22.30528],[114.00354,22.30529],[114.00355,22.30529],[114.00355,22.3053],[114.00356,22.3053],[114.00356,22.30531],[114.00357,22.30531],[114.00357,22.30532],[114.00358,22.30532],[114.00359,22.30533],[114.00359,22.30533],[114.0036,22.30534],[114.0036,22.30534],[114.00361,22.30535],[114.00362,22.30535],[114.00362,22.30536],[114.00363,22.30536],[114.00363,22.30536],[114.00364,22.30537],[114.00365,22.30537],[114.00365,22.30538],[114.00366,22.30538],[114.00366,22.30539],[114.00367,22.30539],[114.00368,22.3054],[114.00368,22.3054],[114.00369,22.30541],[114.0037,22.30542],[114.00371,22.30543],[114.00372,22.30543],[114.00373,22.30544],[114.00374,22.30545],[114.00375,22.30546],[114.00376,22.30546],[114.00377,22.30547],[114.00378,22.30548],[114.00379,22.30549],[114.00381,22.3055],[114.00381,22.3055],[114.00382,22.30551],[114.00383,22.30552],[114.00384,22.30553],[114.00385,22.30553],[114.00386,22.30554],[114.00387,22.30555],[114.00388,22.30555],[114.00389,22.30556],[114.0039,22.30557],[114.00391,22.30558],[114.00392,22.30558],[114.00393,22.30559],[114.00394,22.3056],[114.00395,22.30561],[114.00396,22.30561],[114.00397,22.30562],[114.00399,22.30563],[114.004,22.30564],[114.004,22.30564],[114.00402,22.30565],[114.00403,22.30566],[114.00404,22.30566],[114.00405,22.30567],[114.00407,22.30568],[114.00408,22.30569],[114.00409,22.3057],[114.00411,22.30571],[114.00412,22.30571],[114.00413,22.30572],[114.00414,22.30573],[114.00415,22.30573],[114.00416,22.30574],[114.00418,22.30575],[114.00418,22.30576],[114.0042,22.30576],[114.00421,22.30577],[114.00422,22.30578],[114.00423,22.30578],[114.00424,22.30579],[114.00425,22.3058],[114.00426,22.30581],[114.00428,22.30582],[114.00428,22.30582],[114.00429,22.30583],[114.00431,22.30584],[114.00432,22.30585],[114.00433,22.30586],[114.00434,22.30587],[114.00436,22.30588],[114.00437,22.30589],[114.00437,22.30589],[114.00439,22.3059],[114.0044,22.30591],[114.00441,22.30592],[114.00442,22.30593],[114.00443,22.30594],[114.00444,22.30595],[114.00446,22.30596],[114.00446,22.30596],[114.00447,22.30597],[114.00449,22.30598],[114.0045,22.30599],[114.00451,22.306],[114.00452,22.30601],[114.00453,22.30602],[114.00454,22.30603],[114.00456,22.30604],[114.00457,22.30605],[114.00457,22.30605],[114.00458,22.30606],[114.0046,22.30607],[114.00461,22.30608],[114.00461,22.30609],[114.00468,22.30615],[114.00473,22.30619],[114.00478,22.30623],[114.00482,22.30627],[114.00484,22.30629],[114.0049,22.30635],[114.00496,22.30642],[114.00502,22.30649],[114.00506,22.30655],[114.00511,22.30663],[114.00513,22.30665],[114.00515,22.30668],[114.00517,22.30672],[114.0052,22.30678],[114.00529,22.30695],[114.00533,22.30704],[114.00538,22.30714],[114.00546,22.30727],[114.00551,22.30735],[114.00556,22.30742],[114.00556,22.30743],[114.00561,22.30749],[114.00566,22.30757],[114.00569,22.3076],[114.00572,22.30763],[114.00579,22.30771],[114.00583,22.30774],[114.00587,22.30778],[114.00595,22.30784],[114.00609,22.30796],[114.00625,22.30808],[114.00629,22.30812],[114.00631,22.30814],[114.0064,22.30822],[114.00647,22.30829],[114.00649,22.30831],[114.00653,22.30835],[114.00657,22.30839],[114.00662,22.30845],[114.00664,22.30848],[114.00665,22.30849],[114.00668,22.30853],[114.00674,22.30861],[114.00679,22.30869],[114.00682,22.30876],[114.00684,22.3088],[114.00685,22.30883],[114.00686,22.30885],[114.00687,22.30889],[114.00688,22.30892],[114.00689,22.30893],[114.00689,22.30893],[114.00689,22.30894],[114.00689,22.30895],[114.0069,22.30897],[114.0069,22.30898],[114.0069,22.30899],[114.0069,22.30899],[114.0069,22.309],[114.0069,22.309],[114.00691,22.30901],[114.00691,22.30902],[114.00691,22.30902],[114.00691,22.30903],[114.00691,22.30905],[114.00691,22.30906],[114.00692,22.30907],[114.00692,22.30908],[114.00692,22.30909],[114.00692,22.3091],[114.00693,22.30912],[114.00693,22.30912],[114.00693,22.30913],[114.00693,22.30913],[114.00693,22.30914],[114.00693,22.30914],[114.00693,22.30914],[114.00693,22.30915],[114.00693,22.30915],[114.00693,22.30916],[114.00693,22.30916],[114.00693,22.30917],[114.00693,22.30917],[114.00693,22.30918],[114.00693,22.30918],[114.00694,22.30919],[114.00694,22.30919],[114.00694,22.3092],[114.00694,22.30921],[114.00694,22.30922],[114.00694,22.30922],[114.00694,22.30923],[114.00694,22.30924],[114.00694,22.30925],[114.00694,22.30926],[114.00694,22.30927],[114.00695,22.30928],[114.00695,22.30929],[114.00695,22.3093],[114.00695,22.30931],[114.00695,22.30932],[114.00695,22.30933],[114.00695,22.30934],[114.00695,22.30936],[114.00696,22.30937],[114.00696,22.30938],[114.00696,22.30939],[114.00696,22.3094],[114.00696,22.30942],[114.00696,22.30943],[114.00696,22.30945],[114.00696,22.30946],[114.00697,22.30948],[114.00697,22.3095],[114.00697,22.30951],[114.00697,22.30953],[114.00697,22.30955],[114.00697,22.30956],[114.00697,22.30958],[114.00698,22.3096],[114.00698,22.30962],[114.00698,22.30963],[114.00698,22.30965],[114.00698,22.30966],[114.00698,22.30968],[114.00698,22.30969],[114.00699,22.30971],[114.00699,22.30972],[114.00699,22.30974],[114.00699,22.30975],[114.00699,22.30976],[114.00699,22.30978],[114.00699,22.30979],[114.00699,22.30981],[114.007,22.30983],[114.007,22.30984],[114.007,22.30986],[114.007,22.30987],[114.007,22.30988],[114.007,22.30991],[114.007,22.30992],[114.00701,22.30993],[114.00701,22.30995],[114.00701,22.30997],[114.00701,22.30999],[114.00701,22.31001],[114.00701,22.31003],[114.00701,22.31005],[114.00702,22.31007],[114.00702,22.31009],[114.00702,22.31011],[114.00702,22.31013],[114.00702,22.31014],[114.00702,22.31016],[114.00702,22.31018],[114.00702,22.3102],[114.00702,22.31021],[114.00702,22.31022],[114.00702,22.31024],[114.00702,22.31025],[114.00702,22.31026],[114.00702,22.31027],[114.00702,22.31028],[114.00702,22.3103],[114.00702,22.31031],[114.00702,22.31032],[114.00702,22.31034],[114.00702,22.31035],[114.00702,22.31036],[114.00702,22.31037],[114.00702,22.31038],[114.00702,22.31039],[114.00702,22.31039],[114.00702,22.3104],[114.00702,22.3104],[114.00702,22.31041],[114.00702,22.31041],[114.00702,22.31042],[114.00702,22.31042],[114.00702,22.31043],[114.00702,22.31043],[114.00702,22.31044],[114.00702,22.31044],[114.00702,22.31044],[114.00702,22.31045],[114.00702,22.31045],[114.00702,22.31046],[114.00702,22.31046],[114.00702,22.31047],[114.00702,22.31048],[114.00702,22.31048],[114.00702,22.31049],[114.00702,22.31049],[114.00702,22.31049],[114.00701,22.3105],[114.00701,22.3105],[114.00701,22.31051],[114.00701,22.31051],[114.00701,22.31052],[114.00701,22.31052],[114.00701,22.31053],[114.00701,22.31053],[114.00701,22.31054],[114.00701,22.31054],[114.00701,22.31054],[114.00701,22.31055],[114.00701,22.31055],[114.00701,22.31056],[114.007,22.31058],[114.007,22.31059],[114.007,22.3106],[114.007,22.31061],[114.007,22.31063],[114.00699,22.31064],[114.00699,22.31065],[114.00699,22.31066],[114.00699,22.31067],[114.00699,22.31068],[114.00698,22.31069],[114.00698,22.3107],[114.00698,22.3107],[114.00698,22.31071],[114.00698,22.31072],[114.00698,22.31072],[114.00697,22.31073],[114.00697,22.31074],[114.00697,22.31075],[114.00697,22.31076],[114.00696,22.31077],[114.00696,22.31078],[114.00696,22.31078],[114.00696,22.31078],[114.00695,22.3108],[114.00695,22.31082],[114.00694,22.31084],[114.00694,22.31086],[114.00693,22.31088],[114.00692,22.3109],[114.00692,22.31091],[114.00692,22.31092],[114.00691,22.31095],[114.0069,22.31098],[114.00689,22.31102],[114.00688,22.31105],[114.00687,22.31109],[114.00686,22.31112],[114.00668,22.31169],[114.00667,22.31172],[114.00666,22.31175],[114.00665,22.31178],[114.00664,22.31181],[114.00663,22.31184],[114.00662,22.31186],[114.00662,22.31188],[114.00661,22.31192],[114.0066,22.31194],[114.00659,22.31197],[114.00658,22.31199],[114.00657,22.31202],[114.00656,22.31204],[114.00655,22.31208],[114.00653,22.31213],[114.00652,22.31217],[114.00651,22.31219],[114.00651,22.3122],[114.00649,22.31223],[114.00649,22.31226],[114.00647,22.3123],[114.00647,22.31233],[114.00646,22.31236],[114.00644,22.31245],[114.00643,22.3125],[114.00642,22.31253],[114.00642,22.31256],[114.00641,22.31258],[114.0064,22.31263],[114.00639,22.31268],[114.00639,22.31271],[114.00638,22.31275],[114.00638,22.31278],[114.00638,22.3128],[114.00637,22.3129],[114.00636,22.31302],[114.00636,22.31307],[114.00636,22.31313],[114.00636,22.31318],[114.00636,22.31321],[114.00636,22.31322],[114.00637,22.31327],[114.00638,22.31332],[114.00638,22.31335],[114.00639,22.31337],[114.00639,22.3134],[114.0064,22.31343],[114.00641,22.31346],[114.00641,22.31349],[114.00642,22.31351],[114.00642,22.31353],[114.00643,22.31355],[114.00644,22.31357],[114.00645,22.3136],[114.00646,22.31363],[114.00647,22.31366],[114.00648,22.31369],[114.00649,22.31372],[114.0065,22.31374],[114.00651,22.31376],[114.00652,22.31378],[114.00654,22.31381],[114.00655,22.31383],[114.00656,22.31385],[114.00657,22.31387],[114.00658,22.31389],[114.00661,22.31394],[114.00671,22.31407],[114.00682,22.31418],[114.00694,22.31426],[114.00695,22.31427],[114.00695,22.31427],[114.00696,22.31428],[114.00697,22.31428],[114.00698,22.31428],[114.00699,22.31429],[114.00699,22.31429],[114.007,22.3143],[114.00701,22.3143],[114.00701,22.3143],[114.00701,22.3143],[114.00702,22.3143],[114.00702,22.31431],[114.00703,22.31431],[114.00704,22.31431],[114.00705,22.31432],[114.00706,22.31432],[114.00706,22.31433],[114.00707,22.31433],[114.00708,22.31433],[114.00709,22.31434],[114.0071,22.31434],[114.00711,22.31434],[114.00712,22.31435],[114.00712,22.31435],[114.00713,22.31435],[114.00714,22.31436],[114.00715,22.31436],[114.00716,22.31436],[114.00717,22.31437],[114.00717,22.31437],[114.00718,22.31437],[114.00719,22.31437],[114.0072,22.31438],[114.00721,22.31438],[114.00722,22.31438],[114.00723,22.31439],[114.00724,22.31439],[114.00724,22.31439],[114.00725,22.31439],[114.00726,22.3144],[114.00727,22.3144],[114.00728,22.3144],[114.00729,22.3144],[114.00729,22.31441],[114.0073,22.31441],[114.00731,22.31441],[114.00732,22.31441],[114.00733,22.31442],[114.00734,22.31442],[114.00735,22.31442],[114.00735,22.31442],[114.00736,22.31442],[114.00737,22.31443],[114.00738,22.31443],[114.00739,22.31443],[114.0074,22.31443],[114.00741,22.31443],[114.00742,22.31444],[114.00742,22.31444],[114.00743,22.31444],[114.00744,22.31444],[114.00745,22.31444],[114.00746,22.31444],[114.00747,22.31445],[114.00748,22.31445],[114.00749,22.31445],[114.00749,22.31445],[114.0075,22.31445],[114.00751,22.31445],[114.00752,22.31445],[114.00753,22.31445],[114.00754,22.31446],[114.00755,22.31446],[114.00756,22.31446],[114.00756,22.31446],[114.00757,22.31446],[114.00759,22.31446],[114.0076,22.31446],[114.0076,22.31447],[114.00761,22.31447],[114.00762,22.31447],[114.00763,22.31447],[114.00764,22.31447],[114.00765,22.31447],[114.00766,22.31447],[114.00767,22.31447],[114.00767,22.31447],[114.00768,22.31447],[114.00769,22.31447],[114.0077,22.31447],[114.00771,22.31447],[114.00773,22.31448],[114.00773,22.31448],[114.00774,22.31448],[114.00775,22.31448],[114.00776,22.31448],[114.00777,22.31448],[114.00778,22.31448],[114.00779,22.31448],[114.0078,22.31448],[114.0078,22.31448],[114.00781,22.31448],[114.00783,22.31448],[114.00784,22.31448],[114.00784,22.31447],[114.00785,22.31447],[114.00786,22.31447],[114.00787,22.31447],[114.00788,22.31447],[114.00789,22.31447],[114.0079,22.31447],[114.00791,22.31447],[114.00791,22.31447],[114.00792,22.31446],[114.00794,22.31446],[114.00795,22.31446],[114.00795,22.31446],[114.00796,22.31446],[114.00797,22.31445],[114.00798,22.31445],[114.00799,22.31445],[114.008,22.31445],[114.00801,22.31445],[114.00801,22.31444],[114.00802,22.31444],[114.00803,22.31444],[114.00804,22.31444],[114.00805,22.31443],[114.00806,22.31443],[114.00806,22.31443],[114.00807,22.31442],[114.00808,22.31442],[114.00809,22.31442],[114.0081,22.31441],[114.0081,22.31441],[114.00811,22.31441],[114.00811,22.31441],[114.00812,22.3144],[114.00813,22.3144],[114.00814,22.3144],[114.00814,22.31439],[114.00816,22.31439],[114.00817,22.31438],[114.00818,22.31438],[114.00818,22.31438],[114.00819,22.31437],[114.0082,22.31437],[114.00821,22.31436],[114.00822,22.31436],[114.00822,22.31436],[114.00823,22.31435],[114.00824,22.31435],[114.00825,22.31434],[114.00825,22.31434],[114.00826,22.31433],[114.00827,22.31433],[114.00828,22.31432],[114.00828,22.31432],[114.00829,22.31431],[114.0083,22.31431],[114.00831,22.31431],[114.00831,22.3143],[114.00832,22.3143],[114.00833,22.31429],[114.00833,22.31429],[114.00834,22.31428],[114.00835,22.31428],[114.00836,22.31427],[114.00836,22.31427],[114.00837,22.31426],[114.00838,22.31426],[114.00838,22.31425],[114.00841,22.31424],[114.00868,22.31406],[114.00888,22.31394],[114.00902,22.31385],[114.00905,22.31383],[114.0091,22.3138],[114.00913,22.31378],[114.00919,22.31374],[114.00927,22.3137],[114.00928,22.31369],[114.0093,22.31368],[114.00936,22.31365],[114.00944,22.31361],[114.00948,22.31359],[114.0095,22.31358],[114.00955,22.31356],[114.00963,22.31353],[114.00973,22.31351],[114.00977,22.31349],[114.00982,22.31349],[114.00987,22.31348],[114.00991,22.31348],[114.00995,22.31347],[114.01,22.31348],[114.01007,22.31348],[114.01012,22.31348],[114.01021,22.31349],[114.0103,22.3135],[114.01036,22.31351],[114.0104,22.31352],[114.01046,22.31353],[114.01055,22.31355],[114.0106,22.31355],[114.01065,22.31356],[114.0107,22.31356],[114.01074,22.31356],[114.01078,22.31356],[114.01083,22.31355],[114.01088,22.31354],[114.01092,22.31353],[114.01099,22.31351],[114.01104,22.3135],[114.01113,22.31346],[114.01122,22.31342],[114.0113,22.31338],[114.01136,22.31335],[114.01143,22.31332],[114.0115,22.31328],[114.01156,22.31325],[114.01163,22.31321],[114.01169,22.31316],[114.01191,22.31302],[114.01216,22.31286],[114.01224,22.3128],[114.01229,22.31277],[114.01233,22.31274],[114.01237,22.31271],[114.01242,22.31268],[114.01245,22.31265],[114.01251,22.3126],[114.01253,22.31258],[114.01255,22.31255],[114.01257,22.31252],[114.01258,22.31251],[114.0126,22.31248],[114.01262,22.31243],[114.01268,22.3123],[114.01275,22.31217],[114.01276,22.31215],[114.0128,22.31206],[114.01283,22.31201],[114.01286,22.31193],[114.01289,22.31187],[114.01291,22.31184],[114.01293,22.31178],[114.01296,22.3117],[114.01296,22.31169],[114.01296,22.31169],[114.01297,22.31168],[114.01297,22.31168],[114.01297,22.31167],[114.01297,22.31167],[114.01297,22.31167],[114.01297,22.31166],[114.01298,22.31166],[114.01298,22.31165],[114.01298,22.31165],[114.01298,22.31164],[114.01298,22.31164],[114.01298,22.31164],[114.01299,22.31163],[114.01299,22.31163],[114.01299,22.31162],[114.013,22.31161],[114.013,22.3116],[114.01301,22.31158],[114.01301,22.31157],[114.01302,22.31156],[114.01302,22.31155],[114.01302,22.31154],[114.01303,22.31153],[114.01304,22.31151],[114.01304,22.31151],[114.01304,22.31151],[114.01304,22.3115],[114.01304,22.3115],[114.01305,22.31149],[114.01305,22.31149],[114.01305,22.31148],[114.01305,22.31148],[114.01305,22.31148],[114.01305,22.31147],[114.01306,22.31147],[114.01306,22.31146],[114.01306,22.31146],[114.01306,22.31146],[114.01306,22.31145],[114.01307,22.31145],[114.01307,22.31144],[114.01307,22.31144],[114.01307,22.31143],[114.01308,22.31143],[114.01308,22.31143],[114.01308,22.31142],[114.01308,22.31142],[114.01308,22.31141],[114.01309,22.31141],[114.01309,22.31141],[114.01309,22.3114],[114.01309,22.3114],[114.0131,22.31139],[114.0131,22.31139],[114.0131,22.31139],[114.0131,22.31138],[114.01311,22.31138],[114.01311,22.31137],[114.01311,22.31137],[114.01311,22.31136],[114.01312,22.31136],[114.01312,22.31136],[114.01312,22.31135],[114.01312,22.31135],[114.01313,22.31134],[114.01313,22.31134],[114.01313,22.31134],[114.01313,22.31133],[114.01314,22.31133],[114.01314,22.31132],[114.01314,22.31132],[114.01314,22.31132],[114.01315,22.31131],[114.01315,22.31131],[114.01315,22.3113],[114.01315,22.3113],[114.01316,22.3113],[114.01316,22.31129],[114.01316,22.31129],[114.01317,22.31129],[114.01317,22.31128],[114.01317,22.31128],[114.01317,22.31127],[114.01318,22.31127],[114.01318,22.31127],[114.01319,22.31126],[114.01319,22.31125],[114.0132,22.31124],[114.01321,22.31124],[114.01321,22.31123],[114.01322,22.31122],[114.01323,22.31121],[114.01323,22.31121],[114.01324,22.3112],[114.01325,22.31119],[114.01325,22.31119],[114.01326,22.31118],[114.01329,22.31115],[114.0143,22.31158],[114.01433,22.31158],[114.01436,22.31159],[114.01437,22.31159],[114.01438,22.31159],[114.01439,22.31159],[114.0144,22.31159],[114.01441,22.31159],[114.01442,22.31159],[114.01444,22.31159],[114.01444,22.31159],[114.01446,22.31159],[114.01447,22.31159],[114.01447,22.31159],[114.01448,22.31159],[114.01449,22.31159],[114.0145,22.31159],[114.01451,22.31159],[114.01452,22.31158],[114.01453,22.31158],[114.01457,22.31158],[114.01458,22.31158],[114.01459,22.31158],[114.01462,22.31159],[114.01464,22.31159],[114.01465,22.3116],[114.01468,22.31161],[114.01471,22.31163],[114.01473,22.31164],[114.01474,22.31164],[114.01474,22.31165],[114.01476,22.31166],[114.01478,22.31167],[114.01479,22.31167],[114.01479,22.31168],[114.01481,22.31168],[114.01482,22.31168],[114.01484,22.31167],[114.01486,22.31167],[114.01487,22.31167],[114.01488,22.31167],[114.01489,22.31167],[114.01491,22.31168],[114.01491,22.31168],[114.01492,22.31168],[114.01493,22.31169],[114.01495,22.31169],[114.01496,22.31169],[114.01497,22.31169],[114.01498,22.31169],[114.015,22.31169],[114.01502,22.31169],[114.01503,22.31169],[114.01503,22.31168],[114.01504,22.31168],[114.01505,22.31168],[114.01507,22.31169],[114.01509,22.31169],[114.0151,22.31168],[114.01512,22.31168],[114.01515,22.31167],[114.01516,22.31167],[114.01518,22.31166],[114.01521,22.31165],[114.01521,22.31166],[114.01522,22.31166],[114.01524,22.31166],[114.01526,22.31166],[114.01529,22.31166],[114.01531,22.31167],[114.01527,22.31193],[114.01527,22.31193],[114.01527,22.31193],[114.01527,22.31194],[114.01527,22.31194],[114.01527,22.31194],[114.01527,22.31195],[114.01527,22.31195],[114.01527,22.31195],[114.01527,22.31196],[114.01527,22.31196],[114.01527,22.31196],[114.01527,22.31196],[114.01527,22.31197],[114.01527,22.31197],[114.01527,22.31197],[114.01527,22.31198],[114.01527,22.31198],[114.01527,22.31198],[114.01528,22.31199],[114.01528,22.31199],[114.01528,22.31199],[114.01528,22.312],[114.01528,22.312],[114.01528,22.312],[114.01528,22.312],[114.01528,22.31201],[114.01528,22.31201],[114.01528,22.31201],[114.01529,22.31202],[114.01529,22.31202],[114.01529,22.31202],[114.01529,22.31202],[114.01529,22.31203],[114.01529,22.31203],[114.01529,22.31203],[114.0153,22.31204],[114.0153,22.31204],[114.0153,22.31204],[114.0153,22.31204],[114.0153,22.31205],[114.01531,22.31205],[114.01531,22.31205],[114.01531,22.31205],[114.01531,22.31206],[114.01531,22.31206],[114.01532,22.31206],[114.01532,22.31206],[114.01532,22.31207],[114.01532,22.31207],[114.01532,22.31207],[114.01533,22.31207],[114.01533,22.31207],[114.01533,22.31208],[114.01533,22.31208],[114.01534,22.31208],[114.01534,22.31208],[114.01534,22.31208],[114.01534,22.31209],[114.01535,22.31209],[114.01535,22.31209],[114.01535,22.31209],[114.01536,22.31209],[114.01536,22.3121],[114.01536,22.3121],[114.01536,22.3121],[114.01537,22.3121],[114.01537,22.3121],[114.01537,22.3121],[114.01538,22.31211],[114.01538,22.31211],[114.01538,22.31211],[114.01538,22.31211],[114.01539,22.31211],[114.01539,22.31211],[114.01539,22.31211],[114.0154,22.31211],[114.0154,22.31212],[114.0154,22.31212],[114.01541,22.31212],[114.01541,22.31212],[114.01541,22.31212],[114.01542,22.31212],[114.01542,22.31212],[114.01542,22.31212],[114.01543,22.31212],[114.01543,22.31212],[114.01543,22.31212],[114.01544,22.31212],[114.01544,22.31212],[114.01601,22.31219],[114.01602,22.31219],[114.01602,22.31219],[114.01602,22.3122],[114.01603,22.3122],[114.01603,22.3122],[114.01603,22.3122],[114.01604,22.3122],[114.01604,22.3122],[114.01604,22.3122],[114.01605,22.3122],[114.01605,22.3122],[114.01605,22.3122],[114.01606,22.3122],[114.01606,22.3122],[114.01606,22.31221],[114.01607,22.31221],[114.01607,22.31221],[114.01607,22.31221],[114.01607,22.31221],[114.01608,22.31221],[114.01608,22.31221],[114.01608,22.31222],[114.01609,22.31222],[114.01609,22.31222],[114.01609,22.31222],[114.01609,22.31222],[114.0161,22.31222],[114.0161,22.31223],[114.0161,22.31223],[114.01611,22.31223],[114.01611,22.31223],[114.01611,22.31223],[114.01611,22.31224],[114.01612,22.31224],[114.01612,22.31224],[114.01612,22.31224],[114.01612,22.31224],[114.01613,22.31225],[114.01613,22.31225],[114.01613,22.31225],[114.01613,22.31225],[114.01613,22.31225],[114.01614,22.31226],[114.01614,22.31226],[114.01614,22.31226],[114.01614,22.31226],[114.01615,22.31227],[114.01615,22.31227],[114.01615,22.31227],[114.01615,22.31227],[114.01615,22.31228],[114.01615,22.31228],[114.01616,22.31228],[114.01616,22.31229],[114.01616,22.31229],[114.01616,22.31229],[114.01616,22.31229],[114.01616,22.3123],[114.01617,22.3123],[114.01617,22.3123],[114.01617,22.31231],[114.01617,22.31231],[114.01617,22.31231],[114.01617,22.31231],[114.01617,22.31232],[114.01617,22.31232],[114.01617,22.31232],[114.01618,22.31233],[114.01618,22.31233],[114.01618,22.31233],[114.01618,22.31234],[114.01618,22.31234],[114.01618,22.31234],[114.01618,22.31234],[114.01618,22.31235],[114.01618,22.31235],[114.01618,22.31235],[114.01618,22.31236],[114.01618,22.31236],[114.01618,22.31236],[114.01618,22.31237],[114.01618,22.31237],[114.01618,22.31237],[114.01618,22.31238],[114.01618,22.31238],[114.01618,22.31238],[114.01618,22.31239],[114.01618,22.31239],[114.01618,22.31239],[114.01618,22.31239],[114.01618,22.3124],[114.01618,22.3124],[114.01618,22.3124],[114.01618,22.31241],[114.01618,22.31241],[114.01618,22.31241],[114.01618,22.31242],[114.01618,22.31242],[114.01618,22.31242],[114.01617,22.31242],[114.01617,22.31243],[114.01617,22.31243],[114.01617,22.31243],[114.01617,22.31244],[114.01604,22.31275],[114.01604,22.31275],[114.01604,22.31276],[114.01604,22.31276],[114.01604,22.31276],[114.01604,22.31277],[114.01604,22.31277],[114.01604,22.31277],[114.01603,22.31278],[114.01603,22.31278],[114.01603,22.31278],[114.01603,22.31278],[114.01603,22.31279],[114.01603,22.31279],[114.01603,22.31279],[114.01603,22.3128],[114.01603,22.3128],[114.01603,22.3128],[114.01603,22.31281],[114.01603,22.31281],[114.01603,22.31281],[114.01603,22.31282],[114.01603,22.31282],[114.01603,22.31282],[114.01603,22.31282],[114.01603,22.31283],[114.01603,22.31283],[114.01603,22.31283],[114.01603,22.31284],[114.01603,22.31284],[114.01603,22.31284],[114.01603,22.31285],[114.01603,22.31285],[114.01603,22.31285],[114.01603,22.31286],[114.01604,22.31286],[114.01604,22.31286],[114.01604,22.31286],[114.01604,22.31287],[114.01604,22.31287],[114.01604,22.31287],[114.01604,22.31288],[114.01604,22.31288],[114.01604,22.31288],[114.01604,22.31288],[114.01605,22.31289],[114.01605,22.31289],[114.01605,22.31289],[114.01605,22.31289],[114.01605,22.3129],[114.01605,22.3129],[114.01605,22.3129],[114.01606,22.3129],[114.01606,22.31291],[114.01606,22.31291],[114.01619,22.31312],[114.01645,22.31349],[114.01677,22.31359],[114.01695,22.31386],[114.01698,22.31412],[114.01723,22.31416],[114.01734,22.31396],[114.01759,22.31372],[114.01784,22.31359],[114.01813,22.31363],[114.0192,22.31369],[114.01941,22.31356],[114.01981,22.31333],[114.02015,22.31319],[114.02043,22.31296],[114.02065,22.3126],[114.02086,22.31236],[114.02115,22.31236],[114.02137,22.3125],[114.02158,22.3127],[114.02179,22.31286],[114.02212,22.31266],[114.02255,22.3124],[114.02301,22.31216],[114.02326,22.3122],[114.02376,22.31203],[114.02412,22.31177],[114.02451,22.31163],[114.02491,22.31163],[114.02523,22.3119],[114.02573,22.31217],[114.02627,22.31253],[114.0263,22.31293],[114.02612,22.31337],[114.02576,22.31377],[114.02558,22.314],[114.02583,22.31427],[114.02648,22.31453],[114.02648,22.31456],[114.02627,22.31534],[114.02555,22.31655],[114.02528,22.31694],[114.02493,22.31753],[114.02466,22.31809],[114.02464,22.31825],[114.02464,22.31838],[114.02465,22.31853],[114.02468,22.31864],[114.0249,22.319],[114.0252,22.31927],[114.02554,22.31951],[114.02593,22.31975],[114.02625,22.31986],[114.02651,22.31993],[114.02674,22.31997],[114.02677,22.31997],[114.02681,22.31996],[114.02687,22.31994],[114.02696,22.31988],[114.02705,22.31981],[114.02753,22.3194],[114.02778,22.3191],[114.02805,22.31863],[114.0285,22.31824],[114.02876,22.31792],[114.02882,22.31774],[114.0288,22.31752],[114.02873,22.31711],[114.02872,22.31696],[114.02876,22.31682],[114.02957,22.31533],[114.02977,22.31517],[114.03016,22.3148],[114.03052,22.3145],[114.0307,22.31447],[114.03095,22.31447],[114.03188,22.31487],[114.03217,22.31504],[114.03245,22.31507],[114.0326,22.31504],[114.0327,22.31474],[114.03283,22.31437],[114.0333,22.3144],[114.03337,22.31441],[114.03339,22.3143],[114.03344,22.3138],[114.03351,22.31334],[114.03357,22.31293],[114.03357,22.31259],[114.03353,22.31234],[114.03341,22.31209],[114.03321,22.31181],[114.03302,22.31159],[114.03281,22.3114],[114.03269,22.31124],[114.03263,22.31113],[114.03254,22.31101],[114.03243,22.31088],[114.03238,22.31084],[114.03238,22.31071],[114.03267,22.31028],[114.03269,22.31009],[114.03301,22.30992],[114.03321,22.30969],[114.03314,22.30951],[114.03315,22.30951],[114.03315,22.3095],[114.03315,22.30949],[114.03315,22.30949],[114.03316,22.30949],[114.03316,22.30948],[114.03316,22.30947],[114.03317,22.30947],[114.03317,22.30946],[114.03319,22.30946],[114.03319,22.30944],[114.03319,22.30943],[114.03319,22.30942],[114.03318,22.30942],[114.03318,22.30941],[114.03318,22.3094],[114.03319,22.30939],[114.03319,22.30939],[114.03319,22.30939],[114.03319,22.30938],[114.0332,22.30937],[114.0332,22.30937],[114.03321,22.30937],[114.03321,22.30937],[114.03325,22.30935],[114.03345,22.3095],[114.03374,22.30946],[114.03376,22.30938],[114.03387,22.30938],[114.03387,22.30947],[114.0341,22.30951],[114.03424,22.30963],[114.03432,22.30964],[114.03455,22.30973],[114.03473,22.30974],[114.03483,22.30986],[114.03494,22.30988],[114.035,22.30991],[114.03507,22.30993],[114.03514,22.30996],[114.0352,22.31005],[114.03522,22.31011],[114.03524,22.31014],[114.03533,22.31017],[114.03543,22.31037],[114.03558,22.31043],[114.03571,22.31052],[114.03579,22.31056],[114.03583,22.31058],[114.03594,22.31066],[114.03599,22.31069],[114.0361,22.3108],[114.03616,22.31084],[114.03618,22.31086],[114.03623,22.31094],[114.03624,22.31093],[114.03625,22.31091],[114.03627,22.31089],[114.0363,22.3109],[114.03631,22.31087],[114.03629,22.31086],[114.0363,22.31084],[114.03633,22.31083],[114.03637,22.31084],[114.03638,22.31083],[114.03642,22.31082],[114.03656,22.31093],[114.0366,22.31099],[114.03663,22.31102],[114.03663,22.31105],[114.03661,22.31107],[114.03659,22.31109],[114.03655,22.31109],[114.03653,22.3111],[114.03652,22.31111],[114.03652,22.31113],[114.03657,22.31116],[114.03656,22.31118],[114.03671,22.31129],[114.03671,22.31133],[114.03674,22.31135],[114.03678,22.31133],[114.03682,22.31133],[114.03685,22.31134],[114.03688,22.31136],[114.03693,22.31138],[114.03694,22.3114],[114.03693,22.31142],[114.03694,22.31143],[114.03695,22.31144],[114.03696,22.31145],[114.03696,22.31146],[114.03695,22.31148],[114.03693,22.3115],[114.03691,22.31151],[114.03685,22.31152],[114.03679,22.31157],[114.0368,22.31158],[114.03682,22.31158],[114.03682,22.31161],[114.03685,22.31162],[114.03685,22.31166],[114.03688,22.31166],[114.0369,22.31168],[114.0369,22.31176],[114.03689,22.31178],[114.03688,22.3119],[114.03686,22.31191],[114.03684,22.31191],[114.03681,22.3119],[114.03677,22.31189],[114.03674,22.3119],[114.03673,22.31191],[114.03673,22.31192],[114.03675,22.31194],[114.03671,22.31204],[114.03669,22.31206],[114.03667,22.31212],[114.03667,22.31224],[114.03668,22.31229],[114.03668,22.31235],[114.03665,22.31235],[114.03665,22.31238],[114.03663,22.31239],[114.03663,22.31242],[114.03665,22.31243],[114.0367,22.31246],[114.03673,22.31249],[114.03673,22.31253],[114.03666,22.31255],[114.03666,22.31257],[114.03663,22.31257],[114.03663,22.31265],[114.03661,22.31265],[114.03661,22.31269],[114.03659,22.3127],[114.03659,22.31274],[114.03661,22.31275],[114.03662,22.31277],[114.03662,22.31279],[114.03661,22.31283],[114.03661,22.31286],[114.0366,22.31288],[114.03658,22.31291],[114.03656,22.31295],[114.03655,22.313],[114.03654,22.31302],[114.03652,22.31303],[114.03651,22.31305],[114.0365,22.31307],[114.0365,22.3131],[114.03647,22.31312],[114.03639,22.31317],[114.03635,22.3132],[114.03635,22.31322],[114.03636,22.31326],[114.03635,22.31328],[114.03633,22.3133],[114.0363,22.31333],[114.0363,22.31336],[114.0363,22.31338],[114.0363,22.31343],[114.03629,22.31344],[114.03624,22.31343],[114.03623,22.31342],[114.03623,22.3134],[114.03622,22.31338],[114.03619,22.3134],[114.03614,22.31344],[114.03609,22.31345],[114.03608,22.31348],[114.03608,22.31354],[114.03606,22.31361],[114.03605,22.31367],[114.03606,22.31371],[114.03605,22.31374],[114.03606,22.31377],[114.03608,22.31378],[114.0361,22.31379],[114.03608,22.31385],[114.03605,22.31385],[114.03604,22.31391],[114.03605,22.31399],[114.03606,22.31407],[114.03607,22.3141],[114.0361,22.31415],[114.03611,22.3142],[114.03612,22.31421],[114.03613,22.31421],[114.03614,22.3142],[114.0362,22.31422],[114.03626,22.31425],[114.03632,22.31429],[114.03631,22.31441],[114.03626,22.31442],[114.03617,22.31439],[114.03617,22.31445],[114.03616,22.31447],[114.03612,22.31449],[114.03609,22.31452],[114.03609,22.31456],[114.03609,22.31459],[114.03603,22.31465],[114.03601,22.31472],[114.03599,22.31473],[114.03597,22.31475],[114.036,22.31477],[114.03604,22.31483],[114.03606,22.31488],[114.03603,22.31492],[114.03602,22.31493],[114.036,22.31492],[114.03596,22.31492],[114.03593,22.31496],[114.03592,22.31504],[114.03587,22.31505],[114.03588,22.31512],[114.03586,22.31516],[114.03581,22.31519],[114.0358,22.3152],[114.03583,22.31523],[114.03583,22.31525],[114.03576,22.31527],[114.03582,22.31529],[114.03584,22.31532],[114.03583,22.31534],[114.03581,22.31536],[114.03582,22.31539],[114.03582,22.31542],[114.0358,22.31545],[114.03581,22.31547],[114.03585,22.31548],[114.0359,22.31552],[114.03592,22.31555],[114.03591,22.31562],[114.03592,22.3157],[114.03595,22.31575],[114.03594,22.31578],[114.03593,22.31584],[114.03597,22.31591],[114.036,22.31595],[114.03607,22.31595],[114.03611,22.316],[114.03608,22.31606],[114.03618,22.31607],[114.03623,22.31613],[114.03623,22.31618],[114.03629,22.31624],[114.03631,22.31633],[114.03636,22.31643],[114.03639,22.31649],[114.03644,22.31658],[114.03645,22.31663],[114.03647,22.31664],[114.03653,22.31662],[114.03658,22.31664],[114.03662,22.31672],[114.03659,22.31676],[114.03654,22.31678],[114.03655,22.31686],[114.03655,22.31692],[114.03657,22.31693],[114.03659,22.31696],[114.0366,22.317],[114.0366,22.31703],[114.03661,22.31704],[114.03663,22.31703],[114.03665,22.31705],[114.03665,22.31707],[114.03662,22.31712],[114.03664,22.31716],[114.03668,22.31722],[114.03667,22.31729],[114.03663,22.31735],[114.03666,22.31736],[114.03668,22.31739],[114.03668,22.31745],[114.03665,22.31753],[114.03661,22.31758],[114.03663,22.31761],[114.03662,22.31766],[114.03657,22.31766],[114.03655,22.3177],[114.03657,22.31773],[114.03659,22.31775],[114.03656,22.31781],[114.03647,22.31792],[114.03642,22.31797],[114.03636,22.31802],[114.03636,22.31807],[114.03634,22.3181],[114.03628,22.31819],[114.03633,22.31822],[114.03627,22.31833],[114.03621,22.31836],[114.03613,22.31836],[114.03607,22.31835],[114.03604,22.31839],[114.03598,22.31842],[114.03593,22.31845],[114.03587,22.31855],[114.03586,22.31864],[114.03586,22.31868],[114.0358,22.31868],[114.03578,22.31875],[114.03576,22.31878],[114.03571,22.31877],[114.03568,22.3188],[114.0356,22.31878],[114.03557,22.31879],[114.03556,22.31881],[114.03554,22.31887],[114.03554,22.31893],[114.03562,22.31894],[114.03568,22.31899],[114.03569,22.31904],[114.03567,22.31912],[114.03564,22.31915],[114.03557,22.31918],[114.0355,22.31926],[114.03541,22.31929],[114.03539,22.31933],[114.03536,22.31934],[114.0353,22.31934],[114.0353,22.31939],[114.03526,22.31949],[114.03524,22.31954],[114.03526,22.31958],[114.03527,22.31968],[114.03524,22.31971],[114.03524,22.3198],[114.03526,22.31981],[114.03531,22.31984],[114.03531,22.31985],[114.03533,22.31989],[114.03532,22.31994],[114.03531,22.31997],[114.03526,22.32003],[114.03526,22.32007],[114.03526,22.32013],[114.03529,22.32022],[114.03531,22.32028],[114.03535,22.32036],[114.03535,22.32039],[114.03536,22.32044],[114.03539,22.32048],[114.0354,22.32052],[114.0354,22.32055],[114.03539,22.32059],[114.03538,22.32061],[114.03534,22.32064],[114.03528,22.32068],[114.03524,22.32071],[114.03519,22.32076],[114.03518,22.3208],[114.03516,22.32082],[114.03513,22.32085],[114.03509,22.32089],[114.03508,22.3209],[114.03506,22.32091],[114.03505,22.32093],[114.03506,22.32095],[114.03505,22.32099],[114.03504,22.32104],[114.03502,22.32108],[114.03501,22.32112],[114.03501,22.32115],[114.03498,22.32119],[114.03496,22.32121],[114.03493,22.32121],[114.03492,22.32123],[114.03484,22.32153],[114.03483,22.32159],[114.03484,22.32162],[114.03485,22.32166],[114.03487,22.32169],[114.03487,22.32173],[114.03486,22.32176],[114.03483,22.32182],[114.03481,22.32186],[114.03477,22.32189],[114.03475,22.32191],[114.03474,22.32195],[114.03473,22.322],[114.03471,22.32203],[114.03467,22.32206],[114.03466,22.32212],[114.03465,22.32215],[114.03464,22.32217],[114.03459,22.32217],[114.03455,22.32218],[114.03455,22.32227],[114.03453,22.32231],[114.03453,22.32234],[114.03455,22.32238],[114.03458,22.32242],[114.0346,22.32246],[114.03461,22.32251],[114.03465,22.3226],[114.03467,22.32265],[114.03466,22.32269],[114.03465,22.32273],[114.03459,22.3228],[114.03455,22.32285],[114.03452,22.32286],[114.03449,22.32291],[114.03447,22.32296],[114.03446,22.32301],[114.03443,22.32306],[114.03443,22.32309],[114.03445,22.32314],[114.03445,22.32318],[114.03441,22.32325],[114.03439,22.32327],[114.03436,22.32327],[114.03434,22.32328],[114.03433,22.32334],[114.0343,22.3234],[114.03427,22.32346],[114.03423,22.32351],[114.03416,22.3236],[114.03416,22.32362],[114.03415,22.32363],[114.03412,22.32366],[114.03411,22.32367],[114.03411,22.32369],[114.03411,22.32371],[114.03413,22.32374],[114.03413,22.32375],[114.0341,22.32379],[114.03404,22.32383],[114.03403,22.32385],[114.03403,22.32388],[114.03403,22.32391],[114.03402,22.32394],[114.03402,22.32395],[114.034,22.32396],[114.03398,22.32397],[114.03397,22.32398],[114.03397,22.324],[114.03398,22.32403],[114.03398,22.32406],[114.03397,22.3241],[114.03397,22.32414],[114.03397,22.32415],[114.03399,22.32417],[114.03403,22.32421],[114.03406,22.32427],[114.03405,22.32431],[114.03403,22.32433],[114.03402,22.32435],[114.034,22.32447],[114.03408,22.32453],[114.03408,22.32458],[114.03407,22.32459],[114.03404,22.32465],[114.03402,22.3247],[114.03404,22.32472],[114.03406,22.32474],[114.03408,22.32478],[114.0341,22.32481],[114.03419,22.3248],[114.03418,22.32456],[114.03413,22.32427],[114.03413,22.32405],[114.03416,22.32391],[114.03422,22.32377],[114.03466,22.32308],[114.03469,22.32292],[114.03479,22.32249],[114.03484,22.32232],[114.03491,22.32206],[114.03498,22.32185],[114.03514,22.32143],[114.03557,22.32032],[114.03556,22.32032],[114.03555,22.32029],[114.03552,22.32013],[114.03552,22.3201],[114.03551,22.32007],[114.03552,22.32006],[114.03552,22.32004],[114.03553,22.32002],[114.03562,22.31977],[114.03563,22.31975],[114.03591,22.31912],[114.03595,22.31913],[114.03606,22.31889],[114.03615,22.31872],[114.03619,22.31868],[114.03622,22.31865],[114.0363,22.31863],[114.03651,22.31823],[114.03682,22.31763],[114.0369,22.31742],[114.03693,22.31721],[114.03691,22.31699],[114.03685,22.31678],[114.0367,22.31644],[114.03669,22.31641],[114.03662,22.31636],[114.03657,22.31632],[114.03654,22.31627],[114.03646,22.31609],[114.03642,22.31597],[114.03638,22.31585],[114.03636,22.31576],[114.03635,22.31571],[114.03632,22.31566],[114.0363,22.31564],[114.03629,22.3156],[114.03628,22.31556],[114.03626,22.31545],[114.03626,22.31535],[114.03625,22.31524],[114.03625,22.31516],[114.03626,22.315],[114.0363,22.315],[114.03631,22.31492],[114.03634,22.31476],[114.03636,22.31465],[114.03664,22.31349],[114.03666,22.31344],[114.03667,22.31341],[114.0367,22.31339],[114.03672,22.31337],[114.03675,22.31336],[114.03716,22.31164],[114.03717,22.31142],[114.03712,22.3112],[114.03703,22.31101],[114.03689,22.31083],[114.03671,22.31068],[114.03656,22.31056],[114.03644,22.31054],[114.03642,22.31054],[114.03641,22.31053],[114.03626,22.31043],[114.03621,22.31041],[114.03561,22.31006],[114.03563,22.31001],[114.03539,22.30988],[114.03512,22.30974],[114.03476,22.30958],[114.03443,22.30944],[114.03371,22.30916],[114.03363,22.30912],[114.03361,22.3091],[114.0336,22.30908],[114.03359,22.30905],[114.0336,22.30904],[114.0334,22.30896],[114.03397,22.30841],[114.03397,22.3084],[114.03398,22.3084],[114.03398,22.30839],[114.03399,22.30839],[114.03399,22.30839],[114.034,22.30838],[114.034,22.30838],[114.03401,22.30836],[114.03405,22.30833],[114.03406,22.30832],[114.03423,22.3082],[114.03421,22.30818],[114.0342,22.30815],[114.03421,22.30812],[114.03421,22.30811],[114.03422,22.30808],[114.03443,22.30792],[114.03448,22.30789],[114.03458,22.30782],[114.03473,22.30773],[114.03487,22.30764],[114.03502,22.30754],[114.03555,22.30722],[114.03598,22.30696],[114.03637,22.30675],[114.03641,22.30678],[114.03647,22.30675],[114.03646,22.30671],[114.0366,22.30664],[114.03698,22.30647],[114.03742,22.3063],[114.0378,22.30618],[114.0382,22.30608],[114.03843,22.30603],[114.03878,22.30597],[114.03909,22.30592],[114.03935,22.30589],[114.03972,22.30589],[114.04013,22.30587],[114.04054,22.30589],[114.04068,22.30591],[114.04128,22.30596],[114.04163,22.30601],[114.04181,22.30605],[114.04222,22.30615],[114.04222,22.3062],[114.04229,22.30622],[114.04232,22.30618],[114.04262,22.30625],[114.04294,22.30636],[114.04312,22.30642],[114.04325,22.30647],[114.0434,22.30653],[114.04376,22.30669],[114.04438,22.307],[114.04451,22.30706],[114.04472,22.30713],[114.04514,22.30724],[114.04534,22.30727],[114.04561,22.30729],[114.04561,22.30709],[114.04524,22.3071],[114.04524,22.30636],[114.04525,22.30634],[114.04526,22.30634],[114.04541,22.30634],[114.04542,22.30634],[114.04543,22.30635],[114.04543,22.30643],[114.04543,22.30687],[114.04546,22.30689],[114.04563,22.30689],[114.04564,22.30689],[114.04565,22.30688],[114.04567,22.30688],[114.04568,22.30688],[114.04569,22.30687],[114.04571,22.30687],[114.04572,22.30688],[114.04574,22.30688],[114.04576,22.30689],[114.04577,22.3069],[114.04592,22.30689],[114.04594,22.30689],[114.04596,22.30687],[114.04597,22.30636],[114.04597,22.30635],[114.04598,22.30634],[114.04599,22.30634],[114.046,22.30634],[114.04609,22.30634],[114.0461,22.30633],[114.0461,22.30632],[114.0461,22.30582],[114.0461,22.30581],[114.04611,22.3058],[114.04612,22.3058],[114.04618,22.30579],[114.04619,22.3058],[114.0462,22.3058],[114.04621,22.30582],[114.04621,22.30636],[114.04621,22.30689],[114.0462,22.30709],[114.04578,22.3071],[114.04578,22.3073],[114.04595,22.30729],[114.04616,22.30729],[114.04639,22.30726],[114.04658,22.30722],[114.04679,22.30718],[114.04709,22.30711],[114.04728,22.30707],[114.04746,22.30708],[114.04765,22.3071],[114.04781,22.30716],[114.04795,22.30722],[114.04801,22.30726],[114.04967,22.30806],[114.04993,22.30819],[114.05019,22.30833],[114.0506,22.30852],[114.0508,22.30863],[114.05104,22.30874],[114.05121,22.30884],[114.05149,22.30896],[114.05229,22.30933],[114.05425,22.31026],[114.05467,22.31046],[114.05475,22.3105],[114.05485,22.31054],[114.05513,22.31069],[114.05524,22.31074],[114.05531,22.31081],[114.05534,22.31084],[114.05536,22.31088],[114.05538,22.31107],[114.0554,22.31123],[114.05543,22.31151],[114.05545,22.31178],[114.05546,22.31201],[114.05546,22.31232],[114.05545,22.31248],[114.05547,22.3126],[114.05543,22.31311],[114.05542,22.31337],[114.05538,22.31381],[114.05535,22.31407],[114.05528,22.31437],[114.05522,22.31462],[114.05516,22.31488],[114.05508,22.3152],[114.05493,22.31569],[114.05482,22.31598],[114.05462,22.31651],[114.05456,22.31663],[114.05438,22.31701],[114.0542,22.31735],[114.05399,22.31772],[114.05376,22.31811],[114.05365,22.31825],[114.05355,22.31843],[114.05348,22.3186],[114.05343,22.3188],[114.05342,22.31896],[114.05343,22.31908],[114.05339,22.31922],[114.05335,22.31929],[114.05332,22.31933],[114.05326,22.31941],[114.0532,22.31946],[114.05309,22.31957],[114.05311,22.31961],[114.05309,22.31973],[114.05307,22.31976],[114.05301,22.3198],[114.05301,22.31983],[114.05304,22.3199],[114.05309,22.31989],[114.05314,22.31992],[114.05324,22.31995],[114.05326,22.31996],[114.05335,22.32005],[114.05331,22.32011],[114.0534,22.32014],[114.0532,22.32017],[114.05312,22.32023],[114.05318,22.32026],[114.05329,22.32024],[114.05345,22.32038],[114.05345,22.32045],[114.05332,22.32042],[114.0534,22.32057],[114.05347,22.32068],[114.05359,22.32072],[114.05368,22.32084],[114.05369,22.32093],[114.05365,22.32098],[114.0538,22.32098],[114.05382,22.32113],[114.0539,22.32116],[114.05394,22.32125],[114.05387,22.32133],[114.05393,22.32147],[114.05408,22.32159],[114.05423,22.32164],[114.05455,22.32165],[114.05456,22.32159],[114.05464,22.32151],[114.05472,22.32151],[114.05483,22.32144],[114.055,22.32135],[114.05505,22.32125],[114.05512,22.32115],[114.05508,22.32103],[114.05524,22.32097],[114.05541,22.32083],[114.05544,22.32069],[114.05535,22.32068],[114.05535,22.32066],[114.05553,22.32054],[114.05548,22.32048],[114.05559,22.32047],[114.05565,22.32036],[114.05554,22.32033],[114.05554,22.32029],[114.0557,22.3203],[114.05579,22.32027],[114.056,22.32026],[114.05612,22.32044],[114.05614,22.32051],[114.05628,22.32054],[114.05629,22.32057],[114.05615,22.32064],[114.05608,22.32072],[114.05635,22.32073],[114.05633,22.32079],[114.05633,22.32085],[114.05618,22.32089],[114.05625,22.32103],[114.05622,22.32113],[114.05617,22.32114],[114.0562,22.32123],[114.05607,22.32136],[114.05612,22.3214],[114.05599,22.32142],[114.05591,22.32177],[114.05573,22.32181],[114.05577,22.32188],[114.05564,22.32188],[114.05564,22.32182],[114.0556,22.32182],[114.05553,22.32192],[114.05545,22.32192],[114.05543,22.32203],[114.05533,22.32202],[114.05533,22.32209],[114.05537,22.32212],[114.05547,22.32214],[114.05543,22.32223],[114.05539,22.32223],[114.05528,22.32218],[114.05524,22.32217],[114.05522,22.32228],[114.05528,22.32232],[114.05512,22.32238],[114.05509,22.32242],[114.05517,22.32244],[114.05521,22.32246],[114.0552,22.32248],[114.05514,22.32251],[114.0551,22.3225],[114.05506,22.32248],[114.05487,22.32255],[114.05464,22.32262],[114.05462,22.32268],[114.0545,22.32262],[114.05445,22.32263],[114.05426,22.32294],[114.05428,22.32299],[114.05417,22.32304],[114.05417,22.3231],[114.05428,22.32314],[114.05426,22.32319],[114.05426,22.32323],[114.05425,22.32329],[114.05415,22.3233],[114.0541,22.32332],[114.0541,22.32339],[114.05405,22.32341],[114.05412,22.32344],[114.05411,22.32348],[114.05393,22.32364],[114.05394,22.32369],[114.05395,22.32372],[114.05396,22.32374],[114.05399,22.32378],[114.05399,22.3238],[114.05399,22.32382],[114.05399,22.32385],[114.05399,22.32388],[114.05401,22.32397],[114.05401,22.32402],[114.05402,22.32405],[114.05403,22.32408],[114.05403,22.32412],[114.05404,22.32416],[114.05404,22.32419],[114.05409,22.3244],[114.0541,22.32442],[114.05415,22.32453],[114.05417,22.32459],[114.05418,22.32463],[114.05419,22.32466],[114.05419,22.32468],[114.05419,22.32468],[114.0542,22.32469],[114.05421,22.32469],[114.05426,22.32469],[114.05428,22.32469],[114.05432,22.32471],[114.05439,22.32473],[114.05448,22.32475],[114.0545,22.32476],[114.05453,22.32477],[114.05455,22.32478],[114.05458,22.32477],[114.05462,22.32475],[114.05467,22.32476],[114.05478,22.32479],[114.05481,22.32481],[114.05486,22.32484],[114.05486,22.32486],[114.05483,22.32489],[114.05476,22.32489],[114.05475,22.32495],[114.05481,22.32495],[114.05497,22.32506],[114.055,22.32509],[114.0549,22.32526],[114.05463,22.32533],[114.05469,22.32542],[114.05482,22.32541],[114.0549,22.32544],[114.05488,22.32554],[114.05477,22.32555],[114.05477,22.3256],[114.05464,22.32568],[114.05466,22.32573],[114.05478,22.32578],[114.05485,22.32593],[114.05479,22.32601],[114.05487,22.32607],[114.05477,22.32616],[114.05488,22.32621],[114.05487,22.32624],[114.05502,22.32628],[114.05495,22.32632],[114.05496,22.32638],[114.05492,22.32647],[114.05488,22.32654],[114.05496,22.32656],[114.05502,22.3267],[114.05495,22.32676],[114.05501,22.32686],[114.05493,22.32698],[114.05506,22.32699],[114.05536,22.32711],[114.05536,22.32715],[114.05528,22.32718],[114.0553,22.32727],[114.05535,22.32732],[114.05545,22.32745],[114.05528,22.32751],[114.05544,22.32755],[114.05531,22.32759],[114.05562,22.32766],[114.05566,22.32774],[114.05565,22.3278],[114.05576,22.32782],[114.05576,22.32786],[114.05554,22.32799],[114.05555,22.32802],[114.05569,22.32799],[114.05558,22.32813],[114.05561,22.32819],[114.05569,22.32823],[114.05568,22.32841],[114.0558,22.32843],[114.05579,22.32849],[114.05584,22.32853],[114.05608,22.3285],[114.05618,22.32856],[114.05616,22.32865],[114.05632,22.32865],[114.05633,22.32869],[114.05617,22.32876],[114.05625,22.3288],[114.05637,22.32874],[114.05647,22.32873],[114.05645,22.32881],[114.0563,22.32889],[114.05643,22.32896],[114.05657,22.32889],[114.05668,22.32895],[114.05664,22.32902],[114.0565,22.32902],[114.05643,22.32915],[114.05645,22.32919],[114.05677,22.32921],[114.05683,22.32925],[114.057,22.32926],[114.05701,22.32931],[114.05691,22.32935],[114.05717,22.32936],[114.05731,22.32945],[114.05717,22.32951],[114.05718,22.32967],[114.05707,22.32975],[114.05698,22.32985],[114.0569,22.32982],[114.05689,22.32984],[114.05686,22.33004],[114.05684,22.33012],[114.05682,22.33016],[114.05683,22.33019],[114.05684,22.33025],[114.05683,22.33027],[114.05679,22.33031],[114.0567,22.33034],[114.05668,22.3304],[114.05666,22.33043],[114.05663,22.33043],[114.05659,22.33043],[114.05657,22.33045],[114.05643,22.33042],[114.05642,22.33042],[114.05642,22.33041],[114.0564,22.33041],[114.0564,22.33041],[114.05638,22.3304],[114.05637,22.33038],[114.05635,22.33037],[114.05634,22.33037],[114.05631,22.33036],[114.05629,22.33036],[114.05625,22.33036],[114.05619,22.33036],[114.05616,22.33037],[114.05615,22.33038],[114.05613,22.33038],[114.0561,22.33039],[114.0558,22.33018],[114.05575,22.33016],[114.05573,22.33016],[114.0557,22.33017],[114.05564,22.33024],[114.05561,22.33026],[114.05553,22.33033],[114.05549,22.33035],[114.0554,22.33043],[114.05536,22.3305],[114.05531,22.33055],[114.05525,22.33071],[114.05524,22.33074],[114.05521,22.33084],[114.0552,22.33092],[114.05521,22.33094],[114.05524,22.33098],[114.05526,22.33099],[114.05528,22.33102],[114.0553,22.33103],[114.05538,22.33112],[114.05548,22.33114],[114.05552,22.33122],[114.05546,22.33127],[114.0555,22.33141],[114.05541,22.33139],[114.05543,22.33152],[114.05552,22.33153],[114.05559,22.33161],[114.05554,22.33166],[114.05551,22.33168],[114.0554,22.33166],[114.0553,22.33178],[114.05531,22.332],[114.05535,22.33211],[114.0556,22.33226],[114.05558,22.33231],[114.05551,22.33232],[114.05555,22.33241],[114.05551,22.33249],[114.05562,22.33251],[114.05566,22.33255],[114.05561,22.33266],[114.05548,22.3327],[114.05571,22.33271],[114.05574,22.33273],[114.0557,22.33278],[114.05584,22.33283],[114.05585,22.3329],[114.05596,22.3329],[114.05602,22.33296],[114.05591,22.33298],[114.05596,22.33304],[114.05594,22.3331],[114.056,22.33313],[114.05592,22.33325],[114.05577,22.33326],[114.05543,22.33341],[114.05535,22.33346],[114.05517,22.33359],[114.05494,22.33367],[114.05491,22.3337],[114.0549,22.33376],[114.05487,22.3338],[114.05481,22.33382],[114.05479,22.33384],[114.05477,22.33388],[114.05477,22.33391],[114.05478,22.33398],[114.05479,22.33402],[114.0548,22.33407],[114.05481,22.3341],[114.05483,22.33417],[114.05485,22.33419],[114.05485,22.3342],[114.05485,22.33422],[114.05486,22.33425],[114.0549,22.33432],[114.05491,22.33433],[114.05493,22.33436],[114.05494,22.33438],[114.05496,22.3344],[114.055,22.33447],[114.05503,22.33451],[114.05505,22.33453],[114.05506,22.33454],[114.05508,22.33453],[114.05509,22.33452],[114.05512,22.33452],[114.05515,22.33453],[114.05523,22.33454],[114.05528,22.33456],[114.05529,22.33456],[114.05534,22.33455],[114.05537,22.33455],[114.05545,22.33455],[114.05556,22.33451],[114.05561,22.33451],[114.05568,22.33451],[114.05573,22.33448],[114.05576,22.33447],[114.05579,22.33443],[114.0558,22.33443],[114.05583,22.33426],[114.05587,22.33427],[114.05584,22.33449],[114.05581,22.33453],[114.05579,22.33455],[114.05577,22.33456],[114.05578,22.33462],[114.05579,22.33464],[114.0558,22.33466],[114.05589,22.3348],[114.05593,22.33484],[114.05596,22.33482],[114.05601,22.33483],[114.05603,22.33484],[114.05603,22.33485],[114.05603,22.33487],[114.05603,22.33488],[114.05602,22.33489],[114.05603,22.33491],[114.05604,22.33491],[114.05607,22.33491],[114.05611,22.3349],[114.05614,22.33485],[114.05617,22.33484],[114.05618,22.33483],[114.05619,22.33481],[114.0562,22.3348],[114.05623,22.3348],[114.05633,22.33488],[114.05644,22.33491],[114.05641,22.33502],[114.05645,22.33507],[114.05656,22.33506],[114.05677,22.33511],[114.05682,22.33515],[114.05692,22.33519],[114.05698,22.33524],[114.057,22.33526],[114.05704,22.33526],[114.05709,22.33526],[114.05716,22.33522],[114.05719,22.3352],[114.05719,22.33523],[114.05727,22.33524],[114.05735,22.33524],[114.05735,22.33525],[114.05736,22.33527],[114.05747,22.33531],[114.0575,22.33532],[114.0576,22.33536],[114.05759,22.33544],[114.05758,22.33558],[114.0576,22.33559],[114.0576,22.33556],[114.05762,22.33549],[114.05766,22.3354],[114.05791,22.33532],[114.05799,22.33533],[114.0581,22.33538],[114.05816,22.33545],[114.05817,22.33552],[114.05814,22.33559],[114.05822,22.33565],[114.05809,22.33576],[114.05785,22.33586],[114.05782,22.33585],[114.05784,22.33582],[114.05788,22.33579],[114.05781,22.33577],[114.05773,22.33581],[114.05769,22.33581],[114.05765,22.33578],[114.05766,22.33572],[114.05759,22.33566],[114.05757,22.33565],[114.05755,22.33566],[114.05756,22.33579],[114.05751,22.33602],[114.05726,22.33613],[114.0573,22.33625],[114.05733,22.33632],[114.05734,22.33639],[114.0573,22.33668],[114.05734,22.33673],[114.05735,22.33689],[114.05742,22.33692],[114.05744,22.33705],[114.05737,22.33734],[114.05729,22.33752],[114.0571,22.33769],[114.05671,22.33788],[114.05646,22.33817],[114.05635,22.33822],[114.05631,22.33831],[114.05608,22.33844],[114.05591,22.33866],[114.05521,22.33896],[114.0553,22.33908],[114.05536,22.33918],[114.0554,22.33927],[114.05539,22.33937],[114.05555,22.33946],[114.05553,22.33959],[114.05551,22.33967],[114.05555,22.33984],[114.05556,22.33995],[114.05577,22.34001],[114.05583,22.3402],[114.05582,22.34047],[114.0558,22.34058],[114.05575,22.34062],[114.05561,22.34065],[114.05556,22.34071],[114.05557,22.34078],[114.05539,22.34101],[114.0553,22.34107],[114.05503,22.34132],[114.05485,22.34146],[114.05473,22.34155],[114.05447,22.34165],[114.05452,22.34169],[114.05452,22.34172],[114.05449,22.34176],[114.05436,22.34179],[114.05432,22.34181],[114.05433,22.34184],[114.05438,22.34188],[114.05437,22.3419],[114.05424,22.34198],[114.05418,22.34197],[114.05416,22.34199],[114.05415,22.34203],[114.05414,22.34209],[114.05402,22.34213],[114.05394,22.34214],[114.05378,22.34222],[114.05366,22.34221],[114.05371,22.34233],[114.05374,22.34242],[114.0538,22.34255],[114.05391,22.3426],[114.05411,22.34255],[114.05419,22.34258],[114.05422,22.34262],[114.05425,22.34281],[114.05424,22.34293],[114.05414,22.34308],[114.05398,22.34332],[114.05397,22.34333],[114.05389,22.34343],[114.05387,22.34345],[114.05383,22.34346],[114.05375,22.34349],[114.05356,22.34353],[114.05347,22.34354],[114.05343,22.34353],[114.0534,22.34351],[114.05339,22.34345],[114.05314,22.34361],[114.05306,22.3436],[114.05281,22.34335],[114.05174,22.34388],[114.05171,22.34389],[114.05172,22.34394],[114.05171,22.34397],[114.05167,22.344],[114.05164,22.34402],[114.05148,22.34405],[114.05147,22.3441],[114.05147,22.34417],[114.05149,22.34423],[114.05155,22.34438],[114.05162,22.3445],[114.05189,22.34474],[114.05188,22.34487],[114.05183,22.34493],[114.05176,22.34498],[114.05163,22.34497],[114.05122,22.34507],[114.05107,22.34515],[114.05098,22.34527],[114.05083,22.34549],[114.05066,22.34555],[114.05007,22.34596],[114.04983,22.34618],[114.0493,22.34639],[114.04892,22.34636],[114.04867,22.34641],[114.04836,22.34642],[114.0482,22.3463],[114.04802,22.34631],[114.04782,22.34637],[114.04765,22.34644],[114.04757,22.34652],[114.04743,22.34655],[114.04731,22.34664],[114.04714,22.34661],[114.047,22.34678],[114.04697,22.34677],[114.04684,22.34681],[114.04671,22.34681],[114.04664,22.34681],[114.0466,22.34682]]],[[[114.06786,22.34855],[114.068,22.34859],[114.06811,22.34865],[114.06824,22.34875],[114.06832,22.34886],[114.06839,22.34905],[114.06841,22.34919],[114.06841,22.34935],[114.0684,22.3494],[114.06832,22.34966],[114.06829,22.34971],[114.06825,22.34977],[114.06817,22.34985],[114.06802,22.35],[114.06791,22.35006],[114.0678,22.35009],[114.06769,22.35012],[114.06767,22.35036],[114.0674,22.35034],[114.06741,22.35011],[114.06732,22.35009],[114.06725,22.35005],[114.06719,22.35001],[114.06711,22.34995],[114.06707,22.3499],[114.06699,22.34981],[114.06693,22.3497],[114.06691,22.34955],[114.06691,22.34947],[114.06695,22.34933],[114.06695,22.34931],[114.06705,22.34897],[114.06712,22.34884],[114.06719,22.34873],[114.06729,22.34866],[114.06739,22.3486],[114.06753,22.34856],[114.06763,22.34854],[114.06774,22.34853],[114.06786,22.34855]]],[[[114.06493,22.35573],[114.0649,22.35576],[114.06491,22.35581],[114.06492,22.35583],[114.06486,22.35588],[114.06473,22.35592],[114.06465,22.3559],[114.06466,22.35588],[114.06457,22.35583],[114.06454,22.35579],[114.06454,22.35575],[114.06451,22.35572],[114.06449,22.35579],[114.06441,22.35585],[114.06442,22.35586],[114.06442,22.35591],[114.06433,22.35589],[114.0643,22.35587],[114.06431,22.35585],[114.06428,22.35584],[114.06426,22.35586],[114.06419,22.35584],[114.06419,22.35581],[114.06408,22.35581],[114.06397,22.35579],[114.06397,22.35576],[114.064,22.35575],[114.06396,22.35571],[114.06386,22.35578],[114.06385,22.35577],[114.06384,22.35576],[114.06387,22.35569],[114.06391,22.35561],[114.06382,22.35552],[114.06369,22.35547],[114.06351,22.3555],[114.06335,22.35547],[114.06327,22.35529],[114.06319,22.3552],[114.06313,22.35517],[114.06307,22.35511],[114.06304,22.35509],[114.06287,22.3549],[114.06268,22.3548],[114.06261,22.35483],[114.06258,22.35498],[114.06255,22.35501],[114.06251,22.35499],[114.06246,22.35497],[114.06242,22.35493],[114.06241,22.35489],[114.06245,22.35488],[114.06246,22.35487],[114.06248,22.35484],[114.06248,22.35482],[114.06247,22.3548],[114.06245,22.35479],[114.06244,22.35479],[114.06242,22.35482],[114.06241,22.35483],[114.06239,22.35483],[114.06236,22.35483],[114.06235,22.35482],[114.06237,22.35476],[114.06237,22.35475],[114.06237,22.35473],[114.06233,22.35471],[114.06219,22.35465],[114.06196,22.35464],[114.06183,22.35466],[114.06167,22.35466],[114.06144,22.35473],[114.06136,22.35479],[114.06128,22.35489],[114.0612,22.35493],[114.06107,22.35497],[114.06098,22.35499],[114.06091,22.35503],[114.06083,22.35508],[114.06076,22.35518],[114.06076,22.35524],[114.06073,22.35527],[114.06067,22.35532],[114.06063,22.35535],[114.06061,22.3554],[114.06062,22.35543],[114.0607,22.35542],[114.06072,22.35543],[114.06072,22.35545],[114.06071,22.35548],[114.06066,22.35549],[114.06063,22.35558],[114.06057,22.35567],[114.06054,22.35569],[114.06026,22.35581],[114.06006,22.35589],[114.06004,22.35589],[114.06001,22.35587],[114.05999,22.35582],[114.05991,22.35585],[114.05991,22.35581],[114.05993,22.35579],[114.05996,22.35575],[114.06002,22.35573],[114.05999,22.35567],[114.05994,22.35568],[114.05989,22.35567],[114.0595,22.35578],[114.05829,22.35569],[114.05819,22.35563],[114.05815,22.35565],[114.0581,22.35566],[114.05808,22.35564],[114.05805,22.35561],[114.05803,22.35556],[114.05801,22.35548],[114.05794,22.3555],[114.05768,22.3555],[114.05749,22.35549],[114.05729,22.35554],[114.05718,22.35553],[114.05711,22.35554],[114.05696,22.35553],[114.05689,22.35547],[114.0567,22.35535],[114.05665,22.35537],[114.05654,22.35527],[114.05648,22.35527],[114.05647,22.35525],[114.05651,22.35521],[114.05651,22.35518],[114.05648,22.35511],[114.05643,22.35511],[114.05639,22.35508],[114.05633,22.35497],[114.05635,22.35495],[114.05632,22.35487],[114.05626,22.35481],[114.05621,22.35473],[114.05626,22.35466],[114.05628,22.35455],[114.0563,22.3545],[114.05631,22.35441],[114.05628,22.35427],[114.05633,22.35424],[114.0563,22.3542],[114.05624,22.35421],[114.05625,22.35403],[114.0562,22.354],[114.05621,22.35398],[114.05637,22.35392],[114.05646,22.35396],[114.05667,22.35384],[114.05671,22.35389],[114.05683,22.35383],[114.0569,22.35363],[114.05696,22.35352],[114.05716,22.35339],[114.0572,22.35342],[114.05722,22.35323],[114.05718,22.35321],[114.05716,22.3531],[114.05713,22.35307],[114.05713,22.35297],[114.05721,22.35294],[114.05741,22.35279],[114.0575,22.35276],[114.05757,22.35275],[114.05767,22.35269],[114.05766,22.35244],[114.05762,22.35225],[114.05756,22.35218],[114.05751,22.35203],[114.05745,22.35195],[114.05739,22.35193],[114.05738,22.35192],[114.05725,22.35182],[114.05724,22.35177],[114.05731,22.35169],[114.05721,22.35165],[114.05711,22.35164],[114.05711,22.35151],[114.05703,22.35141],[114.05707,22.35137],[114.05715,22.35135],[114.05713,22.3513],[114.05707,22.35129],[114.05706,22.35126],[114.05706,22.35122],[114.05696,22.35122],[114.0569,22.35121],[114.05691,22.35121],[114.05689,22.35121],[114.05689,22.35117],[114.05696,22.35117],[114.05708,22.35118],[114.05711,22.35116],[114.05712,22.35116],[114.05713,22.35116],[114.05714,22.35116],[114.05716,22.35115],[114.05722,22.35112],[114.05726,22.3511],[114.05728,22.35108],[114.05729,22.35107],[114.05713,22.3507],[114.05711,22.35063],[114.05681,22.35049],[114.05666,22.35033],[114.0565,22.3502],[114.05643,22.35017],[114.05638,22.35012],[114.05634,22.35004],[114.05625,22.34999],[114.05614,22.34996],[114.05611,22.34997],[114.05605,22.34996],[114.05601,22.34998],[114.05596,22.34998],[114.05592,22.34996],[114.05585,22.34998],[114.05581,22.34997],[114.05571,22.35],[114.05557,22.35],[114.05546,22.34994],[114.05546,22.35],[114.05543,22.35005],[114.05541,22.35006],[114.0553,22.34999],[114.05526,22.34996],[114.05524,22.34993],[114.05525,22.34991],[114.05523,22.34986],[114.05515,22.34981],[114.05513,22.34983],[114.05506,22.34979],[114.05505,22.34976],[114.05506,22.34975],[114.05508,22.34976],[114.05509,22.34974],[114.05507,22.34971],[114.05506,22.34972],[114.05499,22.34971],[114.05501,22.34967],[114.05497,22.34962],[114.05491,22.34956],[114.0548,22.34952],[114.05471,22.34949],[114.05455,22.34938],[114.0545,22.34931],[114.05456,22.34926],[114.05457,22.34923],[114.05456,22.3492],[114.05453,22.3492],[114.05451,22.34917],[114.05446,22.3492],[114.05445,22.34918],[114.0545,22.34911],[114.05449,22.34909],[114.05447,22.3491],[114.05444,22.34907],[114.05445,22.34906],[114.05439,22.34902],[114.0543,22.34894],[114.05427,22.34895],[114.05424,22.34895],[114.05419,22.34892],[114.05418,22.34893],[114.05416,22.3489],[114.05414,22.34888],[114.05415,22.34886],[114.05413,22.34885],[114.05412,22.34886],[114.05411,22.34885],[114.05407,22.34885],[114.05405,22.34882],[114.05404,22.34878],[114.05405,22.34874],[114.05403,22.34873],[114.054,22.34873],[114.05399,22.34872],[114.05399,22.3487],[114.054,22.3487],[114.05401,22.34869],[114.054,22.34869],[114.054,22.34866],[114.05399,22.34866],[114.05401,22.34861],[114.05407,22.34863],[114.0541,22.34861],[114.05417,22.34862],[114.05426,22.34866],[114.05437,22.34865],[114.05447,22.34857],[114.05468,22.3485],[114.05476,22.34845],[114.05482,22.34842],[114.05482,22.34841],[114.05482,22.34841],[114.05484,22.3484],[114.05484,22.3484],[114.05485,22.3484],[114.05486,22.34841],[114.05486,22.34841],[114.05487,22.34841],[114.05487,22.34842],[114.05487,22.34843],[114.05487,22.34843],[114.05487,22.34844],[114.05488,22.34843],[114.05489,22.34844],[114.05489,22.34844],[114.05498,22.3484],[114.05512,22.34829],[114.05514,22.34828],[114.05516,22.34827],[114.05519,22.34827],[114.05521,22.34827],[114.05523,22.34827],[114.05526,22.34828],[114.05531,22.34826],[114.05534,22.34825],[114.05537,22.34824],[114.05546,22.34823],[114.05546,22.34814],[114.0555,22.34801],[114.05551,22.34801],[114.05554,22.34802],[114.05556,22.34797],[114.05554,22.34794],[114.05537,22.34789],[114.05539,22.34781],[114.05562,22.34788],[114.05557,22.34803],[114.0556,22.34804],[114.05561,22.34804],[114.05558,22.34812],[114.05551,22.34827],[114.05561,22.3483],[114.05561,22.34833],[114.05562,22.34833],[114.05563,22.3483],[114.05569,22.34831],[114.05568,22.34835],[114.05569,22.34835],[114.05571,22.34834],[114.05577,22.34834],[114.05579,22.34834],[114.05581,22.34835],[114.05583,22.34837],[114.05584,22.34838],[114.05584,22.34842],[114.05585,22.34844],[114.05586,22.34847],[114.05588,22.34849],[114.0559,22.34851],[114.0559,22.34843],[114.05598,22.34843],[114.05597,22.34854],[114.05601,22.34853],[114.05606,22.3485],[114.05622,22.3484],[114.05613,22.34828],[114.05619,22.34824],[114.0563,22.34819],[114.05634,22.34818],[114.05641,22.34816],[114.05643,22.34821],[114.05645,22.3482],[114.05649,22.34826],[114.05651,22.34825],[114.05651,22.34824],[114.05654,22.34824],[114.05655,22.34825],[114.05656,22.34824],[114.05656,22.34825],[114.05662,22.34823],[114.05665,22.34826],[114.05669,22.34824],[114.05668,22.34823],[114.05672,22.34821],[114.05673,22.34823],[114.05684,22.34815],[114.05686,22.34813],[114.05688,22.34798],[114.05691,22.34786],[114.05694,22.34787],[114.0569,22.34798],[114.05689,22.3481],[114.05691,22.34813],[114.05692,22.34813],[114.05693,22.34813],[114.05694,22.34813],[114.05697,22.34812],[114.057,22.34812],[114.05699,22.34809],[114.05711,22.34806],[114.05715,22.34806],[114.05715,22.34809],[114.05729,22.34807],[114.05732,22.34807],[114.05738,22.34807],[114.05738,22.34806],[114.05741,22.34806],[114.05741,22.3481],[114.05746,22.34811],[114.05746,22.34806],[114.05752,22.34807],[114.05748,22.34818],[114.05754,22.34819],[114.05754,22.34816],[114.05751,22.34816],[114.05751,22.34814],[114.05758,22.34814],[114.05757,22.3481],[114.05762,22.3481],[114.05762,22.34812],[114.05763,22.34812],[114.05763,22.34815],[114.05758,22.34816],[114.05758,22.34821],[114.05764,22.34822],[114.05764,22.34815],[114.05789,22.34811],[114.05798,22.34792],[114.058,22.34788],[114.05802,22.34786],[114.05805,22.34785],[114.05806,22.34784],[114.0581,22.34783],[114.05811,22.34781],[114.05812,22.3478],[114.05812,22.34778],[114.05811,22.34777],[114.05809,22.34774],[114.05802,22.34768],[114.05799,22.34764],[114.05793,22.34755],[114.05789,22.34752],[114.05764,22.34743],[114.05759,22.34742],[114.05754,22.34742],[114.05748,22.34744],[114.0574,22.34746],[114.05736,22.34747],[114.0573,22.34748],[114.05721,22.34748],[114.05711,22.34771],[114.0571,22.34781],[114.05712,22.34792],[114.05709,22.34792],[114.05708,22.34781],[114.05708,22.34772],[114.05719,22.34747],[114.05713,22.34746],[114.05702,22.34748],[114.05691,22.34747],[114.05684,22.34741],[114.05689,22.3474],[114.05685,22.34731],[114.0567,22.34729],[114.0567,22.34723],[114.05673,22.34718],[114.05674,22.34701],[114.05655,22.34701],[114.05656,22.34693],[114.05666,22.34692],[114.05676,22.34694],[114.05682,22.34675],[114.0568,22.34673],[114.05683,22.34672],[114.05685,22.34665],[114.05686,22.34649],[114.05679,22.34633],[114.05672,22.34623],[114.05655,22.34624],[114.05672,22.34604],[114.05674,22.34593],[114.0568,22.34591],[114.05688,22.34582],[114.05684,22.34579],[114.05685,22.34573],[114.05682,22.34569],[114.05678,22.34563],[114.05674,22.34551],[114.05674,22.34539],[114.05677,22.34517],[114.05678,22.34514],[114.05697,22.34478],[114.05703,22.34471],[114.05712,22.34465],[114.05728,22.34463],[114.05745,22.34456],[114.05757,22.34456],[114.05767,22.34454],[114.05771,22.34456],[114.0578,22.34455],[114.05787,22.34458],[114.05794,22.34456],[114.05801,22.34452],[114.05805,22.34449],[114.0582,22.3444],[114.05845,22.34419],[114.05852,22.34409],[114.05863,22.34393],[114.05863,22.34384],[114.05874,22.34358],[114.05874,22.3435],[114.05914,22.34316],[114.05914,22.34312],[114.05922,22.34304],[114.05929,22.3429],[114.05928,22.34277],[114.05916,22.34266],[114.05932,22.34261],[114.05946,22.34263],[114.05954,22.34267],[114.0598,22.3426],[114.05997,22.3426],[114.06,22.34255],[114.06005,22.34258],[114.06006,22.34262],[114.06014,22.34262],[114.06023,22.34261],[114.0603,22.34262],[114.06037,22.34266],[114.06043,22.34269],[114.06055,22.34274],[114.06058,22.34275],[114.0606,22.34274],[114.06061,22.34273],[114.06089,22.34246],[114.06093,22.34239],[114.0611,22.34247],[114.06106,22.34254],[114.06087,22.34273],[114.06087,22.34278],[114.06084,22.34281],[114.06072,22.34288],[114.06071,22.3429],[114.06072,22.34295],[114.06074,22.343],[114.06092,22.3433],[114.06099,22.34331],[114.06097,22.34328],[114.06097,22.34325],[114.06102,22.34325],[114.06123,22.34334],[114.06144,22.34337],[114.06151,22.34345],[114.06153,22.34344],[114.0616,22.34349],[114.06156,22.3435],[114.06167,22.3436],[114.0617,22.3436],[114.06166,22.34354],[114.06167,22.34352],[114.06171,22.34355],[114.06184,22.34356],[114.06188,22.34356],[114.06199,22.34356],[114.06201,22.34357],[114.06199,22.3436],[114.06186,22.34359],[114.06186,22.34361],[114.0619,22.34363],[114.06203,22.34364],[114.06207,22.34362],[114.06204,22.3436],[114.06206,22.34357],[114.06212,22.34357],[114.0623,22.34362],[114.0625,22.34359],[114.06249,22.34356],[114.06253,22.34356],[114.06255,22.34357],[114.06255,22.34362],[114.06257,22.34365],[114.0626,22.34362],[114.0627,22.34362],[114.06271,22.34367],[114.0626,22.34374],[114.06269,22.34378],[114.0628,22.34387],[114.06281,22.34393],[114.06294,22.34397],[114.06298,22.34401],[114.06304,22.34406],[114.06305,22.34409],[114.0631,22.34412],[114.06319,22.34419],[114.06323,22.3442],[114.06333,22.3442],[114.0634,22.34423],[114.06344,22.3442],[114.0635,22.34419],[114.06355,22.34421],[114.0636,22.34424],[114.06366,22.34423],[114.06373,22.34426],[114.06384,22.34423],[114.06395,22.34428],[114.06397,22.34424],[114.06399,22.34419],[114.06415,22.34419],[114.06418,22.34422],[114.06416,22.34426],[114.06425,22.34427],[114.06431,22.34428],[114.06435,22.34433],[114.06437,22.34425],[114.06441,22.34427],[114.06445,22.34424],[114.06452,22.34436],[114.06461,22.34444],[114.06468,22.34442],[114.06472,22.34446],[114.06463,22.34452],[114.06467,22.34459],[114.06466,22.34463],[114.06459,22.34472],[114.06442,22.34473],[114.06437,22.3448],[114.06428,22.34487],[114.06428,22.34491],[114.06434,22.34492],[114.06444,22.34503],[114.06499,22.34516],[114.06508,22.3452],[114.06513,22.34522],[114.06516,22.34525],[114.06517,22.34532],[114.06623,22.34562],[114.06618,22.34576],[114.06621,22.34577],[114.06622,22.34578],[114.06624,22.3458],[114.06624,22.34583],[114.06624,22.34585],[114.06624,22.34586],[114.06616,22.34612],[114.0661,22.34631],[114.06609,22.34634],[114.06607,22.34637],[114.06603,22.34641],[114.06598,22.34644],[114.06594,22.34645],[114.06587,22.34645],[114.06518,22.34626],[114.06517,22.34625],[114.06515,22.34626],[114.06514,22.34627],[114.06512,22.34628],[114.06508,22.34636],[114.06491,22.34695],[114.06473,22.34747],[114.06462,22.34785],[114.06462,22.34791],[114.06463,22.34796],[114.06466,22.34802],[114.06471,22.34809],[114.06473,22.34819],[114.06474,22.34829],[114.06471,22.34837],[114.06463,22.34866],[114.06462,22.34869],[114.06455,22.34878],[114.06446,22.34885],[114.06435,22.34888],[114.06425,22.34888],[114.06419,22.34903],[114.06385,22.34893],[114.06388,22.34884],[114.06366,22.34879],[114.06338,22.34876],[114.06276,22.34866],[114.06235,22.34861],[114.06227,22.34868],[114.06204,22.34898],[114.06194,22.34895],[114.0619,22.34887],[114.0618,22.34901],[114.06174,22.34912],[114.06167,22.34932],[114.06162,22.34967],[114.06159,22.34993],[114.06156,22.35044],[114.06155,22.35051],[114.06155,22.35055],[114.06155,22.35063],[114.06154,22.35075],[114.06153,22.35082],[114.06155,22.35086],[114.06155,22.35087],[114.06156,22.35088],[114.06157,22.35089],[114.06158,22.3509],[114.06159,22.3509],[114.06161,22.35091],[114.06161,22.3509],[114.06166,22.3509],[114.06166,22.35095],[114.06168,22.35095],[114.06168,22.35099],[114.0617,22.35099],[114.0617,22.35114],[114.06171,22.35116],[114.06188,22.35143],[114.062,22.35157],[114.06214,22.35165],[114.06228,22.35164],[114.06233,22.35167],[114.06225,22.35171],[114.06242,22.35184],[114.06256,22.35191],[114.06269,22.35196],[114.06281,22.35199],[114.06286,22.35199],[114.06287,22.35195],[114.06291,22.35191],[114.06297,22.35189],[114.06299,22.35188],[114.06307,22.35196],[114.06308,22.35199],[114.06303,22.35204],[114.06303,22.35205],[114.06304,22.35207],[114.06305,22.35208],[114.06308,22.35211],[114.06309,22.35212],[114.06311,22.35213],[114.06313,22.35215],[114.06315,22.35216],[114.06317,22.35217],[114.06321,22.35219],[114.06325,22.35222],[114.0633,22.35224],[114.06335,22.35227],[114.06338,22.35228],[114.06339,22.3523],[114.0634,22.35231],[114.06342,22.35233],[114.06343,22.35234],[114.06344,22.35236],[114.06345,22.35236],[114.06345,22.35237],[114.06345,22.35238],[114.06345,22.3524],[114.06345,22.35241],[114.06345,22.35243],[114.06346,22.35246],[114.06348,22.3525],[114.06412,22.3525],[114.06412,22.35264],[114.06502,22.35295],[114.06491,22.35322],[114.06369,22.35281],[114.06348,22.35281],[114.06348,22.35284],[114.0633,22.35284],[114.06328,22.35296],[114.06326,22.35308],[114.06326,22.35319],[114.06326,22.35334],[114.06327,22.35343],[114.06328,22.3535],[114.0633,22.35358],[114.06332,22.35364],[114.06335,22.35368],[114.06337,22.35372],[114.0634,22.35376],[114.06346,22.35384],[114.06354,22.35393],[114.0636,22.35395],[114.06367,22.35396],[114.06369,22.35395],[114.06374,22.35396],[114.06381,22.35397],[114.06393,22.35398],[114.06408,22.35401],[114.06414,22.35402],[114.06416,22.35403],[114.0642,22.35406],[114.06422,22.35408],[114.06428,22.35411],[114.06429,22.35413],[114.06431,22.35417],[114.06433,22.3542],[114.06436,22.35422],[114.06439,22.35424],[114.0644,22.35425],[114.06441,22.35424],[114.06448,22.35426],[114.06446,22.35429],[114.06459,22.3543],[114.0646,22.35433],[114.06462,22.35438],[114.06463,22.35442],[114.0646,22.35448],[114.06464,22.35457],[114.06462,22.35463],[114.06468,22.3547],[114.0647,22.35475],[114.06489,22.35496],[114.06497,22.355],[114.06502,22.35501],[114.0651,22.35505],[114.06518,22.35507],[114.0652,22.35509],[114.06523,22.35511],[114.06523,22.35515],[114.06521,22.35522],[114.0652,22.35529],[114.06522,22.35537],[114.06521,22.35541],[114.06517,22.35548],[114.06511,22.35559],[114.06508,22.35559],[114.06506,22.35559],[114.06504,22.35557],[114.06503,22.35557],[114.06495,22.35569],[114.06495,22.35571],[114.06493,22.35573]]]]},"properties":{"M_NM_Eng":"Non-Metro","SR_Eng":"SWNT","PDD_Cat_En":"New Town","PDD_Eng":"North Lantau","M_NM_Tc":"非都會區","SR_Tc":"新界西南","PDD_Cat_Tc":"新市鎮","PDD_Tc":"北大嶼山","M_NM_Sc":"非都会区","SR_Sc_1":"新界西南","PDD_Cat_Sc":"新市镇","PDD_Sc":"北大屿山","Y2019_Popu":130050,"Y2019_Empl":108250,"Y2026_Popu":182900,"Y2026_Empl":142400,"Y2031_Popu":275200,"Y2031_Empl":191750}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[114.19489,22.41703],[114.19487,22.41703],[114.19485,22.41703],[114.19483,22.41704],[114.19481,22.41704],[114.19479,22.41704],[114.19477,22.41705],[114.19475,22.41705],[114.19473,22.41706],[114.19471,22.41706],[114.1947,22.41707],[114.19468,22.41708],[114.19466,22.41709],[114.19465,22.4171],[114.19463,22.41711],[114.19462,22.41712],[114.1946,22.41714],[114.19459,22.41715],[114.19458,22.41716],[114.19456,22.41718],[114.19455,22.41719],[114.19454,22.4172],[114.19453,22.41722],[114.19451,22.41723],[114.1945,22.41724],[114.19449,22.41726],[114.19448,22.41727],[114.19446,22.41729],[114.19445,22.4173],[114.19444,22.41731],[114.19443,22.41733],[114.19442,22.41734],[114.1944,22.41736],[114.19439,22.41737],[114.19438,22.41739],[114.19437,22.4174],[114.19436,22.41741],[114.19434,22.41743],[114.19433,22.41744],[114.19432,22.41746],[114.1943,22.41747],[114.19429,22.41749],[114.19428,22.4175],[114.19427,22.41751],[114.19425,22.41753],[114.19424,22.41754],[114.19423,22.41755],[114.19421,22.41757],[114.1942,22.41758],[114.19419,22.4176],[114.19418,22.41761],[114.19416,22.41762],[114.19415,22.41764],[114.19414,22.41765],[114.19413,22.41766],[114.19411,22.41768],[114.1941,22.41769],[114.19409,22.41771],[114.19408,22.41772],[114.19406,22.41773],[114.19405,22.41775],[114.19404,22.41776],[114.19403,22.41777],[114.19401,22.41779],[114.194,22.4178],[114.19399,22.41781],[114.19397,22.41783],[114.19396,22.41784],[114.19395,22.41785],[114.19393,22.41787],[114.19392,22.41788],[114.19392,22.4179],[114.19391,22.41792],[114.19391,22.41794],[114.19391,22.41795],[114.19391,22.41797],[114.19391,22.41799],[114.19391,22.41801],[114.19391,22.41803],[114.19391,22.41804],[114.19392,22.41806],[114.19392,22.41808],[114.19393,22.4181],[114.19394,22.41811],[114.19394,22.41813],[114.19395,22.41815],[114.19396,22.41816],[114.19397,22.41818],[114.19398,22.41819],[114.19399,22.41821],[114.194,22.41823],[114.19401,22.41824],[114.19402,22.41826],[114.19403,22.41827],[114.19404,22.41829],[114.19404,22.41831],[114.19405,22.41832],[114.19404,22.41834],[114.19404,22.41836],[114.19403,22.41838],[114.19402,22.41839],[114.19401,22.41841],[114.194,22.41842],[114.19399,22.41844],[114.19398,22.41845],[114.19396,22.41846],[114.19395,22.41848],[114.19394,22.41849],[114.19392,22.4185],[114.19391,22.41852],[114.19389,22.41853],[114.19388,22.41854],[114.19387,22.41855],[114.19385,22.41857],[114.19384,22.41858],[114.19382,22.41859],[114.19381,22.4186],[114.19379,22.41861],[114.19378,22.41863],[114.19376,22.41864],[114.19375,22.41865],[114.19374,22.41866],[114.19372,22.41868],[114.19371,22.41869],[114.19369,22.4187],[114.19368,22.41871],[114.19367,22.41873],[114.19366,22.41874],[114.19364,22.41875],[114.19363,22.41877],[114.19362,22.41878],[114.1936,22.4188],[114.19359,22.41881],[114.19358,22.41883],[114.19358,22.41884],[114.19358,22.41886],[114.19357,22.41888],[114.19357,22.4189],[114.19357,22.41892],[114.19357,22.41893],[114.19357,22.41895],[114.19357,22.41897],[114.19358,22.41899],[114.19358,22.41902],[114.19159,22.41848],[114.19,22.41805],[114.18934,22.41786],[114.18884,22.41771],[114.18879,22.4177],[114.18877,22.41769],[114.18824,22.41754],[114.18791,22.41744],[114.18528,22.41672],[114.18522,22.41671],[114.18515,22.4167],[114.18482,22.41663],[114.18457,22.41659],[114.18382,22.4164],[114.18314,22.41626],[114.18275,22.41617],[114.18127,22.41588],[114.17502,22.41471],[114.17493,22.41469],[114.17346,22.41442],[114.17137,22.41402],[114.16971,22.41369],[114.16844,22.41344],[114.1675,22.41321],[114.16572,22.41287],[114.16486,22.41271],[114.16351,22.41243],[114.16231,22.41219],[114.16113,22.41198],[114.16002,22.41187],[114.15901,22.41185],[114.15778,22.41189],[114.15761,22.41034],[114.15741,22.40936],[114.1574,22.40931],[114.15726,22.40872],[114.15686,22.40746],[114.15656,22.40689],[114.15602,22.40594],[114.15523,22.40457],[114.15516,22.4044],[114.15499,22.40395],[114.15471,22.4033],[114.15457,22.40297],[114.15452,22.40286],[114.15448,22.40277],[114.15438,22.40256],[114.15432,22.4024],[114.15427,22.40228],[114.15421,22.40215],[114.1542,22.40212],[114.154,22.40164],[114.15354,22.40086],[114.1531,22.39991],[114.15278,22.39889],[114.15275,22.3988],[114.15272,22.39865],[114.15256,22.39799],[114.15252,22.3973],[114.15255,22.39678],[114.15275,22.39629],[114.15311,22.39566],[114.15316,22.39552],[114.15319,22.39541],[114.15319,22.39541],[114.15319,22.3954],[114.15319,22.3954],[114.1532,22.39537],[114.1532,22.39535],[114.15321,22.39535],[114.15321,22.39534],[114.15321,22.39532],[114.15321,22.39532],[114.15321,22.39531],[114.1532,22.3953],[114.1532,22.39529],[114.1532,22.39529],[114.1532,22.39528],[114.15319,22.39525],[114.15319,22.39525],[114.15318,22.39524],[114.15318,22.39524],[114.15317,22.39521],[114.15316,22.39521],[114.15316,22.39521],[114.15315,22.39519],[114.15315,22.39519],[114.15315,22.39518],[114.15315,22.39517],[114.15314,22.39516],[114.15314,22.39515],[114.15314,22.39515],[114.15313,22.39513],[114.15313,22.39511],[114.15311,22.39507],[114.15309,22.39506],[114.15308,22.39504],[114.15306,22.395],[114.15304,22.39496],[114.15304,22.39496],[114.15303,22.39494],[114.15302,22.39493],[114.15302,22.39493],[114.15301,22.39492],[114.15301,22.39492],[114.15299,22.3949],[114.15298,22.39489],[114.15298,22.39489],[114.15296,22.39486],[114.15294,22.39483],[114.15292,22.39482],[114.15292,22.39481],[114.15292,22.39481],[114.15291,22.3948],[114.1529,22.39479],[114.15288,22.39477],[114.15287,22.39475],[114.15287,22.39475],[114.15286,22.39475],[114.15285,22.39473],[114.15284,22.39472],[114.15283,22.3947],[114.15282,22.3947],[114.15278,22.39465],[114.15278,22.39465],[114.15277,22.39464],[114.15275,22.39462],[114.15274,22.39461],[114.15272,22.39459],[114.15271,22.39458],[114.15269,22.39456],[114.15268,22.39454],[114.15267,22.39453],[114.15266,22.39453],[114.15265,22.39451],[114.15264,22.39451],[114.15261,22.39446],[114.1526,22.39445],[114.15259,22.39444],[114.15258,22.39443],[114.15257,22.39442],[114.15257,22.39442],[114.15257,22.39441],[114.15255,22.39439],[114.15255,22.39438],[114.15255,22.39438],[114.15252,22.39435],[114.15249,22.39431],[114.15248,22.3943],[114.15247,22.39429],[114.15247,22.39427],[114.15247,22.39427],[114.15246,22.39427],[114.15246,22.39426],[114.15245,22.39425],[114.15245,22.39424],[114.15244,22.39423],[114.15244,22.39422],[114.15244,22.39422],[114.15244,22.39421],[114.15244,22.3942],[114.15243,22.39419],[114.15243,22.39417],[114.15243,22.39417],[114.15243,22.39416],[114.15243,22.39415],[114.15243,22.39415],[114.15243,22.39414],[114.15243,22.39414],[114.15243,22.39413],[114.15243,22.39413],[114.15243,22.39413],[114.15242,22.39412],[114.15242,22.39412],[114.15241,22.39411],[114.15241,22.3941],[114.15241,22.3941],[114.15241,22.39408],[114.1524,22.39407],[114.1524,22.39407],[114.1524,22.39407],[114.15241,22.39406],[114.15241,22.39405],[114.15241,22.39404],[114.15241,22.39403],[114.15242,22.39402],[114.15242,22.39402],[114.15242,22.39401],[114.15243,22.39401],[114.15243,22.39401],[114.15244,22.39401],[114.15244,22.39401],[114.15244,22.39401],[114.15245,22.39401],[114.15246,22.39401],[114.15247,22.39401],[114.15248,22.39401],[114.15249,22.39402],[114.1525,22.39402],[114.15251,22.39403],[114.15252,22.39404],[114.15253,22.39404],[114.15254,22.39405],[114.15255,22.39406],[114.15255,22.39406],[114.15255,22.39406],[114.15256,22.39407],[114.15257,22.39407],[114.15258,22.39408],[114.15259,22.39408],[114.15259,22.39409],[114.1526,22.39409],[114.15261,22.3941],[114.15262,22.3941],[114.15263,22.39411],[114.15264,22.39411],[114.15264,22.39411],[114.15264,22.39411],[114.15264,22.39411],[114.15268,22.39413],[114.15269,22.39414],[114.1527,22.39414],[114.15271,22.39415],[114.15272,22.39415],[114.15273,22.39416],[114.15273,22.39416],[114.15275,22.39418],[114.15277,22.39418],[114.15277,22.39418],[114.15278,22.39419],[114.15279,22.39419],[114.15279,22.39419],[114.1528,22.39419],[114.15282,22.39419],[114.15284,22.3942],[114.15285,22.3942],[114.15285,22.3942],[114.15286,22.3942],[114.15286,22.3942],[114.15287,22.3942],[114.15289,22.39421],[114.15291,22.39421],[114.15292,22.39421],[114.15294,22.39421],[114.15296,22.39421],[114.15297,22.39421],[114.15299,22.39422],[114.15302,22.39422],[114.15304,22.39422],[114.15307,22.39423],[114.15309,22.39423],[114.1531,22.39423],[114.1531,22.39423],[114.15312,22.39423],[114.15313,22.39423],[114.15313,22.39423],[114.15315,22.39423],[114.15315,22.39423],[114.15315,22.39423],[114.15316,22.39423],[114.15317,22.39423],[114.15317,22.39423],[114.15318,22.39423],[114.15319,22.39423],[114.15319,22.39423],[114.1532,22.39423],[114.1532,22.39423],[114.15322,22.39423],[114.15324,22.39422],[114.15324,22.39422],[114.15325,22.39422],[114.15325,22.39422],[114.15326,22.39421],[114.15328,22.3942],[114.15328,22.3942],[114.15328,22.3942],[114.1533,22.39418],[114.15331,22.39418],[114.15333,22.39417],[114.15334,22.39415],[114.15334,22.39415],[114.15335,22.39414],[114.15335,22.39414],[114.15336,22.39414],[114.15337,22.39414],[114.15337,22.39414],[114.15338,22.39414],[114.15338,22.39415],[114.15339,22.39415],[114.15342,22.39418],[114.15344,22.39421],[114.15344,22.39421],[114.15345,22.39422],[114.15347,22.39423],[114.15349,22.39425],[114.15351,22.39427],[114.15353,22.39429],[114.15354,22.39429],[114.15357,22.39431],[114.15358,22.39432],[114.15359,22.39433],[114.1536,22.39433],[114.1536,22.39433],[114.15361,22.39434],[114.15361,22.39434],[114.15362,22.39434],[114.15365,22.39435],[114.15365,22.39436],[114.15366,22.39436],[114.15366,22.39436],[114.15366,22.39436],[114.15367,22.39437],[114.15369,22.39439],[114.15369,22.39439],[114.1537,22.3944],[114.15371,22.39441],[114.15372,22.39441],[114.15373,22.39441],[114.15373,22.39442],[114.15374,22.39442],[114.15375,22.39444],[114.15377,22.39446],[114.15378,22.39447],[114.1538,22.39449],[114.15382,22.39451],[114.15382,22.39451],[114.15383,22.39452],[114.15384,22.39453],[114.15385,22.39454],[114.15386,22.39455],[114.15386,22.39455],[114.15387,22.39456],[114.15389,22.39459],[114.1539,22.39459],[114.15391,22.3946],[114.15393,22.39461],[114.15394,22.39462],[114.15395,22.39463],[114.15396,22.39464],[114.15396,22.39464],[114.15396,22.39464],[114.15397,22.39464],[114.15397,22.39464],[114.15399,22.39466],[114.154,22.39466],[114.15401,22.39466],[114.15401,22.39466],[114.15402,22.39467],[114.15403,22.39468],[114.15404,22.39469],[114.15405,22.39469],[114.15405,22.39469],[114.15406,22.39469],[114.15407,22.39469],[114.15408,22.3947],[114.15409,22.3947],[114.1541,22.3947],[114.15414,22.39471],[114.15416,22.39472],[114.15417,22.39472],[114.15417,22.39472],[114.15418,22.39471],[114.15419,22.39471],[114.15419,22.39471],[114.15419,22.39471],[114.1542,22.3947],[114.15421,22.3947],[114.15422,22.39469],[114.15424,22.39468],[114.15425,22.39468],[114.15426,22.39467],[114.15429,22.39465],[114.1543,22.39465],[114.1543,22.39465],[114.15431,22.39465],[114.1543,22.39465],[114.15429,22.39465],[114.15429,22.39465],[114.15427,22.39466],[114.15424,22.39467],[114.15423,22.39467],[114.15423,22.39467],[114.15422,22.39467],[114.15422,22.39467],[114.15418,22.39467],[114.15417,22.39468],[114.15416,22.39467],[114.15415,22.39467],[114.15415,22.39467],[114.15414,22.39467],[114.15413,22.39467],[114.15412,22.39467],[114.15411,22.39467],[114.15409,22.39466],[114.15409,22.39466],[114.15408,22.39466],[114.15406,22.39465],[114.15406,22.39465],[114.15404,22.39465],[114.15404,22.39464],[114.15404,22.39463],[114.15403,22.39462],[114.15402,22.3946],[114.15401,22.39458],[114.154,22.39458],[114.15399,22.39456],[114.15398,22.39455],[114.15396,22.39454],[114.15395,22.39452],[114.15394,22.39452],[114.15394,22.39451],[114.15394,22.39451],[114.15393,22.3945],[114.15392,22.39448],[114.15391,22.39448],[114.1539,22.39447],[114.15389,22.39445],[114.15388,22.39443],[114.15388,22.39442],[114.15388,22.39442],[114.15387,22.3944],[114.15387,22.39439],[114.15387,22.39438],[114.15386,22.39437],[114.15386,22.39436],[114.15386,22.39435],[114.15385,22.39434],[114.15385,22.39433],[114.15385,22.39432],[114.15385,22.39431],[114.15384,22.39429],[114.15384,22.39429],[114.15382,22.39426],[114.15382,22.39425],[114.15382,22.39425],[114.15381,22.39425],[114.1538,22.39424],[114.15378,22.39422],[114.15378,22.39422],[114.15377,22.39421],[114.15377,22.39421],[114.15376,22.39421],[114.15372,22.39419],[114.15372,22.39419],[114.1537,22.39418],[114.1537,22.39418],[114.15369,22.39418],[114.15368,22.39417],[114.15367,22.39417],[114.15367,22.39417],[114.15365,22.39415],[114.15364,22.39415],[114.15362,22.39413],[114.15361,22.39412],[114.1536,22.39411],[114.15359,22.3941],[114.15359,22.3941],[114.15359,22.3941],[114.15358,22.39409],[114.15357,22.39408],[114.15356,22.39407],[114.15355,22.39406],[114.15355,22.39406],[114.15355,22.39406],[114.15354,22.39405],[114.15354,22.39404],[114.15353,22.39403],[114.15353,22.39403],[114.15353,22.39403],[114.15353,22.39402],[114.15352,22.39399],[114.15351,22.39397],[114.15351,22.39394],[114.1535,22.39393],[114.1535,22.39392],[114.15349,22.39391],[114.15348,22.39389],[114.15348,22.39389],[114.15347,22.39388],[114.15346,22.39388],[114.15345,22.39388],[114.15344,22.39388],[114.15343,22.39388],[114.15343,22.39388],[114.15342,22.39388],[114.15342,22.39388],[114.15341,22.39388],[114.15341,22.39388],[114.1534,22.39388],[114.15339,22.39388],[114.15338,22.39388],[114.15337,22.39388],[114.15335,22.39388],[114.15334,22.39388],[114.15334,22.39388],[114.15334,22.39388],[114.15333,22.39388],[114.15332,22.39389],[114.1533,22.3939],[114.15328,22.39391],[114.15326,22.39391],[114.15325,22.39392],[114.15324,22.39392],[114.15323,22.39392],[114.15319,22.39394],[114.15317,22.39395],[114.15315,22.39395],[114.15314,22.39396],[114.15313,22.39396],[114.15311,22.39396],[114.1531,22.39396],[114.15309,22.39396],[114.15307,22.39395],[114.15303,22.39394],[114.153,22.39394],[114.15299,22.39393],[114.15295,22.39392],[114.15293,22.39392],[114.15292,22.39392],[114.15292,22.39392],[114.15292,22.39392],[114.15291,22.39391],[114.1529,22.39391],[114.1529,22.39391],[114.15288,22.39388],[114.15286,22.39387],[114.15285,22.39386],[114.15283,22.39385],[114.15279,22.39382],[114.15279,22.39382],[114.15278,22.39381],[114.15277,22.3938],[114.15275,22.39377],[114.15275,22.39377],[114.15274,22.39376],[114.15274,22.39376],[114.15273,22.39374],[114.15272,22.39373],[114.15272,22.39372],[114.15272,22.39371],[114.15271,22.3937],[114.15271,22.39368],[114.15271,22.39367],[114.15271,22.39365],[114.15271,22.39363],[114.15271,22.39363],[114.15271,22.39362],[114.15271,22.39362],[114.15272,22.3936],[114.15272,22.39358],[114.15272,22.39358],[114.15272,22.39356],[114.15272,22.39355],[114.15272,22.39354],[114.15272,22.39353],[114.15272,22.39353],[114.15272,22.39352],[114.15272,22.39352],[114.15271,22.39351],[114.15271,22.39351],[114.15271,22.39351],[114.1527,22.39351],[114.15269,22.39351],[114.15269,22.39351],[114.15268,22.39351],[114.15267,22.39351],[114.15266,22.39352],[114.15265,22.39353],[114.15264,22.39353],[114.15264,22.39353],[114.15264,22.39353],[114.1526,22.39357],[114.15259,22.39358],[114.15258,22.39358],[114.15258,22.39359],[114.15258,22.39359],[114.15256,22.3936],[114.15255,22.3936],[114.15255,22.39361],[114.15253,22.39361],[114.15253,22.39361],[114.15252,22.39361],[114.15251,22.39361],[114.15251,22.39361],[114.1525,22.39361],[114.1525,22.39361],[114.15249,22.39361],[114.15249,22.3936],[114.15248,22.3936],[114.15248,22.3936],[114.15247,22.3936],[114.15247,22.39359],[114.15246,22.39359],[114.15246,22.39358],[114.15246,22.39357],[114.15245,22.39356],[114.15243,22.39354],[114.15243,22.39354],[114.15242,22.39353],[114.1524,22.39352],[114.15238,22.3935],[114.15234,22.39348],[114.15232,22.39347],[114.1523,22.39345],[114.15228,22.39345],[114.15225,22.39342],[114.1522,22.39336],[114.15209,22.39326],[114.15201,22.39318],[114.15201,22.39317],[114.15195,22.3931],[114.15193,22.39308],[114.1519,22.39306],[114.15185,22.39303],[114.15184,22.39303],[114.15183,22.39302],[114.15174,22.393],[114.15168,22.39297],[114.15166,22.39296],[114.15166,22.39295],[114.1516,22.39293],[114.15158,22.39291],[114.15156,22.39288],[114.15155,22.39286],[114.15155,22.39285],[114.15155,22.39283],[114.15155,22.39282],[114.15156,22.39281],[114.15158,22.39279],[114.1516,22.39278],[114.15161,22.39277],[114.15162,22.39277],[114.15166,22.39276],[114.15171,22.39274],[114.15177,22.3927],[114.15184,22.39267],[114.15187,22.39265],[114.15188,22.39263],[114.15188,22.39263],[114.15189,22.39262],[114.15189,22.39261],[114.15189,22.39254],[114.15188,22.39253],[114.15187,22.39252],[114.15187,22.39252],[114.15184,22.39252],[114.15182,22.39252],[114.15178,22.3925],[114.15177,22.39251],[114.15173,22.39253],[114.15171,22.39254],[114.15164,22.39254],[114.15161,22.39254],[114.15159,22.39255],[114.15157,22.39256],[114.15155,22.39256],[114.15155,22.39256],[114.15154,22.39256],[114.15152,22.39256],[114.15151,22.39255],[114.1515,22.39255],[114.1515,22.39255],[114.15149,22.39255],[114.15147,22.39253],[114.15146,22.39252],[114.15144,22.39249],[114.15144,22.39249],[114.15143,22.39247],[114.15141,22.39241],[114.15141,22.3924],[114.15139,22.39231],[114.15139,22.39229],[114.1514,22.39227],[114.15141,22.39224],[114.15141,22.39222],[114.15142,22.39221],[114.15142,22.39221],[114.15144,22.39218],[114.15145,22.39218],[114.15148,22.39216],[114.15158,22.39215],[114.1516,22.39215],[114.15161,22.39215],[114.15163,22.39213],[114.15164,22.39212],[114.15165,22.39212],[114.15166,22.39211],[114.15168,22.39208],[114.15169,22.39206],[114.15169,22.39205],[114.15169,22.39203],[114.15166,22.39199],[114.15164,22.39196],[114.15164,22.39196],[114.15163,22.39195],[114.15162,22.39193],[114.15161,22.39192],[114.1516,22.39192],[114.15159,22.39192],[114.15153,22.39192],[114.1515,22.39192],[114.15147,22.39192],[114.15136,22.3919],[114.15134,22.3919],[114.1513,22.39191],[114.15129,22.39191],[114.15123,22.39191],[114.15121,22.39191],[114.15116,22.39191],[114.15114,22.39191],[114.15114,22.39191],[114.15113,22.39191],[114.1511,22.3919],[114.15108,22.39188],[114.15105,22.39185],[114.15102,22.39181],[114.15102,22.3918],[114.15101,22.39179],[114.15102,22.39177],[114.15102,22.39175],[114.15107,22.39167],[114.15109,22.39161],[114.15109,22.3916],[114.15109,22.39159],[114.15108,22.39158],[114.15106,22.39155],[114.15102,22.39152],[114.15101,22.39151],[114.15098,22.39149],[114.15094,22.39145],[114.15093,22.39143],[114.15093,22.39143],[114.15093,22.39143],[114.15092,22.39141],[114.15092,22.3914],[114.15092,22.39138],[114.15094,22.39135],[114.15095,22.39134],[114.15095,22.39134],[114.15096,22.39133],[114.15099,22.39131],[114.15102,22.3913],[114.15104,22.3913],[114.15107,22.39131],[114.15111,22.3913],[114.15115,22.39129],[114.15119,22.39128],[114.15119,22.39128],[114.1512,22.39127],[114.15122,22.39125],[114.15126,22.39119],[114.15128,22.39118],[114.15133,22.39116],[114.15134,22.39116],[114.15134,22.39115],[114.15134,22.39115],[114.15134,22.39114],[114.15132,22.39111],[114.15131,22.3911],[114.1513,22.39107],[114.1513,22.39106],[114.15129,22.39106],[114.15128,22.39106],[114.15126,22.39106],[114.15125,22.39106],[114.15124,22.39106],[114.15119,22.3911],[114.15116,22.39112],[114.15115,22.39112],[114.15114,22.39112],[114.15112,22.39113],[114.15108,22.39114],[114.15105,22.39114],[114.15103,22.39113],[114.151,22.39113],[114.15089,22.3911],[114.15087,22.39109],[114.15083,22.39107],[114.15082,22.39107],[114.15082,22.39106],[114.15082,22.39105],[114.15081,22.39104],[114.15082,22.39102],[114.15082,22.39101],[114.15082,22.39101],[114.15082,22.39101],[114.15082,22.391],[114.15082,22.39099],[114.15081,22.39098],[114.1508,22.39096],[114.15079,22.39093],[114.15078,22.39092],[114.15077,22.39091],[114.15075,22.3909],[114.15072,22.39089],[114.15068,22.39087],[114.15065,22.39087],[114.15063,22.39087],[114.15062,22.39088],[114.1506,22.39088],[114.1506,22.39088],[114.15059,22.39089],[114.15058,22.39091],[114.15057,22.39092],[114.15055,22.39091],[114.15054,22.39088],[114.15053,22.39086],[114.15052,22.39085],[114.15052,22.39084],[114.15051,22.39083],[114.15051,22.39083],[114.15049,22.39082],[114.15043,22.39081],[114.15039,22.3908],[114.15034,22.39076],[114.15034,22.39076],[114.1503,22.39075],[114.15019,22.39072],[114.15015,22.39071],[114.15014,22.3907],[114.15006,22.39066],[114.15005,22.39066],[114.14999,22.39063],[114.14995,22.39062],[114.14993,22.39061],[114.14991,22.39061],[114.14987,22.39062],[114.14982,22.39063],[114.14974,22.39063],[114.14971,22.39063],[114.14968,22.39062],[114.14966,22.39061],[114.14965,22.3906],[114.14964,22.39058],[114.14964,22.39056],[114.14964,22.39054],[114.14964,22.39053],[114.14964,22.39052],[114.14966,22.39047],[114.14966,22.39043],[114.14967,22.39043],[114.14967,22.39038],[114.14969,22.39032],[114.14969,22.39031],[114.14969,22.3903],[114.14971,22.39028],[114.14972,22.39027],[114.14974,22.39026],[114.14976,22.39025],[114.14977,22.39024],[114.1498,22.39023],[114.14982,22.39023],[114.14985,22.39023],[114.14988,22.39024],[114.14995,22.39026],[114.15006,22.39026],[114.15019,22.39029],[114.15025,22.39029],[114.15026,22.3903],[114.1503,22.39029],[114.15033,22.39028],[114.15034,22.39028],[114.15035,22.39027],[114.15035,22.39027],[114.15035,22.39025],[114.15035,22.39024],[114.15035,22.39023],[114.15034,22.39022],[114.15033,22.3902],[114.15025,22.3901],[114.15024,22.39008],[114.15022,22.39004],[114.15021,22.39001],[114.15021,22.38998],[114.15022,22.38996],[114.15024,22.38987],[114.15025,22.38985],[114.15025,22.38982],[114.15025,22.38979],[114.15024,22.38977],[114.15024,22.38975],[114.15023,22.38975],[114.15023,22.38975],[114.15022,22.38974],[114.15021,22.38974],[114.15014,22.38975],[114.15008,22.38977],[114.15005,22.38978],[114.15003,22.38977],[114.15001,22.38977],[114.15001,22.38977],[114.14999,22.38977],[114.14996,22.38975],[114.14995,22.38974],[114.14995,22.38973],[114.14993,22.38969],[114.1499,22.38966],[114.1499,22.38965],[114.14989,22.38963],[114.14989,22.38962],[114.1499,22.38961],[114.14991,22.38956],[114.14995,22.38947],[114.14996,22.38946],[114.14997,22.38943],[114.15003,22.38934],[114.15003,22.38934],[114.15004,22.38933],[114.15003,22.38931],[114.15002,22.3893],[114.15001,22.3893],[114.15,22.38929],[114.14998,22.38929],[114.14994,22.38928],[114.14991,22.38927],[114.14989,22.38926],[114.14987,22.38924],[114.14986,22.38922],[114.14984,22.38918],[114.14984,22.38917],[114.14982,22.38916],[114.14981,22.38914],[114.14978,22.38913],[114.14971,22.3891],[114.14967,22.38908],[114.14965,22.38908],[114.14964,22.38908],[114.14958,22.38908],[114.14952,22.38909],[114.14951,22.38908],[114.1495,22.38908],[114.14948,22.38908],[114.14948,22.38907],[114.14946,22.38906],[114.14945,22.38905],[114.14944,22.38904],[114.14943,22.389],[114.14943,22.38899],[114.14943,22.38898],[114.14943,22.38897],[114.14945,22.38896],[114.14945,22.38895],[114.14946,22.38895],[114.14951,22.38893],[114.14953,22.38891],[114.14957,22.38889],[114.14962,22.38887],[114.14964,22.38886],[114.14965,22.38885],[114.14968,22.38884],[114.14969,22.38883],[114.14972,22.38881],[114.14974,22.38877],[114.14976,22.3887],[114.14978,22.38865],[114.14979,22.38862],[114.14979,22.38861],[114.14978,22.38859],[114.14976,22.38856],[114.14973,22.38852],[114.14972,22.38851],[114.14972,22.3885],[114.14971,22.38849],[114.14972,22.38844],[114.14974,22.38837],[114.14976,22.38832],[114.14976,22.3883],[114.14976,22.38827],[114.14975,22.38823],[114.14974,22.3882],[114.14973,22.38819],[114.14971,22.38817],[114.14968,22.38816],[114.14967,22.38816],[114.14967,22.38815],[114.14965,22.38815],[114.14963,22.38815],[114.14962,22.38815],[114.14948,22.38817],[114.14946,22.38818],[114.14946,22.38818],[114.14942,22.3882],[114.14939,22.38821],[114.14936,22.38822],[114.14934,22.38823],[114.1493,22.38826],[114.14929,22.38828],[114.14927,22.3883],[114.14924,22.38836],[114.14923,22.38837],[114.14923,22.38838],[114.14922,22.38838],[114.1492,22.38838],[114.14918,22.38838],[114.14917,22.38838],[114.14916,22.38837],[114.14915,22.38836],[114.14915,22.38835],[114.1491,22.38827],[114.14906,22.38822],[114.14905,22.3882],[114.14904,22.38819],[114.14904,22.38817],[114.14904,22.38817],[114.14904,22.38817],[114.14904,22.38814],[114.14904,22.38811],[114.14904,22.3881],[114.14906,22.38804],[114.14906,22.38803],[114.14906,22.388],[114.14906,22.38799],[114.14905,22.38798],[114.14905,22.38798],[114.14903,22.38797],[114.14899,22.38794],[114.14898,22.38793],[114.14896,22.38791],[114.14896,22.38787],[114.14897,22.3878],[114.14897,22.38779],[114.14897,22.38779],[114.14896,22.38777],[114.14896,22.38774],[114.14895,22.38773],[114.14895,22.38772],[114.14894,22.38771],[114.14893,22.3877],[114.14893,22.38769],[114.14892,22.38768],[114.1489,22.38767],[114.14888,22.38766],[114.14884,22.38764],[114.1488,22.38764],[114.14877,22.38764],[114.1487,22.38765],[114.14863,22.38768],[114.14861,22.38768],[114.14861,22.38768],[114.14859,22.38766],[114.14858,22.38763],[114.14857,22.38761],[114.14856,22.38759],[114.14855,22.38755],[114.14854,22.38752],[114.14855,22.38749],[114.14856,22.38746],[114.14857,22.38744],[114.14862,22.38735],[114.14864,22.38733],[114.14864,22.38732],[114.14864,22.3873],[114.14864,22.3873],[114.14864,22.38729],[114.14862,22.38724],[114.14861,22.3872],[114.14861,22.38718],[114.14862,22.38718],[114.14862,22.38718],[114.14863,22.38717],[114.14864,22.38717],[114.14866,22.38716],[114.14866,22.38715],[114.14868,22.38714],[114.14872,22.38709],[114.14875,22.38705],[114.14874,22.38703],[114.14874,22.38699],[114.14875,22.38696],[114.14875,22.38695],[114.14876,22.38693],[114.14877,22.38693],[114.14878,22.38694],[114.14878,22.38694],[114.14878,22.38695],[114.14878,22.38695],[114.14879,22.38698],[114.14883,22.38705],[114.14884,22.38706],[114.14886,22.38708],[114.14888,22.3871],[114.1489,22.38712],[114.14893,22.38713],[114.14895,22.38714],[114.14898,22.38715],[114.149,22.38716],[114.14902,22.38718],[114.14902,22.38719],[114.14902,22.38719],[114.14903,22.38722],[114.14903,22.38723],[114.14905,22.38725],[114.14906,22.38726],[114.14906,22.38726],[114.14911,22.38727],[114.14912,22.38727],[114.14912,22.38727],[114.14916,22.38729],[114.1492,22.3873],[114.14921,22.38731],[114.14928,22.38735],[114.1493,22.38736],[114.14932,22.38737],[114.14933,22.38736],[114.14935,22.38736],[114.14938,22.38735],[114.14938,22.38734],[114.14939,22.38733],[114.14941,22.38732],[114.14944,22.38731],[114.14945,22.38731],[114.14946,22.38731],[114.14948,22.3873],[114.1495,22.38729],[114.1495,22.38728],[114.14952,22.38728],[114.14955,22.38727],[114.14958,22.38727],[114.14959,22.38727],[114.14961,22.38728],[114.14961,22.38728],[114.14963,22.3873],[114.14967,22.38733],[114.14969,22.38735],[114.14969,22.38735],[114.1497,22.38737],[114.1497,22.38738],[114.1497,22.38738],[114.14968,22.38743],[114.14965,22.38748],[114.14963,22.38753],[114.14964,22.38755],[114.14964,22.38755],[114.14967,22.38761],[114.14967,22.38762],[114.14967,22.38763],[114.14967,22.38763],[114.14966,22.38765],[114.14965,22.38767],[114.14963,22.38769],[114.14962,22.3877],[114.14959,22.38771],[114.14957,22.38771],[114.14955,22.38773],[114.14954,22.38774],[114.14953,22.38777],[114.14953,22.3878],[114.14953,22.38784],[114.1495,22.38787],[114.1495,22.38788],[114.14949,22.3879],[114.14949,22.38793],[114.1495,22.38794],[114.1495,22.38794],[114.1495,22.38795],[114.14951,22.38796],[114.14952,22.38796],[114.14952,22.38797],[114.14957,22.38799],[114.14958,22.38799],[114.14968,22.38801],[114.1497,22.38802],[114.14971,22.38802],[114.14972,22.38801],[114.1498,22.38801],[114.14981,22.38801],[114.14982,22.38801],[114.14988,22.38802],[114.14988,22.38802],[114.14992,22.38803],[114.14993,22.38803],[114.14994,22.38804],[114.14995,22.38805],[114.14996,22.38805],[114.14999,22.38809],[114.15002,22.38812],[114.15004,22.38813],[114.15005,22.38813],[114.15011,22.38813],[114.15014,22.38811],[114.15016,22.38809],[114.15019,22.38805],[114.1502,22.38802],[114.15022,22.38799],[114.15025,22.38793],[114.15026,22.38791],[114.15026,22.38789],[114.15026,22.38788],[114.15025,22.38785],[114.15023,22.38783],[114.15022,22.38781],[114.1502,22.38778],[114.15018,22.38774],[114.15017,22.38771],[114.15017,22.3877],[114.15017,22.38769],[114.15018,22.38769],[114.15019,22.38768],[114.15023,22.38764],[114.15023,22.38764],[114.15023,22.38763],[114.15025,22.38763],[114.15026,22.38764],[114.15027,22.38764],[114.15028,22.38765],[114.15032,22.3877],[114.15037,22.38773],[114.15038,22.38774],[114.1504,22.3878],[114.15041,22.38781],[114.15042,22.38783],[114.15045,22.38786],[114.1505,22.38794],[114.15051,22.38797],[114.15051,22.38797],[114.15051,22.38801],[114.15051,22.38806],[114.1505,22.38809],[114.1505,22.38811],[114.15048,22.38814],[114.15047,22.38816],[114.15046,22.38819],[114.15045,22.38821],[114.15045,22.38822],[114.15045,22.38823],[114.15047,22.38826],[114.15047,22.38827],[114.15047,22.38828],[114.15047,22.38828],[114.15047,22.3883],[114.15047,22.38832],[114.15047,22.38833],[114.15046,22.38834],[114.15045,22.38836],[114.15044,22.38838],[114.1504,22.38842],[114.15038,22.38844],[114.15037,22.38845],[114.15037,22.38846],[114.15037,22.38847],[114.15037,22.38847],[114.15037,22.38848],[114.15038,22.38849],[114.15044,22.38854],[114.15047,22.38857],[114.15048,22.38858],[114.15048,22.38859],[114.15048,22.3886],[114.15049,22.38868],[114.15049,22.3887],[114.1505,22.38872],[114.15054,22.38875],[114.15055,22.38875],[114.15055,22.38876],[114.15058,22.38876],[114.15067,22.38873],[114.15067,22.38873],[114.15071,22.38873],[114.15074,22.38874],[114.15076,22.38875],[114.15079,22.38876],[114.1508,22.38877],[114.1508,22.38877],[114.15081,22.38877],[114.15087,22.38876],[114.15089,22.38876],[114.15091,22.38877],[114.15094,22.38878],[114.15097,22.38879],[114.151,22.38879],[114.15101,22.38879],[114.15102,22.38878],[114.15104,22.38878],[114.15105,22.38876],[114.1511,22.38872],[114.15112,22.3887],[114.15114,22.38869],[114.15117,22.38867],[114.15119,22.38866],[114.1512,22.38866],[114.15122,22.38866],[114.15124,22.38866],[114.15129,22.38868],[114.15129,22.38868],[114.15132,22.38868],[114.15134,22.38868],[114.1514,22.38867],[114.1514,22.38867],[114.15141,22.38867],[114.15143,22.38867],[114.15144,22.38867],[114.15146,22.38869],[114.15147,22.38869],[114.15148,22.38869],[114.15148,22.3887],[114.15149,22.38869],[114.1515,22.38869],[114.1515,22.38869],[114.15151,22.38867],[114.15154,22.3886],[114.15156,22.38858],[114.15157,22.38857],[114.15158,22.38857],[114.15162,22.38856],[114.15179,22.38855],[114.1518,22.38855],[114.15181,22.38855],[114.15184,22.38857],[114.15184,22.38857],[114.15184,22.38857],[114.15185,22.38856],[114.15186,22.38856],[114.15188,22.38854],[114.1519,22.38851],[114.15196,22.38847],[114.15197,22.38845],[114.152,22.38845],[114.152,22.38845],[114.15201,22.38845],[114.15207,22.38846],[114.15207,22.38846],[114.15209,22.38846],[114.1521,22.38845],[114.15211,22.38845],[114.15214,22.38843],[114.15217,22.38842],[114.15219,22.38841],[114.15221,22.38841],[114.15224,22.38841],[114.15227,22.38842],[114.15229,22.38842],[114.1523,22.38842],[114.15231,22.38843],[114.15233,22.38844],[114.15237,22.38848],[114.15238,22.38849],[114.1524,22.3885],[114.15242,22.38851],[114.15243,22.38851],[114.15245,22.38851],[114.15247,22.38852],[114.15248,22.38852],[114.15248,22.38852],[114.15249,22.38852],[114.15249,22.38853],[114.1525,22.38853],[114.1525,22.38853],[114.15254,22.38854],[114.15257,22.38854],[114.15258,22.38854],[114.15262,22.38855],[114.15264,22.38856],[114.15265,22.38856],[114.15268,22.38857],[114.15268,22.38857],[114.15269,22.38857],[114.15269,22.38857],[114.15271,22.38858],[114.15271,22.38858],[114.15273,22.38859],[114.15273,22.38859],[114.15273,22.38859],[114.15274,22.3886],[114.15274,22.38861],[114.15275,22.38862],[114.15276,22.38865],[114.15277,22.38865],[114.15277,22.38865],[114.15277,22.38866],[114.15277,22.38866],[114.15277,22.38866],[114.15278,22.38868],[114.15278,22.38869],[114.15279,22.38871],[114.15281,22.38874],[114.15282,22.38876],[114.15282,22.38878],[114.15284,22.38881],[114.15285,22.38884],[114.15286,22.38886],[114.15286,22.38887],[114.15286,22.38887],[114.15287,22.38888],[114.15288,22.3889],[114.15288,22.38891],[114.15288,22.38891],[114.15289,22.38893],[114.15289,22.38894],[114.15289,22.38894],[114.15289,22.38896],[114.1529,22.38896],[114.1529,22.38897],[114.1529,22.38897],[114.1529,22.38898],[114.15289,22.38899],[114.15289,22.389],[114.15289,22.389],[114.15289,22.38901],[114.15289,22.38902],[114.15289,22.38903],[114.15288,22.38905],[114.15288,22.38905],[114.15287,22.38906],[114.15287,22.38907],[114.15286,22.38909],[114.15286,22.38909],[114.15285,22.38909],[114.15285,22.3891],[114.15285,22.3891],[114.15284,22.38911],[114.15284,22.38911],[114.15284,22.38912],[114.15283,22.38913],[114.15283,22.38914],[114.15283,22.38914],[114.15284,22.38915],[114.15284,22.38915],[114.15285,22.38915],[114.15285,22.38916],[114.15285,22.38916],[114.15286,22.38916],[114.15288,22.38916],[114.15289,22.38916],[114.1529,22.38916],[114.1529,22.38916],[114.15291,22.38916],[114.15291,22.38916],[114.15292,22.38915],[114.15293,22.38914],[114.15293,22.38914],[114.15294,22.38913],[114.15294,22.38913],[114.15294,22.38913],[114.15294,22.38913],[114.15295,22.38912],[114.15295,22.38912],[114.15295,22.38911],[114.15296,22.3891],[114.15296,22.3891],[114.15296,22.3891],[114.15297,22.38907],[114.15297,22.38907],[114.15298,22.38903],[114.15299,22.38902],[114.15299,22.38901],[114.15299,22.38901],[114.153,22.389],[114.153,22.38899],[114.15301,22.38897],[114.15301,22.38895],[114.15301,22.38895],[114.15302,22.38895],[114.15302,22.38894],[114.15303,22.38892],[114.15303,22.38892],[114.15303,22.38891],[114.15303,22.38891],[114.15303,22.38889],[114.15303,22.38889],[114.15303,22.38888],[114.15303,22.38888],[114.15304,22.38887],[114.15304,22.38887],[114.15304,22.38887],[114.15305,22.38887],[114.15305,22.38886],[114.15306,22.38886],[114.15306,22.38886],[114.15307,22.38887],[114.15307,22.38887],[114.15309,22.38888],[114.1531,22.38888],[114.1531,22.38888],[114.1531,22.38888],[114.15311,22.38888],[114.15311,22.38889],[114.15312,22.38889],[114.15314,22.3889],[114.15314,22.3889],[114.15315,22.38891],[114.15315,22.38891],[114.15318,22.38892],[114.15318,22.38893],[114.15319,22.38893],[114.15321,22.38894],[114.15322,22.38895],[114.15325,22.38897],[114.15325,22.38897],[114.15326,22.38897],[114.15327,22.38898],[114.15327,22.38899],[114.15328,22.38899],[114.15329,22.38901],[114.1533,22.38902],[114.1533,22.38903],[114.1533,22.38904],[114.1533,22.38905],[114.1533,22.38906],[114.1533,22.38909],[114.1533,22.3891],[114.15331,22.38912],[114.15331,22.38915],[114.15331,22.38915],[114.15332,22.38916],[114.15333,22.38919],[114.15333,22.38919],[114.15333,22.3892],[114.15335,22.38922],[114.15336,22.38923],[114.15337,22.38924],[114.15339,22.38926],[114.1534,22.38926],[114.15341,22.38926],[114.15344,22.38928],[114.15345,22.38928],[114.15345,22.38929],[114.15346,22.38929],[114.15347,22.38929],[114.15348,22.3893],[114.15348,22.3893],[114.1535,22.3893],[114.15351,22.3893],[114.15351,22.3893],[114.15352,22.3893],[114.15344,22.38917],[114.15342,22.38914],[114.1534,22.38911],[114.15339,22.38908],[114.15338,22.38907],[114.15338,22.38906],[114.15337,22.38905],[114.15337,22.38904],[114.15337,22.38904],[114.15337,22.38904],[114.15338,22.38903],[114.15338,22.38903],[114.15339,22.38902],[114.15339,22.38902],[114.15339,22.38902],[114.1534,22.38902],[114.1534,22.38902],[114.15341,22.38902],[114.15341,22.38903],[114.15342,22.38903],[114.15342,22.38903],[114.15342,22.38905],[114.15343,22.38905],[114.15344,22.38906],[114.15344,22.38906],[114.15344,22.38905],[114.15345,22.38905],[114.15345,22.38905],[114.15346,22.38904],[114.15346,22.38904],[114.15346,22.38903],[114.15347,22.38899],[114.15347,22.38899],[114.15347,22.38897],[114.15347,22.38896],[114.15348,22.38895],[114.15348,22.38893],[114.15348,22.38891],[114.15349,22.38888],[114.15349,22.38887],[114.15349,22.38886],[114.15349,22.38885],[114.15349,22.38884],[114.15349,22.38884],[114.15348,22.38883],[114.15348,22.38882],[114.15348,22.38882],[114.15348,22.38882],[114.15347,22.38881],[114.15347,22.38881],[114.15347,22.3888],[114.15346,22.38879],[114.15345,22.38879],[114.15345,22.38878],[114.15343,22.38878],[114.15343,22.38877],[114.15342,22.38876],[114.15341,22.38875],[114.1534,22.38875],[114.1534,22.38874],[114.1534,22.38874],[114.15339,22.38874],[114.15339,22.38873],[114.15338,22.38872],[114.15338,22.38871],[114.15337,22.38871],[114.15336,22.3887],[114.15336,22.38869],[114.15335,22.38869],[114.15334,22.38868],[114.15334,22.38867],[114.15334,22.38867],[114.15333,22.38866],[114.15333,22.38866],[114.15332,22.38865],[114.15331,22.38862],[114.1533,22.38862],[114.15328,22.3886],[114.15326,22.38858],[114.15324,22.38856],[114.15315,22.3885],[114.15314,22.38848],[114.15313,22.38848],[114.15313,22.38847],[114.15313,22.38847],[114.15313,22.38847],[114.15313,22.38846],[114.15312,22.38846],[114.15312,22.38846],[114.15312,22.38845],[114.15312,22.38844],[114.15312,22.38844],[114.15313,22.38842],[114.15313,22.38842],[114.15313,22.38841],[114.15314,22.3884],[114.15314,22.38839],[114.15314,22.38839],[114.15314,22.38838],[114.15315,22.38837],[114.15315,22.38836],[114.15314,22.38836],[114.15314,22.38835],[114.15314,22.38835],[114.15314,22.38835],[114.15314,22.38835],[114.15313,22.38834],[114.15312,22.38834],[114.15312,22.38834],[114.15311,22.38834],[114.1531,22.38834],[114.1531,22.38834],[114.15309,22.38833],[114.15309,22.38833],[114.15309,22.38833],[114.15308,22.38832],[114.15307,22.38831],[114.15307,22.38831],[114.15307,22.3883],[114.15307,22.38829],[114.15307,22.38827],[114.15307,22.38827],[114.15307,22.38826],[114.15307,22.38826],[114.15307,22.38826],[114.15307,22.38825],[114.15307,22.38825],[114.15308,22.38824],[114.15309,22.38822],[114.15308,22.38821],[114.15308,22.38821],[114.15308,22.38821],[114.15307,22.38821],[114.15307,22.38821],[114.15306,22.38822],[114.15306,22.38822],[114.15306,22.38822],[114.15305,22.38822],[114.15305,22.38822],[114.15304,22.38822],[114.15303,22.38822],[114.15303,22.38822],[114.15302,22.38822],[114.15301,22.38822],[114.15301,22.38822],[114.153,22.38821],[114.15299,22.38821],[114.15298,22.3882],[114.15297,22.38819],[114.15295,22.38818],[114.15293,22.38817],[114.15292,22.38816],[114.1529,22.38815],[114.15289,22.38814],[114.15287,22.38814],[114.15287,22.38814],[114.15286,22.38814],[114.15284,22.38813],[114.15284,22.38813],[114.15284,22.38813],[114.15283,22.38813],[114.15282,22.38813],[114.1528,22.38814],[114.15279,22.38813],[114.15279,22.38813],[114.15279,22.38813],[114.15279,22.38813],[114.15278,22.38812],[114.15278,22.38811],[114.15277,22.38811],[114.15277,22.38811],[114.15276,22.38811],[114.15276,22.38811],[114.15275,22.3881],[114.15274,22.3881],[114.15274,22.38809],[114.15273,22.38809],[114.15272,22.38808],[114.15271,22.38807],[114.1527,22.38807],[114.15268,22.38806],[114.15267,22.38805],[114.15265,22.38804],[114.15264,22.38803],[114.15264,22.38803],[114.15263,22.38803],[114.15263,22.38802],[114.15261,22.38802],[114.1526,22.38801],[114.15258,22.38801],[114.15257,22.388],[114.15256,22.38799],[114.15255,22.38798],[114.15253,22.38798],[114.15253,22.38797],[114.15252,22.38796],[114.15251,22.38796],[114.1525,22.38795],[114.15249,22.38795],[114.15248,22.38795],[114.15248,22.38794],[114.15246,22.38793],[114.15242,22.38792],[114.15238,22.3879],[114.15237,22.38789],[114.15236,22.38788],[114.15235,22.38786],[114.15234,22.38786],[114.15233,22.38784],[114.15233,22.38782],[114.15231,22.38779],[114.1523,22.38779],[114.15229,22.38778],[114.15228,22.38778],[114.15227,22.38778],[114.15224,22.38778],[114.15224,22.38778],[114.15223,22.38779],[114.1522,22.3878],[114.15218,22.38782],[114.15216,22.38783],[114.15213,22.38787],[114.15209,22.38791],[114.15206,22.38794],[114.15206,22.38794],[114.15204,22.38795],[114.152,22.38795],[114.15197,22.38796],[114.15196,22.38798],[114.15191,22.38802],[114.15188,22.38805],[114.15187,22.38805],[114.15184,22.38807],[114.15183,22.38807],[114.15182,22.38807],[114.15179,22.38808],[114.15177,22.38807],[114.15174,22.38805],[114.15172,22.38805],[114.15172,22.38805],[114.15171,22.38805],[114.15168,22.38807],[114.15165,22.38808],[114.15163,22.38809],[114.15162,22.3881],[114.15159,22.38811],[114.15154,22.38812],[114.1515,22.38812],[114.1515,22.38812],[114.1515,22.38812],[114.15142,22.38813],[114.15142,22.38813],[114.15141,22.38813],[114.1514,22.38812],[114.1514,22.38812],[114.1514,22.38811],[114.1514,22.3881],[114.1514,22.38809],[114.15143,22.38803],[114.15145,22.38801],[114.15146,22.38799],[114.15146,22.38799],[114.15144,22.38797],[114.15144,22.38797],[114.15144,22.38796],[114.15145,22.38796],[114.15146,22.38795],[114.15147,22.38795],[114.15149,22.38793],[114.15154,22.38791],[114.15154,22.38791],[114.15155,22.3879],[114.15157,22.38789],[114.15164,22.38786],[114.15165,22.38786],[114.15166,22.38785],[114.15168,22.38783],[114.15168,22.38782],[114.15168,22.38781],[114.15167,22.3878],[114.15166,22.38777],[114.15166,22.38774],[114.15166,22.3877],[114.15166,22.38766],[114.15166,22.38765],[114.15167,22.38762],[114.1517,22.3876],[114.15179,22.38756],[114.15184,22.38754],[114.15188,22.38754],[114.15189,22.38754],[114.15191,22.38753],[114.15192,22.38753],[114.15197,22.3875],[114.15198,22.3875],[114.15198,22.3875],[114.15204,22.3875],[114.15204,22.38749],[114.15205,22.38749],[114.15207,22.38748],[114.15207,22.38748],[114.15207,22.38747],[114.15207,22.38747],[114.15206,22.38746],[114.15206,22.38746],[114.15206,22.38746],[114.15202,22.38744],[114.15198,22.38742],[114.15196,22.3874],[114.15189,22.38738],[114.15184,22.38737],[114.15182,22.38736],[114.15179,22.38735],[114.15163,22.38728],[114.15156,22.38725],[114.1515,22.38723],[114.15148,22.38722],[114.15144,22.3872],[114.15143,22.38719],[114.15142,22.38719],[114.15135,22.38712],[114.15133,22.38708],[114.15132,22.38706],[114.15132,22.38705],[114.15132,22.38703],[114.15133,22.38701],[114.15137,22.38695],[114.15141,22.38691],[114.15143,22.38689],[114.15145,22.38686],[114.15147,22.38684],[114.15149,22.38679],[114.1515,22.38675],[114.1515,22.38674],[114.15149,22.38674],[114.15149,22.38674],[114.15147,22.38673],[114.15142,22.38672],[114.15137,22.38671],[114.15135,22.3867],[114.15134,22.3867],[114.15132,22.38668],[114.15132,22.38667],[114.15131,22.38663],[114.15131,22.38662],[114.1513,22.38659],[114.1513,22.38657],[114.1513,22.38656],[114.15131,22.38652],[114.15131,22.38651],[114.15131,22.3865],[114.15131,22.38649],[114.15132,22.38649],[114.15133,22.38648],[114.15133,22.38647],[114.15135,22.38645],[114.1513,22.38646],[114.15129,22.38647],[114.15128,22.38646],[114.1512,22.38651],[114.15115,22.38655],[114.15114,22.38656],[114.15111,22.3866],[114.15109,22.38661],[114.15107,22.3866],[114.15106,22.3866],[114.151,22.38656],[114.15095,22.38652],[114.15094,22.38651],[114.15093,22.3865],[114.1509,22.38648],[114.15084,22.38645],[114.15082,22.38644],[114.1508,22.38644],[114.15079,22.38644],[114.15073,22.38645],[114.15071,22.38645],[114.15068,22.38641],[114.15062,22.38635],[114.15061,22.38634],[114.15061,22.38634],[114.15059,22.38629],[114.15058,22.38627],[114.15057,22.38625],[114.15055,22.38624],[114.15054,22.38624],[114.15052,22.38623],[114.15051,22.38623],[114.15049,22.38623],[114.15046,22.38624],[114.15043,22.38624],[114.15041,22.38625],[114.15038,22.38625],[114.15034,22.38626],[114.15032,22.38626],[114.15029,22.38626],[114.15026,22.38624],[114.15024,22.38623],[114.15024,22.38621],[114.15024,22.38621],[114.15024,22.38614],[114.15023,22.38612],[114.15021,22.38609],[114.1502,22.38607],[114.15018,22.38604],[114.15014,22.38599],[114.15006,22.38595],[114.15006,22.38594],[114.15005,22.38594],[114.15005,22.38592],[114.15009,22.38578],[114.15011,22.38576],[114.15015,22.38572],[114.15017,22.3857],[114.15017,22.38569],[114.15019,22.38567],[114.15021,22.38561],[114.15022,22.38559],[114.15023,22.38558],[114.15029,22.38554],[114.1503,22.38552],[114.1503,22.38551],[114.1503,22.38549],[114.15031,22.38546],[114.15031,22.38543],[114.15032,22.3854],[114.15033,22.38537],[114.15034,22.38532],[114.15035,22.3853],[114.15036,22.38527],[114.15037,22.38526],[114.15038,22.38525],[114.15042,22.38522],[114.15045,22.38519],[114.15047,22.38517],[114.1505,22.38514],[114.15053,22.38511],[114.15057,22.38508],[114.1506,22.38504],[114.1506,22.38503],[114.15067,22.38499],[114.15068,22.38499],[114.15068,22.38498],[114.15066,22.38498],[114.15062,22.38496],[114.15053,22.3849],[114.15049,22.38487],[114.15044,22.38483],[114.15042,22.38483],[114.1504,22.38486],[114.1504,22.38487],[114.1504,22.3849],[114.15037,22.38493],[114.15035,22.38496],[114.15033,22.38498],[114.15031,22.38499],[114.1503,22.38499],[114.15029,22.38499],[114.15028,22.38499],[114.15026,22.38499],[114.15023,22.38497],[114.1502,22.38496],[114.15016,22.38495],[114.15014,22.38494],[114.15012,22.38494],[114.15011,22.38494],[114.15011,22.38494],[114.1501,22.38495],[114.15009,22.38496],[114.15008,22.38499],[114.15007,22.38506],[114.15007,22.38508],[114.15007,22.3851],[114.15005,22.38515],[114.15004,22.38516],[114.15004,22.38517],[114.15003,22.38517],[114.15002,22.38518],[114.14997,22.38521],[114.14993,22.38524],[114.14991,22.38524],[114.14986,22.38522],[114.14985,22.38522],[114.14983,22.38522],[114.14981,22.38522],[114.14979,22.38522],[114.14978,22.38522],[114.14976,22.38522],[114.14975,22.38523],[114.14975,22.38523],[114.14975,22.38523],[114.14972,22.38527],[114.1497,22.38532],[114.14969,22.38534],[114.14966,22.38538],[114.14965,22.3854],[114.14963,22.38542],[114.14961,22.38543],[114.1496,22.38544],[114.14959,22.38543],[114.14957,22.38542],[114.14956,22.38542],[114.14952,22.38535],[114.14951,22.38534],[114.1495,22.38532],[114.14946,22.38527],[114.14942,22.38524],[114.1494,22.38523],[114.14933,22.38522],[114.14926,22.38524],[114.14924,22.38525],[114.14921,22.38527],[114.14919,22.38529],[114.14917,22.38532],[114.14914,22.38537],[114.14909,22.38544],[114.14905,22.38547],[114.14903,22.38548],[114.14901,22.38549],[114.149,22.3855],[114.14897,22.3855],[114.14895,22.3855],[114.14893,22.38549],[114.1489,22.38548],[114.14887,22.38547],[114.14886,22.38547],[114.14884,22.38545],[114.14879,22.38538],[114.14879,22.38538],[114.14877,22.38533],[114.14877,22.38532],[114.14877,22.3853],[114.14877,22.38525],[114.14879,22.3852],[114.14879,22.38517],[114.14879,22.38514],[114.1488,22.38513],[114.1488,22.38512],[114.14881,22.38509],[114.14882,22.38508],[114.14882,22.38508],[114.14891,22.38491],[114.14891,22.38489],[114.14891,22.38488],[114.14891,22.38487],[114.14891,22.38486],[114.1489,22.38485],[114.14889,22.38484],[114.14886,22.38482],[114.14885,22.38481],[114.14882,22.3848],[114.14872,22.38475],[114.14871,22.38475],[114.14871,22.38475],[114.14868,22.38474],[114.14864,22.38473],[114.1486,22.38473],[114.14852,22.38474],[114.1484,22.38475],[114.14836,22.38475],[114.14834,22.38474],[114.14832,22.38474],[114.14828,22.38471],[114.14828,22.38471],[114.14826,22.38469],[114.14821,22.38464],[114.1482,22.38463],[114.14819,22.38462],[114.14812,22.38459],[114.14807,22.38456],[114.14803,22.38452],[114.14801,22.38448],[114.14801,22.38447],[114.14801,22.38446],[114.14801,22.38445],[114.14801,22.38444],[114.14802,22.38441],[114.14811,22.38431],[114.14818,22.38421],[114.14823,22.38417],[114.14827,22.38414],[114.1483,22.38412],[114.14833,22.3841],[114.14838,22.38408],[114.14839,22.38408],[114.14842,22.38406],[114.14848,22.38404],[114.14849,22.38403],[114.14849,22.38403],[114.14849,22.38402],[114.14849,22.38401],[114.14849,22.38401],[114.14848,22.38398],[114.14844,22.38389],[114.14843,22.38386],[114.14843,22.38384],[114.14843,22.38381],[114.14843,22.38379],[114.14842,22.38377],[114.14842,22.38373],[114.14843,22.38367],[114.14843,22.38363],[114.14843,22.38361],[114.14843,22.3836],[114.14844,22.38359],[114.14845,22.38359],[114.14848,22.38356],[114.14851,22.38354],[114.14855,22.38353],[114.1486,22.38352],[114.14863,22.38351],[114.14866,22.38351],[114.14868,22.38351],[114.14871,22.38351],[114.14873,22.38352],[114.14877,22.38353],[114.14879,22.38354],[114.14882,22.38355],[114.14885,22.38356],[114.14887,22.38357],[114.14888,22.38357],[114.14888,22.38357],[114.14892,22.38357],[114.14894,22.38356],[114.14894,22.38356],[114.14894,22.38355],[114.14893,22.38352],[114.14892,22.3835],[114.14887,22.38343],[114.14886,22.38341],[114.14884,22.38338],[114.14883,22.38336],[114.14883,22.38333],[114.14884,22.38327],[114.14884,22.38325],[114.14884,22.38323],[114.14883,22.38322],[114.14882,22.38321],[114.14879,22.38319],[114.14874,22.38316],[114.14874,22.38315],[114.14871,22.38313],[114.1487,22.38311],[114.14869,22.38306],[114.14869,22.38298],[114.14869,22.38295],[114.1487,22.3829],[114.14872,22.38288],[114.14872,22.38287],[114.14872,22.38287],[114.14872,22.38285],[114.14873,22.38285],[114.14873,22.38284],[114.14872,22.38283],[114.14872,22.38283],[114.14872,22.38282],[114.14871,22.38282],[114.14869,22.38283],[114.14867,22.38284],[114.14861,22.38289],[114.14852,22.38294],[114.14843,22.38297],[114.14838,22.38298],[114.14835,22.38299],[114.14834,22.38299],[114.14832,22.38299],[114.14825,22.38299],[114.14822,22.38298],[114.1482,22.38298],[114.14817,22.38297],[114.14815,22.38297],[114.14809,22.38294],[114.14795,22.3829],[114.14792,22.3829],[114.14789,22.3829],[114.14785,22.3829],[114.1478,22.38291],[114.14778,22.38291],[114.14777,22.38291],[114.14769,22.38293],[114.14768,22.38293],[114.14751,22.38296],[114.14749,22.38296],[114.14746,22.38295],[114.14745,22.38294],[114.14741,22.3829],[114.14739,22.38286],[114.14736,22.38274],[114.14736,22.38273],[114.14736,22.38262],[114.14737,22.38258],[114.14739,22.38256],[114.14742,22.38254],[114.14748,22.38251],[114.14773,22.38245],[114.14774,22.38245],[114.14775,22.38245],[114.14775,22.38244],[114.14776,22.38244],[114.14778,22.38241],[114.14779,22.3824],[114.14779,22.38238],[114.14779,22.38236],[114.14778,22.38233],[114.14778,22.38232],[114.14777,22.38228],[114.14777,22.38221],[114.14777,22.38221],[114.14777,22.3822],[114.14778,22.38219],[114.14778,22.38218],[114.14778,22.38218],[114.14778,22.38218],[114.14778,22.38217],[114.14778,22.38216],[114.1478,22.38213],[114.14781,22.38212],[114.14781,22.38211],[114.14781,22.3821],[114.14781,22.3821],[114.14781,22.3821],[114.14781,22.3821],[114.14781,22.38209],[114.14781,22.38208],[114.1478,22.38207],[114.14779,22.38206],[114.14778,22.38205],[114.14772,22.38199],[114.14771,22.38198],[114.1477,22.38197],[114.1477,22.38196],[114.1477,22.38196],[114.1477,22.38194],[114.1477,22.38193],[114.14769,22.38193],[114.1477,22.38192],[114.1477,22.38191],[114.1477,22.38189],[114.14773,22.38182],[114.14773,22.38181],[114.14774,22.38178],[114.14775,22.38176],[114.14775,22.38175],[114.14775,22.38174],[114.14776,22.38173],[114.14777,22.38168],[114.14777,22.38168],[114.14777,22.38167],[114.14777,22.38166],[114.14777,22.38166],[114.14776,22.38165],[114.14775,22.38162],[114.14774,22.38161],[114.14773,22.3816],[114.14773,22.3816],[114.1477,22.38158],[114.1477,22.38158],[114.14769,22.38158],[114.14768,22.38157],[114.14766,22.38157],[114.14765,22.38157],[114.14764,22.38156],[114.14762,22.38156],[114.1476,22.38155],[114.14758,22.38155],[114.14756,22.38154],[114.14754,22.38153],[114.14752,22.38152],[114.14751,22.38151],[114.14749,22.38149],[114.14747,22.38148],[114.14745,22.38147],[114.14744,22.38146],[114.14744,22.38145],[114.14742,22.38144],[114.14742,22.38144],[114.14741,22.38143],[114.14739,22.38142],[114.14738,22.38141],[114.14734,22.38139],[114.14733,22.38139],[114.14731,22.38138],[114.14728,22.38138],[114.14726,22.38137],[114.14723,22.38137],[114.14723,22.38137],[114.14722,22.38136],[114.14721,22.38136],[114.14719,22.38136],[114.14715,22.38135],[114.14715,22.38134],[114.14714,22.38134],[114.14714,22.38134],[114.14712,22.38133],[114.14711,22.38132],[114.14711,22.38131],[114.1471,22.38131],[114.1471,22.3813],[114.1471,22.3813],[114.14709,22.38129],[114.14708,22.38128],[114.14708,22.38127],[114.14707,22.38126],[114.14707,22.38124],[114.14706,22.38123],[114.14706,22.38122],[114.14706,22.38121],[114.14706,22.3812],[114.14706,22.38119],[114.14707,22.38119],[114.14708,22.38113],[114.14709,22.38112],[114.1471,22.38111],[114.1471,22.3811],[114.14711,22.38109],[114.14712,22.38109],[114.14713,22.38108],[114.14714,22.38108],[114.14716,22.38107],[114.14716,22.38107],[114.14717,22.38107],[114.14718,22.38107],[114.1472,22.38107],[114.14721,22.38107],[114.14721,22.38107],[114.14724,22.38107],[114.14725,22.38106],[114.14727,22.38105],[114.14729,22.38105],[114.1473,22.38104],[114.14731,22.38104],[114.14734,22.38102],[114.14735,22.38102],[114.14737,22.38102],[114.14739,22.38101],[114.1474,22.38101],[114.14742,22.38101],[114.14743,22.38101],[114.14744,22.38101],[114.14744,22.38101],[114.14744,22.38101],[114.14746,22.38101],[114.14747,22.38101],[114.14748,22.38102],[114.14749,22.38102],[114.1475,22.38102],[114.14751,22.38102],[114.14753,22.38102],[114.14754,22.38102],[114.14755,22.38102],[114.14756,22.38101],[114.14757,22.38101],[114.14757,22.38101],[114.14759,22.381],[114.1476,22.38099],[114.14762,22.38099],[114.14763,22.38099],[114.14763,22.38099],[114.14764,22.38099],[114.14765,22.38099],[114.14768,22.38101],[114.14768,22.38101],[114.14769,22.38102],[114.1477,22.38102],[114.1477,22.38102],[114.14771,22.38103],[114.14772,22.38103],[114.14772,22.38103],[114.14773,22.38104],[114.14773,22.38104],[114.14774,22.38104],[114.14774,22.38104],[114.14775,22.38104],[114.14777,22.38104],[114.14778,22.38104],[114.14779,22.38103],[114.1478,22.38103],[114.1478,22.38102],[114.14781,22.38102],[114.14781,22.38102],[114.14782,22.38101],[114.14782,22.38101],[114.14783,22.38101],[114.14783,22.38101],[114.14784,22.381],[114.14784,22.381],[114.14785,22.38099],[114.14786,22.38099],[114.14787,22.38098],[114.14788,22.38097],[114.14788,22.38097],[114.14789,22.38096],[114.1479,22.38096],[114.1479,22.38096],[114.14791,22.38095],[114.14793,22.38094],[114.14795,22.38092],[114.14796,22.38092],[114.14797,22.38091],[114.14798,22.3809],[114.14799,22.3809],[114.14799,22.3809],[114.14799,22.3809],[114.148,22.38089],[114.14801,22.38088],[114.14802,22.38087],[114.14808,22.38083],[114.1481,22.38081],[114.1481,22.38081],[114.14811,22.3808],[114.14812,22.38079],[114.14813,22.38079],[114.14813,22.38078],[114.14813,22.38078],[114.14813,22.38078],[114.14814,22.38078],[114.14815,22.38077],[114.14815,22.38077],[114.14816,22.38077],[114.14817,22.38077],[114.14817,22.38077],[114.14818,22.38077],[114.14819,22.38077],[114.14819,22.38077],[114.1482,22.38077],[114.14823,22.38077],[114.14824,22.38077],[114.14825,22.38077],[114.14825,22.38077],[114.14826,22.38078],[114.14827,22.38078],[114.14828,22.38078],[114.1483,22.38078],[114.14832,22.38078],[114.14832,22.38078],[114.14833,22.38077],[114.14834,22.38077],[114.14835,22.38077],[114.14836,22.38077],[114.14837,22.38076],[114.14837,22.38076],[114.14838,22.38076],[114.14839,22.38076],[114.1484,22.38075],[114.1484,22.38075],[114.1484,22.38075],[114.14841,22.38074],[114.14839,22.38071],[114.14837,22.38069],[114.14836,22.38069],[114.14836,22.38069],[114.14835,22.3807],[114.14835,22.3807],[114.14833,22.3807],[114.14832,22.3807],[114.14831,22.3807],[114.1483,22.3807],[114.14829,22.3807],[114.14828,22.38069],[114.14828,22.38069],[114.14828,22.38069],[114.14827,22.38069],[114.14827,22.38069],[114.14826,22.38068],[114.14825,22.38068],[114.14825,22.38067],[114.14825,22.38067],[114.14824,22.38066],[114.14823,22.38065],[114.14823,22.38064],[114.14822,22.38063],[114.14822,22.38063],[114.14822,22.38062],[114.14822,22.38062],[114.14822,22.38061],[114.14822,22.3806],[114.14822,22.3806],[114.14822,22.38059],[114.14822,22.38058],[114.14822,22.38057],[114.14822,22.38057],[114.14822,22.38057],[114.14822,22.38056],[114.14822,22.38056],[114.14823,22.38056],[114.14823,22.38055],[114.14824,22.38054],[114.14824,22.38053],[114.14825,22.38053],[114.14826,22.38052],[114.14826,22.38052],[114.14827,22.38052],[114.14827,22.38052],[114.14829,22.38051],[114.14829,22.38051],[114.1483,22.38051],[114.14831,22.38051],[114.14832,22.38051],[114.14832,22.38051],[114.14833,22.38051],[114.14834,22.38051],[114.14835,22.38051],[114.14835,22.38051],[114.14836,22.38051],[114.14836,22.38051],[114.14837,22.38052],[114.14838,22.38052],[114.14839,22.38053],[114.14839,22.38053],[114.14841,22.38054],[114.14841,22.38055],[114.14842,22.38057],[114.14842,22.38058],[114.14843,22.38059],[114.14843,22.3806],[114.14843,22.38061],[114.14843,22.38062],[114.14842,22.38064],[114.14842,22.38064],[114.14842,22.38065],[114.14841,22.38066],[114.1484,22.38067],[114.1484,22.38067],[114.14839,22.38068],[114.1484,22.3807],[114.14842,22.38073],[114.14843,22.38073],[114.14844,22.38072],[114.14845,22.38071],[114.14845,22.38071],[114.14845,22.38071],[114.14846,22.3807],[114.14846,22.38069],[114.14847,22.38068],[114.14847,22.38066],[114.14848,22.38064],[114.14849,22.38063],[114.14849,22.38061],[114.1485,22.38059],[114.14851,22.38058],[114.14852,22.38055],[114.14852,22.38054],[114.14852,22.38054],[114.14853,22.38053],[114.14853,22.38052],[114.14853,22.38052],[114.14854,22.38052],[114.14854,22.38051],[114.14854,22.38051],[114.14854,22.38051],[114.14855,22.38051],[114.14856,22.3805],[114.14856,22.3805],[114.14857,22.3805],[114.14858,22.38049],[114.1486,22.38048],[114.14863,22.38046],[114.14864,22.38046],[114.14865,22.38046],[114.14866,22.38045],[114.14868,22.38044],[114.14868,22.38044],[114.14869,22.38043],[114.1487,22.38043],[114.14871,22.38042],[114.14871,22.38041],[114.14872,22.38041],[114.14872,22.38041],[114.14872,22.3804],[114.14873,22.3804],[114.14873,22.38039],[114.14874,22.38038],[114.14874,22.38038],[114.14875,22.38037],[114.14875,22.38035],[114.14877,22.38035],[114.14878,22.38035],[114.14879,22.38035],[114.14881,22.38035],[114.14882,22.38035],[114.14883,22.38035],[114.14885,22.38035],[114.14887,22.38035],[114.14887,22.38034],[114.14888,22.38034],[114.1489,22.38034],[114.14891,22.38033],[114.14892,22.38033],[114.14893,22.38033],[114.14894,22.38032],[114.14896,22.38032],[114.14897,22.38031],[114.14899,22.38029],[114.149,22.38029],[114.14901,22.38028],[114.14924,22.37993],[114.14932,22.37968],[114.1495,22.37966],[114.14969,22.37954],[114.14984,22.37927],[114.14952,22.37884],[114.14988,22.37815],[114.14988,22.37791],[114.14961,22.37784],[114.1491,22.3779],[114.14869,22.37782],[114.14869,22.37775],[114.14865,22.37769],[114.14864,22.37764],[114.14866,22.37753],[114.1486,22.37741],[114.14857,22.37739],[114.14853,22.37737],[114.14852,22.37735],[114.14853,22.3772],[114.14853,22.37711],[114.14851,22.37708],[114.14848,22.37705],[114.14847,22.37702],[114.14847,22.37699],[114.14849,22.37697],[114.14856,22.37692],[114.14861,22.37686],[114.14864,22.3768],[114.14866,22.37675],[114.14863,22.37671],[114.14851,22.37666],[114.14846,22.37662],[114.14844,22.37655],[114.14845,22.37641],[114.14843,22.37639],[114.14839,22.37635],[114.14831,22.37634],[114.14821,22.37635],[114.14814,22.37637],[114.14803,22.37641],[114.14796,22.3764],[114.14788,22.3764],[114.1478,22.37634],[114.14773,22.37632],[114.14772,22.37631],[114.14771,22.3763],[114.14771,22.37628],[114.14771,22.37627],[114.14775,22.37624],[114.14777,22.37622],[114.14778,22.3762],[114.14778,22.37619],[114.14779,22.37614],[114.14779,22.37614],[114.14784,22.3761],[114.14785,22.37609],[114.14788,22.37599],[114.14795,22.37597],[114.14801,22.37593],[114.14815,22.37581],[114.14817,22.37579],[114.14818,22.37578],[114.14821,22.37577],[114.14828,22.37577],[114.14832,22.37575],[114.14838,22.37572],[114.14846,22.37566],[114.14855,22.37562],[114.14857,22.3756],[114.14858,22.37557],[114.14859,22.37554],[114.14858,22.37551],[114.14853,22.37543],[114.1485,22.37539],[114.14846,22.37533],[114.14846,22.3753],[114.14843,22.37528],[114.14839,22.37526],[114.14837,22.37523],[114.14834,22.37518],[114.14833,22.37515],[114.14831,22.37509],[114.14825,22.37504],[114.14822,22.37503],[114.14819,22.37499],[114.14819,22.37499],[114.14819,22.37497],[114.14821,22.37496],[114.14822,22.37494],[114.14823,22.37492],[114.14822,22.37488],[114.14819,22.37482],[114.1482,22.3748],[114.14823,22.37479],[114.14826,22.37479],[114.14829,22.37481],[114.14832,22.37481],[114.14844,22.37481],[114.14851,22.3748],[114.14855,22.37479],[114.14861,22.37475],[114.14864,22.37472],[114.14866,22.37469],[114.14867,22.37466],[114.14867,22.37462],[114.1487,22.37452],[114.14872,22.37449],[114.14873,22.37445],[114.14874,22.37441],[114.14874,22.37429],[114.14873,22.37425],[114.14872,22.3742],[114.14869,22.37414],[114.14868,22.37412],[114.14868,22.37408],[114.1487,22.37405],[114.14872,22.37398],[114.14873,22.37392],[114.14874,22.37389],[114.14874,22.37387],[114.14873,22.37385],[114.14871,22.37381],[114.1487,22.37378],[114.1487,22.37376],[114.14871,22.37364],[114.1487,22.37362],[114.14869,22.37358],[114.14863,22.37352],[114.1486,22.3735],[114.14857,22.37347],[114.14854,22.37346],[114.14845,22.37343],[114.14843,22.37341],[114.14843,22.37339],[114.14843,22.37336],[114.14846,22.37333],[114.14847,22.37332],[114.14846,22.3733],[114.14845,22.37325],[114.14845,22.3732],[114.14845,22.37318],[114.14848,22.37314],[114.1485,22.37311],[114.14854,22.37309],[114.1486,22.37306],[114.14868,22.37304],[114.14871,22.37302],[114.14872,22.37301],[114.14873,22.37298],[114.14873,22.37297],[114.14872,22.37294],[114.14864,22.37278],[114.14862,22.37273],[114.14862,22.37269],[114.14863,22.37263],[114.14862,22.37256],[114.14863,22.37253],[114.14865,22.37252],[114.14872,22.37249],[114.14877,22.37245],[114.1488,22.37241],[114.14882,22.37237],[114.14882,22.37233],[114.14882,22.37229],[114.1488,22.37227],[114.14876,22.37225],[114.14873,22.37222],[114.14872,22.37218],[114.14872,22.37216],[114.14872,22.37209],[114.14873,22.37206],[114.14873,22.37205],[114.14877,22.37202],[114.14879,22.37197],[114.14881,22.37193],[114.14881,22.3719],[114.14882,22.37188],[114.14883,22.37186],[114.14885,22.37184],[114.14887,22.37183],[114.14888,22.37179],[114.14889,22.37176],[114.14891,22.37174],[114.149,22.37168],[114.14908,22.37165],[114.14911,22.37162],[114.14914,22.37161],[114.14917,22.3716],[114.14924,22.3716],[114.14929,22.37158],[114.14933,22.37156],[114.1494,22.3715],[114.14945,22.37144],[114.14949,22.37138],[114.1495,22.37135],[114.14952,22.37132],[114.14955,22.37128],[114.14962,22.37122],[114.14965,22.37118],[114.14966,22.37116],[114.14972,22.3711],[114.14984,22.37102],[114.1499,22.37095],[114.14993,22.3709],[114.14996,22.37086],[114.15004,22.37074],[114.15007,22.3707],[114.1501,22.37067],[114.1502,22.37061],[114.15024,22.37058],[114.15026,22.37057],[114.15029,22.37057],[114.15038,22.37057],[114.15043,22.37056],[114.15045,22.37055],[114.15047,22.37052],[114.15048,22.37046],[114.1505,22.37039],[114.15053,22.37034],[114.15056,22.3703],[114.15058,22.37029],[114.15068,22.37028],[114.15069,22.37029],[114.15073,22.3703],[114.15075,22.3703],[114.15079,22.3703],[114.15081,22.37029],[114.15083,22.3703],[114.15085,22.37032],[114.15086,22.37033],[114.15087,22.37033],[114.1509,22.37033],[114.151,22.37032],[114.15103,22.37032],[114.15104,22.37032],[114.15111,22.37036],[114.15115,22.37036],[114.15117,22.37037],[114.15118,22.37036],[114.1512,22.37036],[114.15123,22.37035],[114.15129,22.37035],[114.1513,22.37034],[114.15133,22.37031],[114.15135,22.37029],[114.15137,22.37027],[114.15138,22.37027],[114.15141,22.37025],[114.15149,22.37023],[114.15157,22.37023],[114.15158,22.37023],[114.15166,22.3702],[114.15174,22.37017],[114.15189,22.37011],[114.15193,22.3701],[114.15195,22.3701],[114.15196,22.37009],[114.15198,22.37007],[114.15202,22.37002],[114.15209,22.36998],[114.15218,22.36993],[114.15223,22.36992],[114.15224,22.36991],[114.15226,22.36989],[114.15229,22.36987],[114.15237,22.36983],[114.15243,22.3698],[114.15254,22.36975],[114.15256,22.36974],[114.15336,22.36932],[114.15409,22.3688],[114.15446,22.3685],[114.1547,22.36831],[114.15526,22.36773],[114.15591,22.36693],[114.15657,22.36586],[114.15659,22.36583],[114.1566,22.36584],[114.15661,22.36585],[114.15663,22.36587],[114.15664,22.36588],[114.15666,22.36589],[114.15667,22.3659],[114.15669,22.36591],[114.15671,22.36592],[114.15672,22.36593],[114.15674,22.36594],[114.15676,22.36595],[114.15677,22.36596],[114.15679,22.36597],[114.15681,22.36597],[114.15683,22.36598],[114.15685,22.36599],[114.15686,22.36599],[114.15688,22.366],[114.1569,22.366],[114.15692,22.36601],[114.15694,22.36602],[114.15695,22.36603],[114.15697,22.36604],[114.15699,22.36604],[114.157,22.36605],[114.15702,22.36606],[114.15704,22.36607],[114.15706,22.36608],[114.15707,22.36609],[114.15709,22.3661],[114.1571,22.36611],[114.15712,22.36612],[114.15714,22.36613],[114.15715,22.36614],[114.15717,22.36615],[114.15718,22.36617],[114.15719,22.36618],[114.15721,22.36619],[114.15722,22.3662],[114.15724,22.36622],[114.15725,22.36623],[114.15726,22.36624],[114.15727,22.36626],[114.15729,22.36627],[114.1573,22.36628],[114.15731,22.3663],[114.15733,22.36631],[114.15734,22.36633],[114.15735,22.36634],[114.15736,22.36635],[114.15737,22.36637],[114.15739,22.36638],[114.1574,22.3664],[114.15741,22.36641],[114.15742,22.36643],[114.15743,22.36644],[114.15743,22.36646],[114.15744,22.36648],[114.15745,22.36649],[114.15746,22.36651],[114.15747,22.36653],[114.15748,22.36654],[114.15748,22.36656],[114.15749,22.36658],[114.15749,22.36659],[114.1575,22.36661],[114.1575,22.36663],[114.15751,22.36665],[114.15751,22.36666],[114.15751,22.36668],[114.15752,22.3667],[114.15752,22.36672],[114.15752,22.36674],[114.15752,22.36675],[114.15753,22.36677],[114.15753,22.36679],[114.15753,22.36681],[114.15753,22.36683],[114.15753,22.36684],[114.15753,22.36686],[114.15753,22.36688],[114.15754,22.3669],[114.15754,22.36692],[114.15754,22.36694],[114.15754,22.36695],[114.15754,22.36697],[114.15754,22.36699],[114.15754,22.36701],[114.15754,22.36703],[114.15754,22.36704],[114.15754,22.36706],[114.15754,22.36708],[114.15754,22.3671],[114.15754,22.36712],[114.15753,22.36713],[114.15753,22.36715],[114.15753,22.36717],[114.15753,22.36719],[114.15753,22.36721],[114.15753,22.36722],[114.15753,22.36724],[114.15752,22.36726],[114.15752,22.36728],[114.15752,22.3673],[114.15752,22.36731],[114.15751,22.36733],[114.15751,22.36735],[114.15751,22.36737],[114.15751,22.36739],[114.1575,22.3674],[114.1575,22.36742],[114.1575,22.36744],[114.1575,22.36746],[114.15749,22.36747],[114.15749,22.36749],[114.15749,22.36751],[114.15748,22.36753],[114.15748,22.36755],[114.15748,22.36756],[114.15747,22.36758],[114.15747,22.3676],[114.15747,22.36762],[114.15746,22.36763],[114.15746,22.36765],[114.15745,22.36767],[114.15745,22.36769],[114.15744,22.36771],[114.15744,22.36772],[114.15743,22.36774],[114.15743,22.36776],[114.15742,22.36778],[114.15742,22.36779],[114.15741,22.36781],[114.15741,22.36783],[114.1574,22.36784],[114.1574,22.36786],[114.15739,22.36788],[114.15738,22.3679],[114.15737,22.36791],[114.15737,22.36793],[114.15736,22.36794],[114.15735,22.36796],[114.15734,22.36798],[114.15733,22.36799],[114.15732,22.36801],[114.15732,22.36803],[114.15731,22.36804],[114.1573,22.36806],[114.1573,22.36808],[114.15729,22.36809],[114.15729,22.36811],[114.15728,22.36813],[114.15727,22.36815],[114.15727,22.36816],[114.15726,22.36818],[114.15726,22.3682],[114.15725,22.36822],[114.15725,22.36823],[114.15724,22.36825],[114.15724,22.36827],[114.15723,22.36829],[114.15723,22.3683],[114.15723,22.36832],[114.15722,22.36834],[114.15722,22.36836],[114.15722,22.36838],[114.15722,22.36839],[114.15722,22.36841],[114.15723,22.36843],[114.15723,22.36845],[114.15723,22.36847],[114.15724,22.36848],[114.15724,22.3685],[114.15724,22.36852],[114.15725,22.36854],[114.15725,22.36855],[114.15726,22.36857],[114.15727,22.36859],[114.15727,22.36861],[114.15728,22.36862],[114.15729,22.36864],[114.1573,22.36865],[114.15731,22.36867],[114.15732,22.36869],[114.15733,22.3687],[114.15734,22.36872],[114.15735,22.36873],[114.15737,22.36874],[114.15738,22.36876],[114.15739,22.36877],[114.15741,22.36878],[114.15742,22.36879],[114.15744,22.3688],[114.15745,22.36882],[114.15747,22.36883],[114.15748,22.36884],[114.1575,22.36885],[114.15752,22.36885],[114.15753,22.36886],[114.15755,22.36887],[114.15757,22.36888],[114.15759,22.36889],[114.15761,22.36889],[114.15762,22.3689],[114.15764,22.3689],[114.15766,22.36891],[114.15768,22.36891],[114.1577,22.36892],[114.15772,22.36892],[114.15774,22.36892],[114.15776,22.36893],[114.15778,22.36893],[114.1578,22.36893],[114.15781,22.36893],[114.15783,22.36893],[114.15785,22.36894],[114.15787,22.36894],[114.15789,22.36894],[114.15791,22.36894],[114.15793,22.36894],[114.15795,22.36894],[114.15797,22.36894],[114.15799,22.36893],[114.15801,22.36893],[114.15803,22.36893],[114.15805,22.36893],[114.15807,22.36893],[114.15809,22.36893],[114.15811,22.36892],[114.15813,22.36892],[114.15814,22.36891],[114.15816,22.36891],[114.15818,22.36891],[114.1582,22.3689],[114.15822,22.3689],[114.15824,22.36889],[114.15826,22.36888],[114.15827,22.36888],[114.15829,22.36887],[114.15831,22.36887],[114.15833,22.36886],[114.15835,22.36886],[114.15837,22.36885],[114.15838,22.36884],[114.1584,22.36884],[114.15842,22.36883],[114.15844,22.36882],[114.15846,22.36882],[114.15848,22.36881],[114.15849,22.3688],[114.15851,22.3688],[114.15853,22.36879],[114.15855,22.36878],[114.15857,22.36878],[114.15858,22.36877],[114.1586,22.36876],[114.15862,22.36875],[114.15864,22.36875],[114.15865,22.36874],[114.15867,22.36873],[114.15869,22.36873],[114.15871,22.36872],[114.15872,22.36871],[114.15874,22.3687],[114.15876,22.36869],[114.15878,22.36869],[114.15879,22.36868],[114.15881,22.36867],[114.15883,22.36866],[114.15885,22.36865],[114.15886,22.36864],[114.15888,22.36863],[114.15893,22.36861],[114.15895,22.3686],[114.15897,22.36859],[114.15898,22.36858],[114.159,22.36857],[114.15902,22.36857],[114.15903,22.36856],[114.15907,22.36854],[114.15908,22.36853],[114.1591,22.36852],[114.15912,22.36851],[114.15913,22.3685],[114.15915,22.36849],[114.15917,22.36849],[114.15919,22.36848],[114.15922,22.36846],[114.15924,22.36845],[114.15925,22.36844],[114.15927,22.36843],[114.15929,22.36842],[114.1593,22.36841],[114.15932,22.3684],[114.15934,22.3684],[114.15935,22.36839],[114.15937,22.36838],[114.15939,22.36837],[114.1594,22.36836],[114.15942,22.36835],[114.15944,22.36834],[114.15945,22.36833],[114.15947,22.36832],[114.15949,22.36831],[114.1595,22.3683],[114.15952,22.3683],[114.15954,22.36829],[114.15955,22.36828],[114.15957,22.36827],[114.15959,22.36826],[114.1596,22.36825],[114.15962,22.36824],[114.15964,22.36823],[114.15965,22.36822],[114.15967,22.36821],[114.15969,22.3682],[114.1597,22.36819],[114.15972,22.36818],[114.15974,22.36817],[114.15975,22.36816],[114.15977,22.36816],[114.15979,22.36815],[114.1598,22.36814],[114.15982,22.36813],[114.15984,22.36812],[114.15986,22.36811],[114.15987,22.36811],[114.15989,22.3681],[114.15991,22.36809],[114.15993,22.36808],[114.15994,22.36807],[114.15996,22.36807],[114.15998,22.36806],[114.16,22.36805],[114.16001,22.36804],[114.16003,22.36804],[114.16005,22.36803],[114.16007,22.36802],[114.16009,22.36801],[114.1601,22.36801],[114.16012,22.368],[114.16014,22.36799],[114.16016,22.36798],[114.16017,22.36798],[114.16019,22.36797],[114.16021,22.36796],[114.16023,22.36796],[114.16025,22.36795],[114.16026,22.36794],[114.16028,22.36793],[114.1603,22.36793],[114.16032,22.36792],[114.16033,22.36791],[114.16037,22.3679],[114.16039,22.36789],[114.1604,22.36788],[114.16042,22.36787],[114.16044,22.36787],[114.16046,22.36786],[114.16048,22.36785],[114.16049,22.36784],[114.16051,22.36784],[114.16053,22.36783],[114.16055,22.36782],[114.16056,22.36781],[114.16058,22.3678],[114.1606,22.3678],[114.16062,22.36779],[114.16063,22.36778],[114.16065,22.36777],[114.16067,22.36776],[114.16068,22.36776],[114.1607,22.36775],[114.16072,22.36774],[114.16074,22.36773],[114.16075,22.36772],[114.16077,22.36771],[114.16079,22.3677],[114.1608,22.3677],[114.16082,22.36769],[114.16084,22.36768],[114.16085,22.36767],[114.16087,22.36766],[114.16089,22.36765],[114.1609,22.36764],[114.16092,22.36763],[114.16094,22.36762],[114.16095,22.36761],[114.16097,22.3676],[114.16099,22.36759],[114.161,22.36758],[114.16102,22.36757],[114.16103,22.36756],[114.16105,22.36755],[114.16107,22.36754],[114.16108,22.36753],[114.1611,22.36752],[114.16111,22.36751],[114.16113,22.3675],[114.16115,22.36749],[114.16116,22.36748],[114.16118,22.36747],[114.16119,22.36746],[114.16121,22.36745],[114.16122,22.36744],[114.16124,22.36743],[114.16126,22.36741],[114.16127,22.3674],[114.16129,22.36739],[114.1613,22.36738],[114.16132,22.36737],[114.16133,22.36736],[114.16135,22.36735],[114.16136,22.36734],[114.16138,22.36732],[114.16139,22.36731],[114.16141,22.3673],[114.16142,22.36729],[114.16143,22.36728],[114.16145,22.36726],[114.16146,22.36725],[114.16148,22.36724],[114.16149,22.36723],[114.16151,22.36721],[114.16152,22.3672],[114.16153,22.36719],[114.16155,22.36718],[114.16156,22.36716],[114.16158,22.36715],[114.16159,22.36714],[114.1616,22.36713],[114.16162,22.36711],[114.16163,22.3671],[114.16164,22.36709],[114.16166,22.36707],[114.16167,22.36706],[114.16169,22.36705],[114.1617,22.36704],[114.16171,22.36702],[114.16173,22.36701],[114.16174,22.367],[114.16175,22.36698],[114.16177,22.36697],[114.16178,22.36696],[114.16179,22.36694],[114.1618,22.36693],[114.16182,22.36692],[114.16183,22.3669],[114.16184,22.36689],[114.16185,22.36687],[114.16187,22.36686],[114.16188,22.36685],[114.16189,22.36683],[114.1619,22.36682],[114.16191,22.3668],[114.16192,22.36679],[114.16194,22.36677],[114.16195,22.36676],[114.16196,22.36675],[114.16197,22.36673],[114.16198,22.36672],[114.162,22.3667],[114.16201,22.36669],[114.16202,22.36667],[114.16203,22.36666],[114.16205,22.36665],[114.16206,22.36663],[114.16207,22.36662],[114.16208,22.36661],[114.1621,22.36659],[114.16211,22.36658],[114.16212,22.36657],[114.16214,22.36655],[114.16215,22.36654],[114.16216,22.36653],[114.16218,22.36651],[114.16219,22.3665],[114.1622,22.36649],[114.16222,22.36647],[114.16223,22.36646],[114.16224,22.36645],[114.16226,22.36644],[114.16227,22.36642],[114.16229,22.36641],[114.1623,22.3664],[114.16231,22.36639],[114.16233,22.36637],[114.16234,22.36636],[114.16236,22.36635],[114.16237,22.36634],[114.16239,22.36632],[114.1624,22.36631],[114.16241,22.3663],[114.16243,22.36629],[114.16244,22.36628],[114.16246,22.36626],[114.16247,22.36625],[114.16249,22.36624],[114.1625,22.36623],[114.16252,22.36622],[114.16253,22.36621],[114.16255,22.36619],[114.16256,22.36618],[114.16258,22.36617],[114.16259,22.36616],[114.16261,22.36615],[114.16262,22.36614],[114.16264,22.36613],[114.16265,22.36611],[114.16267,22.3661],[114.16268,22.36609],[114.1627,22.36608],[114.16271,22.36607],[114.16273,22.36606],[114.16274,22.36605],[114.16276,22.36604],[114.16278,22.36603],[114.16279,22.36602],[114.16281,22.36601],[114.16282,22.366],[114.16284,22.36599],[114.16286,22.36598],[114.16287,22.36597],[114.16289,22.36596],[114.16291,22.36595],[114.16292,22.36594],[114.16294,22.36593],[114.16296,22.36592],[114.16298,22.36591],[114.16299,22.36591],[114.16301,22.3659],[114.16303,22.36589],[114.16304,22.36588],[114.16306,22.36587],[114.16308,22.36587],[114.1631,22.36586],[114.16312,22.36585],[114.16313,22.36584],[114.16315,22.36584],[114.16317,22.36583],[114.16319,22.36582],[114.16321,22.36582],[114.16322,22.36581],[114.16324,22.3658],[114.16326,22.3658],[114.16328,22.36579],[114.1633,22.36578],[114.16331,22.36578],[114.16333,22.36577],[114.16335,22.36576],[114.16337,22.36576],[114.16339,22.36575],[114.1634,22.36575],[114.16342,22.36574],[114.16344,22.36573],[114.16346,22.36573],[114.16348,22.36572],[114.1635,22.36572],[114.16352,22.36571],[114.16353,22.36571],[114.16355,22.3657],[114.16357,22.3657],[114.16359,22.36569],[114.16361,22.36568],[114.16363,22.36568],[114.16365,22.36567],[114.16366,22.36567],[114.16368,22.36566],[114.1637,22.36566],[114.16372,22.36565],[114.16374,22.36565],[114.16376,22.36565],[114.16378,22.36564],[114.1638,22.36564],[114.16381,22.36563],[114.16383,22.36563],[114.16385,22.36562],[114.16387,22.36562],[114.16389,22.36561],[114.16391,22.36561],[114.16393,22.3656],[114.16395,22.3656],[114.16396,22.36559],[114.16398,22.36559],[114.164,22.36559],[114.16402,22.36558],[114.16404,22.36558],[114.16406,22.36557],[114.16408,22.36557],[114.1641,22.36557],[114.16412,22.36556],[114.16414,22.36556],[114.16416,22.36556],[114.16417,22.36556],[114.16419,22.36556],[114.16421,22.36556],[114.16423,22.36556],[114.16425,22.36556],[114.16427,22.36556],[114.16429,22.36556],[114.16431,22.36556],[114.16433,22.36557],[114.16435,22.36557],[114.16437,22.36557],[114.16439,22.36558],[114.16441,22.36558],[114.16442,22.36559],[114.16444,22.36559],[114.16446,22.3656],[114.16448,22.3656],[114.1645,22.36561],[114.16452,22.36562],[114.16453,22.36562],[114.16455,22.36563],[114.16457,22.36564],[114.16458,22.36565],[114.1646,22.36566],[114.16462,22.36567],[114.16463,22.36568],[114.16465,22.36569],[114.16466,22.3657],[114.16468,22.36571],[114.1647,22.36572],[114.16471,22.36573],[114.16473,22.36574],[114.16474,22.36575],[114.16476,22.36576],[114.16477,22.36578],[114.16479,22.36579],[114.16481,22.3658],[114.16482,22.36581],[114.16484,22.36582],[114.16485,22.36583],[114.16487,22.36584],[114.16488,22.36585],[114.1649,22.36586],[114.16491,22.36587],[114.16493,22.36588],[114.16495,22.36589],[114.16496,22.3659],[114.16498,22.36591],[114.16499,22.36592],[114.16501,22.36593],[114.16503,22.36594],[114.16504,22.36595],[114.16506,22.36596],[114.16508,22.36597],[114.16509,22.36598],[114.16511,22.36599],[114.16512,22.366],[114.16514,22.36601],[114.16516,22.36602],[114.16517,22.36603],[114.16519,22.36604],[114.16521,22.36605],[114.16522,22.36606],[114.16524,22.36607],[114.16526,22.36608],[114.16527,22.36609],[114.16529,22.3661],[114.16531,22.36611],[114.16532,22.36612],[114.16534,22.36613],[114.16536,22.36614],[114.16537,22.36615],[114.16539,22.36615],[114.16541,22.36616],[114.16542,22.36617],[114.16544,22.36618],[114.16546,22.36619],[114.16547,22.3662],[114.16549,22.36621],[114.16551,22.36622],[114.16553,22.36622],[114.16554,22.36623],[114.16556,22.36624],[114.16558,22.36625],[114.16559,22.36626],[114.16561,22.36627],[114.16563,22.36627],[114.16565,22.36628],[114.16566,22.36629],[114.16568,22.3663],[114.1657,22.36631],[114.16572,22.36632],[114.16573,22.36632],[114.16575,22.36633],[114.16577,22.36634],[114.16578,22.36635],[114.1658,22.36636],[114.16582,22.36636],[114.16584,22.36637],[114.16585,22.36638],[114.16587,22.36639],[114.16589,22.3664],[114.16591,22.3664],[114.16592,22.36641],[114.16594,22.36642],[114.16596,22.36643],[114.16599,22.36644],[114.16601,22.36645],[114.16603,22.36646],[114.16605,22.36647],[114.16606,22.36647],[114.16608,22.36648],[114.1661,22.36649],[114.16612,22.3665],[114.16614,22.3665],[114.16615,22.36651],[114.16617,22.36652],[114.16619,22.36653],[114.16621,22.36653],[114.16622,22.36654],[114.16624,22.36655],[114.16626,22.36655],[114.16628,22.36656],[114.16629,22.36657],[114.16631,22.36658],[114.16633,22.36658],[114.16635,22.36659],[114.16637,22.3666],[114.16638,22.36661],[114.1664,22.36662],[114.16642,22.36662],[114.16644,22.36663],[114.16645,22.36664],[114.16647,22.36665],[114.16649,22.36666],[114.1665,22.36666],[114.16652,22.36667],[114.16654,22.36668],[114.16656,22.36669],[114.16657,22.3667],[114.16659,22.36671],[114.16661,22.36672],[114.16662,22.36672],[114.16664,22.36673],[114.16666,22.36674],[114.16667,22.36675],[114.16669,22.36676],[114.16671,22.36677],[114.16672,22.36678],[114.16674,22.36679],[114.16676,22.3668],[114.16677,22.36681],[114.16679,22.36682],[114.1668,22.36683],[114.16682,22.36685],[114.16683,22.36686],[114.16685,22.36687],[114.16686,22.36688],[114.16688,22.36689],[114.16689,22.3669],[114.1669,22.36692],[114.16692,22.36693],[114.16693,22.36694],[114.16695,22.36695],[114.16696,22.36697],[114.16697,22.36698],[114.16699,22.36699],[114.167,22.36701],[114.16701,22.36702],[114.16703,22.36703],[114.16704,22.36705],[114.16705,22.36706],[114.16706,22.36708],[114.16707,22.36709],[114.16708,22.36711],[114.16709,22.36712],[114.1671,22.36714],[114.1671,22.36714],[114.16711,22.36716],[114.16712,22.36717],[114.16713,22.36719],[114.16713,22.36719],[114.16711,22.36719],[114.16709,22.36719],[114.16707,22.3672],[114.16705,22.3672],[114.16703,22.3672],[114.16701,22.36721],[114.16699,22.36722],[114.16698,22.36722],[114.16696,22.36723],[114.16694,22.36724],[114.16692,22.36725],[114.16691,22.36726],[114.16689,22.36727],[114.16688,22.36728],[114.16686,22.36729],[114.16685,22.3673],[114.16683,22.36732],[114.16682,22.36733],[114.16681,22.36734],[114.1668,22.36736],[114.16679,22.36737],[114.16678,22.36739],[114.16677,22.36741],[114.16676,22.36742],[114.16676,22.36744],[114.16675,22.36746],[114.16675,22.36748],[114.16674,22.36749],[114.16674,22.36751],[114.16674,22.36753],[114.16673,22.36755],[114.16673,22.36757],[114.16673,22.36758],[114.16672,22.3676],[114.16672,22.36762],[114.16672,22.36764],[114.16672,22.36765],[114.16671,22.36767],[114.16671,22.36769],[114.16671,22.36771],[114.16671,22.36773],[114.16671,22.36774],[114.1667,22.36776],[114.16671,22.36778],[114.16671,22.3678],[114.16671,22.36782],[114.16671,22.36783],[114.16672,22.36785],[114.16673,22.36787],[114.16674,22.36788],[114.16676,22.36789],[114.16677,22.36791],[114.16679,22.36792],[114.1668,22.36793],[114.16682,22.36794],[114.16684,22.36794],[114.16686,22.36794],[114.16688,22.36794],[114.1669,22.36794],[114.16692,22.36795],[114.16694,22.36795],[114.16696,22.36795],[114.16698,22.36795],[114.16699,22.36795],[114.16701,22.36795],[114.16703,22.36796],[114.16705,22.36796],[114.16707,22.36796],[114.16709,22.36796],[114.16711,22.36797],[114.16713,22.36797],[114.16715,22.36797],[114.16717,22.36798],[114.16719,22.36799],[114.1672,22.36799],[114.16722,22.368],[114.16723,22.36801],[114.16725,22.36803],[114.16726,22.36804],[114.16727,22.36805],[114.16728,22.36807],[114.1673,22.36808],[114.16731,22.3681],[114.16732,22.36811],[114.16733,22.36813],[114.16734,22.36815],[114.16735,22.36816],[114.16736,22.36818],[114.16737,22.36819],[114.16738,22.36821],[114.16739,22.36822],[114.1674,22.36824],[114.16741,22.36826],[114.16742,22.36827],[114.16742,22.36829],[114.16743,22.36831],[114.16744,22.36832],[114.16744,22.36834],[114.16745,22.36836],[114.16746,22.36837],[114.16746,22.36839],[114.16747,22.36841],[114.16747,22.36842],[114.16748,22.36844],[114.16748,22.36846],[114.16749,22.36848],[114.16749,22.36849],[114.1675,22.36851],[114.1675,22.36853],[114.16751,22.36855],[114.16751,22.36857],[114.16751,22.36858],[114.16752,22.3686],[114.16752,22.36862],[114.16752,22.36864],[114.16753,22.36866],[114.16753,22.36867],[114.16753,22.36869],[114.16753,22.36871],[114.16754,22.36873],[114.16754,22.36874],[114.16754,22.36876],[114.16754,22.36878],[114.16754,22.3688],[114.16754,22.36882],[114.16754,22.36883],[114.16754,22.36885],[114.16754,22.36887],[114.16754,22.36889],[114.16754,22.36891],[114.16753,22.36892],[114.16753,22.36894],[114.16753,22.36896],[114.16752,22.36898],[114.16752,22.369],[114.16751,22.36901],[114.16751,22.36903],[114.1675,22.36905],[114.1675,22.36907],[114.16749,22.36908],[114.16749,22.3691],[114.16748,22.36912],[114.16747,22.36914],[114.16747,22.36915],[114.16746,22.36917],[114.16745,22.36919],[114.16744,22.3692],[114.16743,22.36922],[114.16742,22.36923],[114.16741,22.36924],[114.16739,22.36925],[114.16738,22.36927],[114.16695,22.3696],[114.16606,22.3703],[114.1664,22.37054],[114.16634,22.37058],[114.16632,22.37059],[114.1663,22.3706],[114.16629,22.37061],[114.16627,22.37062],[114.16626,22.37063],[114.16624,22.37064],[114.16622,22.37065],[114.16621,22.37066],[114.16619,22.37067],[114.16618,22.37068],[114.16616,22.37069],[114.16614,22.3707],[114.16613,22.37071],[114.16611,22.37072],[114.16609,22.37073],[114.16608,22.37074],[114.16606,22.37075],[114.16605,22.37076],[114.16603,22.37077],[114.16601,22.37078],[114.166,22.37079],[114.16598,22.3708],[114.16597,22.37081],[114.16595,22.37082],[114.16594,22.37083],[114.16592,22.37084],[114.1659,22.37085],[114.16589,22.37086],[114.16587,22.37088],[114.16586,22.37089],[114.16584,22.3709],[114.16583,22.37091],[114.16581,22.37092],[114.1658,22.37093],[114.16578,22.37094],[114.16577,22.37095],[114.16575,22.37096],[114.16574,22.37098],[114.16572,22.37099],[114.16571,22.371],[114.16569,22.37101],[114.16568,22.37102],[114.16566,22.37103],[114.16565,22.37104],[114.16563,22.37106],[114.16562,22.37107],[114.1656,22.37108],[114.16559,22.37109],[114.16557,22.3711],[114.16556,22.37111],[114.16554,22.37113],[114.16553,22.37114],[114.16551,22.37115],[114.1655,22.37116],[114.16548,22.37117],[114.16547,22.37118],[114.16545,22.37119],[114.16544,22.37121],[114.16542,22.37122],[114.16541,22.37123],[114.16539,22.37124],[114.16537,22.37125],[114.16536,22.37126],[114.16534,22.37127],[114.16533,22.37128],[114.16531,22.37129],[114.1653,22.37131],[114.16528,22.37132],[114.16527,22.37132],[114.16517,22.37142],[114.16515,22.37143],[114.16512,22.37146],[114.1651,22.37147],[114.16506,22.37149],[114.16501,22.37153],[114.16499,22.37155],[114.16498,22.37156],[114.16491,22.37163],[114.16489,22.37164],[114.16484,22.37169],[114.16483,22.3717],[114.16481,22.37173],[114.1648,22.37174],[114.16477,22.37176],[114.16474,22.37179],[114.16473,22.3718],[114.1647,22.37183],[114.16467,22.37186],[114.16464,22.37189],[114.16456,22.372],[114.16454,22.37202],[114.16453,22.37204],[114.16448,22.37211],[114.16445,22.37214],[114.16443,22.37217],[114.16442,22.37218],[114.16441,22.3722],[114.1644,22.37221],[114.1644,22.37222],[114.1644,22.37223],[114.16439,22.37224],[114.16439,22.37226],[114.16435,22.37232],[114.16433,22.37236],[114.16433,22.37237],[114.16432,22.37239],[114.16431,22.37242],[114.16431,22.37244],[114.16429,22.37247],[114.16428,22.37251],[114.16427,22.37253],[114.16426,22.37254],[114.16425,22.37256],[114.16424,22.37259],[114.16423,22.37261],[114.16423,22.37263],[114.16422,22.37264],[114.16422,22.37266],[114.16421,22.37267],[114.1642,22.3727],[114.16419,22.37271],[114.16417,22.37274],[114.16417,22.37275],[114.16416,22.37278],[114.16416,22.37281],[114.16415,22.37283],[114.16415,22.37285],[114.16414,22.37286],[114.16414,22.37287],[114.16413,22.37289],[114.16413,22.3729],[114.16413,22.37291],[114.16412,22.37293],[114.16412,22.37295],[114.16412,22.37296],[114.16412,22.37297],[114.16412,22.37299],[114.1641,22.37309],[114.16409,22.37313],[114.16405,22.37327],[114.16398,22.3735],[114.16387,22.37381],[114.16375,22.37411],[114.16365,22.37434],[114.16347,22.37473],[114.16331,22.37502],[114.16322,22.37514],[114.16313,22.37524],[114.16305,22.37531],[114.16297,22.37536],[114.16287,22.3754],[114.16276,22.37543],[114.16261,22.37548],[114.1625,22.37552],[114.16233,22.37559],[114.16217,22.37566],[114.16201,22.37575],[114.16179,22.37588],[114.1615,22.37607],[114.16128,22.37628],[114.1611,22.37648],[114.1609,22.37679],[114.16077,22.37703],[114.16063,22.3774],[114.16049,22.37788],[114.16043,22.3783],[114.16042,22.37887],[114.16049,22.37978],[114.16071,22.3813],[114.16095,22.38251],[114.16615,22.38632],[114.1717,22.39038],[114.17587,22.39066],[114.1775,22.39072],[114.17817,22.3907],[114.17818,22.3907],[114.1782,22.3907],[114.17822,22.3907],[114.17824,22.3907],[114.17826,22.39069],[114.17828,22.39069],[114.1783,22.39069],[114.17831,22.39069],[114.17833,22.39069],[114.17835,22.39068],[114.17837,22.39068],[114.17839,22.39068],[114.17841,22.39068],[114.17843,22.39067],[114.17845,22.39067],[114.17847,22.39067],[114.17849,22.39067],[114.17851,22.39066],[114.17853,22.39066],[114.17854,22.39066],[114.17856,22.39065],[114.17858,22.39065],[114.1786,22.39064],[114.17862,22.39064],[114.17864,22.39064],[114.17866,22.39063],[114.17868,22.39063],[114.1787,22.39062],[114.17872,22.39062],[114.17873,22.39062],[114.17875,22.39061],[114.17877,22.39061],[114.17879,22.3906],[114.17881,22.3906],[114.17883,22.39059],[114.17885,22.39059],[114.17887,22.39058],[114.17888,22.39058],[114.1789,22.39057],[114.17892,22.39057],[114.17894,22.39057],[114.17896,22.39056],[114.17898,22.39056],[114.179,22.39055],[114.17902,22.39055],[114.17903,22.39054],[114.17905,22.39054],[114.17907,22.39053],[114.17909,22.39053],[114.17911,22.39052],[114.17913,22.39051],[114.17915,22.39051],[114.17916,22.3905],[114.17918,22.3905],[114.1792,22.39049],[114.17922,22.39049],[114.17924,22.39048],[114.17926,22.39048],[114.17928,22.39047],[114.17929,22.39046],[114.17931,22.39046],[114.17933,22.39045],[114.17935,22.39045],[114.17937,22.39044],[114.17938,22.39043],[114.1794,22.39042],[114.17942,22.39042],[114.17944,22.39041],[114.17946,22.3904],[114.17947,22.39039],[114.17949,22.39039],[114.17951,22.39038],[114.17952,22.39037],[114.17954,22.39036],[114.17956,22.39035],[114.17958,22.39035],[114.17959,22.39034],[114.17961,22.39033],[114.17963,22.39032],[114.17964,22.39031],[114.17966,22.3903],[114.17968,22.39029],[114.17969,22.39028],[114.17971,22.39027],[114.17973,22.39026],[114.17975,22.39026],[114.17976,22.39025],[114.17978,22.39024],[114.1798,22.39023],[114.17981,22.39022],[114.17983,22.39021],[114.17985,22.3902],[114.17986,22.39019],[114.17988,22.39018],[114.1799,22.39018],[114.17991,22.39017],[114.17993,22.39016],[114.17995,22.39015],[114.17996,22.39014],[114.17998,22.39013],[114.18,22.39012],[114.18001,22.39011],[114.18003,22.3901],[114.18005,22.39009],[114.18006,22.39008],[114.18008,22.39007],[114.1801,22.39006],[114.18011,22.39006],[114.18013,22.39005],[114.18015,22.39004],[114.18017,22.39003],[114.18018,22.39002],[114.1802,22.39001],[114.18022,22.39],[114.18023,22.38999],[114.18025,22.38998],[114.18027,22.38998],[114.18028,22.38997],[114.1803,22.38996],[114.18032,22.38995],[114.18033,22.38994],[114.18035,22.38993],[114.18037,22.38992],[114.18039,22.38992],[114.1804,22.38991],[114.18042,22.3899],[114.18044,22.38989],[114.18046,22.38988],[114.18047,22.38987],[114.18049,22.38987],[114.18051,22.38986],[114.18053,22.38985],[114.18054,22.38984],[114.18056,22.38984],[114.18058,22.38983],[114.1806,22.38983],[114.18062,22.38982],[114.18064,22.38982],[114.18065,22.38981],[114.18067,22.38981],[114.18069,22.3898],[114.18071,22.3898],[114.18073,22.3898],[114.18075,22.3898],[114.18077,22.38979],[114.18079,22.38979],[114.18081,22.38979],[114.18083,22.38979],[114.18085,22.3898],[114.18087,22.3898],[114.18089,22.3898],[114.1809,22.38981],[114.18092,22.38981],[114.18094,22.38982],[114.18096,22.38982],[114.18098,22.38983],[114.181,22.38983],[114.18102,22.38984],[114.18103,22.38985],[114.18105,22.38985],[114.18107,22.38986],[114.18109,22.38986],[114.18111,22.38987],[114.18112,22.38988],[114.18114,22.38989],[114.18116,22.38989],[114.18118,22.3899],[114.1812,22.38991],[114.18121,22.38991],[114.18123,22.38992],[114.18125,22.38993],[114.18127,22.38994],[114.18128,22.38995],[114.1813,22.38995],[114.18132,22.38996],[114.18134,22.38997],[114.18135,22.38998],[114.18137,22.38999],[114.18139,22.39],[114.1814,22.39001],[114.18142,22.39002],[114.18144,22.39003],[114.18145,22.39004],[114.18147,22.39005],[114.18148,22.39006],[114.1815,22.39007],[114.18151,22.39008],[114.18153,22.39009],[114.18155,22.3901],[114.18156,22.39011],[114.18158,22.39012],[114.18159,22.39013],[114.18161,22.39015],[114.18162,22.39016],[114.18164,22.39017],[114.18165,22.39018],[114.18166,22.3902],[114.18168,22.39021],[114.18169,22.39022],[114.1817,22.39024],[114.18171,22.39025],[114.18173,22.39026],[114.18174,22.39028],[114.18175,22.39029],[114.18176,22.39031],[114.18178,22.39032],[114.18179,22.39033],[114.1818,22.39035],[114.18181,22.39036],[114.18182,22.39038],[114.18183,22.39039],[114.18184,22.39041],[114.18186,22.39042],[114.18187,22.39044],[114.18188,22.39045],[114.18189,22.39047],[114.1819,22.39048],[114.18191,22.3905],[114.18192,22.39051],[114.18193,22.39053],[114.18194,22.39054],[114.18195,22.39056],[114.18196,22.39057],[114.18197,22.39059],[114.18198,22.3906],[114.18199,22.39062],[114.182,22.39063],[114.18201,22.39065],[114.18202,22.39067],[114.18203,22.39068],[114.18204,22.3907],[114.18205,22.39071],[114.18206,22.39073],[114.18207,22.39074],[114.18208,22.39076],[114.18209,22.39078],[114.1821,22.39079],[114.18211,22.39081],[114.18212,22.39082],[114.18213,22.39084],[114.18214,22.39085],[114.18215,22.39087],[114.18216,22.39089],[114.18217,22.3909],[114.18218,22.39092],[114.18219,22.39093],[114.18219,22.39095],[114.1822,22.39096],[114.18221,22.39098],[114.18222,22.391],[114.18223,22.39101],[114.18224,22.39103],[114.18226,22.39106],[114.18224,22.39106],[114.18222,22.39106],[114.1822,22.39107],[114.18218,22.39107],[114.18216,22.39107],[114.18213,22.39108],[114.18211,22.39108],[114.18209,22.39108],[114.18207,22.39108],[114.18205,22.39109],[114.18203,22.39109],[114.18201,22.39109],[114.18199,22.39109],[114.18197,22.3911],[114.18195,22.3911],[114.18193,22.3911],[114.18191,22.39111],[114.1819,22.39111],[114.18188,22.39111],[114.18186,22.39112],[114.18184,22.39112],[114.18182,22.39113],[114.1818,22.39113],[114.18178,22.39113],[114.18176,22.39114],[114.18174,22.39114],[114.18173,22.39115],[114.18171,22.39115],[114.18169,22.39116],[114.18167,22.39116],[114.18165,22.39117],[114.18163,22.39117],[114.18161,22.39118],[114.18159,22.39118],[114.18158,22.39119],[114.18156,22.39119],[114.18154,22.3912],[114.18152,22.3912],[114.18148,22.39121],[114.18146,22.39121],[114.18144,22.39122],[114.18143,22.39122],[114.18141,22.39123],[114.18139,22.39123],[114.18137,22.39124],[114.18135,22.39124],[114.18133,22.39125],[114.18131,22.39125],[114.18129,22.39126],[114.18128,22.39126],[114.18126,22.39127],[114.18124,22.39127],[114.18122,22.39128],[114.1812,22.39128],[114.18118,22.39128],[114.18116,22.39129],[114.18114,22.39129],[114.18112,22.39129],[114.1811,22.3913],[114.18109,22.3913],[114.18107,22.3913],[114.18105,22.39131],[114.18103,22.39131],[114.18101,22.39131],[114.18099,22.39131],[114.18097,22.39132],[114.18095,22.39132],[114.18093,22.39132],[114.18091,22.39132],[114.18089,22.39133],[114.18087,22.39133],[114.18085,22.39133],[114.18084,22.39133],[114.18082,22.39134],[114.1808,22.39134],[114.18078,22.39134],[114.18076,22.39134],[114.18074,22.39134],[114.18072,22.39134],[114.1807,22.39134],[114.18068,22.39134],[114.18066,22.39134],[114.18064,22.39134],[114.18062,22.39134],[114.1806,22.39134],[114.18058,22.39134],[114.18056,22.39134],[114.18055,22.39134],[114.18053,22.39134],[114.18051,22.39134],[114.18049,22.39134],[114.18047,22.39134],[114.18045,22.39133],[114.18043,22.39133],[114.18041,22.39133],[114.18039,22.39133],[114.18037,22.39133],[114.18035,22.39133],[114.18033,22.39133],[114.18031,22.39132],[114.18029,22.39132],[114.18027,22.39132],[114.18025,22.39132],[114.18023,22.39132],[114.18022,22.39132],[114.1802,22.39132],[114.18018,22.39132],[114.18016,22.39132],[114.18014,22.39131],[114.18012,22.39131],[114.1801,22.39131],[114.18008,22.39131],[114.18006,22.39131],[114.18004,22.39131],[114.18003,22.39132],[114.18002,22.39134],[114.18001,22.39136],[114.18001,22.39138],[114.18,22.39139],[114.17999,22.39141],[114.17998,22.39143],[114.17998,22.39144],[114.17997,22.39146],[114.17996,22.39147],[114.17995,22.39149],[114.17994,22.39151],[114.17993,22.39152],[114.17992,22.39154],[114.17991,22.39155],[114.1799,22.39157],[114.1799,22.39159],[114.17989,22.3916],[114.17988,22.39162],[114.17987,22.39163],[114.17986,22.39165],[114.17985,22.39166],[114.17984,22.39168],[114.17983,22.3917],[114.17982,22.39171],[114.1798,22.39173],[114.17979,22.39174],[114.17978,22.39175],[114.17977,22.39177],[114.17976,22.39178],[114.17975,22.3918],[114.17974,22.39181],[114.17972,22.39183],[114.17971,22.39184],[114.1797,22.39186],[114.17969,22.39187],[114.17968,22.39188],[114.17966,22.3919],[114.17965,22.39191],[114.17964,22.39192],[114.17962,22.39194],[114.17961,22.39195],[114.1796,22.39196],[114.17958,22.39198],[114.17957,22.39199],[114.17955,22.392],[114.17954,22.39201],[114.17952,22.39202],[114.17951,22.39204],[114.17949,22.39205],[114.17948,22.39206],[114.17946,22.39207],[114.17945,22.39208],[114.17943,22.39209],[114.17942,22.3921],[114.1794,22.39211],[114.17939,22.39213],[114.17937,22.39214],[114.17936,22.39215],[114.17934,22.39216],[114.17933,22.39217],[114.17931,22.39218],[114.1793,22.3922],[114.17928,22.39221],[114.17927,22.39222],[114.17926,22.39223],[114.17924,22.39225],[114.17923,22.39226],[114.17922,22.39227],[114.17921,22.39229],[114.17919,22.3923],[114.17918,22.39232],[114.17917,22.39233],[114.17916,22.39235],[114.17915,22.39236],[114.17914,22.39238],[114.17913,22.3924],[114.17912,22.39241],[114.17912,22.39243],[114.17911,22.39244],[114.1791,22.39246],[114.1791,22.39248],[114.17909,22.3925],[114.17909,22.39251],[114.17908,22.39253],[114.17908,22.39255],[114.17908,22.39257],[114.17907,22.39259],[114.17907,22.3926],[114.17907,22.39262],[114.17906,22.39264],[114.17906,22.39266],[114.17906,22.39267],[114.17906,22.39269],[114.17906,22.39271],[114.17905,22.39273],[114.17905,22.39275],[114.17905,22.39277],[114.17905,22.39278],[114.17905,22.3928],[114.17905,22.39282],[114.17905,22.39284],[114.17905,22.39286],[114.17905,22.39287],[114.17905,22.39289],[114.17906,22.39291],[114.17906,22.39293],[114.17906,22.39295],[114.17907,22.39296],[114.17907,22.39298],[114.17908,22.393],[114.17909,22.39301],[114.17909,22.39303],[114.1791,22.39305],[114.17911,22.39306],[114.17912,22.39308],[114.17913,22.3931],[114.17914,22.39311],[114.17914,22.39313],[114.17915,22.39314],[114.17916,22.39316],[114.17917,22.39318],[114.17918,22.3932],[114.17918,22.39322],[114.17918,22.39323],[114.17918,22.39325],[114.17918,22.39327],[114.17917,22.39328],[114.17916,22.3933],[114.17915,22.39331],[114.17913,22.39333],[114.17912,22.39334],[114.1791,22.39335],[114.17908,22.39335],[114.17906,22.39336],[114.17904,22.39336],[114.17903,22.39337],[114.17901,22.39337],[114.17899,22.39338],[114.17897,22.39338],[114.17895,22.39339],[114.17893,22.39339],[114.17892,22.3934],[114.1789,22.39341],[114.17888,22.39342],[114.17886,22.39343],[114.17885,22.39344],[114.17883,22.39345],[114.17882,22.39346],[114.1788,22.39347],[114.17879,22.39348],[114.17877,22.39349],[114.17876,22.39351],[114.17874,22.39352],[114.17873,22.39353],[114.17872,22.39355],[114.17871,22.39356],[114.17869,22.39357],[114.17868,22.39359],[114.17867,22.3936],[114.17866,22.39362],[114.17865,22.39363],[114.17863,22.39365],[114.17862,22.39366],[114.17861,22.39368],[114.1786,22.39369],[114.17859,22.39371],[114.17858,22.39372],[114.17857,22.39374],[114.17856,22.39375],[114.17855,22.39377],[114.17854,22.39378],[114.17853,22.3938],[114.17852,22.39381],[114.17851,22.39383],[114.1785,22.39384],[114.17849,22.39386],[114.17848,22.39387],[114.17847,22.39389],[114.17846,22.3939],[114.17844,22.39392],[114.17843,22.39393],[114.17842,22.39395],[114.17841,22.39396],[114.1784,22.39398],[114.17838,22.39399],[114.17837,22.394],[114.17836,22.39402],[114.17834,22.39403],[114.17833,22.39404],[114.17831,22.39405],[114.1783,22.39406],[114.17828,22.39407],[114.17827,22.39408],[114.17825,22.39409],[114.17823,22.3941],[114.17822,22.39411],[114.1782,22.39412],[114.17818,22.39413],[114.17816,22.39414],[114.17815,22.39414],[114.17813,22.39414],[114.17811,22.39414],[114.17809,22.39414],[114.17807,22.39414],[114.17805,22.39414],[114.17803,22.39413],[114.17801,22.39412],[114.17799,22.39412],[114.17798,22.39411],[114.17796,22.3941],[114.17794,22.39409],[114.17792,22.39408],[114.17791,22.39408],[114.17789,22.39408],[114.17787,22.39408],[114.17785,22.39408],[114.17783,22.39408],[114.17781,22.39408],[114.17779,22.39409],[114.17777,22.3941],[114.17776,22.39411],[114.17775,22.39413],[114.17774,22.39414],[114.17773,22.39416],[114.17772,22.39417],[114.17771,22.39419],[114.17771,22.39421],[114.1777,22.39423],[114.1777,22.39424],[114.1777,22.39426],[114.1777,22.39428],[114.1777,22.3943],[114.1777,22.39432],[114.17769,22.39433],[114.17768,22.39435],[114.17767,22.39436],[114.17765,22.39437],[114.17764,22.39439],[114.17762,22.3944],[114.17761,22.39441],[114.17759,22.39442],[114.17757,22.39442],[114.17755,22.39443],[114.17754,22.39444],[114.17752,22.39444],[114.1775,22.39445],[114.17748,22.39445],[114.17746,22.39445],[114.17744,22.39446],[114.17742,22.39446],[114.1774,22.39446],[114.17738,22.39446],[114.17736,22.39446],[114.17735,22.39446],[114.17733,22.39445],[114.17731,22.39445],[114.17729,22.39445],[114.17727,22.39444],[114.17725,22.39444],[114.17723,22.39444],[114.17721,22.39444],[114.17719,22.39444],[114.17717,22.39444],[114.17715,22.39445],[114.17714,22.39445],[114.17712,22.39446],[114.1771,22.39447],[114.17708,22.39448],[114.17707,22.39449],[114.17705,22.3945],[114.17704,22.39452],[114.17703,22.39453],[114.17703,22.39455],[114.17702,22.39457],[114.17701,22.39458],[114.177,22.3946],[114.17699,22.39461],[114.17698,22.39463],[114.17696,22.39464],[114.17695,22.39465],[114.17693,22.39466],[114.17691,22.39467],[114.1769,22.39467],[114.17688,22.39468],[114.17686,22.39468],[114.17684,22.39468],[114.17682,22.39469],[114.1768,22.39469],[114.17678,22.3947],[114.17676,22.3947],[114.17674,22.39471],[114.17672,22.39471],[114.17671,22.39471],[114.17669,22.39472],[114.17667,22.39472],[114.17665,22.39473],[114.17663,22.39473],[114.17661,22.39474],[114.17659,22.39474],[114.17657,22.39475],[114.17656,22.39475],[114.17654,22.39476],[114.17652,22.39476],[114.1765,22.39477],[114.17648,22.39477],[114.17646,22.39478],[114.17645,22.39479],[114.17643,22.39479],[114.17641,22.3948],[114.17639,22.39481],[114.17637,22.39481],[114.17636,22.39482],[114.17634,22.39483],[114.17632,22.39484],[114.1763,22.39485],[114.17629,22.39485],[114.17627,22.39486],[114.17625,22.39487],[114.17624,22.39488],[114.17622,22.39489],[114.1762,22.3949],[114.17619,22.39491],[114.17617,22.39492],[114.17615,22.39493],[114.17614,22.39494],[114.17612,22.39495],[114.17611,22.39496],[114.17609,22.39497],[114.17608,22.39498],[114.17606,22.39499],[114.17605,22.39501],[114.17603,22.39502],[114.17602,22.39503],[114.176,22.39504],[114.17599,22.39506],[114.17598,22.39507],[114.17596,22.39508],[114.17595,22.3951],[114.17594,22.39511],[114.17592,22.39512],[114.17591,22.39514],[114.1759,22.39515],[114.17589,22.39516],[114.17587,22.39518],[114.17587,22.39519],[114.17586,22.39519],[114.17586,22.3952],[114.17585,22.39521],[114.17584,22.39522],[114.17583,22.39524],[114.17582,22.39525],[114.17581,22.39527],[114.1758,22.39528],[114.17579,22.3953],[114.17578,22.39532],[114.17578,22.39533],[114.17577,22.39535],[114.17576,22.39537],[114.17575,22.39538],[114.17574,22.3954],[114.17573,22.39541],[114.17572,22.39543],[114.17571,22.39545],[114.1757,22.39546],[114.17569,22.39548],[114.17568,22.3955],[114.17567,22.39552],[114.17566,22.39554],[114.17565,22.39555],[114.17565,22.39557],[114.17565,22.39559],[114.17565,22.39561],[114.17566,22.39562],[114.17566,22.39564],[114.17567,22.39566],[114.17568,22.39568],[114.17569,22.39569],[114.17569,22.39571],[114.1757,22.39572],[114.17572,22.39574],[114.17573,22.39575],[114.17574,22.39577],[114.17575,22.39578],[114.17577,22.39579],[114.17578,22.39581],[114.1758,22.39582],[114.17581,22.39583],[114.17583,22.39584],[114.17585,22.39585],[114.17587,22.39585],[114.17588,22.39586],[114.1759,22.39586],[114.17592,22.39586],[114.17594,22.39586],[114.17596,22.39586],[114.17598,22.39585],[114.176,22.39585],[114.17602,22.39585],[114.17604,22.39585],[114.17606,22.39584],[114.17608,22.39584],[114.1761,22.39584],[114.17612,22.39583],[114.17613,22.39583],[114.17615,22.39582],[114.17617,22.39581],[114.17619,22.39581],[114.1762,22.3958],[114.17622,22.39579],[114.17624,22.39578],[114.17625,22.39577],[114.17627,22.39576],[114.17629,22.39575],[114.1763,22.39574],[114.17632,22.39573],[114.17634,22.39572],[114.17635,22.39571],[114.17637,22.3957],[114.17639,22.3957],[114.17641,22.39569],[114.17643,22.39569],[114.17645,22.39568],[114.17646,22.39568],[114.17648,22.39568],[114.1765,22.39568],[114.17652,22.39569],[114.17654,22.3957],[114.17656,22.3957],[114.17657,22.39571],[114.17659,22.39572],[114.17661,22.39574],[114.17662,22.39575],[114.17663,22.39576],[114.17664,22.39578],[114.17664,22.3958],[114.17665,22.39582],[114.17665,22.39583],[114.17665,22.39585],[114.17665,22.39587],[114.17666,22.39589],[114.17667,22.3959],[114.17668,22.39591],[114.1767,22.39592],[114.17672,22.39592],[114.17674,22.39591],[114.17675,22.3959],[114.17677,22.39589],[114.17679,22.39588],[114.1768,22.39587],[114.17682,22.39586],[114.17684,22.39585],[114.17685,22.39584],[114.17687,22.39583],[114.17689,22.39582],[114.1769,22.39581],[114.17692,22.39581],[114.17694,22.3958],[114.17696,22.3958],[114.17698,22.39579],[114.177,22.39579],[114.17702,22.39579],[114.17704,22.39579],[114.17706,22.39579],[114.17708,22.39579],[114.1771,22.39579],[114.17711,22.39579],[114.17713,22.39578],[114.17715,22.39578],[114.17717,22.39577],[114.17719,22.39577],[114.17721,22.39578],[114.17722,22.39579],[114.17724,22.3958],[114.17725,22.39582],[114.17726,22.39584],[114.17726,22.39585],[114.17726,22.39587],[114.17726,22.39589],[114.17726,22.39591],[114.17726,22.39593],[114.17726,22.39594],[114.17726,22.39596],[114.17725,22.39598],[114.17726,22.396],[114.17726,22.39602],[114.17727,22.39603],[114.17727,22.39605],[114.17729,22.39606],[114.1773,22.39608],[114.17731,22.39609],[114.17733,22.3961],[114.17734,22.39611],[114.17736,22.39612],[114.17738,22.39613],[114.1774,22.39614],[114.17741,22.39614],[114.17743,22.39615],[114.17745,22.39616],[114.17747,22.39616],[114.17749,22.39617],[114.1775,22.39618],[114.17752,22.39618],[114.17754,22.39619],[114.17756,22.39619],[114.17758,22.3962],[114.1776,22.39621],[114.17761,22.39621],[114.17763,22.39622],[114.17765,22.39622],[114.17767,22.39623],[114.17769,22.39624],[114.17771,22.39624],[114.17772,22.39625],[114.17774,22.39625],[114.17776,22.39626],[114.17778,22.39626],[114.1778,22.39627],[114.17782,22.39628],[114.17784,22.39628],[114.17785,22.39629],[114.17787,22.39629],[114.17789,22.3963],[114.17791,22.39631],[114.17793,22.39631],[114.17795,22.39632],[114.17796,22.39632],[114.17798,22.39633],[114.178,22.39634],[114.17802,22.39634],[114.17804,22.39635],[114.17806,22.39635],[114.17807,22.39636],[114.17809,22.39636],[114.17811,22.39637],[114.17813,22.39638],[114.17815,22.39638],[114.17817,22.39639],[114.17819,22.39639],[114.1782,22.3964],[114.17822,22.3964],[114.17824,22.39641],[114.17826,22.39641],[114.17828,22.39642],[114.1783,22.39642],[114.17832,22.39642],[114.17834,22.39642],[114.17835,22.39642],[114.17837,22.39641],[114.17839,22.39639],[114.1784,22.39638],[114.17841,22.39637],[114.17843,22.39635],[114.17844,22.39634],[114.17845,22.39632],[114.17846,22.3963],[114.17847,22.39629],[114.17847,22.39627],[114.17849,22.39626],[114.1785,22.39624],[114.17851,22.39623],[114.17852,22.39622],[114.17853,22.3962],[114.17855,22.39619],[114.17856,22.39618],[114.17858,22.39616],[114.17859,22.39615],[114.17861,22.39614],[114.17862,22.39613],[114.17864,22.39612],[114.17866,22.39611],[114.17867,22.3961],[114.17869,22.3961],[114.17871,22.39609],[114.17873,22.39608],[114.17875,22.39608],[114.17876,22.39607],[114.17878,22.39607],[114.1788,22.39606],[114.17882,22.39606],[114.17884,22.39606],[114.17886,22.39605],[114.17888,22.39605],[114.1789,22.39605],[114.17892,22.39605],[114.17894,22.39605],[114.17896,22.39605],[114.17898,22.39605],[114.179,22.39605],[114.17901,22.39604],[114.17903,22.39603],[114.17903,22.39601],[114.17904,22.39599],[114.17904,22.39597],[114.17905,22.39596],[114.17906,22.39594],[114.17907,22.39593],[114.17909,22.39592],[114.1791,22.39591],[114.17912,22.39589],[114.17913,22.39588],[114.17915,22.39587],[114.17917,22.39587],[114.17919,22.39586],[114.1792,22.39585],[114.17922,22.39585],[114.17924,22.39584],[114.17926,22.39584],[114.17928,22.39584],[114.1793,22.39584],[114.17932,22.39584],[114.17934,22.39584],[114.17936,22.39585],[114.17938,22.39585],[114.1794,22.39586],[114.17942,22.39587],[114.17943,22.39588],[114.17945,22.39589],[114.17946,22.3959],[114.17947,22.39591],[114.17948,22.39593],[114.17949,22.39595],[114.17949,22.39597],[114.1795,22.39598],[114.17951,22.396],[114.17952,22.39601],[114.17953,22.39603],[114.17954,22.39605],[114.17955,22.39606],[114.17957,22.39607],[114.17959,22.39608],[114.1796,22.39608],[114.17962,22.39609],[114.17964,22.39609],[114.17966,22.39609],[114.17968,22.3961],[114.1797,22.3961],[114.17972,22.39611],[114.17974,22.3961],[114.17976,22.3961],[114.17978,22.39609],[114.17979,22.39608],[114.17981,22.39607],[114.17983,22.39606],[114.17984,22.39605],[114.17985,22.39603],[114.17986,22.39602],[114.17988,22.39601],[114.17989,22.39599],[114.1799,22.39598],[114.17992,22.39597],[114.17994,22.39597],[114.17996,22.39596],[114.17998,22.39596],[114.18,22.39597],[114.18002,22.39597],[114.18004,22.39598],[114.18005,22.39599],[114.18007,22.396],[114.18008,22.39601],[114.1801,22.39602],[114.18011,22.39603],[114.18013,22.39604],[114.18015,22.39604],[114.18017,22.39604],[114.18019,22.39604],[114.18021,22.39604],[114.18023,22.39603],[114.18025,22.39603],[114.18027,22.39602],[114.18029,22.39602],[114.18031,22.39602],[114.18032,22.39603],[114.18034,22.39603],[114.18036,22.39603],[114.18038,22.39604],[114.1804,22.39604],[114.18042,22.39603],[114.18044,22.39603],[114.18046,22.39602],[114.18047,22.39602],[114.18049,22.396],[114.1805,22.39599],[114.18052,22.39598],[114.18053,22.39596],[114.18055,22.39596],[114.18057,22.39595],[114.18058,22.39594],[114.1806,22.39594],[114.18062,22.39594],[114.18064,22.39594],[114.18066,22.39594],[114.18068,22.39594],[114.1807,22.39594],[114.18072,22.39595],[114.18074,22.39595],[114.18076,22.39595],[114.18078,22.39596],[114.1808,22.39596],[114.18082,22.39596],[114.18084,22.39597],[114.18086,22.39597],[114.18087,22.39597],[114.18089,22.39597],[114.18091,22.39597],[114.18093,22.39597],[114.18095,22.39596],[114.18097,22.39596],[114.18099,22.39595],[114.18101,22.39595],[114.18102,22.39594],[114.18104,22.39593],[114.18106,22.39593],[114.18108,22.39592],[114.1811,22.39591],[114.18111,22.3959],[114.18113,22.3959],[114.18115,22.39589],[114.18117,22.39589],[114.18119,22.39588],[114.18121,22.39587],[114.18122,22.39587],[114.18124,22.39586],[114.18126,22.39585],[114.18128,22.39585],[114.1813,22.39584],[114.18132,22.39584],[114.18133,22.39583],[114.18135,22.39582],[114.18137,22.39582],[114.18139,22.39581],[114.18141,22.3958],[114.18142,22.3958],[114.18146,22.39579],[114.18194,22.39615],[114.18192,22.39615],[114.1819,22.39616],[114.18189,22.39616],[114.18187,22.39617],[114.18185,22.39617],[114.18183,22.39618],[114.18181,22.39618],[114.18179,22.39619],[114.18177,22.39619],[114.18175,22.3962],[114.18174,22.3962],[114.18172,22.39621],[114.1817,22.39621],[114.18168,22.39622],[114.18166,22.39623],[114.18165,22.39623],[114.18163,22.39624],[114.18161,22.39625],[114.18159,22.39626],[114.18157,22.39626],[114.18156,22.39627],[114.18154,22.39628],[114.18152,22.39629],[114.18151,22.3963],[114.18149,22.39631],[114.18147,22.39632],[114.18146,22.39633],[114.18144,22.39634],[114.18143,22.39635],[114.18141,22.39636],[114.1814,22.39637],[114.18138,22.39638],[114.18136,22.39639],[114.18135,22.39641],[114.18133,22.39642],[114.18132,22.39643],[114.1813,22.39644],[114.18129,22.39645],[114.18127,22.39646],[114.18126,22.39648],[114.18125,22.39649],[114.18123,22.3965],[114.18122,22.39651],[114.1812,22.39652],[114.18119,22.39654],[114.18117,22.39655],[114.18116,22.39656],[114.18115,22.39657],[114.18113,22.39658],[114.18112,22.3966],[114.1811,22.39661],[114.18109,22.39662],[114.18107,22.39663],[114.18106,22.39664],[114.18104,22.39666],[114.18103,22.39667],[114.18101,22.39668],[114.181,22.39669],[114.18098,22.3967],[114.18097,22.39671],[114.18095,22.39672],[114.18094,22.39673],[114.18092,22.39675],[114.18091,22.39676],[114.18089,22.39677],[114.18087,22.39678],[114.18086,22.39679],[114.18084,22.39679],[114.18082,22.3968],[114.1808,22.39681],[114.18079,22.39682],[114.18077,22.39682],[114.18075,22.39683],[114.18073,22.39684],[114.18071,22.39684],[114.1807,22.39685],[114.18068,22.39686],[114.18066,22.39686],[114.18064,22.39687],[114.18062,22.39687],[114.1806,22.39688],[114.18058,22.39688],[114.18057,22.39689],[114.18055,22.39689],[114.18053,22.39689],[114.18051,22.39689],[114.18049,22.3969],[114.18047,22.3969],[114.18045,22.3969],[114.18043,22.3969],[114.18041,22.3969],[114.18039,22.39691],[114.18037,22.39691],[114.18035,22.39691],[114.18033,22.39692],[114.18032,22.39692],[114.1803,22.39692],[114.18028,22.39693],[114.18026,22.39693],[114.18024,22.39693],[114.18022,22.39694],[114.1802,22.39694],[114.18018,22.39695],[114.18016,22.39695],[114.18014,22.39695],[114.18013,22.39696],[114.18011,22.39696],[114.18009,22.39697],[114.18007,22.39697],[114.18005,22.39698],[114.18003,22.39698],[114.18001,22.39699],[114.17999,22.39699],[114.17998,22.397],[114.17996,22.397],[114.17994,22.39701],[114.17992,22.39701],[114.1799,22.39702],[114.17988,22.39702],[114.17987,22.39703],[114.17985,22.39704],[114.17983,22.39704],[114.17981,22.39705],[114.17979,22.39706],[114.17977,22.39706],[114.17976,22.39707],[114.17974,22.39708],[114.17972,22.39708],[114.1797,22.39709],[114.17968,22.3971],[114.17967,22.3971],[114.17965,22.39711],[114.17963,22.39712],[114.17961,22.39713],[114.1796,22.39714],[114.17958,22.39714],[114.17956,22.39715],[114.17954,22.39716],[114.17953,22.39717],[114.17951,22.39718],[114.17949,22.39718],[114.17948,22.39719],[114.17946,22.3972],[114.17944,22.39721],[114.17942,22.39722],[114.17941,22.39722],[114.17939,22.39723],[114.17937,22.39724],[114.17935,22.39725],[114.17934,22.39726],[114.17932,22.39726],[114.1793,22.39727],[114.17928,22.39728],[114.17927,22.39729],[114.17925,22.3973],[114.17923,22.39731],[114.17922,22.39732],[114.1792,22.39733],[114.17918,22.39734],[114.17917,22.39735],[114.17915,22.39736],[114.17914,22.39737],[114.17912,22.39738],[114.17911,22.3974],[114.1791,22.39741],[114.17909,22.39743],[114.17907,22.39744],[114.17906,22.39745],[114.17905,22.39747],[114.17904,22.39749],[114.17904,22.3975],[114.17903,22.39752],[114.17902,22.39754],[114.17901,22.39755],[114.17901,22.39757],[114.17901,22.39759],[114.179,22.39761],[114.179,22.39762],[114.179,22.39764],[114.179,22.39766],[114.179,22.39768],[114.179,22.3977],[114.179,22.39772],[114.179,22.39773],[114.17901,22.39775],[114.17901,22.39777],[114.17901,22.39779],[114.17901,22.39781],[114.17902,22.39782],[114.17902,22.39784],[114.17902,22.39786],[114.17903,22.39788],[114.17903,22.39789],[114.17904,22.39791],[114.17905,22.39793],[114.17905,22.39795],[114.17906,22.39796],[114.17907,22.39798],[114.17908,22.39799],[114.17909,22.39801],[114.17911,22.39802],[114.17912,22.39803],[114.17914,22.39804],[114.17916,22.39805],[114.17917,22.39806],[114.17919,22.39807],[114.1792,22.39808],[114.17922,22.39809],[114.17924,22.3981],[114.17925,22.39811],[114.17927,22.39812],[114.17929,22.39813],[114.17931,22.39814],[114.17932,22.39814],[114.17934,22.39815],[114.17936,22.39816],[114.17937,22.39817],[114.17939,22.39818],[114.17941,22.39819],[114.17943,22.39819],[114.17944,22.3982],[114.17946,22.39821],[114.17948,22.39822],[114.1795,22.39823],[114.17951,22.39823],[114.17953,22.39824],[114.17955,22.39825],[114.17957,22.39826],[114.17958,22.39826],[114.1796,22.39827],[114.17962,22.39828],[114.17964,22.39828],[114.17966,22.39829],[114.17968,22.39829],[114.1797,22.3983],[114.17971,22.3983],[114.17973,22.39831],[114.17975,22.39831],[114.17977,22.39831],[114.17979,22.39832],[114.17981,22.39832],[114.17983,22.39833],[114.17985,22.39833],[114.17986,22.39834],[114.1799,22.39834],[114.17992,22.39835],[114.17994,22.39835],[114.17996,22.39835],[114.17998,22.39836],[114.18,22.39836],[114.18001,22.39836],[114.18003,22.39836],[114.18005,22.39837],[114.18007,22.39837],[114.18009,22.39837],[114.18011,22.39837],[114.18013,22.39838],[114.18015,22.39838],[114.18017,22.39838],[114.18019,22.39838],[114.18021,22.39839],[114.18023,22.39839],[114.18024,22.39839],[114.18026,22.39839],[114.18028,22.3984],[114.1803,22.3984],[114.18032,22.3984],[114.18034,22.39841],[114.18036,22.39841],[114.18038,22.39841],[114.1804,22.39841],[114.18042,22.39842],[114.18044,22.39842],[114.18046,22.39842],[114.18048,22.39842],[114.1805,22.39842],[114.18051,22.39843],[114.18053,22.39843],[114.18055,22.39843],[114.18057,22.39843],[114.18059,22.39843],[114.18061,22.39843],[114.18063,22.39844],[114.18065,22.39844],[114.18067,22.39844],[114.18069,22.39844],[114.18071,22.39844],[114.18073,22.39844],[114.18075,22.39844],[114.18077,22.39844],[114.18079,22.39844],[114.18081,22.39844],[114.18082,22.39844],[114.18084,22.39844],[114.18086,22.39845],[114.18088,22.39845],[114.1809,22.39845],[114.18092,22.39845],[114.18094,22.39845],[114.18096,22.39845],[114.18098,22.39845],[114.181,22.39845],[114.18102,22.39845],[114.18104,22.39845],[114.18106,22.39845],[114.18108,22.39845],[114.1811,22.39845],[114.18112,22.39845],[114.18114,22.39845],[114.18115,22.39845],[114.18117,22.39845],[114.18119,22.39845],[114.18121,22.39845],[114.18123,22.39845],[114.18125,22.39845],[114.18127,22.39845],[114.18129,22.39845],[114.18131,22.39845],[114.18133,22.39844],[114.18135,22.39844],[114.18137,22.39844],[114.18139,22.39844],[114.18141,22.39844],[114.18143,22.39844],[114.18145,22.39844],[114.18147,22.39844],[114.18148,22.39843],[114.1815,22.39843],[114.18152,22.39843],[114.18154,22.39843],[114.18156,22.39843],[114.18158,22.39842],[114.1816,22.39842],[114.18162,22.39842],[114.18164,22.39842],[114.18166,22.39841],[114.18168,22.39841],[114.1817,22.39841],[114.18172,22.39841],[114.18173,22.3984],[114.18175,22.3984],[114.18177,22.3984],[114.18179,22.3984],[114.18181,22.39839],[114.18183,22.39839],[114.18185,22.39839],[114.18187,22.39839],[114.18189,22.39838],[114.18191,22.39838],[114.18193,22.39838],[114.18195,22.39838],[114.18197,22.39838],[114.18199,22.39837],[114.182,22.39837],[114.18202,22.39837],[114.18204,22.39837],[114.18206,22.39837],[114.18208,22.39837],[114.1821,22.39837],[114.18212,22.39837],[114.18214,22.39838],[114.18216,22.39838],[114.18218,22.39838],[114.1822,22.39838],[114.18222,22.39839],[114.18224,22.39839],[114.18226,22.39839],[114.18227,22.3984],[114.18229,22.3984],[114.18231,22.39841],[114.18233,22.39841],[114.18235,22.39842],[114.18237,22.39842],[114.18239,22.39843],[114.1824,22.39843],[114.18242,22.39844],[114.18244,22.39845],[114.18403,22.39894],[114.18498,22.39918],[114.1851,22.39954],[114.18543,22.40053],[114.18558,22.40106],[114.18559,22.40132],[114.18548,22.4018],[114.18529,22.40266],[114.18528,22.40272],[114.18531,22.40279],[114.18539,22.40286],[114.18551,22.40291],[114.18562,22.40292],[114.18593,22.4029],[114.18619,22.40289],[114.18646,22.4029],[114.18673,22.403],[114.18695,22.40313],[114.18712,22.40324],[114.18734,22.40341],[114.18763,22.40369],[114.18773,22.4038],[114.18784,22.40394],[114.18807,22.40434],[114.18816,22.40456],[114.18824,22.40482],[114.18837,22.40523],[114.18851,22.4055],[114.18878,22.406],[114.1889,22.40632],[114.18895,22.40641],[114.18906,22.40678],[114.18915,22.40724],[114.18921,22.4075],[114.18937,22.40768],[114.18956,22.40784],[114.18974,22.40793],[114.19012,22.40804],[114.19038,22.40813],[114.19074,22.40828],[114.19119,22.40854],[114.19139,22.40871],[114.19151,22.40882],[114.19156,22.40886],[114.19161,22.40892],[114.19168,22.409],[114.19173,22.40906],[114.19179,22.40914],[114.19197,22.40936],[114.19213,22.40958],[114.19232,22.40981],[114.19249,22.41003],[114.19278,22.41037],[114.19298,22.41058],[114.19321,22.4108],[114.19337,22.41093],[114.19348,22.41102],[114.19361,22.41112],[114.1937,22.41119],[114.19372,22.4112],[114.19379,22.41125],[114.19385,22.41128],[114.19394,22.41134],[114.19397,22.41136],[114.19401,22.41138],[114.19403,22.41139],[114.19405,22.4114],[114.19407,22.41141],[114.1941,22.41142],[114.19418,22.41145],[114.19425,22.41148],[114.19437,22.41151],[114.19445,22.41153],[114.19454,22.41154],[114.19469,22.41156],[114.19503,22.41159],[114.1951,22.4116],[114.19518,22.41162],[114.1953,22.41165],[114.1954,22.41167],[114.19562,22.41173],[114.19569,22.41175],[114.19577,22.41178],[114.19582,22.4118],[114.19589,22.41182],[114.19614,22.41197],[114.19638,22.41212],[114.19649,22.41223],[114.19662,22.41239],[114.19672,22.41251],[114.19681,22.41268],[114.19689,22.41282],[114.19689,22.41284],[114.1969,22.41286],[114.19691,22.41287],[114.19691,22.41289],[114.19692,22.41291],[114.19693,22.41292],[114.19693,22.41294],[114.19694,22.41296],[114.19695,22.41297],[114.19696,22.41299],[114.19696,22.41301],[114.19697,22.41302],[114.19698,22.41304],[114.19698,22.41306],[114.19699,22.41307],[114.197,22.41309],[114.197,22.41311],[114.19701,22.41313],[114.19702,22.41314],[114.19702,22.41316],[114.19703,22.41318],[114.19703,22.41319],[114.19704,22.41321],[114.19705,22.41323],[114.19705,22.41325],[114.19706,22.41326],[114.19707,22.41328],[114.19707,22.4133],[114.19708,22.41331],[114.19709,22.41333],[114.19709,22.41335],[114.1971,22.41336],[114.1971,22.41338],[114.19711,22.4134],[114.19679,22.41336],[114.19652,22.41348],[114.19623,22.41397],[114.19621,22.41398],[114.1962,22.41399],[114.19618,22.414],[114.19616,22.41401],[114.19615,22.41402],[114.19613,22.41402],[114.19611,22.41403],[114.1961,22.41404],[114.19608,22.41405],[114.19606,22.41406],[114.19605,22.41407],[114.19603,22.41408],[114.19602,22.41409],[114.196,22.4141],[114.19598,22.41411],[114.19597,22.41413],[114.19595,22.41414],[114.19594,22.41415],[114.19593,22.41416],[114.19591,22.41418],[114.1959,22.41419],[114.19589,22.4142],[114.19588,22.41422],[114.19586,22.41423],[114.19585,22.41425],[114.19584,22.41426],[114.19583,22.41428],[114.19582,22.41429],[114.19582,22.41431],[114.19581,22.41433],[114.1958,22.41434],[114.19579,22.41436],[114.19579,22.41438],[114.19578,22.4144],[114.19578,22.41441],[114.19578,22.41443],[114.19579,22.41445],[114.19579,22.41447],[114.19579,22.41449],[114.1958,22.4145],[114.1958,22.41452],[114.19581,22.41454],[114.19582,22.41456],[114.19582,22.41457],[114.19583,22.41459],[114.19584,22.41461],[114.19585,22.41462],[114.19585,22.41464],[114.19586,22.41465],[114.19587,22.41467],[114.19588,22.41469],[114.19589,22.4147],[114.1959,22.41472],[114.19591,22.41473],[114.19592,22.41475],[114.19593,22.41477],[114.19594,22.41478],[114.19594,22.4148],[114.19595,22.41482],[114.19596,22.41483],[114.19597,22.41485],[114.19597,22.41487],[114.19598,22.41488],[114.19598,22.4149],[114.19599,22.41492],[114.19599,22.41494],[114.196,22.41495],[114.196,22.41497],[114.19601,22.41499],[114.19601,22.41501],[114.19601,22.41503],[114.196,22.41504],[114.196,22.41506],[114.196,22.41508],[114.196,22.4151],[114.19599,22.41512],[114.19599,22.41513],[114.19599,22.41515],[114.196,22.41517],[114.196,22.41519],[114.19601,22.4152],[114.19602,22.41522],[114.19603,22.41523],[114.19604,22.41525],[114.19605,22.41527],[114.19606,22.41528],[114.19607,22.4153],[114.19608,22.41531],[114.19609,22.41533],[114.1961,22.41534],[114.19611,22.41536],[114.19612,22.41537],[114.19613,22.41539],[114.19614,22.41541],[114.19615,22.41542],[114.19616,22.41544],[114.19617,22.41545],[114.19618,22.41547],[114.19619,22.41549],[114.1962,22.4155],[114.1962,22.41552],[114.19621,22.41553],[114.19622,22.41555],[114.19624,22.41557],[114.19623,22.41559],[114.19622,22.4156],[114.19621,22.41562],[114.1962,22.41564],[114.1962,22.41565],[114.1962,22.41567],[114.1962,22.41569],[114.19619,22.41571],[114.1962,22.41573],[114.1962,22.41575],[114.19621,22.41576],[114.19621,22.41578],[114.19622,22.41579],[114.19623,22.41581],[114.19624,22.41583],[114.19625,22.41584],[114.19626,22.41586],[114.19627,22.41587],[114.19628,22.41589],[114.19629,22.41591],[114.1963,22.41592],[114.19631,22.41594],[114.19632,22.41595],[114.19633,22.41597],[114.19634,22.41598],[114.19635,22.416],[114.19636,22.41601],[114.19637,22.41603],[114.19639,22.41604],[114.1964,22.41606],[114.19641,22.41607],[114.19642,22.41609],[114.19643,22.4161],[114.19644,22.41612],[114.19645,22.41613],[114.19646,22.41615],[114.19647,22.41616],[114.19648,22.41618],[114.19649,22.41619],[114.1965,22.41621],[114.19651,22.41622],[114.19652,22.41624],[114.19653,22.41625],[114.19654,22.41627],[114.19655,22.41629],[114.19656,22.4163],[114.19657,22.41632],[114.19658,22.41633],[114.19659,22.41635],[114.1966,22.41637],[114.19661,22.41638],[114.19662,22.4164],[114.19662,22.41641],[114.19663,22.41643],[114.19664,22.41645],[114.19665,22.41646],[114.19666,22.41648],[114.19667,22.41649],[114.19668,22.41651],[114.19668,22.41653],[114.19669,22.41654],[114.1967,22.41656],[114.1967,22.41658],[114.19671,22.4166],[114.19671,22.41661],[114.19671,22.41663],[114.19671,22.41665],[114.1967,22.41667],[114.19669,22.41669],[114.19668,22.4167],[114.19666,22.41671],[114.19664,22.41671],[114.19662,22.41672],[114.1966,22.41672],[114.19659,22.41671],[114.19657,22.41671],[114.19655,22.4167],[114.19654,22.41669],[114.19652,22.41668],[114.1965,22.41666],[114.19649,22.41665],[114.19648,22.41664],[114.19646,22.41662],[114.19645,22.41661],[114.19644,22.4166],[114.19643,22.41658],[114.19641,22.41657],[114.1964,22.41656],[114.19638,22.41655],[114.19637,22.41653],[114.19636,22.41652],[114.19634,22.41651],[114.19633,22.4165],[114.19631,22.41649],[114.1963,22.41647],[114.19628,22.41646],[114.19627,22.41645],[114.19625,22.41644],[114.19624,22.41643],[114.19622,22.41642],[114.19621,22.41641],[114.19619,22.41639],[114.19618,22.41638],[114.19616,22.41637],[114.19615,22.41636],[114.19613,22.41635],[114.19612,22.41634],[114.1961,22.41633],[114.19608,22.41631],[114.19607,22.4163],[114.19605,22.41629],[114.19604,22.41628],[114.19602,22.41627],[114.19601,22.41626],[114.19599,22.41625],[114.19598,22.41624],[114.19596,22.41623],[114.19594,22.41622],[114.19593,22.41621],[114.19591,22.4162],[114.19589,22.41619],[114.19587,22.41618],[114.19586,22.41617],[114.19584,22.41617],[114.19582,22.41616],[114.1958,22.41615],[114.19578,22.41615],[114.19577,22.41614],[114.19575,22.41614],[114.19573,22.41614],[114.19571,22.41614],[114.19569,22.41615],[114.19567,22.41616],[114.19565,22.41617],[114.19563,22.41617],[114.19562,22.41618],[114.1956,22.41619],[114.19559,22.41621],[114.19557,22.41622],[114.19556,22.41623],[114.19555,22.41625],[114.19554,22.41627],[114.19553,22.41628],[114.19553,22.4163],[114.19553,22.41632],[114.19553,22.41633],[114.19553,22.41635],[114.19554,22.41637],[114.19554,22.41639],[114.19555,22.41641],[114.19555,22.41643],[114.19555,22.41644],[114.19556,22.41646],[114.19556,22.41648],[114.19557,22.4165],[114.19557,22.41651],[114.19558,22.41653],[114.19558,22.41655],[114.19559,22.41657],[114.19559,22.41658],[114.1956,22.4166],[114.1956,22.41662],[114.1956,22.41664],[114.19561,22.41666],[114.19561,22.41667],[114.19561,22.41669],[114.19561,22.41671],[114.19561,22.41673],[114.19561,22.41674],[114.1956,22.41676],[114.1956,22.41678],[114.1956,22.4168],[114.19559,22.41682],[114.19559,22.41683],[114.19558,22.41685],[114.19558,22.41687],[114.19557,22.41689],[114.19556,22.4169],[114.19555,22.41692],[114.19554,22.41693],[114.19552,22.41694],[114.19551,22.41696],[114.19549,22.41697],[114.19548,22.41698],[114.19546,22.41699],[114.19545,22.417],[114.19543,22.417],[114.19541,22.41701],[114.19539,22.41702],[114.19537,22.41702],[114.19535,22.41702],[114.19533,22.41703],[114.19531,22.41703],[114.19529,22.41703],[114.19528,22.41703],[114.19526,22.41704],[114.19524,22.41704],[114.19522,22.41704],[114.1952,22.41704],[114.19518,22.41704],[114.19516,22.41704],[114.19514,22.41704],[114.19512,22.41704],[114.1951,22.41704],[114.19508,22.41704],[114.19506,22.41704],[114.19504,22.41704],[114.19502,22.41704],[114.195,22.41703],[114.19498,22.41703],[114.19496,22.41703],[114.19494,22.41703],[114.19492,22.41703],[114.19491,22.41703],[114.19489,22.41703]]],[[[114.25791,22.44604],[114.25789,22.44619],[114.25788,22.44623],[114.25787,22.44632],[114.25789,22.44637],[114.25791,22.44649],[114.25792,22.44653],[114.25794,22.44654],[114.25795,22.44655],[114.25795,22.44656],[114.25793,22.4466],[114.25791,22.44664],[114.25789,22.44669],[114.25788,22.44672],[114.25789,22.44675],[114.2579,22.44677],[114.25792,22.44678],[114.25792,22.44679],[114.25791,22.44681],[114.25789,22.44682],[114.25786,22.44682],[114.25784,22.44683],[114.25783,22.44686],[114.25781,22.44687],[114.25776,22.44689],[114.25773,22.44691],[114.25772,22.44694],[114.2577,22.44696],[114.25767,22.44697],[114.25765,22.44696],[114.25764,22.44695],[114.25764,22.44691],[114.25761,22.44685],[114.25761,22.44681],[114.25761,22.44678],[114.25762,22.44678],[114.25764,22.44676],[114.25768,22.44671],[114.25771,22.4467],[114.25772,22.44668],[114.25773,22.4465],[114.25773,22.44647],[114.25774,22.44637],[114.25775,22.44631],[114.25774,22.44627],[114.25775,22.44625],[114.25777,22.44622],[114.25779,22.44617],[114.25783,22.44614],[114.25785,22.44612],[114.25788,22.44606],[114.25793,22.44597],[114.25793,22.44597],[114.25791,22.44604]]],[[[114.21112,22.44814],[114.21113,22.44815],[114.21113,22.44816],[114.21113,22.44817],[114.21112,22.44818],[114.2111,22.44817],[114.21108,22.44816],[114.21107,22.44815],[114.21108,22.44813],[114.2111,22.44813],[114.21112,22.44814]]],[[[114.2112,22.44812],[114.21124,22.44815],[114.21125,22.44816],[114.21124,22.44817],[114.21122,22.44817],[114.21121,22.44818],[114.21122,22.44821],[114.21122,22.44821],[114.21119,22.44823],[114.21117,22.44822],[114.21115,22.44819],[114.21114,22.44817],[114.21116,22.44815],[114.21115,22.44813],[114.21116,22.44811],[114.21117,22.44811],[114.2112,22.44812]]],[[[114.21093,22.44835],[114.21092,22.44834],[114.21092,22.44832],[114.21092,22.4483],[114.21092,22.44828],[114.2109,22.44829],[114.21089,22.44828],[114.21087,22.44822],[114.21088,22.4482],[114.21093,22.44816],[114.21098,22.44813],[114.21102,22.44815],[114.2111,22.44819],[114.21111,22.44821],[114.21109,22.44827],[114.21105,22.44831],[114.21101,22.44833],[114.21099,22.44833],[114.21095,22.44833],[114.21093,22.44835]]],[[[114.21256,22.44873],[114.21252,22.44876],[114.2125,22.44878],[114.21245,22.44879],[114.21242,22.44881],[114.21238,22.44884],[114.21237,22.44885],[114.21235,22.44883],[114.21235,22.4488],[114.21233,22.44877],[114.21231,22.44874],[114.21231,22.44872],[114.21234,22.4487],[114.21237,22.44869],[114.21242,22.44872],[114.21245,22.44872],[114.21248,22.4487],[114.21251,22.44869],[114.21255,22.4487],[114.21257,22.44871],[114.21257,22.44872],[114.21256,22.44873]]],[[[114.21745,22.45691],[114.21743,22.45691],[114.21741,22.45692],[114.21739,22.45692],[114.21737,22.45693],[114.21736,22.45694],[114.21734,22.45695],[114.21732,22.45697],[114.21729,22.45699],[114.21727,22.45701],[114.21725,22.45703],[114.21723,22.45705],[114.21722,22.45706],[114.2172,22.45708],[114.21718,22.4571],[114.21715,22.45714],[114.21713,22.45715],[114.21711,22.45717],[114.21708,22.4572],[114.21706,22.45722],[114.21704,22.45723],[114.21702,22.45724],[114.21699,22.45725],[114.21697,22.45727],[114.21695,22.45728],[114.21692,22.4573],[114.21689,22.45733],[114.21686,22.45735],[114.21682,22.45737],[114.21679,22.45738],[114.21676,22.4574],[114.21672,22.45741],[114.21667,22.45742],[114.21664,22.45743],[114.21662,22.45743],[114.21659,22.45743],[114.21655,22.45743],[114.21653,22.45742],[114.21651,22.45742],[114.2165,22.45741],[114.21648,22.4574],[114.21647,22.45739],[114.21645,22.45738],[114.21643,22.45736],[114.21643,22.45734],[114.21642,22.45733],[114.21642,22.45732],[114.21642,22.45731],[114.21641,22.45727],[114.2164,22.45723],[114.2164,22.45721],[114.21639,22.45716],[114.21639,22.4571],[114.21639,22.45707],[114.21639,22.45703],[114.21639,22.457],[114.2164,22.45697],[114.2164,22.45695],[114.21642,22.45691],[114.21643,22.45689],[114.21644,22.45687],[114.21646,22.45684],[114.21648,22.45682],[114.21649,22.4568],[114.21656,22.45672],[114.21658,22.4567],[114.2166,22.45669],[114.21662,22.45667],[114.21664,22.45665],[114.21665,22.45663],[114.21666,22.45661],[114.21667,22.45659],[114.21669,22.45656],[114.21671,22.45655],[114.21672,22.45654],[114.21675,22.45652],[114.21679,22.4565],[114.21682,22.45648],[114.21684,22.45646],[114.21688,22.45642],[114.2169,22.4564],[114.21694,22.45635],[114.21696,22.45632],[114.21698,22.4563],[114.21699,22.45628],[114.21701,22.45626],[114.21704,22.45624],[114.21708,22.45622],[114.21711,22.4562],[114.21714,22.45617],[114.21717,22.45615],[114.21723,22.45611],[114.21724,22.4561],[114.21725,22.45609],[114.21726,22.45608],[114.21727,22.45606],[114.21727,22.45605],[114.21727,22.45604],[114.21727,22.45603],[114.21727,22.45602],[114.21726,22.45601],[114.21725,22.45599],[114.21723,22.45597],[114.21722,22.45596],[114.21721,22.45595],[114.21718,22.45592],[114.21716,22.45589],[114.21714,22.45587],[114.21711,22.45583],[114.2171,22.4558],[114.21708,22.45577],[114.21705,22.45571],[114.21703,22.45567],[114.21701,22.45561],[114.21699,22.45557],[114.21696,22.45551],[114.21694,22.45548],[114.21692,22.45545],[114.21691,22.45542],[114.2169,22.45541],[114.21691,22.45541],[114.21691,22.45541],[114.21692,22.45541],[114.21692,22.45541],[114.21693,22.45542],[114.21693,22.45543],[114.21694,22.45544],[114.21695,22.45546],[114.21698,22.4555],[114.21699,22.45551],[114.21699,22.45551],[114.217,22.45552],[114.217,22.45553],[114.21701,22.45554],[114.21703,22.45557],[114.21704,22.45559],[114.21706,22.45562],[114.21708,22.45564],[114.2171,22.45567],[114.21712,22.4557],[114.21714,22.45573],[114.21716,22.45575],[114.21717,22.45576],[114.2172,22.45579],[114.21722,22.45581],[114.21723,22.45582],[114.21724,22.45583],[114.21725,22.45584],[114.21729,22.45588],[114.21731,22.4559],[114.21733,22.45591],[114.21736,22.45593],[114.21737,22.45594],[114.21738,22.45594],[114.21739,22.45595],[114.2174,22.45595],[114.21744,22.45596],[114.21746,22.45596],[114.21747,22.45597],[114.21748,22.45597],[114.2175,22.45597],[114.21751,22.45598],[114.21754,22.45598],[114.21757,22.456],[114.21758,22.456],[114.21759,22.45601],[114.21762,22.45603],[114.21764,22.45603],[114.21767,22.45605],[114.21768,22.45606],[114.21769,22.45607],[114.2177,22.45607],[114.2177,22.45608],[114.21772,22.45609],[114.21776,22.45611],[114.21778,22.45612],[114.2178,22.45613],[114.21781,22.45614],[114.21782,22.45614],[114.21783,22.45614],[114.21789,22.45616],[114.21793,22.45616],[114.21795,22.45616],[114.21796,22.45616],[114.21798,22.45616],[114.21799,22.45616],[114.21801,22.45615],[114.21804,22.45614],[114.21806,22.45613],[114.2181,22.45612],[114.21812,22.4561],[114.21814,22.45609],[114.21817,22.45605],[114.21818,22.45603],[114.21819,22.45601],[114.2182,22.456],[114.21821,22.45599],[114.21824,22.45597],[114.21826,22.45596],[114.21828,22.45596],[114.2183,22.45596],[114.21832,22.45596],[114.21835,22.45596],[114.21837,22.45596],[114.21839,22.45596],[114.2184,22.45596],[114.21842,22.45594],[114.21844,22.45593],[114.21845,22.45591],[114.21847,22.45589],[114.21849,22.45586],[114.2185,22.45583],[114.21854,22.45578],[114.21856,22.45575],[114.21857,22.45574],[114.21858,22.45574],[114.2186,22.45573],[114.21866,22.45575],[114.2187,22.45576],[114.21872,22.45576],[114.21874,22.45576],[114.21875,22.45576],[114.21877,22.45575],[114.21879,22.45572],[114.21882,22.4557],[114.21884,22.45569],[114.21889,22.45566],[114.21894,22.45564],[114.21898,22.45563],[114.21901,22.45562],[114.21904,22.45562],[114.21905,22.45563],[114.21907,22.45564],[114.21912,22.45565],[114.21914,22.45565],[114.21917,22.45565],[114.21919,22.45566],[114.21921,22.45566],[114.21922,22.45567],[114.21923,22.45568],[114.21924,22.45569],[114.21927,22.45573],[114.21928,22.45575],[114.21929,22.45577],[114.21931,22.45578],[114.21933,22.45579],[114.21935,22.45579],[114.21938,22.4558],[114.21941,22.4558],[114.21947,22.4558],[114.2195,22.45581],[114.21952,22.45582],[114.21957,22.45585],[114.2196,22.45586],[114.21963,22.45587],[114.21969,22.45588],[114.21975,22.4559],[114.21978,22.4559],[114.2198,22.45591],[114.21981,22.45592],[114.21982,22.45593],[114.21983,22.45594],[114.21983,22.45595],[114.21984,22.45599],[114.21984,22.45601],[114.21984,22.45603],[114.21985,22.45605],[114.21986,22.45607],[114.21987,22.45608],[114.2199,22.45611],[114.21995,22.45615],[114.21997,22.45616],[114.22,22.45617],[114.22003,22.45618],[114.22005,22.45619],[114.22005,22.4562],[114.22006,22.45621],[114.22006,22.45621],[114.22005,22.45623],[114.22004,22.45626],[114.22003,22.45628],[114.22001,22.45632],[114.21997,22.45637],[114.21996,22.45638],[114.21994,22.4564],[114.2199,22.45642],[114.21986,22.45643],[114.21984,22.45645],[114.21983,22.45646],[114.21981,22.45647],[114.21979,22.45648],[114.21976,22.4565],[114.21973,22.45651],[114.2197,22.45653],[114.21967,22.45654],[114.21959,22.45659],[114.21957,22.45661],[114.21955,22.45662],[114.21954,22.45664],[114.21951,22.45667],[114.2195,22.4567],[114.21949,22.45671],[114.21947,22.45673],[114.21945,22.45673],[114.21942,22.45673],[114.21938,22.45673],[114.21937,22.45674],[114.21935,22.45675],[114.21932,22.45676],[114.21929,22.45678],[114.21927,22.45678],[114.21924,22.45679],[114.21922,22.45679],[114.2192,22.45679],[114.21915,22.45678],[114.21912,22.45678],[114.21909,22.45678],[114.21904,22.45678],[114.21901,22.45678],[114.21898,22.45679],[114.21896,22.45679],[114.21894,22.45679],[114.21892,22.45679],[114.21889,22.45678],[114.21885,22.45678],[114.21882,22.45678],[114.21879,22.45677],[114.21876,22.45677],[114.21874,22.45678],[114.21869,22.45678],[114.21867,22.45679],[114.21863,22.45679],[114.21861,22.4568],[114.21855,22.4568],[114.21852,22.45679],[114.2185,22.45679],[114.21848,22.45679],[114.21834,22.4568],[114.21831,22.45679],[114.2182,22.45678],[114.21817,22.45678],[114.21816,22.45678],[114.21812,22.45679],[114.21805,22.4568],[114.218,22.45681],[114.21799,22.45681],[114.21796,22.45682],[114.21794,22.45682],[114.21792,22.45682],[114.2179,22.45683],[114.21787,22.45684],[114.21785,22.45685],[114.21778,22.45688],[114.21777,22.45689],[114.21774,22.45689],[114.21771,22.4569],[114.21766,22.45691],[114.21763,22.45691],[114.21756,22.45691],[114.21753,22.45691],[114.2175,22.45691],[114.21747,22.45691],[114.21745,22.45691]]],[[[114.22244,22.46347],[114.2224,22.46346],[114.22237,22.46345],[114.22235,22.46344],[114.22231,22.46341],[114.22226,22.46338],[114.22224,22.46336],[114.2222,22.46335],[114.22218,22.46333],[114.22216,22.46332],[114.22215,22.4633],[114.22214,22.46328],[114.22212,22.46325],[114.2221,22.46323],[114.22207,22.4632],[114.22205,22.46319],[114.222,22.46316],[114.22199,22.46315],[114.22198,22.46313],[114.22197,22.46312],[114.22196,22.4631],[114.22196,22.46308],[114.22196,22.46305],[114.22195,22.46303],[114.22194,22.46298],[114.22193,22.46296],[114.22193,22.46294],[114.22193,22.46292],[114.22193,22.46288],[114.22192,22.46285],[114.22192,22.46281],[114.22189,22.46271],[114.22187,22.46268],[114.22186,22.46267],[114.22184,22.46266],[114.22182,22.46264],[114.22178,22.46261],[114.22175,22.46258],[114.22171,22.46254],[114.2217,22.46251],[114.22168,22.46249],[114.22166,22.46248],[114.22165,22.46248],[114.22163,22.46248],[114.2216,22.46248],[114.22156,22.46248],[114.22155,22.46248],[114.22152,22.46247],[114.2215,22.46246],[114.22148,22.46245],[114.22147,22.46243],[114.22146,22.46241],[114.22146,22.46237],[114.22146,22.46232],[114.22146,22.46231],[114.22145,22.46227],[114.22144,22.46226],[114.22143,22.46225],[114.22142,22.46224],[114.22139,22.46223],[114.22138,22.46222],[114.22137,22.46222],[114.22135,22.46221],[114.22133,22.46219],[114.22131,22.46218],[114.22129,22.46217],[114.22127,22.46217],[114.2212,22.46215],[114.22116,22.46215],[114.2211,22.46215],[114.22107,22.46215],[114.22101,22.46216],[114.22096,22.46216],[114.2209,22.46216],[114.22086,22.46217],[114.22082,22.46218],[114.22079,22.46219],[114.22076,22.4622],[114.22073,22.46222],[114.22071,22.46224],[114.22068,22.46227],[114.22066,22.46229],[114.22055,22.46236],[114.22054,22.46236],[114.22053,22.46237],[114.2205,22.46236],[114.22045,22.46234],[114.22043,22.46233],[114.22041,22.46233],[114.22037,22.4623],[114.22035,22.46228],[114.22033,22.46225],[114.22031,22.46221],[114.22029,22.46211],[114.22028,22.46208],[114.22027,22.46206],[114.22024,22.462],[114.22021,22.46196],[114.2202,22.46195],[114.22019,22.46194],[114.22019,22.46193],[114.2202,22.46191],[114.2202,22.46189],[114.2202,22.46189],[114.2202,22.46187],[114.22021,22.46183],[114.22021,22.46182],[114.22021,22.46181],[114.22021,22.46179],[114.22022,22.46178],[114.22022,22.46177],[114.22023,22.46175],[114.22024,22.46171],[114.22025,22.46166],[114.22025,22.46164],[114.22025,22.46163],[114.22024,22.46163],[114.22021,22.46161],[114.22019,22.4616],[114.22017,22.46159],[114.22016,22.46158],[114.22016,22.46157],[114.22016,22.46157],[114.22016,22.46156],[114.22017,22.46155],[114.22021,22.46153],[114.22024,22.46152],[114.22026,22.46151],[114.22027,22.46149],[114.22028,22.46149],[114.22029,22.46146],[114.2203,22.46142],[114.22032,22.46135],[114.22033,22.46132],[114.22033,22.4613],[114.22033,22.46127],[114.22031,22.46123],[114.2203,22.4612],[114.2203,22.46117],[114.22029,22.46111],[114.2203,22.46106],[114.2203,22.46103],[114.22029,22.461],[114.22029,22.46099],[114.22028,22.46098],[114.22027,22.46097],[114.22026,22.46097],[114.22024,22.46096],[114.22019,22.46096],[114.22018,22.46096],[114.22016,22.46095],[114.22015,22.46094],[114.22015,22.46093],[114.22015,22.4609],[114.22015,22.46087],[114.22016,22.46085],[114.22017,22.46084],[114.22018,22.46082],[114.22021,22.46079],[114.22024,22.46077],[114.22027,22.46075],[114.22032,22.46072],[114.22034,22.46072],[114.22037,22.46072],[114.22044,22.46074],[114.22047,22.46074],[114.2205,22.46074],[114.22054,22.46072],[114.22056,22.46071],[114.22057,22.46071],[114.22059,22.4607],[114.2206,22.46068],[114.2206,22.46067],[114.2206,22.46064],[114.2206,22.46062],[114.22061,22.4606],[114.22062,22.4606],[114.22064,22.46059],[114.22066,22.4606],[114.22067,22.46061],[114.2207,22.46063],[114.22071,22.46064],[114.22073,22.46065],[114.22075,22.46065],[114.22077,22.46065],[114.22084,22.46065],[114.22087,22.46065],[114.22089,22.46064],[114.2209,22.46063],[114.22092,22.46062],[114.22093,22.46061],[114.22094,22.4606],[114.22098,22.46059],[114.221,22.46058],[114.22101,22.46057],[114.22103,22.46055],[114.22104,22.46053],[114.22104,22.4605],[114.22103,22.46046],[114.22103,22.46045],[114.22104,22.46044],[114.22109,22.46039],[114.2211,22.46038],[114.22112,22.46036],[114.22113,22.46036],[114.22115,22.46035],[114.22118,22.46035],[114.22121,22.46035],[114.22129,22.46036],[114.2213,22.46037],[114.22132,22.46037],[114.22135,22.46039],[114.22136,22.4604],[114.22143,22.4604],[114.2215,22.46042],[114.22156,22.46044],[114.22158,22.46044],[114.22162,22.46044],[114.22163,22.46043],[114.22167,22.46043],[114.2217,22.46043],[114.22174,22.46044],[114.22177,22.46044],[114.22185,22.46045],[114.22188,22.46045],[114.2219,22.46046],[114.22192,22.46046],[114.22194,22.46047],[114.22198,22.46047],[114.22202,22.46046],[114.22204,22.46046],[114.22206,22.46045],[114.22207,22.46041],[114.22208,22.4604],[114.22209,22.46039],[114.2221,22.46038],[114.22213,22.46037],[114.22219,22.46035],[114.22228,22.46032],[114.2223,22.46032],[114.22234,22.46032],[114.22242,22.46033],[114.22245,22.46034],[114.22247,22.46035],[114.22249,22.46036],[114.2225,22.46037],[114.22251,22.46038],[114.22251,22.4604],[114.22252,22.46042],[114.22251,22.46047],[114.2225,22.4605],[114.22249,22.46052],[114.22248,22.46055],[114.22247,22.46058],[114.22247,22.46062],[114.22247,22.46065],[114.22246,22.46066],[114.22245,22.46069],[114.22244,22.46073],[114.22244,22.46075],[114.22244,22.46077],[114.22245,22.46078],[114.22247,22.4608],[114.22248,22.46081],[114.2225,22.46083],[114.22254,22.46085],[114.22256,22.46086],[114.22257,22.46087],[114.22258,22.46088],[114.22259,22.4609],[114.2226,22.46092],[114.22261,22.46097],[114.22263,22.461],[114.22264,22.46102],[114.22266,22.46104],[114.22268,22.46105],[114.22269,22.46106],[114.22274,22.46106],[114.22276,22.46107],[114.22278,22.46109],[114.22279,22.4611],[114.2228,22.46112],[114.2228,22.46113],[114.2228,22.46114],[114.22279,22.46115],[114.22278,22.46115],[114.22275,22.46116],[114.22274,22.46116],[114.22274,22.46118],[114.22278,22.46128],[114.2228,22.46135],[114.2228,22.46139],[114.2228,22.46144],[114.2228,22.46148],[114.2228,22.46151],[114.22278,22.46159],[114.22278,22.46162],[114.22278,22.46164],[114.22277,22.46166],[114.22275,22.46169],[114.22274,22.46171],[114.22272,22.46173],[114.2227,22.46174],[114.22269,22.46175],[114.22268,22.46177],[114.22267,22.46179],[114.22267,22.46182],[114.22267,22.46187],[114.22267,22.46195],[114.22266,22.46202],[114.22265,22.46205],[114.22264,22.46208],[114.22262,22.46211],[114.2226,22.46212],[114.22259,22.46213],[114.22257,22.46216],[114.22256,22.46217],[114.22256,22.46218],[114.22256,22.4622],[114.22255,22.46222],[114.22255,22.46223],[114.22255,22.46227],[114.22255,22.46231],[114.22255,22.46232],[114.22255,22.46236],[114.22255,22.46237],[114.22256,22.46239],[114.22257,22.46241],[114.22257,22.46243],[114.22258,22.46244],[114.2226,22.46246],[114.22262,22.46248],[114.22264,22.4625],[114.22266,22.46252],[114.22268,22.46255],[114.22271,22.46258],[114.22272,22.46259],[114.22273,22.4626],[114.22273,22.46263],[114.22273,22.46266],[114.22273,22.46268],[114.22273,22.46269],[114.22273,22.4627],[114.22273,22.46275],[114.22274,22.46282],[114.22275,22.46287],[114.22276,22.46292],[114.22276,22.46295],[114.22276,22.46297],[114.22276,22.46299],[114.22275,22.46303],[114.22276,22.4631],[114.22275,22.46319],[114.22275,22.46322],[114.22274,22.46325],[114.22274,22.46327],[114.22271,22.46334],[114.22269,22.46337],[114.22266,22.4634],[114.22265,22.46342],[114.22263,22.46343],[114.22262,22.46344],[114.22258,22.46345],[114.22255,22.46346],[114.22254,22.46346],[114.22252,22.46346],[114.22248,22.46346],[114.22244,22.46347]]],[[[114.29779,22.50163],[114.29776,22.50168],[114.29775,22.50168],[114.29773,22.50169],[114.29772,22.50169],[114.29772,22.50168],[114.29768,22.50162],[114.29762,22.50162],[114.29761,22.50162],[114.29759,22.5016],[114.29759,22.50158],[114.2976,22.50156],[114.29762,22.50153],[114.29761,22.5015],[114.29758,22.50148],[114.29754,22.50147],[114.29752,22.50145],[114.29751,22.50143],[114.29752,22.50142],[114.29753,22.50142],[114.29755,22.50141],[114.29758,22.50138],[114.29772,22.50136],[114.29777,22.50138],[114.29779,22.5014],[114.29779,22.50142],[114.29778,22.50143],[114.29777,22.50146],[114.29778,22.50151],[114.29779,22.50154],[114.2978,22.50158],[114.2978,22.5016],[114.29779,22.50163]]],[[[114.30447,22.50097],[114.30476,22.50114],[114.30478,22.50122],[114.30502,22.50147],[114.3051,22.50156],[114.30513,22.50161],[114.30513,22.50169],[114.30508,22.50174],[114.30496,22.50172],[114.30452,22.50164],[114.30444,22.50157],[114.30421,22.50149],[114.30417,22.50141],[114.30397,22.50129],[114.30388,22.50122],[114.30371,22.50106],[114.30372,22.50096],[114.30374,22.50092],[114.30387,22.50095],[114.30415,22.50089],[114.30447,22.50097]]],[[[114.29074,22.50987],[114.29075,22.50988],[114.29076,22.50989],[114.29076,22.50991],[114.29076,22.50993],[114.29076,22.50995],[114.29076,22.50997],[114.29076,22.50998],[114.29076,22.50998],[114.29075,22.50999],[114.29074,22.50998],[114.29072,22.50997],[114.2907,22.50995],[114.29069,22.50994],[114.29071,22.50992],[114.29071,22.50991],[114.29072,22.50991],[114.29071,22.5099],[114.2907,22.50988],[114.2907,22.50988],[114.29068,22.50988],[114.29065,22.50987],[114.29063,22.50987],[114.29061,22.50987],[114.2906,22.50986],[114.29058,22.50984],[114.29058,22.5098],[114.29056,22.5098],[114.29055,22.5098],[114.29054,22.50979],[114.29054,22.50978],[114.29054,22.50978],[114.29054,22.50977],[114.29055,22.50976],[114.29056,22.50974],[114.29057,22.50972],[114.29057,22.50971],[114.29059,22.50969],[114.29061,22.50968],[114.29063,22.5097],[114.29065,22.50972],[114.29067,22.50971],[114.29068,22.50972],[114.29068,22.50974],[114.29068,22.50978],[114.29069,22.5098],[114.29069,22.50982],[114.2907,22.50981],[114.29072,22.50985],[114.29072,22.50985],[114.29073,22.50987],[114.29074,22.50987]]],[[[114.2769,22.51189],[114.27694,22.51197],[114.27694,22.51205],[114.27688,22.51218],[114.27683,22.51223],[114.27675,22.51223],[114.27669,22.51224],[114.27665,22.51222],[114.27662,22.51219],[114.2766,22.51215],[114.27662,22.51208],[114.2766,22.51204],[114.27659,22.512],[114.27663,22.51195],[114.27669,22.51191],[114.27676,22.51188],[114.27686,22.51187],[114.2769,22.51189]]],[[[114.2947,22.51426],[114.29467,22.51438],[114.29462,22.51446],[114.29465,22.51452],[114.29448,22.51448],[114.29454,22.51423],[114.29461,22.51414],[114.2947,22.51426]]],[[[114.30046,22.51475],[114.30027,22.51478],[114.30022,22.5147],[114.30036,22.51434],[114.30051,22.51423],[114.30068,22.51431],[114.30075,22.51444],[114.30068,22.51467],[114.3006,22.51474],[114.30055,22.51471],[114.30046,22.51475]]],[[[114.3091,22.51874],[114.30907,22.51869],[114.309,22.51866],[114.309,22.51865],[114.30895,22.51863],[114.30894,22.51862],[114.30892,22.51863],[114.30892,22.51864],[114.30889,22.51865],[114.30886,22.51865],[114.30879,22.51862],[114.30881,22.51856],[114.30883,22.51854],[114.30884,22.51848],[114.30882,22.51845],[114.30882,22.51839],[114.30887,22.51839],[114.30881,22.51835],[114.3088,22.51832],[114.30881,22.51827],[114.30878,22.51824],[114.30878,22.51821],[114.3088,22.51819],[114.30885,22.5182],[114.30889,22.51821],[114.3089,22.51821],[114.30891,22.51825],[114.30891,22.51829],[114.3089,22.51832],[114.30892,22.51837],[114.30892,22.51842],[114.30896,22.51845],[114.30908,22.51849],[114.30904,22.51857],[114.30907,22.51858],[114.30908,22.51858],[114.30917,22.51863],[114.3092,22.51872],[114.3092,22.51873],[114.30919,22.51874],[114.30914,22.51873],[114.3091,22.51874]]],[[[114.28605,22.52098],[114.2861,22.52118],[114.28601,22.52131],[114.28572,22.52125],[114.28561,22.52106],[114.28551,22.52098],[114.28528,22.52106],[114.2851,22.52098],[114.285,22.52088],[114.28497,22.52078],[114.285,22.52071],[114.28534,22.52032],[114.28532,22.51994],[114.28538,22.51981],[114.28576,22.51936],[114.28609,22.51917],[114.28656,22.51909],[114.2875,22.51932],[114.28773,22.51928],[114.28856,22.51961],[114.28883,22.51948],[114.28891,22.5195],[114.28898,22.51995],[114.28883,22.52005],[114.28877,22.52008],[114.28863,22.52012],[114.2886,22.52015],[114.28852,22.52027],[114.28842,22.52032],[114.28839,22.52037],[114.28822,22.52045],[114.28807,22.5206],[114.28795,22.52062],[114.28759,22.52052],[114.28751,22.52053],[114.28743,22.52045],[114.28744,22.52032],[114.28737,22.52021],[114.28723,22.52015],[114.28687,22.52021],[114.28671,22.52033],[114.28643,22.52035],[114.28615,22.52059],[114.28601,22.52079],[114.286,22.52093],[114.28605,22.52098]]],[[[114.30958,22.5261],[114.30924,22.52624],[114.30915,22.52624],[114.30899,22.52612],[114.30888,22.52595],[114.30881,22.52556],[114.30867,22.52546],[114.30861,22.52532],[114.30857,22.52529],[114.30845,22.52532],[114.30832,22.52521],[114.30831,22.52513],[114.30847,22.52489],[114.30855,22.52468],[114.30868,22.52455],[114.30879,22.52454],[114.30891,22.52458],[114.3091,22.52451],[114.30942,22.5245],[114.30966,22.52439],[114.31019,22.52414],[114.31034,22.52392],[114.3102,22.52367],[114.31001,22.52347],[114.30984,22.52334],[114.30957,22.52329],[114.30944,22.52311],[114.30945,22.52308],[114.30951,22.52288],[114.30946,22.52271],[114.30943,22.52244],[114.30937,22.52203],[114.30921,22.52164],[114.30917,22.52146],[114.30914,22.52119],[114.30927,22.52113],[114.30934,22.52095],[114.30944,22.52084],[114.30953,22.52048],[114.30945,22.52022],[114.30951,22.52007],[114.30979,22.51987],[114.3099,22.51985],[114.31018,22.5196],[114.31032,22.51959],[114.31024,22.51942],[114.31028,22.51879],[114.31016,22.51866],[114.31004,22.51845],[114.31,22.51829],[114.30985,22.5181],[114.30967,22.51796],[114.30938,22.51788],[114.30929,22.51771],[114.30928,22.51762],[114.30926,22.51754],[114.30925,22.51729],[114.3092,22.51717],[114.30925,22.51703],[114.30939,22.51689],[114.30958,22.51675],[114.30959,22.51671],[114.30952,22.51662],[114.30912,22.51661],[114.30904,22.51662],[114.30876,22.51648],[114.30861,22.51649],[114.30862,22.5164],[114.30853,22.51636],[114.30846,22.51635],[114.30836,22.51629],[114.30822,22.51627],[114.30811,22.5163],[114.30786,22.51625],[114.30797,22.51612],[114.30777,22.51574],[114.30779,22.51567],[114.30773,22.51548],[114.30781,22.51521],[114.30802,22.51497],[114.30803,22.51481],[114.30798,22.51469],[114.30756,22.5144],[114.30722,22.5143],[114.30707,22.51432],[114.30677,22.51456],[114.3066,22.51457],[114.30653,22.51449],[114.30646,22.51447],[114.30634,22.51462],[114.30623,22.51462],[114.30606,22.51453],[114.30585,22.51449],[114.3058,22.51445],[114.30587,22.51433],[114.30564,22.51385],[114.30577,22.51367],[114.3059,22.5136],[114.30612,22.51357],[114.30651,22.51352],[114.30662,22.51351],[114.30685,22.51358],[114.30694,22.51366],[114.30711,22.51368],[114.3073,22.51376],[114.30737,22.51384],[114.30747,22.51381],[114.30746,22.51356],[114.30738,22.51346],[114.30721,22.5134],[114.30698,22.51312],[114.30646,22.51308],[114.3064,22.51311],[114.30607,22.51305],[114.30605,22.51288],[114.30625,22.51234],[114.30618,22.51217],[114.30607,22.51213],[114.30607,22.51208],[114.30583,22.51208],[114.30572,22.51213],[114.30542,22.51243],[114.30527,22.51266],[114.30511,22.51268],[114.30494,22.51276],[114.3049,22.51284],[114.30469,22.5129],[114.30458,22.51292],[114.30445,22.51289],[114.30441,22.51292],[114.30432,22.51275],[114.30411,22.51274],[114.304,22.51255],[114.30381,22.51247],[114.30386,22.51239],[114.30385,22.51226],[114.304,22.51207],[114.30425,22.51194],[114.30448,22.51201],[114.30465,22.51198],[114.30478,22.51189],[114.30484,22.51175],[114.30515,22.5115],[114.30544,22.5114],[114.3057,22.51124],[114.30589,22.51092],[114.30586,22.5109],[114.30558,22.51085],[114.3052,22.51075],[114.30494,22.51083],[114.30465,22.5108],[114.3046,22.51076],[114.30458,22.51059],[114.30442,22.5104],[114.30436,22.51027],[114.30401,22.51002],[114.30399,22.50976],[114.30389,22.50977],[114.30386,22.50994],[114.30389,22.51022],[114.30377,22.51047],[114.30364,22.51052],[114.30321,22.51045],[114.30313,22.51041],[114.30291,22.51017],[114.3029,22.51022],[114.3026,22.51039],[114.3024,22.5106],[114.30233,22.51069],[114.30243,22.51078],[114.30248,22.51124],[114.30237,22.51168],[114.30241,22.51183],[114.30239,22.51195],[114.30245,22.51205],[114.30252,22.51242],[114.30251,22.5125],[114.30241,22.51262],[114.30229,22.51263],[114.3022,22.51251],[114.30198,22.51183],[114.30142,22.5121],[114.3012,22.51211],[114.3008,22.51224],[114.30085,22.51237],[114.30082,22.51243],[114.30146,22.51261],[114.30165,22.51284],[114.3017,22.51307],[114.30179,22.51319],[114.30168,22.51337],[114.30157,22.51346],[114.30146,22.51344],[114.3013,22.51347],[114.30123,22.51338],[114.30124,22.51328],[114.30115,22.51309],[114.30109,22.51304],[114.30095,22.51301],[114.30055,22.51309],[114.30032,22.51319],[114.30017,22.51337],[114.30007,22.51337],[114.30001,22.5133],[114.30001,22.513],[114.29972,22.51266],[114.29966,22.5123],[114.2999,22.51197],[114.29998,22.51139],[114.30004,22.51131],[114.30014,22.51127],[114.30017,22.51117],[114.29997,22.51118],[114.29981,22.51126],[114.2996,22.51152],[114.29919,22.51184],[114.29894,22.51188],[114.29859,22.51205],[114.29849,22.51204],[114.29833,22.51214],[114.29811,22.51227],[114.29815,22.51243],[114.29793,22.51247],[114.29787,22.51253],[114.2978,22.51275],[114.29792,22.51305],[114.29788,22.51315],[114.29781,22.51313],[114.29774,22.51318],[114.29771,22.51315],[114.29762,22.51318],[114.2976,22.51315],[114.2973,22.51317],[114.29722,22.51315],[114.29721,22.51314],[114.29721,22.51314],[114.2972,22.51313],[114.2972,22.51312],[114.29723,22.51308],[114.29724,22.51306],[114.29724,22.51304],[114.29722,22.51294],[114.29713,22.51287],[114.29712,22.51285],[114.29692,22.51248],[114.29686,22.51239],[114.2967,22.51229],[114.29655,22.51205],[114.29654,22.51196],[114.29645,22.51195],[114.29635,22.51201],[114.29584,22.51209],[114.29533,22.5123],[114.29506,22.5125],[114.29501,22.5126],[114.29504,22.51275],[114.29518,22.51298],[114.29507,22.51322],[114.2949,22.51334],[114.29461,22.51345],[114.29456,22.51341],[114.29452,22.51324],[114.2946,22.51292],[114.29456,22.51238],[114.2947,22.51214],[114.29483,22.51205],[114.29504,22.51203],[114.29512,22.51188],[114.29514,22.51151],[114.29502,22.51128],[114.29501,22.51103],[114.29518,22.51092],[114.29548,22.51082],[114.29556,22.51084],[114.2958,22.51112],[114.29606,22.51107],[114.29625,22.511],[114.29675,22.51064],[114.29697,22.51044],[114.2973,22.51025],[114.29748,22.5101],[114.29785,22.50965],[114.29793,22.5094],[114.29798,22.50931],[114.298,22.50923],[114.29797,22.50892],[114.29791,22.50883],[114.29789,22.50879],[114.29792,22.50873],[114.29799,22.50872],[114.298,22.50865],[114.29791,22.50863],[114.29766,22.50835],[114.29747,22.50832],[114.29718,22.50844],[114.29683,22.50856],[114.2966,22.50855],[114.2966,22.50841],[114.29684,22.50814],[114.29713,22.50793],[114.29726,22.50772],[114.2972,22.50758],[114.29708,22.50746],[114.29694,22.5074],[114.2968,22.50723],[114.29665,22.50718],[114.29657,22.50718],[114.29651,22.50725],[114.29639,22.5073],[114.29603,22.50723],[114.29572,22.5072],[114.29566,22.50716],[114.296,22.50697],[114.29614,22.50665],[114.29622,22.50651],[114.29627,22.50642],[114.29637,22.50638],[114.29649,22.50639],[114.29667,22.50653],[114.29688,22.50647],[114.29724,22.50648],[114.29734,22.50651],[114.29743,22.50656],[114.29755,22.50666],[114.29763,22.50687],[114.29775,22.50682],[114.29813,22.50691],[114.29819,22.50686],[114.29819,22.5068],[114.29815,22.50673],[114.29796,22.50661],[114.29785,22.50645],[114.2977,22.50624],[114.29766,22.50609],[114.29752,22.50582],[114.29728,22.50565],[114.29721,22.50554],[114.29727,22.50544],[114.29739,22.50538],[114.29751,22.50521],[114.2979,22.50511],[114.29789,22.50487],[114.29794,22.5048],[114.29805,22.50474],[114.29838,22.50472],[114.29868,22.50463],[114.29885,22.5044],[114.29908,22.50433],[114.29926,22.50441],[114.29957,22.50449],[114.30008,22.50484],[114.30018,22.50518],[114.30031,22.50536],[114.30038,22.5054],[114.30059,22.50548],[114.30073,22.50549],[114.30099,22.50536],[114.30111,22.50543],[114.30127,22.50548],[114.30145,22.50569],[114.30199,22.50569],[114.30212,22.50584],[114.30228,22.50597],[114.30251,22.50589],[114.30275,22.50589],[114.30312,22.50591],[114.30321,22.50597],[114.30316,22.50615],[114.30322,22.50641],[114.30334,22.50648],[114.30331,22.5066],[114.3034,22.50687],[114.30357,22.50716],[114.30371,22.50737],[114.3041,22.50751],[114.30431,22.50768],[114.30463,22.50775],[114.30475,22.50784],[114.30459,22.50796],[114.30418,22.50845],[114.30434,22.50893],[114.30446,22.50916],[114.3046,22.50929],[114.30473,22.50936],[114.30508,22.5094],[114.30536,22.50951],[114.30538,22.50954],[114.30543,22.50962],[114.30552,22.50977],[114.30579,22.50991],[114.30596,22.50993],[114.3062,22.50985],[114.30645,22.50983],[114.30692,22.50967],[114.3072,22.50954],[114.30729,22.50943],[114.30742,22.50928],[114.30812,22.50893],[114.30842,22.5087],[114.30845,22.50869],[114.30897,22.50822],[114.30912,22.50815],[114.30956,22.50812],[114.3099,22.50818],[114.31022,22.50809],[114.31032,22.50803],[114.31051,22.50812],[114.31062,22.50832],[114.31069,22.50837],[114.31073,22.50855],[114.31078,22.50859],[114.31095,22.50865],[114.31097,22.50899],[114.31106,22.50927],[114.31117,22.50944],[114.31119,22.50961],[114.31126,22.50978],[114.31141,22.5102],[114.31149,22.51036],[114.31148,22.5104],[114.31161,22.5107],[114.31173,22.51083],[114.31214,22.51106],[114.31243,22.51105],[114.3128,22.51098],[114.31336,22.511],[114.3139,22.51123],[114.31437,22.51137],[114.31525,22.51147],[114.31617,22.51193],[114.31636,22.51207],[114.31644,22.5122],[114.31664,22.5124],[114.31688,22.51283],[114.31717,22.51317],[114.31738,22.51332],[114.31766,22.51334],[114.31792,22.51356],[114.31815,22.51364],[114.31828,22.51384],[114.31834,22.51394],[114.31849,22.51431],[114.31847,22.51461],[114.31856,22.51492],[114.31856,22.51505],[114.31865,22.51535],[114.31875,22.51551],[114.31969,22.51605],[114.32001,22.51615],[114.32016,22.51614],[114.32032,22.51617],[114.32084,22.51635],[114.32096,22.51632],[114.32127,22.51638],[114.32129,22.51643],[114.32125,22.51657],[114.32136,22.51663],[114.32139,22.51673],[114.32129,22.51694],[114.32112,22.51699],[114.32104,22.51697],[114.3209,22.51682],[114.32054,22.517],[114.32042,22.51713],[114.32043,22.51728],[114.32038,22.51737],[114.32033,22.51747],[114.32019,22.51761],[114.32012,22.51772],[114.32029,22.51778],[114.32032,22.51784],[114.32015,22.51798],[114.31986,22.51808],[114.31973,22.51803],[114.31949,22.51827],[114.3194,22.51833],[114.3193,22.51833],[114.31913,22.51843],[114.31897,22.51867],[114.31908,22.51876],[114.31907,22.51881],[114.31897,22.51891],[114.31886,22.51893],[114.31861,22.51881],[114.31854,22.5187],[114.31845,22.51869],[114.31831,22.51857],[114.31831,22.51845],[114.31829,22.51842],[114.31826,22.51838],[114.31804,22.51837],[114.31769,22.51847],[114.31759,22.51838],[114.3176,22.51831],[114.31757,22.51825],[114.31749,22.51805],[114.3174,22.51796],[114.31731,22.51789],[114.31723,22.5177],[114.31714,22.51761],[114.31707,22.51755],[114.31685,22.51754],[114.3168,22.51761],[114.31678,22.51765],[114.31661,22.5177],[114.31647,22.51761],[114.31633,22.51782],[114.3163,22.51776],[114.31634,22.51761],[114.31636,22.51752],[114.3162,22.51736],[114.31588,22.51759],[114.31593,22.51761],[114.31598,22.51764],[114.31608,22.51776],[114.31626,22.51786],[114.31658,22.51799],[114.31674,22.5181],[114.3169,22.51813],[114.31723,22.51804],[114.31747,22.51821],[114.31736,22.51825],[114.31732,22.51835],[114.31709,22.51849],[114.31671,22.51883],[114.31648,22.51922],[114.3164,22.51966],[114.31642,22.51989],[114.3165,22.51998],[114.31663,22.52003],[114.31686,22.52012],[114.31715,22.52032],[114.3172,22.52035],[114.31729,22.52031],[114.31743,22.52047],[114.31739,22.52054],[114.31727,22.52055],[114.31712,22.52063],[114.31691,22.5208],[114.31679,22.52097],[114.31668,22.52107],[114.31657,22.52122],[114.31651,22.52125],[114.31629,22.52132],[114.3163,22.52152],[114.31638,22.52164],[114.31636,22.5217],[114.31627,22.52174],[114.31614,22.52182],[114.31609,22.52205],[114.31595,22.5222],[114.31589,22.52232],[114.31578,22.5224],[114.31567,22.5226],[114.31561,22.52286],[114.31548,22.5231],[114.31515,22.52343],[114.31494,22.52357],[114.31485,22.52363],[114.31467,22.52377],[114.31443,22.52386],[114.31423,22.52376],[114.31407,22.52386],[114.31405,22.52393],[114.3141,22.52406],[114.3141,22.52431],[114.31399,22.52436],[114.31357,22.52429],[114.31331,22.52433],[114.31319,22.5244],[114.31309,22.52461],[114.31295,22.52472],[114.31284,22.5247],[114.31281,22.52469],[114.31257,22.5245],[114.31222,22.52463],[114.31206,22.52462],[114.31197,22.52496],[114.31192,22.52501],[114.31175,22.52497],[114.31149,22.52491],[114.31128,22.52498],[114.31112,22.5251],[114.31103,22.52526],[114.31103,22.52555],[114.31098,22.52566],[114.3109,22.52572],[114.31066,22.52566],[114.31061,22.52568],[114.31047,22.52601],[114.31035,22.52609],[114.31027,22.52609],[114.31017,22.52599],[114.31002,22.52593],[114.30981,22.5259],[114.30958,22.5261]]],[[[114.28799,22.52648],[114.28798,22.52649],[114.28795,22.52649],[114.28794,22.52649],[114.28792,22.52649],[114.28791,22.52648],[114.28789,22.52648],[114.28788,22.52649],[114.28787,22.52649],[114.28786,22.52647],[114.28784,22.52646],[114.28782,22.52645],[114.28781,22.52643],[114.28781,22.52643],[114.28779,22.52641],[114.28778,22.52641],[114.28776,22.5264],[114.28775,22.5264],[114.28773,22.52639],[114.28773,22.52637],[114.28773,22.52636],[114.28771,22.52636],[114.2877,22.52636],[114.28769,22.52637],[114.28766,22.52636],[114.28763,22.52635],[114.28762,22.52634],[114.28761,22.52633],[114.2876,22.52633],[114.28757,22.52633],[114.28756,22.52632],[114.28756,22.5263],[114.28756,22.52629],[114.28755,22.52626],[114.28756,22.52625],[114.28756,22.52624],[114.28755,22.52621],[114.28755,22.5262],[114.28756,22.52617],[114.28758,22.52616],[114.28759,22.52615],[114.28761,22.52615],[114.28766,22.52616],[114.28768,22.52617],[114.2877,22.52617],[114.28772,22.52617],[114.28775,22.52617],[114.28777,22.52617],[114.28778,22.52617],[114.28779,22.52617],[114.28781,22.52618],[114.28782,22.52618],[114.28783,22.52618],[114.28785,22.52618],[114.28786,22.52618],[114.2879,22.52619],[114.28792,22.52621],[114.28796,22.52622],[114.28799,22.52622],[114.28799,22.52623],[114.288,22.52624],[114.288,22.52626],[114.28801,22.52628],[114.28802,22.52629],[114.28803,22.5263],[114.28804,22.52632],[114.28804,22.52634],[114.28804,22.52635],[114.28804,22.52636],[114.28804,22.52637],[114.28804,22.52638],[114.28803,22.5264],[114.28801,22.52641],[114.28801,22.52642],[114.28801,22.52643],[114.288,22.52644],[114.288,22.52646],[114.28799,22.52648]]],[[[114.27346,22.52695],[114.27348,22.52712],[114.27329,22.52728],[114.2731,22.52732],[114.2731,22.52718],[114.27335,22.52695],[114.27346,22.52695]]],[[[114.20928,22.52784],[114.2093,22.52786],[114.20933,22.5279],[114.20933,22.52792],[114.20933,22.52794],[114.2093,22.52797],[114.20929,22.52799],[114.20926,22.528],[114.20924,22.52799],[114.20923,22.52798],[114.20921,22.52796],[114.2092,22.52794],[114.20923,22.52792],[114.20922,22.52784],[114.20924,22.52783],[114.20928,22.52784]]],[[[114.21141,22.52755],[114.21141,22.52768],[114.21126,22.52788],[114.21113,22.52811],[114.2109,22.52828],[114.21072,22.5282],[114.21059,22.52815],[114.21044,22.52807],[114.21037,22.52802],[114.21031,22.52798],[114.21027,22.52794],[114.21027,22.52785],[114.21028,22.52775],[114.2103,22.52769],[114.2104,22.52757],[114.21042,22.52746],[114.21043,22.52738],[114.21044,22.52735],[114.21049,22.52732],[114.21054,22.52731],[114.21065,22.52733],[114.2107,22.52733],[114.21113,22.52721],[114.21121,22.52721],[114.2113,22.52723],[114.21136,22.52727],[114.2114,22.52732],[114.21141,22.52755]]],[[[114.2728,22.53036],[114.2728,22.53036],[114.27282,22.53038],[114.27282,22.53039],[114.27283,22.5304],[114.27284,22.53041],[114.27285,22.53042],[114.27286,22.53045],[114.27286,22.53046],[114.27286,22.53048],[114.27286,22.53049],[114.27287,22.5305],[114.27288,22.53052],[114.27289,22.53052],[114.27289,22.53052],[114.27292,22.53053],[114.27293,22.53053],[114.27294,22.53053],[114.27296,22.53054],[114.27297,22.53055],[114.27297,22.53055],[114.27297,22.53056],[114.27296,22.53056],[114.27296,22.53056],[114.27293,22.53056],[114.27292,22.53056],[114.27289,22.53056],[114.27286,22.53055],[114.27285,22.53054],[114.27283,22.53053],[114.27282,22.53053],[114.27281,22.53052],[114.2728,22.5305],[114.27279,22.53049],[114.27279,22.53048],[114.27278,22.53047],[114.27277,22.53045],[114.27276,22.53042],[114.27276,22.53041],[114.27275,22.5304],[114.27275,22.53038],[114.27275,22.53037],[114.27276,22.53037],[114.27276,22.53036],[114.27276,22.53036],[114.27277,22.53035],[114.27279,22.53035],[114.2728,22.53036]]],[[[114.29201,22.53097],[114.29204,22.531],[114.29206,22.53102],[114.29213,22.53114],[114.29219,22.53121],[114.2922,22.53123],[114.29221,22.53126],[114.29221,22.53128],[114.29219,22.53129],[114.29216,22.53128],[114.29213,22.53125],[114.29203,22.53119],[114.29201,22.53118],[114.292,22.53115],[114.29199,22.53112],[114.29198,22.5311],[114.29196,22.53108],[114.29189,22.53105],[114.29187,22.53103],[114.29187,22.53101],[114.29189,22.53098],[114.29191,22.53096],[114.29198,22.53095],[114.29201,22.53097]]],[[[114.3149,22.53117],[114.31491,22.53119],[114.31491,22.53121],[114.31492,22.53124],[114.31491,22.53128],[114.31489,22.53129],[114.31487,22.5313],[114.31486,22.53132],[114.31481,22.53135],[114.31479,22.53135],[114.31477,22.53133],[114.31477,22.53131],[114.31479,22.53129],[114.31486,22.53124],[114.31486,22.53122],[114.31485,22.5312],[114.31485,22.53119],[114.31487,22.53117],[114.3149,22.53117]]],[[[114.32017,22.53176],[114.32024,22.5318],[114.32024,22.53181],[114.32024,22.53182],[114.32024,22.53183],[114.3202,22.53185],[114.32019,22.53185],[114.32018,22.53184],[114.32015,22.53181],[114.32014,22.53178],[114.32014,22.53177],[114.32016,22.53176],[114.32017,22.53176]]],[[[114.22745,22.53239],[114.22737,22.53237],[114.22727,22.53229],[114.22719,22.53225],[114.22713,22.53219],[114.22713,22.5321],[114.22716,22.53205],[114.22717,22.53199],[114.22708,22.53195],[114.22704,22.53196],[114.22703,22.53188],[114.22705,22.53183],[114.22704,22.5318],[114.22691,22.53167],[114.22687,22.53159],[114.22686,22.53152],[114.22703,22.53149],[114.22715,22.5314],[114.22717,22.53143],[114.22718,22.53151],[114.22726,22.5316],[114.22727,22.53167],[114.2274,22.53176],[114.22745,22.53179],[114.22748,22.53183],[114.22755,22.532],[114.22755,22.53205],[114.22751,22.53213],[114.22758,22.53222],[114.22763,22.5323],[114.22762,22.53233],[114.22755,22.53235],[114.22753,22.53234],[114.22745,22.53239]]],[[[114.28876,22.53289],[114.28874,22.53297],[114.28848,22.53288],[114.28815,22.53292],[114.28806,22.53283],[114.28804,22.53274],[114.28822,22.53268],[114.28854,22.53269],[114.28876,22.53281],[114.28876,22.53289]]],[[[114.28095,22.53242],[114.28097,22.53254],[114.28069,22.53279],[114.28065,22.53291],[114.28025,22.533],[114.28018,22.53298],[114.28014,22.53288],[114.27992,22.53279],[114.2799,22.53249],[114.27998,22.53234],[114.28005,22.53227],[114.28025,22.53235],[114.28059,22.53234],[114.28081,22.53229],[114.28095,22.53242]]],[[[114.27286,22.53338],[114.2728,22.5334],[114.27266,22.53331],[114.27253,22.53332],[114.27248,22.5331],[114.27251,22.53288],[114.27238,22.53259],[114.27255,22.53244],[114.27284,22.53242],[114.27302,22.53267],[114.27299,22.53291],[114.27296,22.53297],[114.27297,22.53318],[114.27286,22.53338]]],[[[114.27507,22.53464],[114.27504,22.53466],[114.27492,22.53481],[114.27489,22.53483],[114.27471,22.53488],[114.27465,22.53489],[114.27459,22.53489],[114.27459,22.53488],[114.27459,22.53477],[114.27463,22.53463],[114.2747,22.53454],[114.27492,22.53436],[114.27502,22.53417],[114.27507,22.5339],[114.27501,22.53357],[114.27505,22.53332],[114.27503,22.53302],[114.27516,22.53206],[114.27517,22.53204],[114.27517,22.53204],[114.27517,22.53203],[114.27518,22.53203],[114.27518,22.53203],[114.2752,22.53203],[114.27523,22.53204],[114.27526,22.53206],[114.27528,22.53206],[114.27532,22.53206],[114.27545,22.53204],[114.27552,22.53203],[114.27585,22.53204],[114.27589,22.53203],[114.27594,22.53203],[114.27598,22.53204],[114.276,22.53206],[114.27604,22.53213],[114.27609,22.53216],[114.27622,22.53224],[114.27647,22.53255],[114.2772,22.53325],[114.27723,22.53332],[114.27725,22.53347],[114.27722,22.53351],[114.27697,22.53354],[114.27681,22.53369],[114.27677,22.53371],[114.27673,22.5337],[114.27661,22.53356],[114.27648,22.53343],[114.27638,22.53341],[114.27618,22.53342],[114.27586,22.53351],[114.2754,22.53374],[114.27511,22.53402],[114.2751,22.53405],[114.27517,22.53444],[114.2752,22.53453],[114.27528,22.53455],[114.27525,22.53465],[114.27517,22.5347],[114.27511,22.53464],[114.27509,22.53464],[114.27507,22.53464]]],[[[114.31991,22.53773],[114.31976,22.53775],[114.31955,22.53764],[114.31922,22.53753],[114.31914,22.53757],[114.31911,22.53746],[114.31893,22.53735],[114.31896,22.53725],[114.31883,22.53721],[114.31868,22.53722],[114.31859,22.53729],[114.31847,22.53726],[114.31829,22.5371],[114.31828,22.53693],[114.31822,22.5369],[114.31825,22.5367],[114.3182,22.53653],[114.31824,22.5363],[114.31831,22.53615],[114.31829,22.53575],[114.31818,22.53545],[114.31818,22.53535],[114.31807,22.53508],[114.31809,22.53491],[114.31803,22.53488],[114.318,22.53481],[114.31807,22.53466],[114.31803,22.53458],[114.31804,22.5345],[114.31814,22.53418],[114.31836,22.53361],[114.31848,22.5335],[114.31847,22.53342],[114.31843,22.53341],[114.31839,22.53334],[114.31841,22.53327],[114.31838,22.53326],[114.3184,22.53315],[114.31862,22.53294],[114.31891,22.53278],[114.31891,22.53271],[114.31899,22.53266],[114.31908,22.53251],[114.31909,22.53237],[114.319,22.53202],[114.31886,22.53187],[114.31883,22.53172],[114.31868,22.53138],[114.31856,22.5313],[114.31846,22.53131],[114.31832,22.53121],[114.31832,22.53095],[114.31827,22.53087],[114.31825,22.53069],[114.31819,22.53066],[114.31816,22.53054],[114.31806,22.53041],[114.31785,22.53031],[114.31763,22.52997],[114.31755,22.5299],[114.31745,22.52987],[114.31742,22.52967],[114.31688,22.52921],[114.31652,22.52914],[114.31607,22.52915],[114.31587,22.52886],[114.31578,22.52886],[114.31581,22.52878],[114.31565,22.52857],[114.3153,22.52853],[114.31484,22.52854],[114.31439,22.52872],[114.31412,22.52886],[114.31407,22.52901],[114.31405,22.52938],[114.31413,22.52986],[114.31406,22.53012],[114.31399,22.53015],[114.314,22.5303],[114.31394,22.5304],[114.31375,22.53048],[114.31368,22.53057],[114.31365,22.53069],[114.31367,22.53087],[114.31362,22.53094],[114.31358,22.53091],[114.31338,22.5313],[114.31337,22.53141],[114.31344,22.53147],[114.31338,22.53147],[114.31338,22.53155],[114.31328,22.53167],[114.31325,22.5316],[114.31323,22.53168],[114.31318,22.53173],[114.31312,22.53168],[114.31305,22.53173],[114.31299,22.53168],[114.31287,22.53169],[114.31283,22.53178],[114.31276,22.53174],[114.31267,22.53179],[114.3127,22.53211],[114.31252,22.5324],[114.31239,22.53252],[114.31234,22.53266],[114.31224,22.53277],[114.31212,22.53278],[114.31202,22.5329],[114.31203,22.53297],[114.31196,22.53316],[114.31202,22.5332],[114.31206,22.53359],[114.31202,22.5338],[114.31194,22.53394],[114.31191,22.53392],[114.31184,22.53401],[114.31172,22.53399],[114.31168,22.53405],[114.31157,22.53408],[114.31141,22.53422],[114.31131,22.53422],[114.31106,22.53432],[114.31093,22.53442],[114.31081,22.53443],[114.31078,22.5344],[114.31066,22.53447],[114.31063,22.53453],[114.31054,22.53452],[114.3105,22.53472],[114.31046,22.53472],[114.31041,22.53466],[114.31037,22.53469],[114.31029,22.5349],[114.31006,22.53506],[114.3101,22.53508],[114.31005,22.53511],[114.31005,22.53518],[114.30994,22.53518],[114.30979,22.53515],[114.30974,22.53508],[114.3096,22.53513],[114.3095,22.53511],[114.3094,22.53503],[114.30936,22.53504],[114.30927,22.53485],[114.3093,22.53475],[114.30924,22.53475],[114.3091,22.53462],[114.30898,22.53432],[114.30884,22.5341],[114.30861,22.53396],[114.30822,22.5336],[114.30802,22.53327],[114.30799,22.53332],[114.30794,22.53324],[114.30782,22.53284],[114.30785,22.53249],[114.30781,22.53244],[114.30776,22.53247],[114.30775,22.53245],[114.30786,22.53227],[114.30781,22.53206],[114.30791,22.53156],[114.30792,22.53145],[114.30787,22.53137],[114.30799,22.53117],[114.30801,22.53103],[114.308,22.53065],[114.30806,22.53014],[114.308,22.53002],[114.30809,22.52978],[114.3082,22.52967],[114.30825,22.52943],[114.30816,22.52939],[114.30812,22.52932],[114.30808,22.52917],[114.3081,22.52901],[114.30838,22.52891],[114.30851,22.5289],[114.30863,22.52882],[114.30871,22.52887],[114.30885,22.52885],[114.30907,22.52875],[114.30922,22.52854],[114.30939,22.52849],[114.30945,22.52841],[114.30963,22.52841],[114.31012,22.52825],[114.31031,22.52811],[114.31045,22.5281],[114.31056,22.52814],[114.31079,22.52796],[114.31101,22.52788],[114.31144,22.52795],[114.31173,22.52757],[114.31212,22.52743],[114.31233,22.5274],[114.31269,22.52693],[114.31291,22.52685],[114.31314,22.52669],[114.31334,22.52661],[114.31372,22.52627],[114.31414,22.52598],[114.31429,22.52574],[114.3145,22.52571],[114.3146,22.52563],[114.31464,22.52553],[114.31469,22.52549],[114.31498,22.52544],[114.31534,22.52509],[114.31547,22.52495],[114.31559,22.52491],[114.31575,22.52481],[114.31608,22.52478],[114.31617,22.52476],[114.31628,22.52465],[114.31628,22.52461],[114.31622,22.52459],[114.31623,22.52453],[114.31633,22.52453],[114.31636,22.52462],[114.31662,22.52468],[114.31679,22.52466],[114.31689,22.52464],[114.31698,22.52468],[114.31756,22.52481],[114.3178,22.52483],[114.31819,22.52449],[114.31823,22.52437],[114.31839,22.52413],[114.31855,22.52381],[114.31852,22.52348],[114.31857,22.52333],[114.31867,22.52325],[114.31879,22.52315],[114.31888,22.52312],[114.31889,22.5231],[114.31893,22.52308],[114.31896,22.52303],[114.31899,22.52301],[114.319,22.52301],[114.31902,22.52302],[114.31906,22.52304],[114.31908,22.52309],[114.3191,22.5231],[114.31922,22.5231],[114.31924,22.5231],[114.31927,22.52312],[114.31929,22.52314],[114.3193,22.52316],[114.3193,22.5232],[114.31929,22.52325],[114.31929,22.52329],[114.31932,22.52332],[114.31937,22.52333],[114.31939,22.52333],[114.31941,22.52334],[114.31942,22.52337],[114.31948,22.52341],[114.31951,22.5234],[114.31952,22.52338],[114.31955,22.52336],[114.3196,22.52334],[114.31963,22.52334],[114.31967,22.5235],[114.31978,22.5235],[114.31976,22.52356],[114.3198,22.52357],[114.31981,22.52361],[114.32005,22.52361],[114.3201,22.52365],[114.32018,22.52359],[114.3202,22.52367],[114.32015,22.52381],[114.3202,22.52393],[114.32014,22.52409],[114.32025,22.52405],[114.32021,22.5242],[114.32031,22.52426],[114.32029,22.52435],[114.32035,22.52445],[114.32037,22.52441],[114.32056,22.52448],[114.32068,22.52464],[114.32072,22.52523],[114.3207,22.52565],[114.32061,22.52595],[114.32063,22.52604],[114.3206,22.52621],[114.32034,22.52655],[114.32025,22.52656],[114.32015,22.52683],[114.32004,22.52695],[114.32009,22.52698],[114.32005,22.52701],[114.32003,22.52728],[114.32006,22.52747],[114.31991,22.52764],[114.32005,22.52764],[114.32012,22.52777],[114.32016,22.52773],[114.32018,22.52776],[114.32012,22.52805],[114.32018,22.52824],[114.32011,22.52856],[114.32014,22.5288],[114.31998,22.52904],[114.31998,22.52925],[114.31991,22.52932],[114.31993,22.52939],[114.31999,22.52935],[114.32001,22.5294],[114.31997,22.52945],[114.32001,22.5296],[114.31998,22.52991],[114.31991,22.52997],[114.31988,22.53008],[114.31981,22.53016],[114.31979,22.53029],[114.31973,22.53028],[114.31976,22.53039],[114.31964,22.53051],[114.31982,22.53046],[114.31988,22.53072],[114.31976,22.53096],[114.31966,22.53098],[114.31966,22.5311],[114.3197,22.53117],[114.31976,22.53112],[114.31983,22.53115],[114.31983,22.53107],[114.31986,22.53105],[114.3199,22.5311],[114.31986,22.53132],[114.31981,22.53133],[114.31978,22.53126],[114.31974,22.53134],[114.31982,22.53151],[114.31979,22.53157],[114.31981,22.53164],[114.3199,22.53171],[114.32005,22.53156],[114.32011,22.5316],[114.32013,22.53164],[114.32004,22.53177],[114.32008,22.53184],[114.32022,22.53188],[114.32027,22.53199],[114.32035,22.53197],[114.32043,22.53206],[114.32047,22.53201],[114.32052,22.53206],[114.32061,22.53205],[114.32063,22.53211],[114.32056,22.53222],[114.32058,22.53226],[114.32066,22.5323],[114.32076,22.53226],[114.32084,22.5323],[114.32086,22.53223],[114.32095,22.53218],[114.32104,22.53229],[114.32107,22.53219],[114.32115,22.53223],[114.32118,22.53236],[114.32126,22.53248],[114.32137,22.53255],[114.32147,22.53276],[114.32148,22.53339],[114.32156,22.53352],[114.3216,22.53388],[114.32153,22.53422],[114.32147,22.53422],[114.32146,22.5343],[114.32142,22.5343],[114.32137,22.53442],[114.32133,22.5344],[114.32129,22.53454],[114.32135,22.53453],[114.32138,22.53463],[114.32131,22.5348],[114.32119,22.53484],[114.32099,22.53553],[114.32084,22.53552],[114.32074,22.53537],[114.3207,22.53516],[114.32057,22.53511],[114.32048,22.53512],[114.32041,22.53506],[114.32036,22.53513],[114.32032,22.53532],[114.32021,22.53526],[114.32016,22.53543],[114.32027,22.53561],[114.32029,22.53584],[114.32019,22.53611],[114.3202,22.53636],[114.32012,22.53644],[114.3201,22.53653],[114.32022,22.53661],[114.32026,22.53673],[114.3202,22.53691],[114.32016,22.53725],[114.3201,22.53725],[114.32011,22.53746],[114.31991,22.53773]]],[[[114.26764,22.53807],[114.26768,22.5382],[114.26775,22.53827],[114.26774,22.53831],[114.26767,22.53835],[114.26764,22.53847],[114.26755,22.53855],[114.26737,22.53865],[114.26735,22.53868],[114.26731,22.53875],[114.2672,22.53881],[114.26706,22.53884],[114.26699,22.53875],[114.26703,22.53867],[114.26699,22.53864],[114.26703,22.53855],[114.26717,22.53824],[114.26732,22.53815],[114.26737,22.53807],[114.26747,22.53801],[114.26764,22.53807]]],[[[114.30963,22.54029],[114.30964,22.54034],[114.30964,22.54034],[114.30962,22.54036],[114.30962,22.54041],[114.30962,22.54042],[114.30961,22.54043],[114.3096,22.54042],[114.30959,22.54039],[114.30958,22.54032],[114.30959,22.54029],[114.30961,22.54028],[114.30963,22.54029]]],[[[114.30758,22.54201],[114.30751,22.54201],[114.30741,22.54201],[114.30735,22.54197],[114.30703,22.54177],[114.30678,22.54154],[114.30648,22.54144],[114.30623,22.5413],[114.30604,22.54126],[114.30592,22.54114],[114.3059,22.54102],[114.3058,22.54089],[114.3056,22.54087],[114.30547,22.54076],[114.30538,22.5406],[114.30544,22.54027],[114.30541,22.54],[114.30525,22.53975],[114.30518,22.53929],[114.30539,22.53858],[114.30538,22.53845],[114.30529,22.53827],[114.30534,22.53817],[114.30542,22.53813],[114.30548,22.53802],[114.30543,22.53778],[114.3053,22.53766],[114.30527,22.53759],[114.30533,22.53733],[114.30549,22.53725],[114.30568,22.53729],[114.30584,22.5374],[114.30592,22.53747],[114.30613,22.5375],[114.30634,22.53754],[114.30662,22.53765],[114.30669,22.53772],[114.30683,22.53779],[114.30707,22.53797],[114.30748,22.53819],[114.30766,22.53838],[114.30772,22.53834],[114.30785,22.53842],[114.30776,22.53853],[114.30811,22.53872],[114.30825,22.53892],[114.30852,22.53923],[114.30875,22.53942],[114.30894,22.53949],[114.30927,22.53959],[114.30941,22.53976],[114.30946,22.53995],[114.30947,22.5402],[114.30959,22.54053],[114.30973,22.54053],[114.30981,22.54057],[114.30983,22.5408],[114.30968,22.54089],[114.30961,22.54089],[114.30943,22.54106],[114.3093,22.54115],[114.30899,22.54162],[114.3089,22.54169],[114.30885,22.54172],[114.30874,22.54173],[114.30868,22.54174],[114.3086,22.54178],[114.30852,22.54189],[114.30845,22.54192],[114.30832,22.54197],[114.30815,22.54191],[114.30807,22.54193],[114.30758,22.54201]]],[[[114.21949,22.54125],[114.21962,22.54135],[114.21974,22.54145],[114.21979,22.54149],[114.21988,22.54156],[114.21999,22.54168],[114.22006,22.54173],[114.22008,22.54177],[114.22009,22.54184],[114.22008,22.54188],[114.2201,22.54192],[114.22016,22.54203],[114.22018,22.54211],[114.22018,22.54219],[114.22015,22.54224],[114.22013,22.54223],[114.22011,22.5422],[114.22014,22.54213],[114.22012,22.54207],[114.22008,22.54198],[114.22,22.54191],[114.21995,22.54185],[114.21989,22.54178],[114.21986,22.54175],[114.21983,22.54173],[114.21981,22.54173],[114.21975,22.5417],[114.21971,22.54167],[114.21967,22.54163],[114.21957,22.54143],[114.21946,22.54129],[114.21939,22.54126],[114.21936,22.54123],[114.21927,22.54121],[114.21916,22.54121],[114.21912,22.54122],[114.21908,22.54122],[114.21904,22.5412],[114.21903,22.54119],[114.21904,22.54117],[114.21907,22.54115],[114.21911,22.54114],[114.21922,22.54112],[114.21927,22.54112],[114.21934,22.54114],[114.21942,22.54119],[114.21949,22.54125]]],[[[114.31165,22.54222],[114.31163,22.54224],[114.31162,22.54227],[114.3116,22.54228],[114.31159,22.54228],[114.31159,22.54226],[114.31159,22.54222],[114.3116,22.54221],[114.3116,22.54219],[114.31161,22.54217],[114.31161,22.54215],[114.31159,22.54215],[114.31156,22.54213],[114.31149,22.54213],[114.31139,22.54207],[114.31142,22.542],[114.31136,22.54197],[114.31136,22.5419],[114.31141,22.54184],[114.31152,22.54176],[114.31162,22.54171],[114.31164,22.54171],[114.31163,22.54179],[114.31167,22.54178],[114.31169,22.54179],[114.31177,22.54172],[114.31178,22.54175],[114.31181,22.54179],[114.31183,22.54176],[114.31185,22.54177],[114.31183,22.54182],[114.31186,22.54193],[114.31185,22.54198],[114.31191,22.542],[114.31196,22.54202],[114.31199,22.54202],[114.312,22.54203],[114.312,22.54205],[114.31193,22.5421],[114.31189,22.54215],[114.31184,22.54217],[114.31181,22.54219],[114.3117,22.54219],[114.31165,22.54218],[114.31165,22.54222]]],[[[114.26595,22.54245],[114.26584,22.5425],[114.26568,22.54247],[114.26551,22.54238],[114.26521,22.5424],[114.26505,22.54234],[114.26505,22.54227],[114.26517,22.5421],[114.2655,22.54176],[114.26576,22.5417],[114.26586,22.54167],[114.26591,22.54169],[114.266,22.54176],[114.26604,22.54184],[114.26606,22.54213],[114.26604,22.54218],[114.26601,22.54232],[114.26595,22.54245]]],[[[114.33012,22.5425],[114.33003,22.54244],[114.32999,22.54235],[114.3299,22.54233],[114.32982,22.54236],[114.3296,22.54228],[114.32952,22.54213],[114.32928,22.54196],[114.32915,22.54189],[114.3291,22.54179],[114.32919,22.54158],[114.32949,22.5412],[114.32966,22.54092],[114.32983,22.54078],[114.32995,22.54071],[114.33007,22.54069],[114.33021,22.54058],[114.33034,22.54046],[114.33054,22.54025],[114.33068,22.53996],[114.33092,22.53981],[114.33095,22.5397],[114.33109,22.53963],[114.33119,22.53976],[114.33115,22.53985],[114.3312,22.54018],[114.33134,22.5405],[114.33133,22.54075],[114.33138,22.54088],[114.33148,22.54108],[114.33144,22.54128],[114.33141,22.54146],[114.33131,22.54158],[114.33123,22.54157],[114.33118,22.5416],[114.33121,22.54176],[114.33131,22.54182],[114.33127,22.54192],[114.33112,22.54202],[114.33116,22.54206],[114.3311,22.54213],[114.33109,22.54214],[114.33061,22.54243],[114.33053,22.54241],[114.33052,22.54246],[114.33045,22.54248],[114.3302,22.54247],[114.33012,22.5425]]],[[[114.22297,22.5435],[114.22303,22.54357],[114.22307,22.54372],[114.22305,22.54398],[114.22302,22.54399],[114.22299,22.54399],[114.22297,22.54398],[114.22296,22.54396],[114.22297,22.54374],[114.22297,22.54366],[114.2229,22.54355],[114.22281,22.54352],[114.22263,22.54349],[114.22251,22.5435],[114.22205,22.5434],[114.22174,22.54328],[114.22171,22.54327],[114.22167,22.54322],[114.22162,22.54319],[114.2216,22.54316],[114.22161,22.54314],[114.22165,22.54312],[114.22168,22.54313],[114.22178,22.54298],[114.22181,22.54296],[114.22189,22.54292],[114.22199,22.54294],[114.22206,22.54298],[114.22212,22.54302],[114.22232,22.54316],[114.22246,22.54328],[114.22261,22.54338],[114.22281,22.54344],[114.22294,22.54348],[114.22297,22.5435]]],[[[114.22439,22.54358],[114.22438,22.54359],[114.22436,22.54361],[114.22433,22.54365],[114.2243,22.54369],[114.22427,22.54375],[114.22421,22.54384],[114.22413,22.54395],[114.22408,22.54403],[114.22401,22.54413],[114.22398,22.54417],[114.22395,22.54422],[114.22392,22.54427],[114.2239,22.54428],[114.22389,22.54429],[114.22386,22.5443],[114.22384,22.54429],[114.22382,22.54428],[114.22381,22.54427],[114.22381,22.54424],[114.22382,22.54422],[114.22384,22.54418],[114.22388,22.54414],[114.22393,22.54405],[114.22399,22.54397],[114.22402,22.54392],[114.22408,22.54383],[114.22416,22.54372],[114.22423,22.5436],[114.22428,22.54353],[114.22431,22.54349],[114.22434,22.54347],[114.22436,22.54346],[114.22439,22.54345],[114.22441,22.54346],[114.22443,22.54346],[114.22447,22.54348],[114.22456,22.54352],[114.22461,22.54355],[114.22464,22.54358],[114.22464,22.5436],[114.22464,22.54362],[114.22463,22.54364],[114.22462,22.54364],[114.22461,22.54365],[114.22459,22.54365],[114.22457,22.54365],[114.22453,22.54363],[114.22449,22.54361],[114.22446,22.5436],[114.22443,22.54359],[114.22441,22.54358],[114.22439,22.54358]]],[[[114.29571,22.54613],[114.29574,22.54622],[114.29564,22.54643],[114.29561,22.54647],[114.2955,22.54654],[114.29543,22.54656],[114.29536,22.54652],[114.29533,22.54644],[114.29543,22.54628],[114.29545,22.54621],[114.29544,22.54609],[114.29553,22.54612],[114.29559,22.54604],[114.29565,22.54602],[114.29571,22.54605],[114.29572,22.54607],[114.29571,22.54613]]],[[[114.26139,22.54516],[114.26176,22.54551],[114.26209,22.5457],[114.26222,22.54584],[114.26218,22.54601],[114.26223,22.54623],[114.26216,22.54651],[114.26201,22.54663],[114.26198,22.5467],[114.26177,22.54672],[114.26149,22.54675],[114.26112,22.54668],[114.26083,22.54645],[114.26058,22.54635],[114.26044,22.54625],[114.26018,22.54582],[114.26005,22.54528],[114.25971,22.54519],[114.25943,22.54504],[114.25931,22.54511],[114.25928,22.54516],[114.25932,22.54526],[114.25961,22.54545],[114.25969,22.54562],[114.25965,22.54585],[114.25957,22.54592],[114.25948,22.54593],[114.2593,22.54584],[114.25903,22.5458],[114.25899,22.54575],[114.25899,22.54553],[114.25883,22.54527],[114.25874,22.54517],[114.25857,22.54513],[114.2587,22.54495],[114.259,22.54491],[114.25922,22.54474],[114.25945,22.54467],[114.25973,22.54474],[114.26018,22.54498],[114.26081,22.54494],[114.26111,22.54501],[114.26139,22.54516]]],[[[114.24283,22.54916],[114.24287,22.54923],[114.24288,22.54947],[114.24292,22.54962],[114.24288,22.54973],[114.24295,22.54986],[114.2429,22.5501],[114.24273,22.55019],[114.24261,22.55],[114.2426,22.54979],[114.24272,22.54947],[114.24268,22.54942],[114.2427,22.54922],[114.24274,22.54915],[114.24283,22.54916]]],[[[114.26215,22.55193],[114.26197,22.55191],[114.26194,22.55187],[114.26186,22.55188],[114.26181,22.55186],[114.26184,22.55179],[114.26177,22.55181],[114.26161,22.55187],[114.26125,22.55188],[114.26121,22.55182],[114.26106,22.55182],[114.26099,22.55181],[114.26087,22.55176],[114.26078,22.55179],[114.26068,22.55174],[114.26054,22.55163],[114.26053,22.55159],[114.2606,22.55156],[114.26071,22.55134],[114.26077,22.55132],[114.26087,22.55138],[114.26098,22.55137],[114.26101,22.55141],[114.26127,22.5515],[114.26133,22.5515],[114.26142,22.55143],[114.26152,22.55144],[114.26162,22.55149],[114.26174,22.55149],[114.26177,22.55152],[114.26186,22.55158],[114.26203,22.55157],[114.26209,22.55154],[114.26212,22.55148],[114.26215,22.55152],[114.26221,22.55147],[114.26231,22.55146],[114.26236,22.55149],[114.26244,22.55148],[114.26254,22.55148],[114.26257,22.5514],[114.26262,22.55143],[114.26257,22.55153],[114.26258,22.55164],[114.26254,22.55174],[114.26245,22.55185],[114.26236,22.55191],[114.26231,22.5519],[114.26215,22.55193]]],[[[114.26501,22.55265],[114.26498,22.55269],[114.26487,22.55268],[114.26476,22.55265],[114.26468,22.5526],[114.26465,22.55257],[114.26461,22.55245],[114.26461,22.55241],[114.26466,22.55241],[114.26473,22.55232],[114.26498,22.55235],[114.26504,22.55231],[114.26512,22.55236],[114.26515,22.55244],[114.26516,22.55251],[114.26512,22.55258],[114.2651,22.55258],[114.26509,22.55256],[114.26501,22.55265]]],[[[114.43038,22.55316],[114.43027,22.55321],[114.43012,22.55324],[114.42945,22.55289],[114.42936,22.55286],[114.42935,22.55292],[114.42927,22.55293],[114.42916,22.55284],[114.42906,22.55283],[114.42871,22.55265],[114.4286,22.55263],[114.42845,22.55254],[114.42836,22.55236],[114.42771,22.55208],[114.42749,22.55204],[114.42725,22.55216],[114.42714,22.55216],[114.427,22.55211],[114.42682,22.55192],[114.42668,22.55186],[114.4266,22.5519],[114.42646,22.55184],[114.42638,22.55174],[114.42629,22.5517],[114.42619,22.55156],[114.42605,22.55161],[114.42602,22.55151],[114.42591,22.55146],[114.42583,22.55147],[114.42577,22.55139],[114.42565,22.55097],[114.42564,22.5506],[114.42555,22.55043],[114.42547,22.55012],[114.42546,22.54931],[114.42539,22.54916],[114.4253,22.54898],[114.42526,22.54887],[114.42516,22.54877],[114.42508,22.54878],[114.42503,22.54867],[114.42498,22.5487],[114.42489,22.54869],[114.42488,22.54857],[114.42473,22.54867],[114.42459,22.54859],[114.42455,22.54851],[114.42451,22.54851],[114.42447,22.54857],[114.42445,22.54846],[114.42441,22.54838],[114.42423,22.54827],[114.42416,22.54814],[114.42419,22.548],[114.42414,22.54793],[114.4242,22.54771],[114.42434,22.54765],[114.42463,22.54763],[114.42459,22.54774],[114.42462,22.54786],[114.42474,22.54791],[114.42478,22.54778],[114.42482,22.5479],[114.42492,22.54797],[114.42502,22.54798],[114.42539,22.54786],[114.42566,22.54767],[114.42569,22.54737],[114.42583,22.5472],[114.42577,22.54661],[114.42569,22.54657],[114.4257,22.54647],[114.42575,22.54643],[114.42572,22.54641],[114.42568,22.54637],[114.42565,22.54589],[114.42572,22.54583],[114.4257,22.5457],[114.42564,22.54573],[114.42562,22.5457],[114.42567,22.5455],[114.42562,22.54542],[114.42566,22.54497],[114.42561,22.54492],[114.42554,22.54496],[114.42551,22.5448],[114.42555,22.54448],[114.42569,22.54417],[114.42578,22.54407],[114.42578,22.54392],[114.42587,22.54374],[114.42586,22.54367],[114.42581,22.54362],[114.42577,22.5435],[114.42586,22.5433],[114.42577,22.54327],[114.42572,22.54322],[114.42568,22.54302],[114.42594,22.54264],[114.42611,22.5425],[114.42615,22.54239],[114.42623,22.54236],[114.4263,22.5424],[114.42632,22.54232],[114.42638,22.54227],[114.42656,22.54218],[114.42676,22.54208],[114.42682,22.54196],[114.42706,22.54172],[114.42719,22.54147],[114.42728,22.54103],[114.42752,22.5407],[114.42772,22.54053],[114.42782,22.5405],[114.42806,22.54059],[114.42824,22.54061],[114.42832,22.54075],[114.42857,22.54086],[114.42864,22.54097],[114.42894,22.54069],[114.42902,22.54075],[114.42932,22.54084],[114.42951,22.54085],[114.42978,22.54077],[114.42997,22.5406],[114.43007,22.54058],[114.43015,22.54047],[114.43024,22.54042],[114.43032,22.54043],[114.43041,22.5403],[114.43071,22.54019],[114.43102,22.54002],[114.43106,22.53992],[114.43133,22.53983],[114.43147,22.53975],[114.43164,22.53959],[114.43182,22.53953],[114.43192,22.5394],[114.43196,22.53922],[114.43202,22.53918],[114.43205,22.53922],[114.43216,22.53918],[114.43211,22.5391],[114.43221,22.53903],[114.43226,22.53911],[114.43237,22.53904],[114.4324,22.53894],[114.43264,22.53885],[114.43284,22.5387],[114.43313,22.53858],[114.43322,22.53849],[114.43337,22.53848],[114.43386,22.53828],[114.43409,22.53827],[114.43427,22.53815],[114.43444,22.53805],[114.43486,22.53784],[114.43497,22.53781],[114.43506,22.53783],[114.43536,22.53774],[114.43605,22.5377],[114.43644,22.53774],[114.43677,22.53786],[114.43752,22.53791],[114.43775,22.53788],[114.43793,22.53781],[114.43854,22.53781],[114.43872,22.53785],[114.439,22.53801],[114.43946,22.53815],[114.43997,22.5386],[114.44012,22.53885],[114.4404,22.53951],[114.4407,22.5397],[114.44094,22.53974],[114.44106,22.53979],[114.44185,22.54035],[114.44197,22.54054],[114.44196,22.5407],[114.44185,22.54091],[114.44157,22.54104],[114.44145,22.54125],[114.44135,22.54129],[114.44132,22.54144],[114.44126,22.5415],[114.4412,22.54147],[114.44106,22.54158],[114.44091,22.54161],[114.44037,22.54151],[114.43985,22.5417],[114.43971,22.5418],[114.43968,22.54187],[114.43959,22.54186],[114.43959,22.54195],[114.43953,22.54201],[114.43921,22.54201],[114.43913,22.54207],[114.4391,22.54212],[114.43914,22.54217],[114.43902,22.54224],[114.4388,22.54228],[114.43851,22.54218],[114.43842,22.54223],[114.43831,22.54218],[114.43818,22.5422],[114.43812,22.54228],[114.43801,22.5423],[114.43792,22.54225],[114.43773,22.54219],[114.43761,22.54203],[114.43748,22.54195],[114.43727,22.54189],[114.43721,22.5418],[114.43704,22.54172],[114.43699,22.54173],[114.43697,22.54171],[114.43701,22.54168],[114.43701,22.54166],[114.43688,22.54158],[114.43672,22.54155],[114.4365,22.54157],[114.43598,22.5417],[114.43595,22.54175],[114.43574,22.54182],[114.43518,22.54223],[114.43473,22.54275],[114.43474,22.54282],[114.43467,22.54289],[114.43395,22.54331],[114.43372,22.54333],[114.43343,22.5436],[114.43329,22.54393],[114.43299,22.54442],[114.43296,22.54454],[114.43297,22.54459],[114.43357,22.54507],[114.43353,22.54512],[114.43293,22.54465],[114.43288,22.54462],[114.43278,22.54476],[114.43273,22.54478],[114.43269,22.54478],[114.43268,22.54459],[114.43256,22.54452],[114.4325,22.5444],[114.43244,22.54437],[114.43218,22.54438],[114.43165,22.54463],[114.4314,22.54487],[114.4313,22.54509],[114.43126,22.54513],[114.43121,22.5451],[114.43105,22.54525],[114.43095,22.54553],[114.43072,22.54599],[114.4307,22.54618],[114.43077,22.54626],[114.43075,22.54658],[114.43078,22.54672],[114.4308,22.54682],[114.4307,22.54695],[114.43066,22.5471],[114.43054,22.54719],[114.43055,22.54752],[114.43064,22.54766],[114.43065,22.54775],[114.43065,22.5479],[114.43059,22.54809],[114.43044,22.54818],[114.43035,22.54852],[114.43029,22.54906],[114.43014,22.54985],[114.43011,22.55064],[114.43015,22.55095],[114.43027,22.55146],[114.4305,22.55171],[114.43052,22.55187],[114.43049,22.55239],[114.43055,22.5526],[114.43054,22.55281],[114.43038,22.55316]]],[[[114.26837,22.55347],[114.26824,22.55361],[114.26793,22.55368],[114.26789,22.55364],[114.26788,22.55359],[114.26791,22.55355],[114.26794,22.55351],[114.26787,22.55346],[114.26776,22.55356],[114.26765,22.55347],[114.26765,22.55343],[114.26778,22.55336],[114.26792,22.55339],[114.26796,22.55334],[114.26794,22.55331],[114.26794,22.55329],[114.26797,22.55326],[114.26802,22.55329],[114.26807,22.55325],[114.26814,22.55314],[114.26821,22.55299],[114.26821,22.55296],[114.26818,22.55292],[114.26817,22.55289],[114.2683,22.55269],[114.2683,22.55265],[114.26826,22.55263],[114.26828,22.55258],[114.26831,22.55253],[114.26833,22.55244],[114.26829,22.5524],[114.26841,22.55223],[114.26847,22.55228],[114.26854,22.55194],[114.26866,22.55171],[114.26867,22.55166],[114.26867,22.55164],[114.26867,22.55157],[114.26868,22.55152],[114.26875,22.5514],[114.26877,22.55137],[114.26881,22.55134],[114.26884,22.55133],[114.2689,22.55131],[114.269,22.55129],[114.26911,22.55127],[114.26917,22.55126],[114.26971,22.55124],[114.26995,22.55116],[114.27018,22.551],[114.27025,22.55091],[114.27027,22.55087],[114.27028,22.55078],[114.27028,22.55076],[114.27024,22.55069],[114.27023,22.55065],[114.27023,22.5506],[114.2702,22.55055],[114.27017,22.5505],[114.27014,22.55043],[114.2701,22.5504],[114.27019,22.54997],[114.27022,22.54985],[114.27036,22.5498],[114.27047,22.54987],[114.27053,22.54987],[114.27059,22.54985],[114.2706,22.54981],[114.27071,22.54981],[114.27083,22.55],[114.27083,22.55007],[114.27081,22.55014],[114.27089,22.55021],[114.27089,22.55025],[114.27096,22.55037],[114.27095,22.55044],[114.27098,22.55046],[114.27092,22.55049],[114.27097,22.55054],[114.271,22.55055],[114.27106,22.55062],[114.27111,22.55075],[114.27112,22.55082],[114.2711,22.55085],[114.27095,22.55111],[114.27069,22.55134],[114.27057,22.55143],[114.27053,22.55142],[114.27043,22.55149],[114.27035,22.5515],[114.27009,22.55184],[114.26996,22.55184],[114.2698,22.55202],[114.26964,22.55213],[114.26959,22.55219],[114.26965,22.55227],[114.26961,22.55233],[114.26954,22.55229],[114.2695,22.55229],[114.26948,22.55238],[114.26941,22.55239],[114.26906,22.55265],[114.26889,22.55278],[114.26862,22.55312],[114.26853,22.5532],[114.26842,22.55325],[114.26837,22.55347]]],[[[114.26804,22.5538],[114.26804,22.55388],[114.26802,22.55392],[114.26802,22.55394],[114.26799,22.55396],[114.26795,22.55397],[114.26792,22.55397],[114.26784,22.5539],[114.26782,22.55386],[114.26781,22.55379],[114.26783,22.55375],[114.26786,22.55373],[114.26788,22.55372],[114.26791,22.55371],[114.26797,22.55372],[114.26799,22.55376],[114.26801,22.55376],[114.26804,22.5538]]],[[[114.2916,22.55532],[114.29127,22.55519],[114.29112,22.55524],[114.2908,22.55523],[114.29064,22.55519],[114.29046,22.55508],[114.29026,22.55493],[114.29027,22.55481],[114.29019,22.55461],[114.29006,22.55442],[114.28969,22.55409],[114.28968,22.55408],[114.28962,22.55403],[114.28949,22.55399],[114.28928,22.55387],[114.28902,22.55379],[114.28868,22.5536],[114.2885,22.5533],[114.28844,22.55302],[114.2884,22.55302],[114.28837,22.55301],[114.28837,22.55304],[114.28833,22.55303],[114.28833,22.55297],[114.28837,22.55298],[114.28837,22.553],[114.2884,22.553],[114.28845,22.55301],[114.28848,22.553],[114.2885,22.55298],[114.28856,22.55285],[114.28856,22.55281],[114.28855,22.5528],[114.28858,22.5527],[114.2885,22.55267],[114.28859,22.55217],[114.28849,22.55214],[114.28849,22.55212],[114.2886,22.55215],[114.28862,22.55193],[114.28873,22.55163],[114.28885,22.5515],[114.28888,22.55146],[114.2889,22.55144],[114.28891,22.55143],[114.28893,22.55143],[114.28895,22.55143],[114.28896,22.55143],[114.28897,22.55146],[114.28898,22.55149],[114.28903,22.55151],[114.28907,22.55151],[114.28912,22.55149],[114.28918,22.55146],[114.28923,22.55151],[114.28929,22.55144],[114.2894,22.55134],[114.28958,22.55117],[114.28961,22.5512],[114.28991,22.55092],[114.28987,22.55088],[114.29,22.55077],[114.29001,22.55077],[114.29003,22.55074],[114.29001,22.55071],[114.29008,22.55065],[114.29008,22.55064],[114.29011,22.55062],[114.2901,22.5506],[114.29015,22.55057],[114.29016,22.55059],[114.29027,22.55052],[114.29005,22.5502],[114.29,22.55023],[114.28991,22.55009],[114.28999,22.55004],[114.29023,22.5504],[114.2904,22.55031],[114.29042,22.55032],[114.29043,22.55033],[114.29045,22.55031],[114.29048,22.55035],[114.29054,22.55032],[114.29051,22.55028],[114.29054,22.55026],[114.29062,22.55022],[114.29061,22.55021],[114.29064,22.55016],[114.29069,22.55013],[114.29076,22.55012],[114.29083,22.55002],[114.29086,22.55],[114.29083,22.54998],[114.29092,22.54991],[114.29095,22.54995],[114.29099,22.54992],[114.29106,22.54984],[114.29115,22.54991],[114.2912,22.54988],[114.29116,22.54984],[114.2912,22.54981],[114.29127,22.54987],[114.29133,22.54981],[114.29141,22.54976],[114.29143,22.54975],[114.29147,22.54973],[114.29154,22.54971],[114.29168,22.54958],[114.29176,22.54949],[114.29182,22.54947],[114.29181,22.54942],[114.29179,22.54927],[114.29177,22.54904],[114.29169,22.54894],[114.29167,22.54895],[114.29167,22.54887],[114.29162,22.54873],[114.29156,22.54868],[114.29155,22.54864],[114.29158,22.54863],[114.29154,22.54847],[114.29145,22.54831],[114.29141,22.54826],[114.29135,22.54822],[114.29132,22.5482],[114.29128,22.54811],[114.29115,22.54791],[114.2911,22.54786],[114.29106,22.54775],[114.29106,22.54753],[114.29108,22.54743],[114.29108,22.54733],[114.29104,22.54712],[114.29094,22.54698],[114.29079,22.54693],[114.29057,22.54661],[114.29054,22.54646],[114.29066,22.54624],[114.29063,22.54601],[114.29046,22.54582],[114.29038,22.54566],[114.29014,22.54552],[114.2897,22.54546],[114.2896,22.54552],[114.28956,22.54563],[114.28944,22.54572],[114.28936,22.54586],[114.28934,22.54602],[114.28945,22.54609],[114.28946,22.54646],[114.28954,22.5466],[114.28952,22.547],[114.28945,22.54736],[114.28947,22.54748],[114.28959,22.54757],[114.28979,22.54752],[114.28997,22.54758],[114.29006,22.54762],[114.29014,22.54771],[114.29021,22.54789],[114.29014,22.54801],[114.28999,22.54803],[114.28985,22.54797],[114.28942,22.54816],[114.28914,22.54795],[114.28873,22.54774],[114.28861,22.5477],[114.2884,22.54773],[114.28828,22.54782],[114.28795,22.54791],[114.28782,22.5479],[114.28755,22.5477],[114.2872,22.54754],[114.28694,22.54753],[114.28677,22.54756],[114.28665,22.54768],[114.28658,22.54768],[114.28647,22.54736],[114.28642,22.54715],[114.28635,22.54704],[114.28645,22.54694],[114.28699,22.54675],[114.28712,22.54675],[114.2876,22.54656],[114.2882,22.5459],[114.28838,22.54567],[114.28847,22.54543],[114.2887,22.54503],[114.28883,22.54488],[114.28909,22.54483],[114.28927,22.54489],[114.28954,22.54489],[114.28971,22.54481],[114.2901,22.5445],[114.29042,22.54408],[114.29067,22.54347],[114.2908,22.54329],[114.29114,22.543],[114.29155,22.54278],[114.29182,22.54273],[114.29193,22.54279],[114.29207,22.54279],[114.29226,22.54268],[114.29236,22.54268],[114.29251,22.54261],[114.29273,22.54228],[114.29299,22.54177],[114.29298,22.54161],[114.29308,22.54141],[114.29307,22.54125],[114.29322,22.541],[114.29328,22.54082],[114.29409,22.53988],[114.29437,22.53956],[114.29446,22.53947],[114.29476,22.53905],[114.29481,22.53884],[114.29473,22.5386],[114.29456,22.53879],[114.29438,22.53885],[114.294,22.5387],[114.2936,22.53863],[114.29323,22.53866],[114.29304,22.53862],[114.29273,22.53851],[114.29255,22.53838],[114.29223,22.53845],[114.29194,22.53839],[114.29189,22.53833],[114.29183,22.53839],[114.29166,22.53896],[114.29187,22.53907],[114.29188,22.53924],[114.2921,22.53989],[114.29213,22.54011],[114.29206,22.54024],[114.29191,22.54033],[114.29159,22.5402],[114.29151,22.54011],[114.29149,22.53967],[114.29139,22.53947],[114.29119,22.53925],[114.29088,22.53895],[114.29048,22.53869],[114.29029,22.53862],[114.29015,22.53858],[114.28968,22.53858],[114.28951,22.53854],[114.2894,22.53864],[114.28938,22.5387],[114.28925,22.53871],[114.28918,22.53879],[114.28875,22.53882],[114.2886,22.53871],[114.28804,22.53849],[114.28777,22.53846],[114.28771,22.5385],[114.28758,22.53846],[114.28751,22.53813],[114.28755,22.53791],[114.28762,22.53781],[114.28772,22.53774],[114.28778,22.53761],[114.28781,22.53734],[114.28787,22.53717],[114.28784,22.53684],[114.28764,22.53645],[114.28739,22.53608],[114.28718,22.53571],[114.28676,22.53532],[114.28654,22.53509],[114.2864,22.53506],[114.28623,22.53486],[114.28602,22.53442],[114.28586,22.53418],[114.28583,22.5337],[114.28593,22.53355],[114.28593,22.53343],[114.2862,22.53299],[114.28627,22.53258],[114.28647,22.53291],[114.2867,22.53313],[114.28704,22.53331],[114.28736,22.53357],[114.28764,22.53375],[114.28795,22.53399],[114.28856,22.53436],[114.28896,22.53427],[114.28922,22.53415],[114.2898,22.53375],[114.2901,22.53374],[114.29031,22.53367],[114.29037,22.53369],[114.29057,22.5339],[114.29077,22.53404],[114.29107,22.53427],[114.29126,22.5343],[114.2918,22.53432],[114.29198,22.53426],[114.29204,22.53428],[114.29206,22.5344],[114.29215,22.53444],[114.29241,22.5342],[114.29272,22.53425],[114.29289,22.53435],[114.29303,22.53457],[114.2931,22.53461],[114.29321,22.5346],[114.29341,22.5348],[114.29342,22.53484],[114.29355,22.53501],[114.29387,22.53497],[114.29397,22.535],[114.29417,22.53483],[114.29433,22.5348],[114.29441,22.53478],[114.29425,22.53461],[114.29421,22.53434],[114.29398,22.53409],[114.29397,22.53389],[114.29404,22.53378],[114.29411,22.53376],[114.29426,22.53389],[114.29448,22.53402],[114.29484,22.53435],[114.29516,22.53451],[114.29534,22.53453],[114.29559,22.53445],[114.29569,22.53446],[114.29579,22.53452],[114.29595,22.53479],[114.29593,22.53544],[114.29608,22.53563],[114.29643,22.5355],[114.29654,22.53531],[114.29688,22.53547],[114.29721,22.53542],[114.29774,22.5355],[114.29786,22.53548],[114.29803,22.5356],[114.29821,22.53572],[114.29839,22.53571],[114.29843,22.53579],[114.29837,22.53592],[114.29827,22.53591],[114.29821,22.53597],[114.29829,22.53615],[114.29846,22.53619],[114.29861,22.53628],[114.2988,22.53648],[114.29879,22.53684],[114.29871,22.53709],[114.29877,22.53728],[114.29892,22.53729],[114.29902,22.53742],[114.29922,22.53711],[114.2999,22.53676],[114.30028,22.53669],[114.30049,22.53657],[114.3007,22.53637],[114.30069,22.5363],[114.30034,22.53588],[114.30029,22.53576],[114.30004,22.5355],[114.30005,22.53538],[114.30017,22.53521],[114.30032,22.53516],[114.30054,22.53529],[114.30117,22.53522],[114.30145,22.53512],[114.30164,22.53512],[114.30196,22.53509],[114.30207,22.53497],[114.30206,22.53481],[114.30221,22.53483],[114.30228,22.53475],[114.30222,22.53439],[114.30215,22.53427],[114.30216,22.53422],[114.30221,22.53419],[114.30227,22.53411],[114.30201,22.53396],[114.30198,22.53396],[114.30196,22.53396],[114.30188,22.53395],[114.30183,22.53393],[114.30179,22.5339],[114.30175,22.53386],[114.3017,22.53381],[114.30165,22.53377],[114.30148,22.5337],[114.3013,22.53375],[114.3014,22.53405],[114.30137,22.53417],[114.30097,22.53456],[114.3008,22.53461],[114.30065,22.53459],[114.30045,22.53445],[114.30007,22.53429],[114.29993,22.53416],[114.29983,22.53397],[114.29982,22.53385],[114.29967,22.53353],[114.29966,22.53341],[114.29937,22.53314],[114.29935,22.53294],[114.29958,22.53262],[114.29989,22.53237],[114.30004,22.53235],[114.30053,22.53266],[114.3008,22.53274],[114.30121,22.53283],[114.30154,22.53285],[114.30196,22.53286],[114.30275,22.53272],[114.30302,22.53262],[114.30321,22.53256],[114.30379,22.53205],[114.30412,22.53191],[114.3043,22.53189],[114.30465,22.53222],[114.30467,22.53256],[114.30448,22.5332],[114.30456,22.53342],[114.30478,22.53375],[114.30491,22.53381],[114.30516,22.53411],[114.30532,22.53431],[114.30535,22.53436],[114.30539,22.53449],[114.30536,22.53463],[114.30536,22.53477],[114.30543,22.5349],[114.30549,22.53499],[114.30565,22.53514],[114.30568,22.53527],[114.30569,22.53553],[114.30564,22.53564],[114.30555,22.53564],[114.30548,22.53601],[114.30531,22.53625],[114.30531,22.53654],[114.30517,22.53661],[114.30495,22.53669],[114.30473,22.53683],[114.30461,22.53655],[114.3045,22.53649],[114.30423,22.53653],[114.30414,22.53658],[114.30391,22.53659],[114.30383,22.5365],[114.30385,22.5364],[114.3037,22.53601],[114.30369,22.53584],[114.30353,22.53563],[114.3035,22.53563],[114.30337,22.53564],[114.30323,22.53572],[114.30234,22.5359],[114.30212,22.53614],[114.30216,22.53627],[114.30212,22.53644],[114.30192,22.53664],[114.30169,22.53682],[114.30155,22.537],[114.30142,22.53702],[114.30134,22.53698],[114.30117,22.53709],[114.30102,22.53727],[114.30101,22.53752],[114.30095,22.53761],[114.30089,22.53764],[114.30068,22.53765],[114.30059,22.5377],[114.30049,22.53785],[114.30044,22.53807],[114.30038,22.53811],[114.29992,22.53835],[114.29975,22.53839],[114.29959,22.53853],[114.29952,22.53855],[114.29922,22.53866],[114.29899,22.53876],[114.29881,22.53888],[114.2987,22.53921],[114.29852,22.53952],[114.29832,22.53957],[114.29805,22.53981],[114.29795,22.53988],[114.29791,22.53991],[114.29762,22.54006],[114.29744,22.54018],[114.29734,22.54053],[114.29753,22.54091],[114.29757,22.54121],[114.29757,22.54161],[114.29755,22.54169],[114.2974,22.54185],[114.29722,22.54268],[114.29737,22.5428],[114.29737,22.54286],[114.29725,22.54313],[114.29717,22.54322],[114.29685,22.5434],[114.29675,22.54342],[114.29669,22.54347],[114.29643,22.54346],[114.29636,22.54349],[114.29631,22.54348],[114.29607,22.54335],[114.296,22.54328],[114.29598,22.54322],[114.29591,22.54323],[114.29581,22.54328],[114.29573,22.54329],[114.2956,22.54323],[114.2954,22.54323],[114.29504,22.54339],[114.29487,22.5434],[114.29473,22.54353],[114.29441,22.54357],[114.29422,22.54381],[114.29423,22.54391],[114.29421,22.54395],[114.29401,22.54405],[114.29389,22.54397],[114.29381,22.54385],[114.29355,22.5437],[114.29359,22.54391],[114.29357,22.54397],[114.29349,22.54413],[114.29347,22.5443],[114.2935,22.54441],[114.29346,22.54467],[114.29346,22.5449],[114.29356,22.54496],[114.29367,22.54521],[114.29358,22.54535],[114.29363,22.5454],[114.29358,22.54572],[114.29384,22.54636],[114.2938,22.5465],[114.29364,22.54648],[114.29365,22.54662],[114.29396,22.54685],[114.29406,22.547],[114.29416,22.54708],[114.2941,22.54698],[114.29408,22.54688],[114.29415,22.54681],[114.29435,22.54674],[114.29426,22.54668],[114.29413,22.54655],[114.29406,22.54637],[114.29415,22.54628],[114.29425,22.54612],[114.29437,22.54612],[114.29425,22.54636],[114.29446,22.54668],[114.2946,22.54683],[114.29485,22.54778],[114.29501,22.54784],[114.2951,22.54801],[114.2954,22.54833],[114.29543,22.54839],[114.29541,22.54848],[114.2955,22.54859],[114.29553,22.54867],[114.29559,22.54866],[114.29556,22.54848],[114.29576,22.54841],[114.29591,22.54844],[114.29603,22.54838],[114.29622,22.54836],[114.29654,22.54844],[114.29681,22.54839],[114.29686,22.54836],[114.29709,22.54828],[114.29717,22.54826],[114.29719,22.54827],[114.29721,22.54827],[114.29722,22.54828],[114.29743,22.5485],[114.29753,22.54859],[114.29767,22.5487],[114.29788,22.54881],[114.29806,22.54886],[114.29819,22.54888],[114.29837,22.54879],[114.2985,22.5488],[114.29871,22.54875],[114.29889,22.54861],[114.29903,22.54848],[114.29921,22.54823],[114.29928,22.54798],[114.29965,22.54763],[114.29986,22.54753],[114.29999,22.54746],[114.30002,22.54739],[114.30078,22.54685],[114.30125,22.54671],[114.30148,22.5466],[114.30167,22.54645],[114.30181,22.54643],[114.30189,22.54637],[114.302,22.54622],[114.30222,22.54604],[114.30244,22.54572],[114.3025,22.54551],[114.30249,22.5452],[114.30263,22.54487],[114.30272,22.54479],[114.30293,22.54472],[114.30308,22.54472],[114.30323,22.54488],[114.30348,22.54495],[114.30373,22.54487],[114.30393,22.54503],[114.30412,22.54511],[114.30446,22.54518],[114.30483,22.5452],[114.30494,22.54523],[114.30509,22.54533],[114.30501,22.54544],[114.305,22.54557],[114.30524,22.54563],[114.30525,22.54567],[114.30529,22.54581],[114.3055,22.54614],[114.30555,22.54627],[114.30542,22.54633],[114.3056,22.54644],[114.30562,22.54666],[114.30561,22.54676],[114.30549,22.54694],[114.30562,22.54713],[114.30574,22.54722],[114.30601,22.54733],[114.30624,22.54722],[114.30654,22.54722],[114.30703,22.54723],[114.30722,22.54736],[114.30725,22.54726],[114.30743,22.54728],[114.30755,22.54721],[114.30758,22.54717],[114.30772,22.54715],[114.30793,22.54714],[114.30802,22.54714],[114.30811,22.54732],[114.30824,22.54728],[114.30824,22.54736],[114.30794,22.54782],[114.30795,22.54795],[114.30808,22.54812],[114.30803,22.54823],[114.30791,22.54832],[114.30807,22.54863],[114.30825,22.54877],[114.30854,22.54884],[114.30891,22.54871],[114.30893,22.54862],[114.3091,22.54854],[114.30939,22.54845],[114.30965,22.54847],[114.30969,22.54832],[114.30984,22.54833],[114.31017,22.54813],[114.31038,22.54802],[114.31051,22.54772],[114.31057,22.54745],[114.31067,22.54734],[114.31072,22.54731],[114.3108,22.54742],[114.31091,22.54742],[114.31108,22.54738],[114.31118,22.54723],[114.31137,22.54725],[114.31151,22.54714],[114.31153,22.54725],[114.31151,22.54731],[114.31141,22.5474],[114.31127,22.54742],[114.31126,22.54749],[114.3113,22.54752],[114.31148,22.54744],[114.31164,22.54752],[114.31161,22.5476],[114.31156,22.54766],[114.31167,22.54773],[114.31193,22.54797],[114.31199,22.5479],[114.31203,22.54791],[114.31206,22.54794],[114.31206,22.54798],[114.31202,22.54802],[114.31195,22.54805],[114.31205,22.54809],[114.31211,22.54802],[114.31225,22.54797],[114.31251,22.54799],[114.31276,22.54806],[114.31307,22.54824],[114.31303,22.54833],[114.31313,22.54842],[114.31321,22.5484],[114.31333,22.54828],[114.31351,22.54829],[114.31366,22.54829],[114.31369,22.54833],[114.31379,22.54833],[114.31393,22.54845],[114.31408,22.54842],[114.31424,22.5485],[114.31427,22.5486],[114.31409,22.54878],[114.31414,22.54895],[114.31428,22.54889],[114.31434,22.54887],[114.31448,22.54886],[114.31455,22.54893],[114.31456,22.54898],[114.31445,22.54909],[114.31456,22.54936],[114.31471,22.54952],[114.31492,22.54965],[114.31506,22.54971],[114.31516,22.54973],[114.31541,22.54978],[114.31543,22.54981],[114.31549,22.54995],[114.31591,22.54997],[114.3162,22.54986],[114.31644,22.54988],[114.31659,22.54978],[114.31671,22.54977],[114.31688,22.54983],[114.31693,22.5499],[114.31704,22.5499],[114.31716,22.54993],[114.31711,22.54997],[114.31714,22.55004],[114.31711,22.55009],[114.31705,22.55012],[114.3169,22.55019],[114.31649,22.55025],[114.31635,22.55036],[114.31631,22.55041],[114.31627,22.5505],[114.31604,22.55061],[114.31591,22.55063],[114.31587,22.55068],[114.31556,22.55052],[114.31542,22.5506],[114.3152,22.55057],[114.31511,22.55046],[114.31501,22.55054],[114.31471,22.5504],[114.31428,22.5503],[114.31411,22.55019],[114.31402,22.55003],[114.31394,22.5499],[114.31385,22.54984],[114.31361,22.54985],[114.31354,22.54981],[114.31321,22.5499],[114.31312,22.54998],[114.313,22.55008],[114.3127,22.55024],[114.3126,22.55037],[114.31245,22.55042],[114.31224,22.55057],[114.31195,22.55069],[114.31153,22.55078],[114.31146,22.55085],[114.31124,22.55101],[114.31116,22.55091],[114.31105,22.55092],[114.31101,22.55089],[114.31077,22.55086],[114.31032,22.55076],[114.31017,22.55069],[114.30991,22.55072],[114.30983,22.55057],[114.30965,22.55053],[114.30956,22.55047],[114.30943,22.55046],[114.30929,22.55036],[114.30914,22.55042],[114.30902,22.55038],[114.30895,22.55052],[114.30869,22.55057],[114.30861,22.5505],[114.30843,22.55058],[114.30835,22.55058],[114.30829,22.55049],[114.30815,22.55052],[114.30808,22.55037],[114.30796,22.55048],[114.30783,22.55058],[114.30769,22.55063],[114.30752,22.55064],[114.3075,22.55058],[114.3074,22.55051],[114.30719,22.55063],[114.30713,22.55059],[114.3068,22.55065],[114.30661,22.55078],[114.3062,22.55081],[114.30579,22.551],[114.30567,22.55126],[114.30544,22.55145],[114.30531,22.55138],[114.30515,22.55143],[114.30508,22.55138],[114.30506,22.5512],[114.30494,22.55082],[114.30487,22.55075],[114.30482,22.55062],[114.30472,22.55053],[114.30461,22.55051],[114.30447,22.55042],[114.30422,22.55032],[114.30398,22.5503],[114.30387,22.55025],[114.30381,22.55015],[114.30374,22.55018],[114.30367,22.55014],[114.30334,22.55021],[114.30322,22.55034],[114.30286,22.55045],[114.30272,22.55046],[114.30265,22.55063],[114.30245,22.55065],[114.30248,22.55053],[114.30194,22.55035],[114.30118,22.55047],[114.30088,22.55059],[114.29945,22.55069],[114.29934,22.55066],[114.29904,22.55067],[114.29882,22.5506],[114.2982,22.55082],[114.29816,22.55089],[114.29807,22.55092],[114.29784,22.55122],[114.29769,22.55127],[114.29755,22.55128],[114.29746,22.55118],[114.2973,22.55112],[114.29724,22.55097],[114.29694,22.55088],[114.29687,22.55094],[114.29681,22.55096],[114.29663,22.55078],[114.29638,22.55084],[114.29629,22.5509],[114.29626,22.55106],[114.29605,22.55103],[114.29594,22.5511],[114.29582,22.5511],[114.29552,22.5511],[114.29535,22.55123],[114.2952,22.55119],[114.29499,22.55125],[114.29476,22.55125],[114.29407,22.55105],[114.29372,22.55107],[114.29318,22.55154],[114.29302,22.55176],[114.293,22.55187],[114.29283,22.55222],[114.29272,22.55266],[114.29275,22.55278],[114.29284,22.55294],[114.29281,22.55306],[114.29288,22.55321],[114.29313,22.55346],[114.29314,22.55352],[114.29327,22.55355],[114.29331,22.55359],[114.29328,22.55364],[114.29337,22.55366],[114.2934,22.55424],[114.29356,22.55435],[114.29358,22.5544],[114.29351,22.55442],[114.29348,22.55436],[114.29329,22.5544],[114.29324,22.55458],[114.29299,22.55489],[114.2928,22.55482],[114.29274,22.5549],[114.29242,22.55489],[114.2922,22.55503],[114.29199,22.55511],[114.2916,22.55532]]],[[[114.16388,22.55918],[114.16367,22.55919],[114.16345,22.55924],[114.16336,22.55928],[114.16324,22.55937],[114.16315,22.5595],[114.16308,22.55962],[114.16302,22.55979],[114.16271,22.56062],[114.16261,22.56083],[114.16249,22.56105],[114.16233,22.5613],[114.16222,22.56146],[114.16208,22.56159],[114.16189,22.56174],[114.16175,22.56183],[114.16167,22.56189],[114.16154,22.56193],[114.16142,22.56195],[114.16126,22.56194],[114.16115,22.56191],[114.16102,22.56186],[114.16091,22.56179],[114.16081,22.5617],[114.16056,22.56134],[114.16044,22.56119],[114.16032,22.56107],[114.16005,22.56095],[114.15979,22.56086],[114.15959,22.56077],[114.15955,22.56073],[114.15948,22.56065],[114.15942,22.56055],[114.15933,22.56038],[114.15931,22.5603],[114.15928,22.56016],[114.15925,22.56005],[114.15914,22.55986],[114.15907,22.55977],[114.15875,22.55946],[114.15857,22.55923],[114.15851,22.55914],[114.15842,22.55896],[114.15837,22.5588],[114.15834,22.55872],[114.1583,22.55865],[114.15824,22.55855],[114.15815,22.55841],[114.15805,22.55831],[114.15789,22.55813],[114.15776,22.55799],[114.15769,22.55787],[114.15765,22.55781],[114.15749,22.55757],[114.15742,22.55744],[114.15719,22.55677],[114.15712,22.5564],[114.15711,22.55634],[114.15707,22.55628],[114.15702,22.55622],[114.15695,22.55614],[114.15682,22.556],[114.15669,22.55584],[114.15659,22.55568],[114.1565,22.55552],[114.15639,22.55524],[114.15636,22.55512],[114.15636,22.55497],[114.15634,22.55485],[114.15631,22.55476],[114.15626,22.5547],[114.15621,22.55459],[114.15619,22.55453],[114.15616,22.55451],[114.15607,22.55447],[114.15598,22.55443],[114.15591,22.55441],[114.15584,22.55441],[114.15577,22.55442],[114.1557,22.55446],[114.15553,22.55456],[114.15552,22.55456],[114.15547,22.55459],[114.15535,22.55463],[114.15525,22.55465],[114.15512,22.55468],[114.15501,22.55468],[114.15488,22.55467],[114.15475,22.55464],[114.15459,22.55457],[114.15447,22.55451],[114.15442,22.5545],[114.15437,22.5545],[114.15432,22.55451],[114.15408,22.55459],[114.15394,22.55467],[114.15392,22.55467],[114.15385,22.55467],[114.1537,22.55466],[114.15361,22.55466],[114.15353,22.55467],[114.15346,22.5547],[114.15328,22.55478],[114.1532,22.5548],[114.15312,22.55481],[114.15301,22.55486],[114.15284,22.55497],[114.15279,22.55499],[114.15274,22.55501],[114.15269,22.55502],[114.15264,22.55503],[114.15248,22.55503],[114.15232,22.55501],[114.15221,22.555],[114.15207,22.55495],[114.15199,22.5549],[114.15197,22.55488],[114.15195,22.55485],[114.1519,22.55459],[114.15189,22.55452],[114.15185,22.55437],[114.15181,22.55426],[114.15177,22.55408],[114.15176,22.55399],[114.15176,22.55391],[114.15179,22.55381],[114.1518,22.55372],[114.15172,22.55349],[114.15171,22.55344],[114.15173,22.55338],[114.15174,22.55333],[114.15174,22.55326],[114.15172,22.55322],[114.15169,22.55317],[114.15166,22.55313],[114.15165,22.55311],[114.15165,22.55309],[114.15167,22.55299],[114.15168,22.55293],[114.15167,22.55287],[114.15165,22.5528],[114.15162,22.55273],[114.15161,22.5527],[114.1516,22.55266],[114.1516,22.55263],[114.15161,22.5526],[114.15162,22.55257],[114.15164,22.55256],[114.15165,22.55255],[114.15171,22.55255],[114.15174,22.55255],[114.15177,22.55253],[114.1518,22.55251],[114.15185,22.55246],[114.15186,22.55243],[114.15186,22.55239],[114.15179,22.55225],[114.15175,22.55207],[114.15174,22.55179],[114.15168,22.5516],[114.15163,22.5514],[114.15154,22.5513],[114.15135,22.55112],[114.15119,22.55083],[114.15116,22.5508],[114.15111,22.55078],[114.15106,22.55079],[114.15098,22.5508],[114.15076,22.55082],[114.15052,22.55086],[114.1505,22.55086],[114.15047,22.55087],[114.15042,22.5509],[114.15039,22.55091],[114.15035,22.55091],[114.15029,22.55089],[114.15023,22.55087],[114.15006,22.55075],[114.14997,22.55066],[114.14989,22.55054],[114.14984,22.55037],[114.1498,22.55021],[114.14978,22.55014],[114.14975,22.55006],[114.14967,22.5499],[114.14966,22.54985],[114.14966,22.5498],[114.14972,22.54968],[114.14975,22.54956],[114.14976,22.54941],[114.14974,22.54933],[114.14972,22.54925],[114.14961,22.54909],[114.14954,22.54892],[114.14953,22.54879],[114.14954,22.54816],[114.14955,22.54812],[114.1496,22.54799],[114.14963,22.54789],[114.14963,22.54784],[114.14962,22.54778],[114.14959,22.54768],[114.14959,22.54761],[114.14962,22.54751],[114.14971,22.54732],[114.14976,22.54723],[114.14984,22.54715],[114.14989,22.54712],[114.15021,22.54706],[114.15035,22.54703],[114.15048,22.547],[114.15056,22.54699],[114.15068,22.547],[114.15076,22.547],[114.15081,22.54699],[114.15089,22.54696],[114.15095,22.54696],[114.151,22.54697],[114.15105,22.54698],[114.15108,22.54701],[114.15111,22.54704],[114.15112,22.54707],[114.15111,22.54715],[114.15108,22.54726],[114.15104,22.54731],[114.15099,22.54736],[114.15083,22.54745],[114.1508,22.54747],[114.15078,22.54751],[114.15076,22.54755],[114.15076,22.5476],[114.15076,22.54767],[114.15076,22.5477],[114.15075,22.54772],[114.15069,22.54778],[114.15065,22.54783],[114.15064,22.54788],[114.15065,22.54792],[114.15068,22.548],[114.1507,22.54803],[114.15072,22.54805],[114.15076,22.54805],[114.15079,22.54804],[114.15086,22.54797],[114.15092,22.54793],[114.15093,22.54792],[114.15095,22.54793],[114.15097,22.54795],[114.15098,22.54798],[114.151,22.54804],[114.15102,22.54808],[114.15104,22.54811],[114.15107,22.54814],[114.1511,22.54815],[114.15117,22.54816],[114.15129,22.54817],[114.15147,22.54814],[114.15156,22.54812],[114.15164,22.54809],[114.15168,22.54806],[114.15173,22.54801],[114.15181,22.5479],[114.15189,22.54777],[114.15196,22.54766],[114.152,22.54754],[114.15201,22.5474],[114.15201,22.54738],[114.152,22.54724],[114.15201,22.54715],[114.152,22.54705],[114.15199,22.54701],[114.15198,22.54697],[114.15192,22.54689],[114.15184,22.5468],[114.1518,22.54673],[114.15176,22.54663],[114.15173,22.54657],[114.15168,22.5465],[114.1516,22.54644],[114.1514,22.54632],[114.15131,22.54625],[114.15126,22.54623],[114.15121,22.54622],[114.15116,22.54623],[114.15104,22.54627],[114.15094,22.54629],[114.1507,22.5463],[114.1506,22.54629],[114.15055,22.54628],[114.15053,22.54626],[114.15039,22.54609],[114.15023,22.54596],[114.15015,22.54588],[114.15012,22.54583],[114.15004,22.54568],[114.14997,22.54555],[114.14992,22.54549],[114.14982,22.54538],[114.14981,22.54537],[114.14951,22.54515],[114.14925,22.5449],[114.14893,22.54457],[114.14884,22.54447],[114.14868,22.54423],[114.14858,22.54409],[114.14854,22.54401],[114.1485,22.54392],[114.14843,22.54372],[114.14833,22.54344],[114.14827,22.54316],[114.14826,22.54306],[114.14826,22.54301],[114.14827,22.54298],[114.14831,22.54295],[114.1484,22.54288],[114.14844,22.54283],[114.14852,22.54261],[114.14859,22.54246],[114.14866,22.54235],[114.14867,22.54228],[114.14867,22.54215],[114.14866,22.54208],[114.14863,22.54201],[114.14861,22.54196],[114.14858,22.54191],[114.14856,22.5419],[114.14854,22.54188],[114.14853,22.54187],[114.1485,22.54187],[114.14842,22.54186],[114.14826,22.54183],[114.14821,22.54183],[114.14816,22.54183],[114.14812,22.54183],[114.14807,22.54182],[114.14803,22.5418],[114.14801,22.54178],[114.14796,22.54173],[114.14796,22.54173],[114.14796,22.54173],[114.1479,22.54169],[114.14784,22.54166],[114.14772,22.54159],[114.14759,22.54153],[114.1475,22.5415],[114.14743,22.54149],[114.14737,22.54148],[114.14729,22.54149],[114.14727,22.54148],[114.14724,22.54148],[114.14719,22.54146],[114.14716,22.54145],[114.14712,22.54145],[114.14703,22.54145],[114.14695,22.54147],[114.14684,22.54147],[114.14681,22.54147],[114.14677,22.54147],[114.14672,22.54145],[114.14668,22.54143],[114.14662,22.54137],[114.14659,22.54131],[114.14657,22.54127],[114.14657,22.54125],[114.14658,22.54122],[114.14658,22.5412],[114.14658,22.54118],[114.14657,22.54116],[114.14655,22.54114],[114.14651,22.54112],[114.14647,22.5411],[114.14642,22.54109],[114.14636,22.5411],[114.14631,22.54112],[114.14625,22.54115],[114.14622,22.54118],[114.14619,22.54123],[114.1461,22.54133],[114.14607,22.54134],[114.14604,22.54135],[114.14601,22.54135],[114.14597,22.54135],[114.14595,22.54134],[114.14593,22.54133],[114.14591,22.54132],[114.14586,22.54127],[114.14583,22.54125],[114.14581,22.54124],[114.14577,22.54124],[114.14572,22.54124],[114.14571,22.54124],[114.14566,22.54126],[114.14564,22.54127],[114.14561,22.54127],[114.14559,22.54127],[114.14547,22.54123],[114.14539,22.5412],[114.14531,22.54116],[114.14521,22.54111],[114.14512,22.54106],[114.1451,22.54105],[114.14508,22.54104],[114.14499,22.54095],[114.14497,22.54093],[114.14494,22.54092],[114.14491,22.54091],[114.14485,22.5409],[114.14459,22.54089],[114.14452,22.5409],[114.14449,22.54091],[114.14446,22.54093],[114.14443,22.54096],[114.14433,22.54114],[114.1443,22.54125],[114.14429,22.54141],[114.14426,22.54155],[114.14427,22.54162],[114.14428,22.54171],[114.14429,22.54179],[114.14432,22.54187],[114.14432,22.54194],[114.14432,22.54201],[114.14431,22.54209],[114.14427,22.54213],[114.14425,22.54215],[114.14424,22.54215],[114.14422,22.54215],[114.1442,22.54215],[114.14408,22.54211],[114.14404,22.54207],[114.14396,22.54204],[114.14383,22.54202],[114.14363,22.54197],[114.14351,22.54191],[114.14345,22.54189],[114.14331,22.5419],[114.14329,22.54192],[114.14325,22.54197],[114.14321,22.54201],[114.14316,22.54204],[114.14283,22.5421],[114.14269,22.54211],[114.14264,22.54211],[114.14257,22.5421],[114.14248,22.54207],[114.14238,22.54201],[114.14232,22.54197],[114.14226,22.54194],[114.1422,22.54191],[114.14217,22.54191],[114.14215,22.54192],[114.14212,22.54193],[114.1421,22.54194],[114.14205,22.54199],[114.14199,22.54206],[114.14194,22.54215],[114.14189,22.54222],[114.14182,22.5423],[114.14175,22.54238],[114.14172,22.54243],[114.14164,22.54252],[114.14153,22.54265],[114.1415,22.54268],[114.14146,22.54271],[114.14137,22.54276],[114.14132,22.54279],[114.14126,22.54282],[114.14122,22.54283],[114.14117,22.54284],[114.14108,22.54284],[114.14099,22.54284],[114.14082,22.54283],[114.14065,22.54282],[114.14046,22.54282],[114.14026,22.54282],[114.14018,22.54283],[114.14011,22.54284],[114.13996,22.54287],[114.13987,22.54289],[114.13979,22.54292],[114.13974,22.54294],[114.1396,22.54302],[114.13945,22.5431],[114.13929,22.54319],[114.13913,22.54327],[114.13904,22.54332],[114.13895,22.54336],[114.13877,22.54342],[114.13859,22.54348],[114.13841,22.54352],[114.13825,22.54355],[114.13809,22.54357],[114.138,22.54358],[114.13791,22.54358],[114.13774,22.54357],[114.13764,22.54356],[114.13753,22.54355],[114.13746,22.54354],[114.13734,22.54351],[114.13722,22.54347],[114.13707,22.54341],[114.13693,22.54335],[114.13683,22.5433],[114.13674,22.54325],[114.13653,22.54311],[114.13649,22.54309],[114.13636,22.54299],[114.13611,22.54281],[114.13572,22.5425],[114.13533,22.54221],[114.13482,22.54188],[114.13474,22.54183],[114.13462,22.54177],[114.13462,22.54177],[114.1345,22.54171],[114.13442,22.54168],[114.13433,22.54165],[114.13424,22.54163],[114.13405,22.54159],[114.1339,22.54157],[114.13376,22.54156],[114.13363,22.54156],[114.1335,22.54157],[114.13342,22.54158],[114.13325,22.54161],[114.13308,22.54165],[114.13289,22.54168],[114.13221,22.54182],[114.13135,22.54199],[114.13119,22.54202],[114.13103,22.54203],[114.13094,22.54203],[114.13084,22.54203],[114.13078,22.54202],[114.13064,22.54198],[114.13051,22.54194],[114.13038,22.54189],[114.13026,22.54183],[114.13017,22.54178],[114.13009,22.54172],[114.13004,22.54167],[114.12994,22.54158],[114.12984,22.54147],[114.12978,22.5414],[114.12949,22.54103],[114.12934,22.54085],[114.12913,22.54056],[114.12896,22.54037],[114.12891,22.54032],[114.12886,22.54027],[114.12874,22.54017],[114.12862,22.54008],[114.1285,22.54],[114.12836,22.53991],[114.12822,22.53984],[114.12806,22.53977],[114.1279,22.53971],[114.12778,22.53968],[114.12766,22.53965],[114.12759,22.53964],[114.12743,22.53963],[114.12728,22.53962],[114.12716,22.53963],[114.12704,22.53965],[114.12689,22.53967],[114.12673,22.53971],[114.12662,22.53975],[114.12651,22.53979],[114.1264,22.53982],[114.12629,22.53985],[114.12617,22.53987],[114.12606,22.53988],[114.12598,22.53988],[114.12591,22.53988],[114.12584,22.53987],[114.1257,22.53985],[114.12557,22.53983],[114.12543,22.53979],[114.12532,22.53976],[114.12522,22.53971],[114.12508,22.53964],[114.12494,22.53956],[114.12461,22.53938],[114.12427,22.53919],[114.12391,22.53899],[114.12355,22.53879],[114.12327,22.53864],[114.12299,22.53848],[114.12284,22.53839],[114.12271,22.53829],[114.12244,22.53808],[114.12229,22.53795],[114.12215,22.53781],[114.12199,22.53765],[114.12185,22.53749],[114.12176,22.53738],[114.12166,22.53726],[114.12157,22.53713],[114.12137,22.53684],[114.12132,22.53677],[114.12117,22.53654],[114.12088,22.5361],[114.12067,22.53573],[114.12036,22.53531],[114.12021,22.53515],[114.12008,22.53505],[114.12004,22.53502],[114.11997,22.53497],[114.11989,22.53493],[114.11984,22.53491],[114.11976,22.53488],[114.11967,22.53486],[114.11954,22.53483],[114.11942,22.5348],[114.11896,22.53472],[114.1185,22.53465],[114.1182,22.53459],[114.11791,22.53453],[114.11762,22.53447],[114.11745,22.53444],[114.11729,22.53441],[114.11721,22.53438],[114.11714,22.53435],[114.11699,22.53428],[114.11687,22.53422],[114.11676,22.53415],[114.11665,22.53406],[114.11654,22.53396],[114.11648,22.5339],[114.11643,22.53384],[114.11633,22.53371],[114.11627,22.53362],[114.11622,22.53352],[114.11619,22.53346],[114.11615,22.53335],[114.11611,22.53323],[114.11608,22.53314],[114.11606,22.53305],[114.11605,22.53299],[114.11603,22.53282],[114.11601,22.53266],[114.116,22.53253],[114.11599,22.53239],[114.11597,22.53226],[114.11594,22.53217],[114.11582,22.53176],[114.11564,22.53136],[114.11561,22.5313],[114.11557,22.53125],[114.11546,22.53115],[114.11538,22.53108],[114.11538,22.53108],[114.11535,22.53106],[114.11525,22.53098],[114.11475,22.5307],[114.11427,22.53047],[114.11377,22.5302],[114.11323,22.52989],[114.11257,22.52964],[114.1122,22.52959],[114.11193,22.5296],[114.11134,22.52969],[114.1113,22.52969],[114.11094,22.52981],[114.11048,22.53001],[114.11002,22.5303],[114.1097,22.53055],[114.10945,22.53078],[114.10915,22.53116],[114.10895,22.53159],[114.10865,22.53236],[114.10843,22.53284],[114.10823,22.53313],[114.1079,22.53345],[114.10758,22.53367],[114.10707,22.53391],[114.10624,22.53431],[114.1052,22.53479],[114.10507,22.53484],[114.10487,22.53491],[114.10483,22.53492],[114.10447,22.53505],[114.10419,22.53511],[114.10391,22.53515],[114.10358,22.53517],[114.10315,22.53516],[114.10276,22.53511],[114.10228,22.53502],[114.10086,22.53475],[114.09878,22.53433],[114.09789,22.53414],[114.09728,22.53411],[114.09653,22.53424],[114.09623,22.53434],[114.09572,22.53461],[114.09534,22.53493],[114.09468,22.53559],[114.09426,22.536],[114.09382,22.53635],[114.09337,22.53661],[114.09272,22.53689],[114.09221,22.537],[114.09179,22.53701],[114.09025,22.53684],[114.08961,22.53671],[114.089,22.53647],[114.08847,22.53615],[114.08771,22.53535],[114.08707,22.5345],[114.08707,22.5345],[114.08673,22.53401],[114.08632,22.53342],[114.08621,22.53329],[114.08595,22.53296],[114.08578,22.53281],[114.0856,22.53265],[114.08558,22.53264],[114.08525,22.53238],[114.08454,22.53211],[114.08414,22.53199],[114.08327,22.53173],[114.081,22.53116],[114.07956,22.5307],[114.07899,22.53035],[114.0785,22.52997],[114.07834,22.52942],[114.0784,22.52891],[114.07868,22.52846],[114.07968,22.5273],[114.08061,22.52662],[114.08192,22.52606],[114.08374,22.52505],[114.08419,22.52475],[114.08483,22.52422],[114.08512,22.52381],[114.0853,22.52341],[114.08534,22.52302],[114.08532,22.52251],[114.08508,22.52193],[114.08468,22.52126],[114.08398,22.52031],[114.08373,22.52],[114.08403,22.51977],[114.08429,22.51956],[114.0844,22.51947],[114.08449,22.5194],[114.0846,22.51932],[114.08469,22.51927],[114.08478,22.51922],[114.08487,22.5192],[114.08494,22.5192],[114.08499,22.51921],[114.08506,22.51923],[114.08513,22.51925],[114.08519,22.51927],[114.08526,22.51931],[114.08545,22.51945],[114.08554,22.51952],[114.08567,22.51963],[114.08573,22.51969],[114.08588,22.51982],[114.08598,22.51989],[114.08602,22.51993],[114.0861,22.51999],[114.0862,22.52004],[114.0864,22.52024],[114.08679,22.52064],[114.08712,22.52097],[114.08729,22.52115],[114.0874,22.52131],[114.08748,22.52143],[114.08754,22.52149],[114.08765,22.52163],[114.08775,22.52175],[114.08783,22.52183],[114.08789,22.52189],[114.08811,22.52209],[114.0882,22.52216],[114.0883,22.52223],[114.08843,22.52229],[114.08857,22.52235],[114.0886,22.52236],[114.08867,22.52238],[114.08878,22.52241],[114.08891,22.52243],[114.08891,22.52243],[114.08901,22.52244],[114.08915,22.52245],[114.08929,22.52246],[114.08938,22.52246],[114.08948,22.52246],[114.08959,22.52246],[114.08973,22.52245],[114.08986,22.52243],[114.08997,22.52241],[114.09009,22.52237],[114.09024,22.52231],[114.09037,22.52223],[114.09048,22.52217],[114.09058,22.52209],[114.09069,22.52199],[114.09074,22.52194],[114.09088,22.52178],[114.09099,22.52167],[114.09108,22.52155],[114.09116,22.52142],[114.09125,22.52129],[114.09134,22.52116],[114.0914,22.52106],[114.09147,22.52094],[114.09153,22.52084],[114.09158,22.52076],[114.09162,22.52066],[114.09166,22.52058],[114.0917,22.52047],[114.09172,22.52038],[114.09175,22.52031],[114.09176,22.52023],[114.09176,22.52017],[114.09178,22.52009],[114.09176,22.52002],[114.09174,22.51996],[114.09172,22.51989],[114.09171,22.51981],[114.0917,22.51975],[114.0917,22.51968],[114.0917,22.51962],[114.0917,22.51957],[114.09172,22.51952],[114.09174,22.51949],[114.09176,22.51946],[114.09165,22.51912],[114.09145,22.5185],[114.09136,22.51823],[114.09125,22.5179],[114.09123,22.51783],[114.09119,22.51774],[114.09119,22.51773],[114.09119,22.51773],[114.09119,22.51772],[114.09119,22.51771],[114.09119,22.51769],[114.09119,22.51767],[114.09118,22.51765],[114.09118,22.51763],[114.09118,22.51762],[114.09118,22.5176],[114.09118,22.51759],[114.09118,22.51758],[114.09118,22.51756],[114.09118,22.51755],[114.09118,22.51755],[114.09119,22.51752],[114.09119,22.51751],[114.09119,22.51751],[114.09119,22.5175],[114.0912,22.51749],[114.0912,22.51748],[114.09121,22.51747],[114.09121,22.51746],[114.09122,22.51746],[114.09122,22.51745],[114.09123,22.51742],[114.09124,22.51739],[114.09125,22.51737],[114.09125,22.51736],[114.09125,22.51734],[114.09126,22.51731],[114.09127,22.51729],[114.09129,22.51725],[114.0913,22.51722],[114.0913,22.51721],[114.09131,22.51719],[114.09131,22.51716],[114.09132,22.51713],[114.09132,22.51711],[114.09133,22.51707],[114.09134,22.51704],[114.09135,22.51701],[114.09135,22.51698],[114.09136,22.51695],[114.09135,22.51693],[114.09135,22.51692],[114.09135,22.5169],[114.09135,22.51688],[114.09135,22.51686],[114.09135,22.51684],[114.09134,22.51682],[114.09133,22.51678],[114.09132,22.51677],[114.09132,22.51676],[114.09131,22.51672],[114.0913,22.51669],[114.0913,22.51667],[114.0913,22.51664],[114.0913,22.51663],[114.0913,22.51662],[114.09131,22.51659],[114.09132,22.51658],[114.09132,22.51658],[114.09133,22.51656],[114.09134,22.51656],[114.09135,22.51654],[114.09134,22.51654],[114.09133,22.51654],[114.09132,22.51654],[114.09129,22.51654],[114.09127,22.51653],[114.09126,22.51653],[114.09124,22.51652],[114.09122,22.5165],[114.09121,22.51649],[114.09119,22.51648],[114.09118,22.51647],[114.09116,22.51645],[114.09115,22.51643],[114.09115,22.51642],[114.09114,22.51641],[114.09114,22.51639],[114.09113,22.51638],[114.09113,22.51637],[114.09113,22.51637],[114.09113,22.51636],[114.09113,22.51635],[114.09112,22.51633],[114.0911,22.51631],[114.0911,22.51628],[114.0911,22.51627],[114.09109,22.51626],[114.09109,22.51624],[114.09109,22.51624],[114.0911,22.51622],[114.0911,22.5162],[114.0911,22.51618],[114.0911,22.51617],[114.09111,22.51615],[114.09112,22.51611],[114.09112,22.5161],[114.09113,22.51607],[114.09113,22.51605],[114.09113,22.51602],[114.09113,22.51601],[114.09113,22.51598],[114.09113,22.51596],[114.09113,22.51595],[114.09112,22.51595],[114.09112,22.51594],[114.09111,22.51592],[114.09109,22.51588],[114.09109,22.51587],[114.09109,22.51586],[114.09108,22.51585],[114.09108,22.51585],[114.09107,22.51583],[114.09105,22.51581],[114.09105,22.5158],[114.09104,22.51579],[114.09104,22.51579],[114.09102,22.51577],[114.09101,22.51576],[114.09098,22.51574],[114.09096,22.51572],[114.09095,22.51571],[114.09092,22.51569],[114.0909,22.51569],[114.09089,22.51567],[114.09087,22.51566],[114.09086,22.51565],[114.09085,22.51564],[114.09084,22.51563],[114.09082,22.51561],[114.09079,22.51559],[114.09078,22.51557],[114.09077,22.51556],[114.09076,22.51555],[114.09076,22.51555],[114.09075,22.51554],[114.09073,22.51551],[114.09072,22.5155],[114.09072,22.51549],[114.0907,22.51547],[114.09069,22.51544],[114.09067,22.51542],[114.09066,22.5154],[114.09066,22.51539],[114.09065,22.51537],[114.09063,22.51532],[114.09062,22.51529],[114.09062,22.51527],[114.09061,22.51525],[114.09062,22.51525],[114.09062,22.51522],[114.09063,22.5152],[114.09063,22.51518],[114.09063,22.51517],[114.09064,22.51513],[114.09065,22.51512],[114.09066,22.51509],[114.09066,22.51508],[114.09067,22.51502],[114.09067,22.51502],[114.09067,22.515],[114.09068,22.51499],[114.09068,22.51498],[114.09069,22.51497],[114.0907,22.51496],[114.09071,22.51494],[114.09072,22.51492],[114.09073,22.51491],[114.09074,22.5149],[114.09075,22.51488],[114.09076,22.51487],[114.09078,22.51485],[114.0908,22.51484],[114.09081,22.51484],[114.09082,22.51483],[114.09084,22.51483],[114.09086,22.51482],[114.09089,22.51482],[114.09089,22.51481],[114.09091,22.51481],[114.09095,22.5148],[114.09097,22.51479],[114.09098,22.51479],[114.09105,22.51477],[114.09112,22.51475],[114.09115,22.51474],[114.09117,22.51473],[114.09118,22.51473],[114.0912,22.51471],[114.09122,22.5147],[114.09123,22.51469],[114.09126,22.51466],[114.09128,22.51464],[114.09129,22.51463],[114.09132,22.51459],[114.09133,22.51457],[114.09134,22.51456],[114.09135,22.51454],[114.09136,22.51452],[114.09137,22.51448],[114.09139,22.51439],[114.0914,22.51435],[114.09143,22.51428],[114.09149,22.51412],[114.09154,22.51399],[114.09155,22.51396],[114.09156,22.51393],[114.09156,22.51391],[114.09157,22.51388],[114.09157,22.51385],[114.09157,22.51382],[114.09156,22.51377],[114.09156,22.51375],[114.09155,22.51372],[114.09153,22.5136],[114.09149,22.51347],[114.09147,22.51341],[114.09146,22.51336],[114.09145,22.5133],[114.09144,22.51326],[114.09143,22.51321],[114.09143,22.51316],[114.09142,22.51311],[114.09142,22.51306],[114.09142,22.51304],[114.09143,22.51291],[114.09145,22.51281],[114.09148,22.51265],[114.09154,22.51251],[114.0916,22.51228],[114.09173,22.51197],[114.09174,22.51193],[114.09181,22.5118],[114.09182,22.51178],[114.09185,22.51172],[114.09196,22.51154],[114.09199,22.51149],[114.09202,22.51145],[114.09205,22.51141],[114.09208,22.51137],[114.0921,22.51133],[114.09213,22.5113],[114.09217,22.51126],[114.0922,22.51123],[114.09223,22.51119],[114.09227,22.51116],[114.09246,22.51099],[114.09249,22.51097],[114.09252,22.51094],[114.09255,22.51091],[114.09258,22.5109],[114.0926,22.51088],[114.09263,22.51087],[114.09264,22.51086],[114.09266,22.51085],[114.0927,22.51083],[114.09272,22.51081],[114.09275,22.51079],[114.09277,22.51078],[114.09279,22.51077],[114.09281,22.51076],[114.09286,22.51073],[114.09289,22.51071],[114.09291,22.5107],[114.09292,22.51069],[114.09294,22.51068],[114.09298,22.51066],[114.09298,22.51066],[114.09299,22.51065],[114.093,22.51064],[114.09302,22.51062],[114.09303,22.5106],[114.09304,22.51059],[114.09305,22.51057],[114.09305,22.51056],[114.09305,22.51054],[114.09305,22.51053],[114.09305,22.51052],[114.09305,22.51051],[114.09306,22.51048],[114.09306,22.51047],[114.09308,22.51044],[114.09309,22.51041],[114.09309,22.51038],[114.0931,22.51036],[114.0931,22.51032],[114.0931,22.5103],[114.0931,22.51029],[114.0931,22.51028],[114.09309,22.51026],[114.09308,22.51025],[114.09307,22.51024],[114.09306,22.51022],[114.09305,22.5102],[114.09304,22.51018],[114.09302,22.51015],[114.09302,22.51014],[114.09301,22.51012],[114.09299,22.5101],[114.09296,22.51006],[114.09293,22.51002],[114.09291,22.51],[114.09289,22.50998],[114.09288,22.50997],[114.09287,22.50996],[114.09284,22.50993],[114.09282,22.5099],[114.0928,22.50988],[114.09279,22.50986],[114.09275,22.50981],[114.09275,22.5098],[114.09274,22.50979],[114.09272,22.50975],[114.0927,22.50972],[114.0927,22.5097],[114.09269,22.50968],[114.09268,22.50966],[114.09267,22.50964],[114.09267,22.50962],[114.09266,22.50959],[114.09265,22.50957],[114.09265,22.50955],[114.09264,22.50952],[114.09263,22.50949],[114.09263,22.50947],[114.09262,22.50943],[114.09262,22.50942],[114.09261,22.50939],[114.0926,22.50937],[114.09259,22.50934],[114.09257,22.50928],[114.09255,22.50923],[114.09252,22.5092],[114.09252,22.50919],[114.09245,22.50911],[114.09241,22.50906],[114.09233,22.50896],[114.09231,22.50894],[114.0923,22.50893],[114.09227,22.5089],[114.09225,22.50889],[114.09225,22.50889],[114.09224,22.50889],[114.09221,22.50887],[114.09218,22.50886],[114.09216,22.50886],[114.09207,22.50885],[114.09192,22.50884],[114.09179,22.50882],[114.09178,22.50882],[114.09176,22.50882],[114.09173,22.50881],[114.09172,22.50881],[114.09171,22.5088],[114.0917,22.50879],[114.09169,22.50878],[114.09168,22.50876],[114.09168,22.50874],[114.09167,22.50872],[114.09166,22.5087],[114.09164,22.50868],[114.09163,22.50868],[114.09162,22.50867],[114.09161,22.50865],[114.09159,22.50864],[114.09152,22.50859],[114.09148,22.50857],[114.09143,22.50856],[114.09136,22.50854],[114.09129,22.50854],[114.09124,22.50854],[114.0912,22.50854],[114.09119,22.50854],[114.09116,22.50854],[114.0911,22.50854],[114.09105,22.50854],[114.091,22.50854],[114.09096,22.50853],[114.0909,22.50852],[114.09086,22.50851],[114.09073,22.50849],[114.09062,22.50848],[114.09052,22.50846],[114.09048,22.50846],[114.09045,22.50845],[114.0904,22.50843],[114.09033,22.50841],[114.09031,22.5084],[114.0903,22.50839],[114.09028,22.50838],[114.09027,22.50836],[114.09025,22.50833],[114.09023,22.50829],[114.0902,22.50822],[114.09018,22.50817],[114.09016,22.50813],[114.09014,22.50809],[114.09011,22.50805],[114.09008,22.508],[114.09006,22.50797],[114.09003,22.50794],[114.09001,22.50791],[114.09,22.50789],[114.08999,22.50788],[114.08999,22.50787],[114.08998,22.50785],[114.08998,22.50784],[114.08998,22.50783],[114.08998,22.50782],[114.08998,22.5078],[114.08998,22.50778],[114.09001,22.50777],[114.09002,22.50776],[114.09004,22.50775],[114.09007,22.50772],[114.09007,22.50772],[114.09009,22.5077],[114.0901,22.50768],[114.09011,22.50766],[114.09012,22.50765],[114.09013,22.50763],[114.09013,22.50762],[114.09015,22.5076],[114.09016,22.50757],[114.09018,22.50754],[114.09019,22.50751],[114.09022,22.50746],[114.09024,22.50742],[114.09025,22.5074],[114.09027,22.50738],[114.09028,22.50736],[114.09029,22.50734],[114.09029,22.50733],[114.0903,22.50733],[114.09031,22.50732],[114.09033,22.5073],[114.09034,22.50729],[114.09035,22.50728],[114.09036,22.50728],[114.09037,22.50727],[114.09037,22.50727],[114.09038,22.50727],[114.0904,22.50725],[114.09041,22.50724],[114.09042,22.50723],[114.09043,22.50721],[114.09043,22.5072],[114.09044,22.50719],[114.09044,22.50716],[114.09045,22.50715],[114.09045,22.50715],[114.09045,22.50714],[114.09045,22.50713],[114.09045,22.50713],[114.09046,22.50712],[114.09046,22.50708],[114.09047,22.50707],[114.09047,22.50705],[114.09047,22.50703],[114.09046,22.50702],[114.09046,22.50701],[114.09046,22.50699],[114.09046,22.50698],[114.09045,22.50696],[114.09044,22.50693],[114.09044,22.50691],[114.09043,22.5069],[114.09042,22.50686],[114.09041,22.50681],[114.09019,22.50615],[114.0902,22.50613],[114.09015,22.506],[114.09013,22.50594],[114.0901,22.50584],[114.09006,22.50571],[114.09004,22.50567],[114.09003,22.50564],[114.09001,22.50562],[114.09,22.5056],[114.08998,22.50557],[114.08996,22.50555],[114.08994,22.50553],[114.08991,22.50551],[114.08988,22.50549],[114.08979,22.50542],[114.08976,22.50539],[114.08974,22.50537],[114.08971,22.50534],[114.08969,22.50531],[114.08959,22.50512],[114.08957,22.50508],[114.08953,22.50501],[114.0895,22.50497],[114.08941,22.5048],[114.08939,22.50478],[114.08938,22.50475],[114.08937,22.50473],[114.08935,22.50467],[114.08934,22.50463],[114.08935,22.50461],[114.08935,22.50459],[114.08936,22.50457],[114.08937,22.50456],[114.08937,22.50454],[114.08949,22.50454],[114.08949,22.50451],[114.08949,22.50451],[114.08948,22.50423],[114.08982,22.50423],[114.0902,22.50421],[114.09037,22.5042],[114.09062,22.50419],[114.09065,22.50406],[114.09083,22.50346],[114.09096,22.50304],[114.09096,22.50302],[114.09096,22.50301],[114.09098,22.50294],[114.09103,22.50281],[114.09108,22.5027],[114.09109,22.50268],[114.0911,22.50266],[114.09115,22.50257],[114.09121,22.50246],[114.09125,22.50241],[114.09127,22.50238],[114.09133,22.50231],[114.09137,22.50226],[114.09146,22.50217],[114.0915,22.50212],[114.09155,22.50205],[114.09157,22.50203],[114.09161,22.50201],[114.09162,22.502],[114.09162,22.50198],[114.09163,22.50196],[114.09163,22.50194],[114.09163,22.5019],[114.09163,22.50185],[114.09162,22.50174],[114.09159,22.50164],[114.09159,22.50161],[114.09161,22.50152],[114.09162,22.50146],[114.09164,22.5014],[114.09165,22.50137],[114.09165,22.50133],[114.09168,22.50123],[114.09169,22.50116],[114.0917,22.50115],[114.0917,22.50113],[114.09169,22.50111],[114.09169,22.50109],[114.09168,22.50107],[114.09165,22.50103],[114.09163,22.50099],[114.09159,22.50094],[114.09158,22.50091],[114.09156,22.50087],[114.09143,22.50069],[114.09133,22.50055],[114.09132,22.50052],[114.0913,22.50049],[114.09128,22.50042],[114.09126,22.50036],[114.09124,22.50024],[114.09124,22.50022],[114.09122,22.5002],[114.0912,22.50016],[114.09117,22.5001],[114.09116,22.50008],[114.09114,22.50002],[114.09111,22.49994],[114.09109,22.49982],[114.09108,22.49973],[114.09107,22.49968],[114.09107,22.49958],[114.09106,22.49954],[114.09106,22.49951],[114.09103,22.49945],[114.091,22.49939],[114.09098,22.49933],[114.09098,22.49931],[114.09096,22.49928],[114.09094,22.4992],[114.09093,22.49918],[114.09093,22.49916],[114.09092,22.49915],[114.09089,22.49912],[114.09085,22.49909],[114.09081,22.49906],[114.09079,22.49904],[114.09077,22.49902],[114.09073,22.49897],[114.09038,22.49861],[114.09031,22.49854],[114.09027,22.49851],[114.09022,22.49847],[114.09021,22.49845],[114.0902,22.49843],[114.0902,22.49841],[114.09019,22.49838],[114.09019,22.49832],[114.09018,22.49816],[114.09018,22.49812],[114.09018,22.49809],[114.09019,22.49803],[114.09019,22.49801],[114.09018,22.49796],[114.09018,22.49793],[114.09018,22.49791],[114.09019,22.49788],[114.0902,22.4978],[114.09021,22.49772],[114.09022,22.4977],[114.09024,22.49768],[114.09025,22.49766],[114.09026,22.49763],[114.09027,22.49758],[114.09027,22.49755],[114.09029,22.49749],[114.09033,22.49743],[114.09034,22.4974],[114.09034,22.49737],[114.09034,22.49735],[114.09034,22.49732],[114.09033,22.49727],[114.0903,22.49719],[114.09027,22.49713],[114.09026,22.49711],[114.09022,22.49708],[114.09013,22.49702],[114.09009,22.49699],[114.09003,22.49697],[114.09,22.49695],[114.08997,22.49691],[114.08994,22.49688],[114.08992,22.49685],[114.08991,22.49684],[114.0899,22.49684],[114.08983,22.49677],[114.08982,22.49676],[114.0898,22.49673],[114.08978,22.49671],[114.08968,22.49662],[114.08967,22.49661],[114.08962,22.49654],[114.08961,22.49652],[114.08961,22.4965],[114.08961,22.49649],[114.08962,22.49646],[114.08965,22.4964],[114.08967,22.49636],[114.08971,22.49631],[114.08973,22.49628],[114.08975,22.49627],[114.08977,22.49625],[114.0898,22.49624],[114.08983,22.49622],[114.08984,22.49622],[114.08986,22.49621],[114.08989,22.49621],[114.08993,22.4962],[114.08998,22.49618],[114.09,22.49617],[114.09003,22.49617],[114.09004,22.49616],[114.09007,22.49616],[114.09011,22.49616],[114.09015,22.49616],[114.09016,22.49615],[114.09017,22.49615],[114.09019,22.49615],[114.09021,22.49614],[114.09023,22.49613],[114.09024,22.49613],[114.09025,22.49612],[114.09027,22.49611],[114.09029,22.4961],[114.0903,22.49609],[114.09031,22.49607],[114.09031,22.49606],[114.09033,22.49603],[114.09037,22.49589],[114.09038,22.49588],[114.09042,22.49585],[114.09044,22.49584],[114.0905,22.4958],[114.09054,22.49577],[114.09058,22.49576],[114.0906,22.49575],[114.09067,22.49571],[114.0907,22.49568],[114.09072,22.49565],[114.09074,22.49563],[114.09075,22.49561],[114.09076,22.4956],[114.09076,22.49558],[114.09077,22.49554],[114.09079,22.49549],[114.09082,22.4954],[114.09084,22.49536],[114.09085,22.49534],[114.09087,22.49531],[114.09091,22.49526],[114.09098,22.4952],[114.09101,22.49517],[114.09101,22.49516],[114.09107,22.49512],[114.09109,22.49512],[114.09113,22.49509],[114.09115,22.49508],[114.09117,22.49506],[114.09121,22.49504],[114.09122,22.49503],[114.09123,22.49502],[114.09125,22.49501],[114.09129,22.49501],[114.09133,22.49501],[114.09135,22.49501],[114.0914,22.49502],[114.09142,22.49501],[114.09147,22.49502],[114.09152,22.49503],[114.09156,22.49503],[114.09162,22.49503],[114.09168,22.49503],[114.09168,22.49502],[114.09159,22.49488],[114.09158,22.49484],[114.09158,22.49483],[114.09156,22.49473],[114.09155,22.49469],[114.09154,22.49468],[114.09153,22.49465],[114.09151,22.49462],[114.09148,22.49457],[114.09146,22.49454],[114.09143,22.49447],[114.09141,22.49444],[114.0914,22.49441],[114.09139,22.49439],[114.09135,22.49426],[114.09143,22.49413],[114.09144,22.49411],[114.09145,22.4941],[114.09146,22.49409],[114.09148,22.49407],[114.09153,22.49403],[114.09156,22.49401],[114.09157,22.494],[114.09158,22.49399],[114.09159,22.49398],[114.09164,22.49393],[114.09168,22.49388],[114.09169,22.49384],[114.0917,22.49381],[114.09171,22.49376],[114.09171,22.49375],[114.09171,22.49374],[114.09174,22.49369],[114.09174,22.49368],[114.09174,22.49366],[114.09175,22.49363],[114.09176,22.4936],[114.09177,22.49358],[114.09178,22.49354],[114.09179,22.49352],[114.0918,22.4935],[114.09184,22.49345],[114.09185,22.49343],[114.09186,22.49341],[114.09188,22.49335],[114.09189,22.49333],[114.09193,22.49326],[114.09194,22.49324],[114.09197,22.49321],[114.09205,22.49316],[114.09208,22.49313],[114.0921,22.49311],[114.09213,22.49308],[114.09215,22.49304],[114.09216,22.49302],[114.09218,22.49301],[114.09226,22.49296],[114.09232,22.49294],[114.09234,22.49293],[114.09236,22.49292],[114.09236,22.49291],[114.09236,22.49287],[114.09236,22.49285],[114.09236,22.49283],[114.09236,22.4928],[114.09234,22.49277],[114.09234,22.49273],[114.09234,22.49272],[114.09232,22.49269],[114.09232,22.49268],[114.09232,22.49266],[114.09232,22.49259],[114.09233,22.49253],[114.09233,22.49249],[114.09232,22.49244],[114.09232,22.49239],[114.09232,22.49238],[114.09233,22.49235],[114.09234,22.49234],[114.09235,22.49234],[114.09236,22.49234],[114.09238,22.49235],[114.09239,22.49235],[114.0924,22.49235],[114.09246,22.49233],[114.09248,22.49232],[114.0925,22.49231],[114.09252,22.4923],[114.0926,22.4923],[114.09267,22.49228],[114.09281,22.49225],[114.09287,22.49222],[114.09298,22.49217],[114.09307,22.49212],[114.09311,22.4921],[114.09319,22.49204],[114.0932,22.49203],[114.09322,22.492],[114.09323,22.49198],[114.09323,22.49197],[114.09323,22.49196],[114.09322,22.49194],[114.09321,22.49192],[114.09318,22.49189],[114.09315,22.49187],[114.09313,22.49186],[114.09311,22.49184],[114.09309,22.49184],[114.09307,22.49183],[114.09302,22.49181],[114.09298,22.49179],[114.09295,22.49178],[114.09292,22.49175],[114.09291,22.49174],[114.09289,22.49171],[114.09288,22.49167],[114.09287,22.49165],[114.09285,22.49163],[114.09285,22.49163],[114.0928,22.49158],[114.09276,22.49155],[114.09273,22.49153],[114.09267,22.4915],[114.09262,22.49148],[114.0926,22.49146],[114.09257,22.49143],[114.09255,22.49142],[114.09252,22.49139],[114.09249,22.49137],[114.09248,22.49136],[114.09246,22.49134],[114.09245,22.49133],[114.09245,22.49132],[114.09245,22.4913],[114.09246,22.49125],[114.09246,22.49123],[114.09246,22.49121],[114.09244,22.49113],[114.09242,22.49107],[114.09241,22.49106],[114.09238,22.4909],[114.09238,22.4909],[114.09237,22.49086],[114.0924,22.49083],[114.09246,22.49075],[114.09261,22.49055],[114.0926,22.49051],[114.09259,22.49046],[114.09252,22.49035],[114.0924,22.49022],[114.09237,22.49011],[114.09235,22.48989],[114.09238,22.48932],[114.09244,22.4888],[114.09244,22.48865],[114.09243,22.48856],[114.09239,22.48843],[114.09236,22.48829],[114.09229,22.4882],[114.09223,22.4881],[114.09217,22.48797],[114.09213,22.48785],[114.0921,22.48771],[114.09208,22.48759],[114.09208,22.4875],[114.09211,22.48739],[114.09211,22.4873],[114.09208,22.48719],[114.09206,22.4871],[114.09203,22.48701],[114.09205,22.48688],[114.09218,22.48632],[114.09219,22.48622],[114.09218,22.48614],[114.09213,22.48595],[114.09211,22.4858],[114.09215,22.48569],[114.09221,22.4856],[114.0923,22.48553],[114.09232,22.48549],[114.09233,22.4854],[114.09237,22.48533],[114.09238,22.48521],[114.09235,22.48511],[114.09226,22.48501],[114.0921,22.48487],[114.09196,22.48475],[114.09166,22.4846],[114.09146,22.48452],[114.09129,22.48443],[114.09116,22.48431],[114.09106,22.48417],[114.09097,22.48398],[114.09085,22.48373],[114.09054,22.48323],[114.09033,22.48289],[114.09016,22.48269],[114.08998,22.48248],[114.0898,22.48229],[114.08965,22.48212],[114.08955,22.48206],[114.08948,22.482],[114.08943,22.48186],[114.08939,22.48178],[114.08929,22.48166],[114.08927,22.48156],[114.08931,22.48125],[114.08935,22.48114],[114.0894,22.48103],[114.08944,22.48089],[114.08947,22.48028],[114.08948,22.48001],[114.08951,22.47945],[114.0895,22.47931],[114.08949,22.47913],[114.08948,22.47894],[114.08948,22.47839],[114.08948,22.47834],[114.0895,22.47819],[114.08952,22.47807],[114.08947,22.47791],[114.08944,22.47771],[114.08945,22.4776],[114.08948,22.47744],[114.0895,22.47736],[114.08955,22.47724],[114.08955,22.47711],[114.08948,22.47657],[114.0895,22.47646],[114.08952,22.47633],[114.0895,22.47622],[114.08948,22.47612],[114.08946,22.47594],[114.08951,22.47533],[114.08953,22.47488],[114.0896,22.47464],[114.08956,22.47439],[114.08953,22.47407],[114.08953,22.47392],[114.08974,22.47339],[114.08977,22.47313],[114.08955,22.47144],[114.08967,22.47073],[114.08987,22.47029],[114.08988,22.46945],[114.0901,22.46859],[114.09011,22.46826],[114.09,22.46793],[114.0897,22.46729],[114.08909,22.46637],[114.08893,22.46609],[114.08917,22.46593],[114.0892,22.46595],[114.08943,22.46598],[114.0898,22.46618],[114.09015,22.46624],[114.09057,22.46615],[114.09088,22.46595],[114.09104,22.46591],[114.09126,22.46591],[114.09176,22.46604],[114.09188,22.46606],[114.09193,22.46607],[114.09196,22.46607],[114.09204,22.46604],[114.09244,22.46602],[114.09253,22.46605],[114.09259,22.46608],[114.09269,22.46616],[114.09272,22.4662],[114.09281,22.46628],[114.09301,22.46637],[114.09324,22.4664],[114.09371,22.46648],[114.09403,22.46666],[114.09407,22.4667],[114.09413,22.46673],[114.09423,22.46682],[114.09455,22.46682],[114.09479,22.46677],[114.09524,22.46674],[114.09628,22.46675],[114.09701,22.46687],[114.09722,22.46689],[114.09729,22.46692],[114.0974,22.46698],[114.09835,22.46738],[114.09895,22.46741],[114.09903,22.4674],[114.09908,22.46742],[114.09947,22.46739],[114.09998,22.46755],[114.10004,22.46759],[114.10071,22.46788],[114.10092,22.46821],[114.1013,22.46844],[114.1014,22.46848],[114.10142,22.46851],[114.10169,22.46866],[114.10196,22.46875],[114.1024,22.46914],[114.10259,22.46935],[114.10274,22.46938],[114.10288,22.46938],[114.10339,22.46949],[114.10377,22.46975],[114.10417,22.46994],[114.10425,22.46998],[114.10468,22.46994],[114.10574,22.46975],[114.10764,22.4694],[114.10858,22.46923],[114.10873,22.4692],[114.10876,22.4692],[114.10887,22.46917],[114.10895,22.4692],[114.10909,22.46927],[114.10916,22.46935],[114.1093,22.46969],[114.10938,22.46994],[114.10959,22.4702],[114.10982,22.47031],[114.11004,22.47037],[114.11007,22.47038],[114.11024,22.47041],[114.11035,22.47041],[114.11065,22.47058],[114.11087,22.47069],[114.11126,22.47064],[114.11151,22.47062],[114.11162,22.47065],[114.11176,22.4707],[114.11186,22.4708],[114.11196,22.47091],[114.11203,22.47103],[114.11212,22.47114],[114.11221,22.47117],[114.11234,22.47121],[114.11246,22.47121],[114.11261,22.4712],[114.11271,22.47119],[114.11287,22.47121],[114.11308,22.47122],[114.11341,22.47133],[114.11368,22.47125],[114.11385,22.47113],[114.11403,22.47105],[114.11411,22.47099],[114.11417,22.47095],[114.11425,22.47093],[114.11439,22.47095],[114.11444,22.47101],[114.11457,22.47126],[114.11472,22.47138],[114.11488,22.47143],[114.11499,22.4714],[114.11513,22.4713],[114.11534,22.47095],[114.11545,22.47088],[114.11562,22.47081],[114.11577,22.47057],[114.11609,22.47026],[114.11615,22.47014],[114.1162,22.47004],[114.11622,22.46987],[114.11619,22.46971],[114.1161,22.46964],[114.11608,22.46953],[114.1161,22.46942],[114.11657,22.46943],[114.11686,22.46934],[114.11703,22.46926],[114.11722,22.4691],[114.11731,22.46894],[114.11882,22.46802],[114.11929,22.468],[114.11943,22.46799],[114.11971,22.46791],[114.12021,22.4678],[114.1203,22.46776],[114.12037,22.46771],[114.12043,22.46763],[114.1205,22.46751],[114.12054,22.46743],[114.12061,22.46714],[114.12063,22.46698],[114.12076,22.46661],[114.12092,22.46642],[114.12115,22.46624],[114.12151,22.46595],[114.12177,22.46587],[114.12235,22.46573],[114.12265,22.46568],[114.12311,22.4658],[114.12333,22.46591],[114.1235,22.46618],[114.12367,22.46626],[114.12388,22.46622],[114.12406,22.46613],[114.12426,22.46604],[114.12453,22.46596],[114.12472,22.46598],[114.12503,22.46602],[114.12532,22.46593],[114.12559,22.46576],[114.12578,22.46571],[114.12595,22.46569],[114.12658,22.46617],[114.12791,22.46651],[114.12773,22.46604],[114.12766,22.46584],[114.12763,22.46566],[114.12762,22.4655],[114.12753,22.46527],[114.12747,22.46497],[114.1275,22.46487],[114.12749,22.46467],[114.12742,22.46451],[114.12732,22.46436],[114.12719,22.46423],[114.12712,22.46415],[114.12694,22.46398],[114.1269,22.46393],[114.1269,22.46392],[114.12686,22.46383],[114.12648,22.46381],[114.12556,22.46383],[114.12542,22.46383],[114.12531,22.46381],[114.12509,22.46373],[114.12488,22.46364],[114.12482,22.46355],[114.1248,22.46322],[114.12491,22.46288],[114.12499,22.46274],[114.12493,22.46234],[114.12446,22.46211],[114.12443,22.46201],[114.12427,22.46171],[114.12407,22.4614],[114.12407,22.46121],[114.12414,22.46098],[114.12429,22.46073],[114.12439,22.46053],[114.12438,22.46043],[114.12412,22.46024],[114.12405,22.46018],[114.12393,22.46003],[114.12388,22.45977],[114.1239,22.45948],[114.12386,22.45921],[114.12386,22.45915],[114.12376,22.45908],[114.12357,22.45901],[114.1234,22.45892],[114.12339,22.45892],[114.12302,22.45869],[114.12292,22.45859],[114.12288,22.45852],[114.12259,22.45816],[114.12242,22.458],[114.1223,22.45786],[114.12229,22.45783],[114.12214,22.45749],[114.12206,22.45723],[114.12202,22.45681],[114.12196,22.45649],[114.12194,22.45614],[114.12186,22.45579],[114.1218,22.45564],[114.1217,22.45553],[114.12161,22.4555],[114.12155,22.45545],[114.12145,22.45539],[114.12112,22.45526],[114.12093,22.45517],[114.12058,22.45493],[114.12003,22.45425],[114.11969,22.45401],[114.11952,22.45387],[114.11933,22.45362],[114.11908,22.45326],[114.1189,22.45311],[114.11879,22.45304],[114.11863,22.45291],[114.11851,22.45279],[114.1184,22.45265],[114.11836,22.45252],[114.11836,22.45236],[114.11842,22.45203],[114.11842,22.45192],[114.11842,22.45185],[114.11837,22.45175],[114.11822,22.45161],[114.11809,22.45147],[114.11807,22.45141],[114.11806,22.45131],[114.1181,22.45114],[114.11809,22.45097],[114.11808,22.45093],[114.11791,22.45079],[114.11783,22.45074],[114.11755,22.45062],[114.11747,22.45056],[114.11736,22.45042],[114.11722,22.45011],[114.11717,22.45004],[114.11708,22.44994],[114.11686,22.44981],[114.11676,22.44977],[114.11659,22.44974],[114.11653,22.44958],[114.11646,22.4495],[114.11629,22.44937],[114.11625,22.44933],[114.11617,22.44923],[114.11608,22.44906],[114.11542,22.44864],[114.11535,22.44858],[114.11527,22.4485],[114.11516,22.44835],[114.1151,22.44829],[114.11475,22.44781],[114.11373,22.44639],[114.11366,22.44633],[114.11336,22.44584],[114.11329,22.44575],[114.11321,22.44558],[114.112,22.44388],[114.11195,22.4438],[114.11194,22.44352],[114.112,22.44332],[114.11208,22.44311],[114.11214,22.44302],[114.11222,22.4429],[114.11252,22.44254],[114.11281,22.4421],[114.11286,22.44196],[114.11281,22.44179],[114.11267,22.44163],[114.11251,22.44138],[114.11248,22.44125],[114.1125,22.44113],[114.1126,22.44099],[114.11312,22.44035],[114.11368,22.43951],[114.11385,22.43907],[114.11394,22.43879],[114.11407,22.4385],[114.11413,22.43827],[114.11421,22.4381],[114.11422,22.43807],[114.11427,22.438],[114.11454,22.43754],[114.11459,22.43743],[114.11464,22.43738],[114.11483,22.43725],[114.11497,22.43713],[114.11504,22.43702],[114.11503,22.43671],[114.11506,22.43656],[114.11514,22.43639],[114.11521,22.43632],[114.11541,22.43619],[114.11556,22.43605],[114.11563,22.43593],[114.11599,22.43549],[114.11614,22.43497],[114.11615,22.43494],[114.11617,22.43485],[114.11638,22.4335],[114.11639,22.43341],[114.1164,22.43336],[114.1164,22.43331],[114.11627,22.43329],[114.1161,22.43224],[114.11616,22.43207],[114.1162,22.43198],[114.11621,22.43194],[114.11625,22.43186],[114.11633,22.43172],[114.11644,22.43152],[114.1168,22.43097],[114.11717,22.43038],[114.11757,22.42982],[114.1176,22.42975],[114.1177,22.42959],[114.11773,22.42953],[114.11776,22.42946],[114.11777,22.42944],[114.11783,22.42929],[114.11788,22.42919],[114.11789,22.42917],[114.1179,22.42916],[114.11791,22.42914],[114.11792,22.42913],[114.11792,22.42912],[114.11793,22.4291],[114.11794,22.42909],[114.11795,22.42907],[114.11796,22.42905],[114.11797,22.42903],[114.11797,22.429],[114.11798,22.42898],[114.11798,22.42897],[114.11798,22.42895],[114.11799,22.42895],[114.11799,22.42894],[114.118,22.42893],[114.11801,22.42891],[114.11803,22.4289],[114.11805,22.42888],[114.11807,22.42886],[114.1181,22.42884],[114.11812,22.42882],[114.11815,22.42879],[114.11817,22.42877],[114.11818,22.42875],[114.11819,22.42874],[114.1182,22.42872],[114.11821,22.42871],[114.11822,22.42869],[114.11823,22.42868],[114.11824,22.42866],[114.11825,22.42864],[114.11826,22.42862],[114.11827,22.4286],[114.11828,22.42857],[114.1183,22.42855],[114.11831,22.42853],[114.11833,22.42851],[114.11835,22.42849],[114.11836,22.42848],[114.11838,22.42846],[114.1184,22.42845],[114.11841,22.42844],[114.11843,22.42843],[114.11844,22.42843],[114.11848,22.42841],[114.11852,22.42839],[114.11856,22.42838],[114.1186,22.42836],[114.11865,22.42835],[114.1187,22.42834],[114.11874,22.42833],[114.11878,22.42832],[114.11883,22.42832],[114.11887,22.42831],[114.1189,22.42831],[114.11893,22.42832],[114.119,22.42832],[114.11903,22.42833],[114.11907,22.42833],[114.1191,22.42834],[114.11913,22.42835],[114.11915,22.42836],[114.11917,22.42837],[114.11918,22.42837],[114.1192,22.42838],[114.11922,22.42839],[114.11923,22.42839],[114.11925,22.4284],[114.11926,22.4284],[114.11928,22.42841],[114.11929,22.42841],[114.11931,22.42841],[114.11933,22.42841],[114.11934,22.42841],[114.11936,22.42842],[114.11937,22.42842],[114.11939,22.42841],[114.11941,22.42841],[114.11942,22.42841],[114.11944,22.4284],[114.11945,22.4284],[114.11948,22.42839],[114.11949,22.42838],[114.1195,22.42837],[114.11952,22.42835],[114.11954,22.42833],[114.11957,22.4283],[114.11958,22.42829],[114.1196,22.42827],[114.11961,22.42825],[114.11963,22.42823],[114.11964,22.42822],[114.11966,22.4282],[114.11968,22.42817],[114.1197,22.42815],[114.11973,22.42812],[114.11976,22.4281],[114.11978,22.42807],[114.11981,22.42805],[114.11984,22.42802],[114.11987,22.428],[114.11993,22.42795],[114.11996,22.42793],[114.11999,22.42791],[114.12002,22.42788],[114.12006,22.42786],[114.12009,22.42784],[114.12012,22.42782],[114.12016,22.4278],[114.1202,22.42778],[114.12023,22.42776],[114.12034,22.42771],[114.12035,22.4277],[114.12036,22.42769],[114.12036,22.42768],[114.12037,22.42768],[114.12039,22.42766],[114.1204,22.42765],[114.12041,22.42765],[114.12062,22.42762],[114.12077,22.4276],[114.12079,22.4276],[114.12081,22.4276],[114.12086,22.4276],[114.12088,22.4276],[114.12091,22.42761],[114.12093,22.42761],[114.12094,22.42761],[114.12095,22.42762],[114.12097,22.42762],[114.12098,22.42761],[114.12099,22.42761],[114.121,22.42761],[114.12101,22.4276],[114.12103,22.42759],[114.12105,22.42758],[114.12106,22.42757],[114.12108,22.42756],[114.1211,22.42754],[114.12111,22.42753],[114.12111,22.42751],[114.12113,22.4275],[114.12121,22.42721],[114.12123,22.42706],[114.12124,22.42697],[114.12131,22.42651],[114.12137,22.42616],[114.12137,22.42609],[114.12137,22.42601],[114.12134,22.42592],[114.12132,22.42583],[114.1213,22.42577],[114.12128,22.42572],[114.12128,22.42567],[114.12128,22.4256],[114.12129,22.42553],[114.12132,22.42544],[114.12138,22.42532],[114.12138,22.42532],[114.12142,22.42529],[114.12144,22.42527],[114.12146,22.42525],[114.12147,22.42523],[114.12149,22.42521],[114.12151,22.42519],[114.12153,22.42517],[114.12155,22.42514],[114.12156,22.42512],[114.12157,22.42511],[114.12158,22.42509],[114.12159,22.42508],[114.1216,22.42507],[114.12161,22.42507],[114.12162,22.42506],[114.12162,22.42505],[114.12163,22.42503],[114.12163,22.42502],[114.12164,22.42501],[114.12164,22.425],[114.12165,22.42499],[114.12167,22.42497],[114.12171,22.42494],[114.12174,22.42492],[114.12176,22.4249],[114.12177,22.42489],[114.1218,22.42484],[114.12182,22.42481],[114.12183,22.42479],[114.12185,22.42476],[114.12186,22.42475],[114.12186,22.42475],[114.12187,22.42472],[114.12188,22.4247],[114.12188,22.42469],[114.12189,22.42466],[114.1219,22.42463],[114.12191,22.42462],[114.12193,22.4246],[114.12194,22.42458],[114.12195,22.42457],[114.12195,22.42457],[114.12196,22.42454],[114.12197,22.42453],[114.12199,22.4245],[114.122,22.42449],[114.122,22.42447],[114.12201,22.42446],[114.12202,22.42443],[114.12204,22.42441],[114.12204,22.42439],[114.12205,22.42439],[114.12205,22.42438],[114.12206,22.42436],[114.12207,22.42435],[114.12208,22.42434],[114.12208,22.42433],[114.12209,22.42431],[114.1221,22.4243],[114.1221,22.42429],[114.12211,22.42428],[114.12212,22.42427],[114.12212,22.42426],[114.12214,22.42424],[114.12214,22.42424],[114.12214,22.42423],[114.12215,22.42422],[114.12216,22.42421],[114.12216,22.4242],[114.12218,22.42418],[114.12219,22.42416],[114.12221,22.42413],[114.12221,22.42412],[114.12222,22.42411],[114.12222,22.4241],[114.12223,22.4241],[114.12224,22.42407],[114.12225,22.42406],[114.12225,22.42405],[114.12226,22.42405],[114.12227,22.42404],[114.12227,22.42403],[114.1223,22.42401],[114.1223,22.424],[114.12246,22.42379],[114.12248,22.42378],[114.1225,22.42376],[114.12252,22.42375],[114.12253,22.42374],[114.12254,22.42373],[114.12256,22.42372],[114.12257,22.42371],[114.12258,22.4237],[114.12259,22.42369],[114.1226,22.42368],[114.12261,22.42367],[114.12262,22.42366],[114.12262,22.42366],[114.12263,22.42365],[114.12264,22.42364],[114.12265,22.42364],[114.12265,22.42363],[114.12266,22.42363],[114.12267,22.42362],[114.12267,22.42362],[114.12268,22.42361],[114.12269,22.4236],[114.12269,22.42359],[114.12269,22.42359],[114.1227,22.42358],[114.12271,22.42357],[114.12271,22.42357],[114.12273,22.42356],[114.12275,22.42355],[114.12275,22.42354],[114.12278,22.42353],[114.12279,22.42353],[114.1228,22.42352],[114.12281,22.42352],[114.12282,22.42351],[114.12285,22.42349],[114.12287,22.42347],[114.12287,22.42346],[114.12288,22.42346],[114.1229,22.42342],[114.12292,22.42341],[114.12294,22.42339],[114.12294,22.42339],[114.12295,22.42338],[114.12296,22.42337],[114.12297,22.42336],[114.12299,22.42335],[114.12301,22.42332],[114.12304,22.4233],[114.12305,22.42329],[114.12305,22.42328],[114.12307,22.42327],[114.12308,22.42326],[114.12309,22.42325],[114.12312,22.42323],[114.12312,22.42322],[114.12329,22.42318],[114.12345,22.42315],[114.12383,22.42305],[114.12417,22.4229],[114.12437,22.42274],[114.12444,22.42264],[114.12451,22.42252],[114.12459,22.42233],[114.12471,22.42199],[114.12482,22.42178],[114.12483,22.42178],[114.12492,22.42147],[114.12499,22.42135],[114.12506,22.42126],[114.12518,22.42103],[114.12527,22.4209],[114.12597,22.4201],[114.126,22.42003],[114.126,22.41994],[114.12594,22.41975],[114.12593,22.41964],[114.12593,22.41952],[114.12595,22.4194],[114.12594,22.41915],[114.1259,22.41907],[114.1259,22.41897],[114.12593,22.41889],[114.12602,22.41879],[114.12604,22.41873],[114.12606,22.41857],[114.12603,22.41838],[114.12594,22.41818],[114.12585,22.41779],[114.12585,22.41776],[114.12578,22.41761],[114.12566,22.41719],[114.1256,22.41707],[114.12556,22.41694],[114.12556,22.41683],[114.12564,22.41666],[114.12566,22.41655],[114.12565,22.41643],[114.1256,22.41629],[114.12558,22.41621],[114.12558,22.41617],[114.12658,22.41622],[114.12725,22.41632],[114.12778,22.41652],[114.12836,22.41683],[114.12887,22.41707],[114.12964,22.41702],[114.13081,22.4169],[114.13185,22.41682],[114.13252,22.41694],[114.13288,22.4171],[114.13324,22.41737],[114.13386,22.4177],[114.13449,22.41806],[114.13516,22.41816],[114.1361,22.41815],[114.13687,22.41806],[114.13761,22.41795],[114.13857,22.41781],[114.13954,22.41761],[114.14025,22.41741],[114.141,22.41689],[114.14102,22.41697],[114.14103,22.41701],[114.14133,22.41791],[114.14169,22.41912],[114.14209,22.42037],[114.14245,22.42141],[114.14279,22.4224],[114.14309,22.42323],[114.14337,22.42403],[114.14373,22.42481],[114.14386,22.42509],[114.144,22.4254],[114.14407,22.42554],[114.14427,22.42599],[114.14448,22.42636],[114.14467,22.42667],[114.14504,22.42721],[114.14516,22.42736],[114.14532,22.42759],[114.1456,22.42793],[114.14573,22.42808],[114.14592,22.42831],[114.14608,22.42848],[114.14625,22.42868],[114.14661,22.42899],[114.14662,22.429],[114.1469,22.4292],[114.14709,22.42933],[114.14723,22.42944],[114.14735,22.4295],[114.14753,22.4296],[114.14769,22.42983],[114.14778,22.43],[114.14787,22.43016],[114.14803,22.43059],[114.14812,22.43083],[114.14827,22.43125],[114.1485,22.43213],[114.14863,22.4329],[114.1488,22.43377],[114.14899,22.43446],[114.14913,22.43496],[114.14952,22.43594],[114.14959,22.43616],[114.14966,22.4364],[114.14971,22.43669],[114.14976,22.43702],[114.14978,22.43703],[114.14979,22.43703],[114.14981,22.43705],[114.14982,22.43705],[114.14983,22.43706],[114.14984,22.43708],[114.14986,22.43711],[114.14987,22.43712],[114.14988,22.43715],[114.1499,22.43719],[114.14991,22.43722],[114.14994,22.43734],[114.14994,22.43748],[114.14993,22.43758],[114.14992,22.43761],[114.14991,22.43764],[114.14991,22.43765],[114.14992,22.43766],[114.14992,22.43768],[114.14993,22.43769],[114.14994,22.4377],[114.14995,22.43771],[114.14996,22.43772],[114.15006,22.43777],[114.15026,22.43784],[114.15031,22.43787],[114.15036,22.4379],[114.15048,22.43801],[114.1505,22.43803],[114.15052,22.43804],[114.15056,22.43807],[114.15066,22.43812],[114.15069,22.43814],[114.15071,22.43814],[114.15074,22.43814],[114.15074,22.43815],[114.15079,22.43815],[114.1508,22.43816],[114.15095,22.4382],[114.15097,22.43821],[114.15098,22.43821],[114.15098,22.43821],[114.151,22.43821],[114.15101,22.4382],[114.15106,22.43822],[114.15109,22.43823],[114.15117,22.43826],[114.15119,22.43827],[114.15122,22.43829],[114.15125,22.4383],[114.15126,22.43831],[114.1513,22.43835],[114.1513,22.43835],[114.15131,22.43838],[114.15132,22.43841],[114.15133,22.43843],[114.15131,22.43849],[114.15131,22.43853],[114.15131,22.43854],[114.15132,22.43858],[114.15133,22.4386],[114.15133,22.43862],[114.15135,22.43865],[114.15136,22.43866],[114.1514,22.43871],[114.1514,22.43871],[114.15142,22.43873],[114.15145,22.43877],[114.15146,22.43878],[114.15147,22.43878],[114.15147,22.43879],[114.15148,22.43881],[114.15145,22.43878],[114.15144,22.43878],[114.15138,22.43878],[114.15135,22.43878],[114.15129,22.43879],[114.15127,22.4388],[114.15122,22.43881],[114.15116,22.43884],[114.15113,22.43886],[114.15105,22.43892],[114.151,22.43896],[114.1509,22.43905],[114.15084,22.43908],[114.15078,22.43911],[114.15072,22.43913],[114.15052,22.43917],[114.15027,22.4392],[114.15007,22.4392],[114.14994,22.43918],[114.1498,22.43912],[114.14867,22.43849],[114.14837,22.43832],[114.14707,22.43758],[114.14699,22.43754],[114.14684,22.43751],[114.14672,22.43754],[114.14579,22.438],[114.14571,22.43805],[114.14567,22.43809],[114.14566,22.43817],[114.14567,22.43824],[114.1457,22.4383],[114.14585,22.43843],[114.14593,22.43851],[114.14597,22.43857],[114.14598,22.43864],[114.14598,22.43874],[114.14596,22.43881],[114.14589,22.43893],[114.14575,22.43913],[114.14555,22.43939],[114.1455,22.43943],[114.14543,22.43946],[114.14536,22.43946],[114.14531,22.43944],[114.14527,22.4394],[114.14524,22.43935],[114.14521,22.43927],[114.14517,22.4392],[114.1451,22.43914],[114.14503,22.4391],[114.14495,22.43907],[114.14488,22.43907],[114.14478,22.43909],[114.14468,22.43913],[114.14461,22.43919],[114.14457,22.43923],[114.14453,22.43929],[114.14448,22.43942],[114.14438,22.43958],[114.14431,22.43965],[114.14425,22.43967],[114.14417,22.43969],[114.1441,22.43969],[114.14404,22.43969],[114.14398,22.43969],[114.14391,22.43967],[114.14385,22.43966],[114.14377,22.43965],[114.14371,22.43964],[114.14364,22.43965],[114.14358,22.43968],[114.14354,22.43971],[114.14353,22.43972],[114.14349,22.43977],[114.14348,22.43979],[114.14346,22.43983],[114.14336,22.44002],[114.14329,22.44022],[114.14322,22.44049],[114.14318,22.44082],[114.14318,22.44101],[114.1432,22.44134],[114.14327,22.44166],[114.14336,22.44191],[114.14341,22.44203],[114.14349,22.44216],[114.14363,22.44236],[114.14376,22.44251],[114.14407,22.44285],[114.14437,22.44313],[114.14463,22.44336],[114.14489,22.44354],[114.14537,22.44378],[114.14576,22.44401],[114.14613,22.44432],[114.14679,22.44495],[114.14729,22.44551],[114.14747,22.44603],[114.14786,22.44714],[114.14841,22.44864],[114.14837,22.45003],[114.14846,22.45076],[114.14846,22.45118],[114.14811,22.45194],[114.14824,22.45244],[114.14841,22.45312],[114.14869,22.45345],[114.14902,22.45387],[114.14928,22.45389],[114.14922,22.45404],[114.14871,22.45542],[114.14795,22.45571],[114.14721,22.45799],[114.14738,22.45831],[114.14764,22.45877],[114.14754,22.45889],[114.14766,22.45911],[114.14785,22.45944],[114.14813,22.45935],[114.14851,22.45928],[114.14885,22.45926],[114.14886,22.45954],[114.14891,22.45955],[114.14899,22.45958],[114.14928,22.45966],[114.14931,22.45968],[114.14935,22.45972],[114.14937,22.45974],[114.14938,22.45974],[114.14938,22.45974],[114.14942,22.45974],[114.1495,22.45972],[114.14955,22.45971],[114.14974,22.45963],[114.14987,22.45955],[114.14996,22.45946],[114.15002,22.45939],[114.15008,22.4593],[114.15017,22.45915],[114.15025,22.45899],[114.15035,22.45905],[114.1509,22.45939],[114.15093,22.45933],[114.15105,22.45903],[114.15109,22.45893],[114.1512,22.45861],[114.15136,22.45813],[114.15157,22.45767],[114.15169,22.45747],[114.15173,22.4574],[114.1518,22.45727],[114.15181,22.45725],[114.15188,22.45715],[114.15225,22.45661],[114.15241,22.45643],[114.15252,22.45631],[114.15265,22.45617],[114.15333,22.45557],[114.15339,22.45553],[114.15353,22.4559],[114.15359,22.45612],[114.15372,22.45619],[114.15385,22.4562],[114.15405,22.45615],[114.15428,22.45603],[114.15443,22.45609],[114.15458,22.45623],[114.15471,22.45629],[114.15497,22.45628],[114.15526,22.45628],[114.15537,22.45633],[114.15544,22.45654],[114.15554,22.45663],[114.15564,22.45665],[114.15578,22.45664],[114.15616,22.45645],[114.15637,22.45631],[114.15642,22.45619],[114.15639,22.45608],[114.15628,22.45598],[114.15605,22.45574],[114.15596,22.4555],[114.15594,22.45534],[114.15597,22.45527],[114.15604,22.45526],[114.15624,22.45526],[114.15638,22.45525],[114.15667,22.45519],[114.15666,22.45542],[114.15671,22.45553],[114.15676,22.4557],[114.15681,22.45584],[114.15697,22.45596],[114.15719,22.45612],[114.15742,22.45621],[114.15758,22.45615],[114.15762,22.45619],[114.15752,22.45631],[114.15724,22.45651],[114.15706,22.45656],[114.15691,22.45668],[114.15681,22.4568],[114.15679,22.45691],[114.15687,22.45701],[114.15709,22.45712],[114.15711,22.45719],[114.15705,22.45724],[114.15706,22.45736],[114.15706,22.4575],[114.15708,22.45751],[114.15708,22.45752],[114.15707,22.45753],[114.15706,22.45754],[114.15705,22.45756],[114.15705,22.45758],[114.15705,22.4576],[114.15705,22.45762],[114.15705,22.45764],[114.15706,22.45765],[114.15707,22.45767],[114.15708,22.45769],[114.15709,22.4577],[114.15711,22.45771],[114.15712,22.45772],[114.15714,22.45773],[114.15716,22.45773],[114.15718,22.45774],[114.1572,22.45774],[114.15722,22.45775],[114.15724,22.45775],[114.15727,22.45775],[114.15733,22.45775],[114.15735,22.45775],[114.15746,22.45775],[114.15758,22.45776],[114.15772,22.45777],[114.15773,22.45778],[114.15781,22.4578],[114.15801,22.45768],[114.15828,22.45761],[114.15843,22.45762],[114.15861,22.45744],[114.15878,22.45738],[114.15889,22.45728],[114.15884,22.45717],[114.1587,22.45704],[114.15864,22.45692],[114.15869,22.45679],[114.15896,22.45682],[114.15913,22.4568],[114.15932,22.45658],[114.15944,22.45656],[114.15964,22.45656],[114.15984,22.45645],[114.15997,22.45642],[114.16028,22.45641],[114.16048,22.45629],[114.16064,22.45622],[114.16067,22.45622],[114.16067,22.45595],[114.16107,22.45597],[114.16136,22.45598],[114.16144,22.45599],[114.16146,22.45599],[114.16149,22.456],[114.16153,22.45601],[114.16155,22.45602],[114.1616,22.45603],[114.16164,22.45605],[114.16169,22.45608],[114.16172,22.4561],[114.16174,22.45611],[114.16177,22.45613],[114.16179,22.45615],[114.16181,22.45617],[114.16183,22.45619],[114.16185,22.45621],[114.16188,22.45623],[114.1619,22.45625],[114.16193,22.45627],[114.16196,22.45628],[114.16199,22.4563],[114.16202,22.45631],[114.16205,22.45632],[114.16211,22.45634],[114.16214,22.45634],[114.16216,22.45635],[114.16219,22.45635],[114.16224,22.45636],[114.1623,22.45636],[114.16235,22.45636],[114.16244,22.45636],[114.16254,22.45637],[114.16257,22.45638],[114.16261,22.4564],[114.16264,22.45641],[114.16266,22.45642],[114.16269,22.45644],[114.16271,22.45645],[114.16274,22.45647],[114.16278,22.45651],[114.16284,22.45656],[114.16288,22.4566],[114.16291,22.45662],[114.16294,22.45667],[114.16297,22.4567],[114.16298,22.45672],[114.16299,22.45697],[114.16309,22.45696],[114.1631,22.45699],[114.16311,22.45703],[114.16312,22.4571],[114.16313,22.45716],[114.16313,22.45717],[114.16314,22.45719],[114.16315,22.4572],[114.16317,22.45722],[114.16319,22.45722],[114.16321,22.45723],[114.16322,22.45723],[114.16324,22.45723],[114.16326,22.45723],[114.16328,22.45722],[114.16329,22.45722],[114.16332,22.45722],[114.16337,22.45721],[114.1634,22.45719],[114.16341,22.45718],[114.16354,22.45704],[114.16389,22.45675],[114.16403,22.45664],[114.1641,22.45658],[114.16413,22.45656],[114.16415,22.45655],[114.16416,22.45654],[114.1642,22.45653],[114.16427,22.4565],[114.16431,22.45649],[114.16439,22.45645],[114.16441,22.45648],[114.16454,22.45673],[114.16463,22.45695],[114.16471,22.4573],[114.165,22.45821],[114.16506,22.45869],[114.16502,22.45916],[114.16507,22.45946],[114.16517,22.45973],[114.16515,22.45982],[114.16503,22.46026],[114.16504,22.46052],[114.1651,22.46096],[114.16507,22.46121],[114.16494,22.46154],[114.1649,22.46184],[114.16485,22.46216],[114.16475,22.46246],[114.16474,22.46262],[114.16473,22.46278],[114.16457,22.46304],[114.16456,22.46321],[114.16464,22.46346],[114.16464,22.46349],[114.16465,22.46359],[114.16466,22.46366],[114.16467,22.46369],[114.1647,22.46375],[114.16471,22.46378],[114.1647,22.4638],[114.16468,22.46392],[114.16468,22.46399],[114.16468,22.46402],[114.16467,22.46405],[114.16466,22.46407],[114.16468,22.4641],[114.16469,22.46413],[114.1647,22.46416],[114.1647,22.46418],[114.16469,22.46419],[114.16466,22.46419],[114.16465,22.4642],[114.16464,22.46421],[114.16463,22.46424],[114.16462,22.46426],[114.16463,22.46428],[114.16463,22.4643],[114.16462,22.46432],[114.16464,22.46433],[114.16464,22.46435],[114.16464,22.46436],[114.16463,22.46437],[114.1646,22.46441],[114.16459,22.46442],[114.16459,22.46443],[114.16459,22.46447],[114.16457,22.4645],[114.16457,22.46453],[114.16455,22.46461],[114.16453,22.46466],[114.16451,22.46468],[114.1645,22.4647],[114.16449,22.46473],[114.16449,22.46476],[114.16448,22.46484],[114.16452,22.46486],[114.16459,22.46489],[114.16483,22.465],[114.16492,22.46504],[114.16499,22.46507],[114.16506,22.4651],[114.16515,22.46513],[114.16537,22.46521],[114.16564,22.46531],[114.16573,22.46535],[114.16582,22.46538],[114.16591,22.46542],[114.16601,22.46547],[114.16608,22.46551],[114.16626,22.46561],[114.1664,22.46567],[114.16643,22.46569],[114.16647,22.46571],[114.1665,22.46573],[114.16651,22.46574],[114.16653,22.46576],[114.16655,22.46578],[114.16656,22.4658],[114.16659,22.46583],[114.16661,22.46586],[114.16662,22.46589],[114.16664,22.46593],[114.16666,22.46597],[114.16669,22.46602],[114.16675,22.46618],[114.16691,22.46653],[114.16696,22.46664],[114.16707,22.46687],[114.16712,22.46697],[114.16715,22.46702],[114.16717,22.46707],[114.1672,22.46712],[114.16724,22.46718],[114.1673,22.46727],[114.16735,22.46735],[114.1674,22.46743],[114.16746,22.4675],[114.16748,22.46753],[114.1675,22.46756],[114.16754,22.4676],[114.16758,22.46764],[114.1677,22.46776],[114.16775,22.46781],[114.16793,22.468],[114.16798,22.46806],[114.16803,22.46811],[114.16812,22.46823],[114.16818,22.4683],[114.16822,22.46836],[114.16828,22.46846],[114.16832,22.46852],[114.16837,22.4686],[114.16841,22.46868],[114.16846,22.46876],[114.16851,22.46884],[114.16855,22.46892],[114.16858,22.46898],[114.16862,22.46905],[114.16865,22.46911],[114.16868,22.46918],[114.16871,22.46925],[114.16875,22.46933],[114.1688,22.46946],[114.16882,22.46951],[114.16885,22.46958],[114.16887,22.46965],[114.1689,22.46974],[114.16893,22.46983],[114.16895,22.4699],[114.16896,22.46995],[114.16897,22.47],[114.16898,22.47005],[114.16899,22.47009],[114.16899,22.47013],[114.169,22.47016],[114.169,22.47023],[114.169,22.47031],[114.16899,22.4704],[114.16898,22.47049],[114.16897,22.47061],[114.16895,22.47072],[114.16894,22.47077],[114.16893,22.47083],[114.16891,22.47092],[114.1689,22.47099],[114.16887,22.47107],[114.16884,22.47116],[114.16881,22.47124],[114.16875,22.47142],[114.16872,22.4715],[114.16865,22.47165],[114.16863,22.47172],[114.16858,22.47184],[114.16857,22.47188],[114.16857,22.47189],[114.16856,22.47193],[114.16855,22.47196],[114.16855,22.47202],[114.16854,22.47205],[114.16854,22.47209],[114.16855,22.47213],[114.16855,22.47216],[114.16856,22.4722],[114.16857,22.47223],[114.16859,22.47227],[114.16861,22.4723],[114.16863,22.47233],[114.16866,22.47237],[114.16876,22.47251],[114.16889,22.47269],[114.16893,22.47275],[114.16896,22.47279],[114.169,22.47285],[114.16904,22.47292],[114.16908,22.47298],[114.16912,22.47304],[114.16915,22.47311],[114.16919,22.47319],[114.16923,22.47327],[114.16926,22.47334],[114.16929,22.47339],[114.16931,22.47346],[114.16933,22.47351],[114.16934,22.47356],[114.16936,22.47361],[114.16937,22.47367],[114.16938,22.47372],[114.16939,22.47379],[114.1694,22.47385],[114.16941,22.4739],[114.16941,22.47394],[114.16941,22.47397],[114.16941,22.47401],[114.16941,22.47404],[114.16941,22.47408],[114.1694,22.47415],[114.16938,22.4743],[114.16937,22.47437],[114.16936,22.47448],[114.16935,22.47455],[114.16935,22.4746],[114.16935,22.47466],[114.16935,22.47471],[114.16935,22.47476],[114.16936,22.47482],[114.16937,22.47487],[114.16938,22.47492],[114.16939,22.47496],[114.1694,22.47499],[114.16942,22.47504],[114.16944,22.47508],[114.16946,22.47513],[114.16949,22.47518],[114.16951,22.47521],[114.16953,22.47524],[114.16956,22.47529],[114.16959,22.47533],[114.16962,22.47537],[114.16973,22.47551],[114.16986,22.47566],[114.17032,22.47621],[114.17037,22.47608],[114.17067,22.47529],[114.17071,22.47519],[114.17074,22.47511],[114.17077,22.47506],[114.17079,22.47503],[114.17081,22.475],[114.17083,22.47497],[114.17087,22.47492],[114.1709,22.4749],[114.17094,22.47486],[114.17096,22.47483],[114.17099,22.47481],[114.17104,22.47478],[114.17107,22.47475],[114.17112,22.47472],[114.17117,22.47469],[114.17123,22.47465],[114.17134,22.47458],[114.17141,22.47455],[114.17149,22.4745],[114.17166,22.47441],[114.17178,22.47435],[114.17185,22.47431],[114.1719,22.47429],[114.17201,22.47424],[114.17215,22.47418],[114.17254,22.47403],[114.17261,22.474],[114.17267,22.47398],[114.17276,22.47395],[114.17287,22.47391],[114.173,22.47388],[114.17315,22.47384],[114.17336,22.47379],[114.17347,22.47376],[114.17358,22.47374],[114.17402,22.47365],[114.17412,22.47363],[114.17419,22.47362],[114.17425,22.47361],[114.17431,22.4736],[114.17437,22.4736],[114.17452,22.47359],[114.17466,22.47358],[114.1747,22.47358],[114.17473,22.47358],[114.17477,22.47358],[114.17481,22.47359],[114.17483,22.47359],[114.17485,22.47359],[114.17487,22.4736],[114.17489,22.47361],[114.17492,22.47362],[114.17499,22.47365],[114.17508,22.4737],[114.1753,22.47381],[114.17581,22.47408],[114.17594,22.47415],[114.17601,22.47418],[114.17608,22.47422],[114.17615,22.47425],[114.17622,22.47428],[114.17628,22.47429],[114.17633,22.47431],[114.17637,22.47432],[114.17639,22.47432],[114.17643,22.47433],[114.17648,22.47433],[114.17652,22.47433],[114.17656,22.47433],[114.17662,22.47433],[114.17668,22.47433],[114.1767,22.47433],[114.17674,22.47432],[114.17685,22.4743],[114.17689,22.4743],[114.17693,22.4743],[114.17699,22.47429],[114.17703,22.47429],[114.17705,22.4743],[114.17709,22.4743],[114.17711,22.4743],[114.17712,22.47431],[114.17716,22.47432],[114.17718,22.47432],[114.1772,22.47433],[114.17722,22.47434],[114.17723,22.47435],[114.17725,22.47435],[114.17727,22.47437],[114.17728,22.47438],[114.17729,22.47439],[114.17731,22.4744],[114.17733,22.47443],[114.17737,22.47449],[114.17739,22.47452],[114.17741,22.47454],[114.17744,22.47458],[114.17746,22.47459],[114.17747,22.47461],[114.17749,22.47462],[114.1775,22.47463],[114.17752,22.47464],[114.17754,22.47465],[114.17756,22.47465],[114.17757,22.47466],[114.1776,22.47466],[114.17762,22.47466],[114.17763,22.47466],[114.17765,22.47466],[114.17767,22.47465],[114.17769,22.47464],[114.17771,22.47463],[114.17772,22.47462],[114.17775,22.4746],[114.17778,22.47457],[114.17781,22.47455],[114.17783,22.47452],[114.17789,22.47445],[114.17793,22.47441],[114.17808,22.47425],[114.17815,22.47421],[114.17818,22.47419],[114.1782,22.47419],[114.17822,22.47418],[114.17826,22.47417],[114.1783,22.47416],[114.17831,22.47416],[114.17833,22.47416],[114.17835,22.47415],[114.17839,22.47415],[114.17841,22.47415],[114.17845,22.47416],[114.17847,22.47416],[114.17851,22.47416],[114.17857,22.47418],[114.17864,22.47419],[114.17883,22.47424],[114.1789,22.47426],[114.17909,22.4743],[114.17924,22.47433],[114.1794,22.47436],[114.17944,22.47437],[114.17947,22.47437],[114.17951,22.47438],[114.17953,22.47438],[114.17955,22.47438],[114.17959,22.47438],[114.17965,22.47437],[114.17969,22.47436],[114.17972,22.47435],[114.1798,22.47434],[114.17986,22.47432],[114.17989,22.47431],[114.17993,22.4743],[114.17998,22.47427],[114.18014,22.47421],[114.18018,22.47419],[114.18027,22.47415],[114.1803,22.47414],[114.18037,22.47411],[114.18041,22.4741],[114.18043,22.4741],[114.18047,22.47409],[114.18051,22.47408],[114.18054,22.47408],[114.18064,22.47408],[114.18068,22.47408],[114.18076,22.47407],[114.18082,22.47406],[114.18085,22.47406],[114.18089,22.47405],[114.18095,22.47403],[114.181,22.47402],[114.18108,22.474],[114.18113,22.47398],[114.18122,22.47394],[114.18131,22.47391],[114.18186,22.47368],[114.18189,22.47366],[114.18199,22.47359],[114.18209,22.47349],[114.18218,22.47341],[114.18228,22.47332],[114.18236,22.47324],[114.18246,22.47315],[114.18251,22.4731],[114.18253,22.47309],[114.18255,22.47307],[114.18257,22.47305],[114.18258,22.47305],[114.18259,22.47303],[114.18264,22.47299],[114.18264,22.47299],[114.18279,22.47286],[114.18288,22.47277],[114.18294,22.47271],[114.18298,22.47267],[114.18298,22.47266],[114.18303,22.47258],[114.18304,22.47256],[114.18308,22.47247],[114.18315,22.47232],[114.1832,22.47222],[114.18322,22.47215],[114.18324,22.47211],[114.18327,22.47208],[114.18335,22.472],[114.18338,22.47197],[114.18342,22.47193],[114.1835,22.47187],[114.18354,22.47184],[114.18357,22.47182],[114.18363,22.47177],[114.18367,22.47175],[114.1837,22.47173],[114.18378,22.47169],[114.18385,22.47165],[114.1839,22.47163],[114.18394,22.47161],[114.18399,22.47159],[114.18404,22.47157],[114.1841,22.47155],[114.18415,22.47153],[114.18421,22.47151],[114.18424,22.4715],[114.1843,22.47148],[114.18434,22.47147],[114.18438,22.47146],[114.18441,22.47146],[114.18445,22.47145],[114.18449,22.47145],[114.18453,22.47144],[114.18457,22.47144],[114.18461,22.47144],[114.18465,22.47144],[114.18472,22.47144],[114.18482,22.47145],[114.18494,22.47146],[114.18511,22.47148],[114.18528,22.4715],[114.18593,22.47158],[114.18645,22.47164],[114.18663,22.47166],[114.18684,22.47168],[114.18691,22.4717],[114.18697,22.4717],[114.18703,22.47171],[114.18709,22.47173],[114.18714,22.47174],[114.18717,22.47175],[114.1872,22.47175],[114.18723,22.47176],[114.18725,22.47177],[114.18729,22.47178],[114.18733,22.4718],[114.18736,22.47182],[114.18739,22.47184],[114.18741,22.47185],[114.18742,22.47186],[114.18745,22.47188],[114.18748,22.47191],[114.18751,22.47193],[114.18753,22.47196],[114.18756,22.47199],[114.18758,22.47202],[114.1876,22.47205],[114.18761,22.47206],[114.18763,22.4721],[114.18766,22.47214],[114.18772,22.47226],[114.18773,22.47229],[114.18775,22.47232],[114.18779,22.47238],[114.18784,22.47244],[114.18788,22.4725],[114.18791,22.47255],[114.18797,22.47262],[114.18805,22.47272],[114.18811,22.47279],[114.18816,22.47285],[114.18821,22.4729],[114.18825,22.47294],[114.18829,22.47298],[114.18834,22.47302],[114.1884,22.47306],[114.18846,22.47311],[114.18852,22.47315],[114.1886,22.4732],[114.18869,22.47325],[114.18875,22.47328],[114.18882,22.47332],[114.18889,22.47335],[114.18896,22.47338],[114.18903,22.47341],[114.18911,22.47344],[114.18918,22.47346],[114.18926,22.47348],[114.18935,22.47351],[114.18944,22.47353],[114.18952,22.47354],[114.1896,22.47356],[114.18967,22.47357],[114.18977,22.47358],[114.18986,22.47359],[114.18992,22.4736],[114.18998,22.4736],[114.19017,22.47361],[114.19047,22.47363],[114.19052,22.47363],[114.19056,22.47364],[114.19068,22.47366],[114.19079,22.47367],[114.19093,22.4737],[114.19104,22.47372],[114.1911,22.47374],[114.19115,22.47375],[114.19126,22.47378],[114.19138,22.47381],[114.19145,22.47384],[114.19161,22.47389],[114.19169,22.47392],[114.19187,22.47397],[114.19193,22.47398],[114.19199,22.47399],[114.19204,22.474],[114.19208,22.47401],[114.19214,22.47401],[114.1922,22.47402],[114.19226,22.47402],[114.19234,22.47402],[114.19239,22.47401],[114.19247,22.47401],[114.19255,22.474],[114.19259,22.47399],[114.19265,22.47399],[114.1927,22.47397],[114.19274,22.47397],[114.19278,22.47396],[114.19281,22.47395],[114.19287,22.47393],[114.19292,22.47391],[114.19317,22.4738],[114.19326,22.47376],[114.19331,22.47374],[114.19334,22.47372],[114.1934,22.47369],[114.19343,22.47367],[114.19348,22.47364],[114.19351,22.47362],[114.19356,22.47359],[114.19359,22.47357],[114.19364,22.47354],[114.19368,22.4735],[114.19377,22.47343],[114.19381,22.4734],[114.1939,22.47332],[114.19393,22.4733],[114.19394,22.47329],[114.19396,22.47328],[114.19398,22.47327],[114.19401,22.47326],[114.19407,22.47324],[114.19412,22.47322],[114.19423,22.47319],[114.19428,22.47317],[114.19434,22.47317],[114.19446,22.47316],[114.19452,22.47316],[114.19456,22.47316],[114.19459,22.47316],[114.19463,22.47316],[114.19465,22.47316],[114.19469,22.47317],[114.19473,22.47317],[114.19483,22.47319],[114.19488,22.4732],[114.195,22.47322],[114.19505,22.47323],[114.19508,22.47323],[114.19508,22.47322],[114.19509,22.4732],[114.19508,22.4732],[114.19506,22.47319],[114.19504,22.47318],[114.19503,22.47318],[114.19501,22.47316],[114.195,22.47315],[114.19499,22.47314],[114.19498,22.47312],[114.19497,22.4731],[114.19496,22.47309],[114.19496,22.47307],[114.19495,22.47303],[114.19495,22.47301],[114.19495,22.47298],[114.19494,22.47278],[114.19494,22.47276],[114.19494,22.47271],[114.19494,22.47269],[114.19494,22.47267],[114.19493,22.47265],[114.19493,22.47264],[114.1949,22.47257],[114.19488,22.47254],[114.19488,22.47252],[114.19487,22.4725],[114.19486,22.47249],[114.19484,22.47247],[114.19482,22.47245],[114.1948,22.47244],[114.19477,22.47241],[114.19474,22.47239],[114.19472,22.47238],[114.19471,22.47237],[114.19465,22.47235],[114.19464,22.47234],[114.1946,22.47232],[114.19459,22.47231],[114.19457,22.4723],[114.19456,22.47229],[114.19454,22.47228],[114.19453,22.47226],[114.19452,22.47225],[114.19451,22.47223],[114.19451,22.47221],[114.1945,22.4722],[114.1945,22.47219],[114.1945,22.47218],[114.1945,22.47216],[114.1945,22.47214],[114.19451,22.47213],[114.19452,22.47211],[114.19453,22.4721],[114.19455,22.47208],[114.19456,22.47207],[114.19458,22.47207],[114.1946,22.47206],[114.19462,22.47206],[114.19464,22.47206],[114.19466,22.47206],[114.19468,22.47206],[114.19468,22.47206],[114.1947,22.47205],[114.19486,22.47193],[114.19544,22.47164],[114.19581,22.4715],[114.1961,22.47121],[114.19623,22.47111],[114.19653,22.47104],[114.19673,22.47103],[114.19698,22.47113],[114.19717,22.47122],[114.19731,22.47124],[114.19744,22.47123],[114.19752,22.47119],[114.1976,22.4711],[114.19768,22.47099],[114.19775,22.47091],[114.19782,22.47079],[114.19782,22.47069],[114.19782,22.47068],[114.19781,22.4706],[114.19777,22.47053],[114.1977,22.47048],[114.19762,22.47041],[114.19759,22.47039],[114.19759,22.47039],[114.19757,22.47038],[114.19756,22.47036],[114.19756,22.47036],[114.19745,22.47025],[114.19738,22.47016],[114.19738,22.47016],[114.19737,22.47014],[114.19694,22.46985],[114.19669,22.46962],[114.19642,22.46942],[114.19639,22.46938],[114.19639,22.46936],[114.19639,22.46935],[114.19639,22.46935],[114.1964,22.46934],[114.1964,22.46933],[114.1964,22.46929],[114.19641,22.46928],[114.19641,22.46928],[114.19642,22.46927],[114.19643,22.46926],[114.19643,22.46925],[114.19643,22.46924],[114.19642,22.46923],[114.19641,22.46919],[114.1964,22.46915],[114.1964,22.46914],[114.1964,22.46913],[114.1964,22.46913],[114.19641,22.4691],[114.19641,22.46908],[114.19641,22.46908],[114.1964,22.46907],[114.1964,22.46907],[114.1964,22.46906],[114.19639,22.46904],[114.19637,22.46903],[114.19637,22.46903],[114.19632,22.46901],[114.19631,22.469],[114.1963,22.469],[114.19629,22.46898],[114.19629,22.46897],[114.19629,22.46896],[114.19629,22.46887],[114.19627,22.4688],[114.19626,22.46874],[114.19625,22.4687],[114.19622,22.46862],[114.1962,22.46858],[114.19619,22.46856],[114.19619,22.46855],[114.19615,22.4685],[114.19609,22.46841],[114.19608,22.46839],[114.19607,22.46839],[114.19606,22.46838],[114.19603,22.46836],[114.19595,22.46831],[114.19592,22.46828],[114.19592,22.46827],[114.19591,22.46826],[114.1959,22.46822],[114.19588,22.4682],[114.19588,22.4682],[114.19587,22.46819],[114.19586,22.46819],[114.19587,22.46796],[114.19594,22.46774],[114.19589,22.46766],[114.19573,22.46767],[114.19543,22.46798],[114.19525,22.46804],[114.19505,22.46816],[114.19484,22.46811],[114.19481,22.46811],[114.19481,22.4681],[114.1948,22.46807],[114.19481,22.46805],[114.19485,22.46798],[114.19487,22.46796],[114.19492,22.46792],[114.19494,22.4679],[114.19496,22.46786],[114.19496,22.46786],[114.19498,22.46784],[114.19498,22.46783],[114.195,22.4678],[114.19501,22.46777],[114.19501,22.46777],[114.19501,22.46776],[114.19501,22.46776],[114.19501,22.46775],[114.195,22.46773],[114.19494,22.4677],[114.19493,22.46769],[114.19493,22.46768],[114.19493,22.46768],[114.19493,22.46768],[114.19493,22.46767],[114.19496,22.46763],[114.19499,22.46758],[114.195,22.46754],[114.195,22.46752],[114.19501,22.46751],[114.195,22.46746],[114.19498,22.46743],[114.19499,22.46742],[114.19499,22.46741],[114.19499,22.4674],[114.195,22.4674],[114.195,22.46739],[114.19503,22.46736],[114.19506,22.46737],[114.19507,22.46737],[114.19507,22.46737],[114.19508,22.46736],[114.19508,22.46736],[114.19509,22.46736],[114.1951,22.46735],[114.19514,22.46734],[114.19514,22.46734],[114.19516,22.46734],[114.19518,22.46733],[114.19521,22.46731],[114.19526,22.46729],[114.19527,22.46729],[114.19527,22.46728],[114.19527,22.46728],[114.19528,22.46726],[114.1953,22.46723],[114.1953,22.46722],[114.19531,22.46721],[114.19531,22.46721],[114.19532,22.46721],[114.19536,22.46715],[114.19535,22.46708],[114.19539,22.46706],[114.19541,22.46706],[114.19542,22.46705],[114.19543,22.46705],[114.19545,22.46705],[114.19546,22.46705],[114.19549,22.46705],[114.19548,22.46704],[114.19548,22.46704],[114.19545,22.46701],[114.19544,22.467],[114.19544,22.467],[114.19543,22.46698],[114.19543,22.46695],[114.19542,22.46693],[114.19542,22.46692],[114.1954,22.46689],[114.19538,22.46687],[114.19532,22.46684],[114.1953,22.46682],[114.19529,22.46681],[114.19528,22.46678],[114.19528,22.46678],[114.19528,22.46677],[114.19528,22.46676],[114.19529,22.46671],[114.1953,22.46665],[114.19532,22.4666],[114.19537,22.46653],[114.19549,22.46641],[114.19551,22.46638],[114.19555,22.46633],[114.19555,22.46633],[114.19555,22.46633],[114.19555,22.46632],[114.19555,22.46631],[114.19558,22.46619],[114.19561,22.46606],[114.19563,22.46598],[114.19563,22.46593],[114.19563,22.46592],[114.19563,22.46591],[114.19563,22.4659],[114.19563,22.46589],[114.19558,22.46574],[114.19558,22.46574],[114.19559,22.46574],[114.19562,22.46574],[114.19566,22.46576],[114.19567,22.46576],[114.19569,22.46576],[114.19572,22.46577],[114.19576,22.46576],[114.19577,22.46576],[114.19577,22.46575],[114.19577,22.46574],[114.19578,22.46572],[114.1958,22.46569],[114.19581,22.46565],[114.19582,22.4656],[114.19582,22.46553],[114.19582,22.46551],[114.19581,22.46549],[114.19581,22.46547],[114.19582,22.46547],[114.19583,22.46546],[114.19584,22.46532],[114.1959,22.46528],[114.19615,22.46531],[114.19618,22.46532],[114.1962,22.46534],[114.19625,22.46536],[114.19627,22.46538],[114.19631,22.46542],[114.19634,22.46546],[114.19635,22.46548],[114.19639,22.46558],[114.1964,22.4656],[114.19642,22.46563],[114.19645,22.46564],[114.19646,22.46565],[114.19653,22.46565],[114.19657,22.4655],[114.19655,22.46542],[114.19653,22.46532],[114.19654,22.46525],[114.19654,22.46522],[114.19655,22.4652],[114.1966,22.46508],[114.19661,22.46505],[114.19663,22.46495],[114.19663,22.46493],[114.19663,22.46492],[114.19662,22.46487],[114.19659,22.46484],[114.19657,22.46484],[114.19648,22.46482],[114.19641,22.4648],[114.1964,22.46479],[114.19632,22.46465],[114.19635,22.46452],[114.19633,22.4645],[114.19633,22.46449],[114.19631,22.46446],[114.1963,22.46441],[114.19631,22.46441],[114.1963,22.46434],[114.19635,22.46429],[114.19644,22.46421],[114.19645,22.4642],[114.19645,22.46419],[114.19636,22.46407],[114.19631,22.46403],[114.19626,22.46384],[114.19626,22.46378],[114.19632,22.46363],[114.19637,22.46354],[114.19647,22.46349],[114.19652,22.46347],[114.19663,22.46341],[114.19665,22.46338],[114.19671,22.46324],[114.19672,22.46316],[114.19674,22.4631],[114.1968,22.46306],[114.19685,22.463],[114.19697,22.46298],[114.19715,22.46302],[114.19729,22.46306],[114.19732,22.46306],[114.19739,22.46307],[114.19743,22.46308],[114.19745,22.46308],[114.19747,22.46308],[114.19749,22.46308],[114.19754,22.46308],[114.19756,22.46308],[114.19758,22.46308],[114.19764,22.46308],[114.19768,22.46309],[114.1977,22.46309],[114.19772,22.4631],[114.19774,22.4631],[114.19775,22.46311],[114.19779,22.46313],[114.19782,22.46315],[114.19785,22.46317],[114.19788,22.4632],[114.19791,22.46322],[114.19793,22.46325],[114.19795,22.46326],[114.19796,22.46328],[114.19796,22.46328],[114.19802,22.46338],[114.19804,22.46342],[114.19804,22.46349],[114.19804,22.46355],[114.19805,22.46359],[114.19808,22.46362],[114.1981,22.46363],[114.19812,22.46364],[114.19816,22.46363],[114.1983,22.46357],[114.19837,22.46354],[114.19843,22.46352],[114.19854,22.46349],[114.19857,22.46348],[114.19858,22.46347],[114.1986,22.46346],[114.19861,22.46346],[114.19861,22.46346],[114.19861,22.46345],[114.19862,22.46344],[114.19863,22.46344],[114.19863,22.46343],[114.19864,22.46341],[114.19864,22.46339],[114.19865,22.46339],[114.19865,22.46338],[114.19865,22.46337],[114.19865,22.46336],[114.19864,22.46333],[114.19863,22.46327],[114.19863,22.46327],[114.19863,22.46326],[114.19862,22.46321],[114.19862,22.4632],[114.19862,22.4632],[114.19862,22.46317],[114.19862,22.46315],[114.19863,22.46313],[114.19863,22.4631],[114.19863,22.46308],[114.19863,22.46307],[114.19863,22.46306],[114.19863,22.46305],[114.19863,22.46305],[114.19863,22.46305],[114.19862,22.46304],[114.19861,22.46303],[114.1986,22.46302],[114.19859,22.46301],[114.19856,22.46299],[114.19855,22.46298],[114.19854,22.46297],[114.19853,22.46297],[114.19852,22.46296],[114.19851,22.46294],[114.19851,22.46294],[114.1985,22.46293],[114.19849,22.46291],[114.19849,22.4629],[114.19849,22.46289],[114.19848,22.46288],[114.19848,22.46287],[114.19848,22.46287],[114.19848,22.46286],[114.19848,22.46285],[114.19848,22.46284],[114.19848,22.46284],[114.19849,22.46283],[114.19849,22.46283],[114.19849,22.46282],[114.19849,22.46281],[114.1985,22.46279],[114.19853,22.46274],[114.19856,22.4627],[114.19858,22.46265],[114.19859,22.46264],[114.19861,22.4626],[114.19862,22.46258],[114.19862,22.46257],[114.19863,22.46255],[114.19863,22.46255],[114.19863,22.46254],[114.19864,22.4625],[114.19864,22.46248],[114.19864,22.46248],[114.19864,22.46246],[114.19864,22.46246],[114.19865,22.46244],[114.19866,22.46243],[114.19871,22.46241],[114.19875,22.46238],[114.19876,22.46238],[114.19878,22.46237],[114.19879,22.46237],[114.1988,22.46237],[114.19882,22.46236],[114.19883,22.46236],[114.19883,22.46236],[114.19885,22.46235],[114.19886,22.46232],[114.19887,22.46232],[114.19888,22.4623],[114.19889,22.46227],[114.1989,22.46224],[114.19891,22.46221],[114.19892,22.46218],[114.19892,22.46218],[114.19893,22.46217],[114.19894,22.46216],[114.19902,22.46208],[114.19911,22.46199],[114.19912,22.46197],[114.19913,22.46196],[114.19914,22.46193],[114.19915,22.46189],[114.19915,22.46187],[114.19916,22.46187],[114.19916,22.46186],[114.19917,22.46186],[114.19917,22.46185],[114.19918,22.46185],[114.19918,22.46184],[114.19919,22.46184],[114.1992,22.46184],[114.19921,22.46184],[114.19922,22.46184],[114.19923,22.46184],[114.19924,22.46183],[114.19925,22.46182],[114.19925,22.46182],[114.19926,22.46181],[114.19929,22.46181],[114.1993,22.46181],[114.19932,22.46181],[114.19935,22.46181],[114.19937,22.46181],[114.1994,22.46181],[114.19946,22.46181],[114.1995,22.46181],[114.19957,22.4618],[114.19964,22.46178],[114.19966,22.46179],[114.19969,22.46179],[114.19971,22.46179],[114.19974,22.46179],[114.19977,22.4618],[114.1998,22.4618],[114.19984,22.46181],[114.19985,22.46181],[114.19986,22.46181],[114.19986,22.46181],[114.19988,22.46181],[114.19989,22.46181],[114.19989,22.4618],[114.1999,22.4618],[114.19991,22.4618],[114.19992,22.46178],[114.19994,22.46177],[114.19994,22.46177],[114.19995,22.46175],[114.19996,22.46174],[114.19997,22.4617],[114.19997,22.4617],[114.2,22.46161],[114.20001,22.46158],[114.20002,22.46155],[114.20003,22.46152],[114.20004,22.46151],[114.20005,22.4615],[114.20006,22.46148],[114.20007,22.46146],[114.20011,22.4614],[114.20011,22.46139],[114.20011,22.46139],[114.20011,22.46138],[114.20014,22.46139],[114.20016,22.46139],[114.20021,22.46139],[114.20024,22.46138],[114.20026,22.46138],[114.20028,22.46137],[114.2003,22.46137],[114.20033,22.46136],[114.20037,22.46135],[114.20041,22.46134],[114.20041,22.46134],[114.20045,22.46132],[114.20046,22.46132],[114.20048,22.46131],[114.2005,22.46131],[114.20052,22.4613],[114.20053,22.46129],[114.20054,22.46129],[114.20055,22.46128],[114.20057,22.46127],[114.20058,22.46126],[114.20059,22.46126],[114.20062,22.46125],[114.20064,22.46124],[114.20067,22.46124],[114.20074,22.46123],[114.20076,22.46123],[114.20079,22.46123],[114.20081,22.46123],[114.20086,22.46122],[114.20088,22.46122],[114.2009,22.46122],[114.20093,22.46121],[114.20096,22.46121],[114.20098,22.4612],[114.20098,22.4612],[114.20084,22.46052],[114.20119,22.46037],[114.20115,22.46032],[114.20105,22.46011],[114.20102,22.45999],[114.20098,22.45991],[114.20091,22.45976],[114.20077,22.45973],[114.20067,22.45935],[114.20081,22.45937],[114.20108,22.45945],[114.20172,22.45967],[114.20193,22.45973],[114.20214,22.45975],[114.2024,22.45974],[114.20258,22.45973],[114.20268,22.45973],[114.20309,22.45984],[114.20312,22.45982],[114.20311,22.45974],[114.20315,22.45969],[114.20307,22.45884],[114.20417,22.45927],[114.20439,22.45886],[114.20456,22.45894],[114.20461,22.45884],[114.20451,22.45879],[114.20456,22.4587],[114.20466,22.45874],[114.20548,22.45722],[114.20598,22.45746],[114.2062,22.45753],[114.20634,22.45744],[114.20645,22.45742],[114.20659,22.45744],[114.20673,22.45737],[114.20712,22.45713],[114.20757,22.45669],[114.20765,22.45663],[114.20778,22.45657],[114.20787,22.45657],[114.20803,22.45659],[114.2081,22.45659],[114.20811,22.45653],[114.20849,22.45657],[114.20849,22.45662],[114.20861,22.45665],[114.20882,22.45668],[114.20898,22.45664],[114.21142,22.45339],[114.2115,22.45336],[114.2116,22.45341],[114.2116,22.45351],[114.2092,22.45672],[114.20933,22.45672],[114.20947,22.45688],[114.20968,22.45698],[114.21021,22.45703],[114.21059,22.45702],[114.21078,22.45713],[114.21125,22.45721],[114.21166,22.45721],[114.21319,22.45692],[114.21335,22.45676],[114.21345,22.4566],[114.21345,22.45659],[114.2135,22.4564],[114.21348,22.45638],[114.21349,22.45637],[114.2135,22.45633],[114.21354,22.45633],[114.21357,22.45623],[114.21351,22.4562],[114.21354,22.45612],[114.21357,22.45612],[114.21359,22.45602],[114.21356,22.456],[114.21358,22.45582],[114.21363,22.45569],[114.21321,22.45549],[114.21324,22.45543],[114.21327,22.45545],[114.21326,22.45548],[114.21367,22.45567],[114.21375,22.45561],[114.21379,22.4555],[114.21379,22.45549],[114.21383,22.45543],[114.21381,22.45542],[114.21381,22.45542],[114.21383,22.45543],[114.21384,22.45541],[114.21396,22.45546],[114.21399,22.45541],[114.21401,22.45536],[114.21403,22.45528],[114.21397,22.45527],[114.21397,22.45524],[114.21394,22.45524],[114.21396,22.45512],[114.21403,22.45513],[114.21405,22.45506],[114.21407,22.45506],[114.21407,22.45503],[114.21408,22.45502],[114.21408,22.45481],[114.21408,22.4548],[114.21416,22.45454],[114.21414,22.45455],[114.21411,22.45455],[114.21404,22.45461],[114.21403,22.4546],[114.214,22.45462],[114.21399,22.4546],[114.21404,22.45455],[114.21398,22.4545],[114.21389,22.45456],[114.21383,22.45458],[114.21383,22.45456],[114.21387,22.45455],[114.21386,22.45452],[114.21389,22.45451],[114.21388,22.45448],[114.21394,22.45446],[114.21396,22.45443],[114.21394,22.45437],[114.2139,22.45431],[114.21389,22.45431],[114.21388,22.45429],[114.21386,22.4543],[114.21385,22.45426],[114.21383,22.45425],[114.21377,22.4542],[114.21376,22.4542],[114.2136,22.45414],[114.21355,22.45409],[114.21348,22.45405],[114.21347,22.45407],[114.21338,22.45402],[114.21339,22.454],[114.21298,22.45367],[114.21294,22.4537],[114.21283,22.45356],[114.2128,22.45357],[114.21274,22.4535],[114.2127,22.45338],[114.21262,22.45323],[114.21262,22.45293],[114.21259,22.45283],[114.21244,22.45267],[114.21204,22.45241],[114.21186,22.45222],[114.21175,22.45197],[114.2116,22.45175],[114.21149,22.4514],[114.21122,22.45084],[114.21103,22.4508],[114.21086,22.45068],[114.21056,22.45057],[114.21033,22.45018],[114.21014,22.45007],[114.2099,22.45006],[114.20981,22.44999],[114.20979,22.4499],[114.20968,22.44984],[114.20968,22.4497],[114.20978,22.44955],[114.2099,22.44946],[114.21023,22.44944],[114.21031,22.44947],[114.21039,22.4496],[114.21054,22.44962],[114.2107,22.4496],[114.21102,22.44945],[114.21121,22.44922],[114.21134,22.44915],[114.21197,22.44929],[114.2121,22.44927],[114.21241,22.44912],[114.21244,22.4489],[114.21268,22.4489],[114.21278,22.44901],[114.21295,22.4491],[114.21342,22.44913],[114.21394,22.44899],[114.21448,22.44916],[114.21499,22.44922],[114.21523,22.449],[114.21533,22.44886],[114.21558,22.44865],[114.21565,22.44865],[114.21583,22.44874],[114.21601,22.44874],[114.21633,22.44844],[114.21634,22.44826],[114.21626,22.44804],[114.21583,22.44758],[114.21565,22.44745],[114.21561,22.44737],[114.21568,22.44726],[114.21599,22.44714],[114.21619,22.44723],[114.21674,22.44741],[114.21691,22.44742],[114.21727,22.44757],[114.2175,22.44789],[114.21722,22.44845],[114.21695,22.44859],[114.21673,22.44878],[114.21662,22.44881],[114.2165,22.44903],[114.2165,22.44924],[114.21663,22.44951],[114.2172,22.44971],[114.2176,22.44979],[114.2178,22.44977],[114.21795,22.44967],[114.21878,22.44938],[114.21908,22.44918],[114.21924,22.449],[114.21936,22.449],[114.21962,22.4491],[114.21991,22.44914],[114.22045,22.44914],[114.22083,22.4491],[114.22118,22.44915],[114.22157,22.44937],[114.22183,22.44965],[114.22182,22.44984],[114.22216,22.45012],[114.22259,22.45024],[114.22278,22.45026],[114.22287,22.45024],[114.22293,22.45022],[114.22294,22.45021],[114.22296,22.4502],[114.22298,22.45019],[114.22301,22.45018],[114.22306,22.45016],[114.2231,22.45013],[114.22311,22.45012],[114.22313,22.45012],[114.22317,22.45011],[114.22341,22.45012],[114.22344,22.45012],[114.22347,22.4501],[114.22349,22.45008],[114.22354,22.45012],[114.22356,22.45012],[114.22357,22.45013],[114.22358,22.45013],[114.22362,22.45013],[114.22371,22.45012],[114.2238,22.45011],[114.22381,22.45011],[114.22395,22.45007],[114.22398,22.45006],[114.22404,22.45005],[114.22412,22.45003],[114.22414,22.45002],[114.22416,22.45001],[114.22418,22.45001],[114.2242,22.45],[114.22424,22.44998],[114.22433,22.44996],[114.22436,22.44995],[114.22439,22.44995],[114.22444,22.44994],[114.22448,22.44994],[114.2245,22.44994],[114.22451,22.44994],[114.22454,22.44995],[114.22456,22.44996],[114.22457,22.44997],[114.22458,22.44998],[114.22459,22.44998],[114.2246,22.44999],[114.22462,22.44998],[114.22463,22.44997],[114.22463,22.44997],[114.22464,22.44996],[114.22466,22.44995],[114.22467,22.44994],[114.22468,22.44993],[114.22468,22.44991],[114.22468,22.4499],[114.22469,22.44986],[114.22469,22.44985],[114.22469,22.44984],[114.22471,22.44982],[114.22473,22.44978],[114.22479,22.44967],[114.22482,22.4496],[114.22484,22.44956],[114.22486,22.44951],[114.22487,22.44949],[114.22487,22.44948],[114.22488,22.44946],[114.22489,22.44945],[114.22489,22.44942],[114.22489,22.44941],[114.22488,22.44936],[114.22487,22.44933],[114.22485,22.44927],[114.22485,22.44926],[114.22484,22.44924],[114.22484,22.44922],[114.22485,22.44921],[114.22486,22.44918],[114.22486,22.44916],[114.22487,22.44915],[114.22488,22.44912],[114.22488,22.4491],[114.22489,22.44907],[114.22489,22.44904],[114.22489,22.44901],[114.22489,22.449],[114.22488,22.44899],[114.22478,22.44884],[114.22478,22.44883],[114.22479,22.44883],[114.22481,22.44883],[114.22498,22.44884],[114.22504,22.44885],[114.2251,22.44886],[114.2252,22.44887],[114.22522,22.44887],[114.22525,22.44888],[114.22527,22.44889],[114.22527,22.44889],[114.22529,22.44889],[114.22533,22.44891],[114.22536,22.44892],[114.2254,22.44893],[114.22547,22.44897],[114.22551,22.44899],[114.22554,22.44901],[114.22557,22.44904],[114.22561,22.44905],[114.22564,22.44908],[114.22566,22.44909],[114.22568,22.4491],[114.2257,22.44911],[114.22573,22.4491],[114.22575,22.4491],[114.22577,22.4491],[114.22578,22.44911],[114.22579,22.44913],[114.22581,22.44914],[114.22583,22.44916],[114.22586,22.44917],[114.22589,22.44918],[114.22596,22.44921],[114.22599,22.44923],[114.22602,22.44925],[114.22605,22.44927],[114.22608,22.4493],[114.2261,22.44932],[114.22612,22.44935],[114.22615,22.44938],[114.22617,22.44941],[114.22619,22.44945],[114.22621,22.44948],[114.22623,22.44951],[114.22625,22.44955],[114.22626,22.44959],[114.22627,22.44961],[114.22629,22.44964],[114.2263,22.44966],[114.22632,22.4497],[114.22635,22.44973],[114.22639,22.44977],[114.22641,22.44979],[114.22644,22.44982],[114.22647,22.44984],[114.22649,22.44985],[114.22652,22.44987],[114.22655,22.44988],[114.22657,22.4499],[114.2266,22.44992],[114.22664,22.44999],[114.22668,22.45003],[114.22672,22.45006],[114.22677,22.4501],[114.22684,22.45017],[114.22693,22.45026],[114.22697,22.4503],[114.22702,22.45035],[114.22705,22.45037],[114.22708,22.45039],[114.22711,22.45041],[114.22715,22.45041],[114.22719,22.45042],[114.22723,22.45042],[114.22726,22.45044],[114.2273,22.45045],[114.22733,22.45046],[114.22736,22.45047],[114.22739,22.45047],[114.22741,22.45048],[114.22742,22.45048],[114.22744,22.4505],[114.22745,22.45051],[114.22747,22.45052],[114.2275,22.45052],[114.22752,22.45053],[114.22753,22.45055],[114.22754,22.45056],[114.22755,22.45057],[114.22757,22.45058],[114.22759,22.45059],[114.22761,22.4506],[114.22762,22.45061],[114.22764,22.45061],[114.22765,22.45063],[114.22767,22.45063],[114.22768,22.45064],[114.2277,22.45064],[114.22774,22.45064],[114.22777,22.45065],[114.22779,22.45066],[114.22782,22.45066],[114.22784,22.45066],[114.22787,22.45068],[114.22789,22.45069],[114.22792,22.4507],[114.22794,22.45071],[114.22797,22.45072],[114.22799,22.45073],[114.22807,22.45075],[114.2281,22.45076],[114.22813,22.45077],[114.22817,22.45079],[114.22819,22.4508],[114.22822,22.45079],[114.22824,22.45078],[114.22826,22.45077],[114.22829,22.45076],[114.2283,22.45076],[114.22832,22.45076],[114.22836,22.45076],[114.2284,22.45076],[114.22845,22.45077],[114.22848,22.45077],[114.22851,22.45077],[114.22855,22.45077],[114.22859,22.45078],[114.22875,22.45078],[114.22878,22.45077],[114.22882,22.45076],[114.22889,22.45073],[114.22893,22.45072],[114.22901,22.45071],[114.22904,22.45071],[114.22908,22.45072],[114.22911,22.45073],[114.22919,22.45076],[114.22931,22.45076],[114.22934,22.45077],[114.22936,22.45078],[114.22938,22.4508],[114.2294,22.45081],[114.22967,22.45095],[114.22976,22.45106],[114.22985,22.45121],[114.22999,22.45128],[114.23001,22.45129],[114.23011,22.45134],[114.23012,22.45135],[114.23015,22.45137],[114.23017,22.45138],[114.23018,22.45139],[114.23018,22.45139],[114.2302,22.45141],[114.23041,22.45177],[114.23044,22.45183],[114.23049,22.45189],[114.23056,22.452],[114.2306,22.45206],[114.23064,22.45212],[114.23068,22.45218],[114.23074,22.45227],[114.23077,22.45231],[114.2308,22.45236],[114.23083,22.45243],[114.23085,22.45247],[114.2309,22.45253],[114.23091,22.45254],[114.23092,22.45255],[114.23094,22.45256],[114.23095,22.45256],[114.23097,22.45258],[114.23098,22.45259],[114.23098,22.4526],[114.23098,22.45261],[114.23099,22.45262],[114.23099,22.45263],[114.23099,22.45265],[114.23099,22.45265],[114.23101,22.45269],[114.23103,22.45273],[114.23104,22.45277],[114.23108,22.45288],[114.23109,22.45293],[114.2311,22.45295],[114.23111,22.45297],[114.23111,22.45298],[114.23112,22.453],[114.23114,22.45304],[114.23115,22.45305],[114.23116,22.45306],[114.23117,22.45306],[114.23118,22.45306],[114.23122,22.45306],[114.23125,22.45307],[114.23129,22.45307],[114.23132,22.45308],[114.23135,22.45308],[114.23137,22.45309],[114.23139,22.4531],[114.23142,22.45312],[114.23144,22.45313],[114.23146,22.45314],[114.23148,22.45315],[114.2315,22.45317],[114.23152,22.45319],[114.23155,22.4532],[114.23157,22.45322],[114.23159,22.45323],[114.23161,22.45323],[114.23164,22.45324],[114.23167,22.45324],[114.2317,22.45324],[114.23173,22.45325],[114.23177,22.45325],[114.2318,22.45325],[114.23184,22.45326],[114.2319,22.45327],[114.23194,22.45328],[114.23197,22.45329],[114.23201,22.45331],[114.23207,22.45334],[114.23212,22.45336],[114.23218,22.4534],[114.23221,22.45341],[114.23223,22.45343],[114.23225,22.45344],[114.23227,22.45346],[114.2323,22.45349],[114.23231,22.4535],[114.23233,22.45352],[114.23234,22.45354],[114.23236,22.45356],[114.23239,22.45359],[114.23244,22.45365],[114.2325,22.45371],[114.23254,22.45374],[114.23256,22.45376],[114.2326,22.4538],[114.23265,22.45386],[114.23266,22.45388],[114.23268,22.45389],[114.23271,22.45391],[114.23273,22.45393],[114.23275,22.45396],[114.23278,22.45398],[114.2328,22.454],[114.23283,22.45403],[114.23287,22.45407],[114.23288,22.45409],[114.23291,22.45411],[114.23292,22.45413],[114.23298,22.45424],[114.233,22.45426],[114.23303,22.45428],[114.23308,22.45433],[114.23309,22.45435],[114.23311,22.45438],[114.23313,22.45439],[114.23315,22.45442],[114.23316,22.45443],[114.23319,22.45447],[114.23321,22.4545],[114.23323,22.45452],[114.23324,22.45457],[114.23325,22.45459],[114.23329,22.45463],[114.2333,22.45464],[114.23332,22.45466],[114.23332,22.45467],[114.23334,22.45471],[114.23335,22.45473],[114.23337,22.45475],[114.23338,22.45477],[114.2334,22.45482],[114.23341,22.45485],[114.23343,22.45488],[114.23346,22.45491],[114.23346,22.45492],[114.23348,22.45496],[114.23348,22.45498],[114.23348,22.45499],[114.23348,22.45501],[114.23348,22.45502],[114.23349,22.45503],[114.2335,22.45504],[114.23351,22.45505],[114.23352,22.45505],[114.23352,22.45506],[114.23355,22.45507],[114.23356,22.45508],[114.23356,22.45509],[114.23357,22.4551],[114.23358,22.45514],[114.2336,22.45521],[114.2336,22.45524],[114.23359,22.45527],[114.23359,22.4553],[114.23361,22.45532],[114.23363,22.45534],[114.23365,22.45535],[114.23366,22.45538],[114.23366,22.4554],[114.23365,22.45543],[114.23365,22.45545],[114.23364,22.45548],[114.23365,22.4555],[114.23365,22.4555],[114.23365,22.45551],[114.23367,22.45554],[114.23368,22.45558],[114.23368,22.45561],[114.23368,22.45564],[114.23367,22.45568],[114.23366,22.45571],[114.23365,22.45578],[114.23364,22.45578],[114.23364,22.45582],[114.23364,22.45586],[114.23363,22.4559],[114.23363,22.4559],[114.23361,22.45595],[114.2336,22.45595],[114.2336,22.45597],[114.23358,22.45614],[114.23358,22.45615],[114.23359,22.45616],[114.2336,22.45617],[114.23364,22.4562],[114.23365,22.45621],[114.23367,22.45622],[114.23371,22.45625],[114.23372,22.45627],[114.23374,22.45629],[114.23375,22.45631],[114.23379,22.45636],[114.2338,22.45639],[114.23382,22.45643],[114.23383,22.45646],[114.23385,22.45648],[114.23388,22.45653],[114.2339,22.45655],[114.23392,22.45657],[114.23393,22.45659],[114.23395,22.45661],[114.23397,22.45662],[114.23401,22.45666],[114.23403,22.45667],[114.23404,22.45668],[114.23406,22.4567],[114.23409,22.45672],[114.2341,22.45674],[114.23414,22.45678],[114.23414,22.45679],[114.23417,22.45681],[114.23422,22.45687],[114.23425,22.4569],[114.23429,22.45696],[114.23431,22.45698],[114.23432,22.457],[114.23434,22.45702],[114.23435,22.45705],[114.23436,22.45707],[114.23438,22.45709],[114.23439,22.45712],[114.23439,22.45715],[114.2344,22.45717],[114.2344,22.45719],[114.2344,22.45721],[114.2344,22.45723],[114.23442,22.45735],[114.23441,22.4574],[114.23441,22.45741],[114.23441,22.45743],[114.23441,22.45744],[114.2344,22.45746],[114.23436,22.45753],[114.23434,22.45755],[114.2343,22.45759],[114.2343,22.45759],[114.23424,22.45761],[114.2342,22.45765],[114.23415,22.45767],[114.23414,22.45767],[114.23409,22.45769],[114.23398,22.4577],[114.23392,22.45771],[114.23387,22.4577],[114.23383,22.45771],[114.23378,22.45773],[114.23371,22.45776],[114.23364,22.4578],[114.23361,22.45782],[114.23358,22.45785],[114.23356,22.45786],[114.23356,22.45787],[114.23354,22.45789],[114.23349,22.45792],[114.23344,22.45796],[114.23339,22.458],[114.23339,22.458],[114.23339,22.45801],[114.23333,22.45804],[114.23332,22.45805],[114.23332,22.45806],[114.2333,22.45806],[114.23327,22.45808],[114.23322,22.45811],[114.23318,22.45813],[114.23313,22.45816],[114.23309,22.45818],[114.23307,22.45817],[114.23306,22.45818],[114.23304,22.45818],[114.23303,22.45819],[114.233,22.4582],[114.23298,22.4582],[114.23296,22.45821],[114.23293,22.45823],[114.23292,22.45825],[114.23292,22.45825],[114.23291,22.45827],[114.2329,22.45828],[114.2329,22.45828],[114.23288,22.45831],[114.23287,22.45832],[114.23286,22.45833],[114.23284,22.45834],[114.23284,22.45835],[114.23283,22.45836],[114.23282,22.45837],[114.2328,22.45839],[114.23279,22.4584],[114.23279,22.45841],[114.23278,22.45842],[114.23278,22.45842],[114.23277,22.45842],[114.23276,22.45843],[114.23275,22.45843],[114.23274,22.45844],[114.23273,22.45844],[114.23272,22.45845],[114.2327,22.45845],[114.23269,22.45846],[114.23268,22.45847],[114.23265,22.45848],[114.23264,22.45849],[114.23264,22.45849],[114.23263,22.4585],[114.23256,22.45857],[114.23256,22.45858],[114.23255,22.45859],[114.23253,22.45861],[114.23251,22.45864],[114.23249,22.45864],[114.23247,22.45867],[114.23242,22.4587],[114.2324,22.45872],[114.23236,22.45873],[114.23233,22.45874],[114.23228,22.45876],[114.23224,22.45878],[114.23215,22.45881],[114.23201,22.45881],[114.23191,22.45881],[114.2319,22.45881],[114.23185,22.4588],[114.2318,22.45879],[114.23175,22.45876],[114.23171,22.45875],[114.23169,22.45875],[114.23169,22.45874],[114.23157,22.45871],[114.2315,22.4587],[114.23146,22.4587],[114.23143,22.45869],[114.23137,22.45869],[114.23134,22.45869],[114.23133,22.45868],[114.23129,22.45868],[114.23126,22.45866],[114.23125,22.45866],[114.23121,22.45864],[114.23116,22.45863],[114.23112,22.45862],[114.23109,22.4586],[114.23107,22.4586],[114.23105,22.45859],[114.231,22.45857],[114.231,22.45857],[114.23095,22.45854],[114.23095,22.45854],[114.23088,22.4585],[114.23084,22.45847],[114.23084,22.45847],[114.23079,22.45846],[114.23078,22.45846],[114.23078,22.45845],[114.23073,22.45843],[114.23069,22.45841],[114.23065,22.45839],[114.23061,22.45836],[114.23058,22.45834],[114.23058,22.45834],[114.23052,22.4583],[114.23051,22.45829],[114.2305,22.4583],[114.23043,22.45824],[114.23039,22.45821],[114.23035,22.45819],[114.23028,22.45817],[114.23024,22.45816],[114.23023,22.45815],[114.23017,22.45813],[114.23014,22.45812],[114.23011,22.4581],[114.23005,22.45808],[114.23001,22.45806],[114.22993,22.45802],[114.22991,22.45801],[114.22989,22.458],[114.22988,22.45799],[114.22986,22.45796],[114.22983,22.45793],[114.22976,22.45787],[114.22971,22.45783],[114.22967,22.4578],[114.22959,22.45773],[114.22953,22.45767],[114.22948,22.45764],[114.22942,22.45762],[114.22938,22.45763],[114.22936,22.45763],[114.22934,22.45762],[114.22933,22.4576],[114.22932,22.45759],[114.22932,22.45757],[114.22933,22.45756],[114.22934,22.45755],[114.22934,22.45753],[114.22933,22.45751],[114.22932,22.4575],[114.22931,22.45749],[114.22927,22.45744],[114.22927,22.45743],[114.22916,22.45733],[114.22915,22.45731],[114.2291,22.45728],[114.22908,22.45724],[114.22907,22.45723],[114.22903,22.4572],[114.22898,22.45714],[114.22896,22.45713],[114.22893,22.45708],[114.22889,22.45703],[114.22886,22.457],[114.22885,22.45698],[114.22882,22.45695],[114.2288,22.45694],[114.22877,22.45692],[114.22876,22.45691],[114.22866,22.45682],[114.22863,22.4568],[114.22859,22.45677],[114.22855,22.45674],[114.22851,22.45671],[114.2285,22.45671],[114.22843,22.45664],[114.2284,22.45661],[114.22836,22.45658],[114.22835,22.45657],[114.22833,22.45656],[114.2283,22.45654],[114.22827,22.45651],[114.22826,22.45649],[114.22823,22.45646],[114.22817,22.45641],[114.22814,22.45638],[114.22811,22.45634],[114.22805,22.45628],[114.22801,22.45625],[114.22801,22.45623],[114.22802,22.45619],[114.22802,22.45617],[114.228,22.45613],[114.22799,22.45609],[114.22795,22.45604],[114.22792,22.456],[114.22789,22.45598],[114.22785,22.45595],[114.22782,22.45594],[114.22776,22.4559],[114.22772,22.45588],[114.22772,22.45587],[114.22771,22.45586],[114.2277,22.45586],[114.22769,22.45585],[114.22768,22.45584],[114.22767,22.45583],[114.22765,22.45581],[114.22764,22.4558],[114.22764,22.45579],[114.22763,22.45578],[114.22763,22.45577],[114.22762,22.45576],[114.2276,22.45575],[114.22759,22.45574],[114.22758,22.45573],[114.22757,22.45572],[114.22757,22.45571],[114.22756,22.4557],[114.22755,22.45568],[114.22755,22.45567],[114.22753,22.45565],[114.22752,22.45565],[114.22751,22.45565],[114.2275,22.45564],[114.22748,22.45564],[114.22747,22.45562],[114.22747,22.4556],[114.22747,22.45558],[114.22749,22.45551],[114.22749,22.4555],[114.22748,22.4555],[114.22748,22.4554],[114.22748,22.45539],[114.22751,22.45532],[114.22751,22.45528],[114.2275,22.45524],[114.2275,22.45522],[114.22749,22.4552],[114.22749,22.45514],[114.22749,22.45511],[114.2275,22.4551],[114.2275,22.45506],[114.22751,22.45503],[114.22751,22.45503],[114.22752,22.45502],[114.22753,22.45499],[114.22757,22.45493],[114.22757,22.45493],[114.22757,22.45492],[114.22757,22.4549],[114.22756,22.45488],[114.22756,22.45487],[114.22755,22.45486],[114.22749,22.4548],[114.22742,22.45474],[114.22742,22.45474],[114.2274,22.45472],[114.22736,22.45469],[114.22733,22.45466],[114.22732,22.45464],[114.22728,22.45453],[114.22725,22.45448],[114.22725,22.45448],[114.22723,22.45444],[114.22721,22.45436],[114.2272,22.45433],[114.22716,22.45427],[114.22713,22.45421],[114.22711,22.45418],[114.22709,22.45417],[114.22707,22.45414],[114.22701,22.45406],[114.22699,22.45403],[114.22696,22.45399],[114.22693,22.45397],[114.2269,22.45394],[114.22689,22.45392],[114.22687,22.45389],[114.22686,22.45387],[114.22685,22.45385],[114.22683,22.45378],[114.22682,22.45372],[114.22681,22.45364],[114.22681,22.45362],[114.2268,22.4536],[114.2268,22.45358],[114.22681,22.45355],[114.22682,22.4535],[114.22684,22.45345],[114.22686,22.45338],[114.22686,22.45332],[114.22685,22.45314],[114.22685,22.45306],[114.22684,22.45304],[114.22683,22.453],[114.22681,22.45295],[114.22681,22.45294],[114.22682,22.4529],[114.22683,22.45286],[114.22684,22.45281],[114.22685,22.45277],[114.22684,22.45274],[114.22684,22.45272],[114.22684,22.4527],[114.22683,22.45268],[114.22681,22.45265],[114.22681,22.45265],[114.22676,22.45261],[114.22674,22.4526],[114.22672,22.45259],[114.22665,22.45256],[114.22661,22.45254],[114.22658,22.45253],[114.22656,22.45252],[114.22653,22.45252],[114.22648,22.4525],[114.22646,22.4525],[114.22643,22.45249],[114.2264,22.45247],[114.22638,22.45246],[114.22636,22.45245],[114.22633,22.45244],[114.22629,22.45243],[114.22627,22.45242],[114.22623,22.45242],[114.22617,22.45242],[114.22609,22.45241],[114.22603,22.45239],[114.22599,22.45238],[114.22597,22.45237],[114.22597,22.45238],[114.22594,22.45236],[114.2259,22.45234],[114.22584,22.45231],[114.22581,22.45226],[114.22578,22.45224],[114.22577,22.45223],[114.22577,22.45221],[114.22575,22.45219],[114.2257,22.45214],[114.22568,22.45212],[114.22564,22.4521],[114.22562,22.45208],[114.2256,22.45207],[114.22553,22.45203],[114.2255,22.452],[114.22546,22.45198],[114.22544,22.45197],[114.22538,22.45194],[114.22537,22.45192],[114.22535,22.45191],[114.22533,22.45191],[114.22532,22.4519],[114.22532,22.4519],[114.22528,22.45188],[114.22526,22.45187],[114.22526,22.45186],[114.22525,22.45185],[114.22524,22.45184],[114.22523,22.45183],[114.2252,22.45181],[114.22519,22.45179],[114.22519,22.45179],[114.22516,22.45177],[114.22514,22.45175],[114.22511,22.45173],[114.22506,22.4517],[114.22501,22.45167],[114.22497,22.45165],[114.22492,22.45162],[114.22489,22.45161],[114.22487,22.4516],[114.22487,22.45159],[114.22484,22.45154],[114.22481,22.45149],[114.22479,22.45145],[114.22477,22.45143],[114.22473,22.45138],[114.2247,22.45134],[114.22468,22.45133],[114.22467,22.45131],[114.22463,22.45127],[114.22452,22.4512],[114.22451,22.45119],[114.22447,22.45116],[114.22444,22.45112],[114.22441,22.45109],[114.22438,22.45106],[114.22436,22.45103],[114.22433,22.451],[114.22431,22.45099],[114.22425,22.45095],[114.22423,22.45093],[114.22423,22.45093],[114.2242,22.45091],[114.22418,22.4509],[114.22408,22.45087],[114.22406,22.45086],[114.22404,22.45085],[114.224,22.45083],[114.22396,22.45082],[114.22393,22.4508],[114.22392,22.45079],[114.22385,22.45075],[114.22384,22.45074],[114.22378,22.45072],[114.22375,22.4507],[114.22369,22.45067],[114.22365,22.45064],[114.22357,22.45059],[114.22356,22.45059],[114.22354,22.45057],[114.22352,22.45056],[114.2235,22.45056],[114.22347,22.45055],[114.22345,22.45054],[114.22341,22.45053],[114.22339,22.45053],[114.22336,22.45052],[114.22333,22.45052],[114.22331,22.45051],[114.22329,22.4505],[114.22328,22.45049],[114.22327,22.45049],[114.22326,22.45048],[114.22325,22.45047],[114.22322,22.45042],[114.2232,22.4504],[114.22319,22.45038],[114.22318,22.45037],[114.22314,22.45035],[114.22312,22.45034],[114.22304,22.45032],[114.22296,22.45029],[114.22292,22.45029],[114.22291,22.4503],[114.2229,22.45031],[114.22284,22.45033],[114.22231,22.45028],[114.22212,22.45021],[114.22183,22.45003],[114.22176,22.45002],[114.22149,22.45022],[114.22106,22.45023],[114.22088,22.45035],[114.2207,22.4506],[114.22049,22.45115],[114.22043,22.45122],[114.21986,22.45126],[114.21941,22.45141],[114.21919,22.45161],[114.2189,22.45162],[114.2186,22.45175],[114.21835,22.45178],[114.21818,22.45188],[114.218,22.45192],[114.21761,22.45191],[114.21669,22.45205],[114.21586,22.45233],[114.21554,22.45256],[114.21542,22.45272],[114.21528,22.45305],[114.21513,22.45365],[114.21529,22.45389],[114.2156,22.45414],[114.21573,22.45446],[114.21622,22.4548],[114.21649,22.45516],[114.21662,22.45525],[114.21665,22.45526],[114.21673,22.45531],[114.21656,22.45535],[114.21652,22.4555],[114.21675,22.45611],[114.2165,22.45566],[114.21645,22.45549],[114.21627,22.45546],[114.21615,22.45549],[114.21573,22.45593],[114.21571,22.4561],[114.21561,22.45621],[114.21547,22.45627],[114.21496,22.4563],[114.21483,22.45637],[114.21466,22.45655],[114.21465,22.45669],[114.2147,22.45701],[114.21468,22.45703],[114.21476,22.45707],[114.21465,22.45723],[114.21463,22.45722],[114.21436,22.45763],[114.21444,22.45769],[114.21441,22.45773],[114.21425,22.4576],[114.2141,22.45764],[114.21381,22.4576],[114.21347,22.4574],[114.21346,22.45739],[114.21338,22.45728],[114.21324,22.45723],[114.21209,22.45747],[114.21198,22.45751],[114.21181,22.45774],[114.21168,22.45795],[114.21172,22.45797],[114.21172,22.45804],[114.21156,22.45813],[114.21152,22.45821],[114.21152,22.45829],[114.21148,22.45833],[114.21143,22.45827],[114.21135,22.45827],[114.21117,22.45832],[114.21095,22.45845],[114.21033,22.45851],[114.21032,22.45856],[114.21021,22.45862],[114.21006,22.45859],[114.20969,22.45872],[114.20965,22.45879],[114.20948,22.45879],[114.20905,22.45898],[114.2089,22.45907],[114.20874,22.45931],[114.20852,22.45989],[114.20835,22.46054],[114.20834,22.46062],[114.20829,22.46083],[114.20825,22.46091],[114.2082,22.46097],[114.20815,22.461],[114.2081,22.46105],[114.20811,22.46109],[114.20813,22.46111],[114.20819,22.46117],[114.20821,22.46119],[114.20825,22.46127],[114.20826,22.46129],[114.20831,22.46146],[114.20836,22.46144],[114.20838,22.46146],[114.20839,22.46148],[114.20839,22.46149],[114.2084,22.46151],[114.2084,22.46153],[114.20839,22.46153],[114.20834,22.46154],[114.20831,22.46156],[114.2083,22.46168],[114.20826,22.46187],[114.20833,22.4622],[114.20834,22.46223],[114.2084,22.46231],[114.2088,22.46251],[114.20893,22.46271],[114.209,22.46307],[114.20915,22.46318],[114.20928,22.46339],[114.2093,22.46349],[114.20933,22.46383],[114.20958,22.46406],[114.20959,22.46423],[114.20949,22.46442],[114.20948,22.46463],[114.20925,22.46476],[114.20906,22.46498],[114.2089,22.46497],[114.20886,22.465],[114.20878,22.46508],[114.20876,22.4651],[114.20908,22.46694],[114.2094,22.46702],[114.20957,22.46715],[114.20977,22.46788],[114.20976,22.46818],[114.20983,22.46828],[114.20973,22.46846],[114.20991,22.46852],[114.20995,22.46853],[114.20998,22.46853],[114.21,22.46853],[114.21002,22.46854],[114.21005,22.46855],[114.21007,22.46856],[114.21007,22.46857],[114.2101,22.46872],[114.21003,22.46908],[114.21008,22.46921],[114.21027,22.46919],[114.21034,22.46921],[114.21063,22.46955],[114.21083,22.46978],[114.21099,22.46983],[114.21108,22.46986],[114.21116,22.46989],[114.21122,22.46994],[114.21132,22.47014],[114.21158,22.47025],[114.2117,22.47047],[114.21179,22.47056],[114.21206,22.47062],[114.21211,22.47078],[114.21215,22.47089],[114.21219,22.4709],[114.21218,22.47084],[114.21226,22.47077],[114.2126,22.4708],[114.21264,22.47086],[114.21263,22.47099],[114.21269,22.47111],[114.21262,22.4713],[114.21265,22.47138],[114.21272,22.47141],[114.21288,22.47136],[114.21295,22.47138],[114.21309,22.47153],[114.21321,22.47172],[114.21322,22.47174],[114.21314,22.47197],[114.21314,22.47227],[114.2128,22.47257],[114.21331,22.47324],[114.21339,22.47327],[114.21361,22.47319],[114.21381,22.47302],[114.21404,22.4731],[114.21427,22.47312],[114.21431,22.47316],[114.21435,22.47349],[114.21431,22.47358],[114.21435,22.47357],[114.21456,22.47348],[114.21488,22.4733],[114.215,22.47322],[114.21503,22.47303],[114.21522,22.47282],[114.21542,22.47272],[114.21552,22.47262],[114.21579,22.47254],[114.21604,22.47224],[114.216,22.47212],[114.21609,22.47203],[114.21628,22.47196],[114.21644,22.47176],[114.21656,22.47145],[114.21664,22.47135],[114.21764,22.47073],[114.21806,22.47058],[114.2181,22.47053],[114.21811,22.47047],[114.21801,22.47034],[114.21779,22.47025],[114.21755,22.47003],[114.21746,22.46964],[114.21749,22.46947],[114.21769,22.46914],[114.21769,22.46867],[114.21782,22.46854],[114.21801,22.46824],[114.21808,22.46789],[114.21834,22.46791],[114.21856,22.46802],[114.2189,22.46806],[114.21898,22.46804],[114.21919,22.46812],[114.21938,22.46808],[114.2195,22.46793],[114.21966,22.46782],[114.21991,22.4678],[114.22006,22.46793],[114.22071,22.46824],[114.22088,22.46826],[114.22107,22.46811],[114.22117,22.46813],[114.22126,22.46819],[114.22151,22.46851],[114.22173,22.46869],[114.22204,22.46882],[114.22256,22.46896],[114.22278,22.46878],[114.22268,22.46857],[114.22272,22.46855],[114.22277,22.46859],[114.22282,22.46864],[114.22284,22.46862],[114.22282,22.4684],[114.22296,22.46833],[114.22306,22.46844],[114.22318,22.46877],[114.22315,22.46897],[114.22309,22.46912],[114.22312,22.46913],[114.22323,22.46884],[114.22318,22.46868],[114.22311,22.46838],[114.2232,22.46835],[114.22352,22.46834],[114.22348,22.46843],[114.22349,22.4685],[114.22354,22.46855],[114.22361,22.4686],[114.2237,22.46874],[114.22412,22.46913],[114.22433,22.46917],[114.22455,22.46963],[114.22489,22.46988],[114.22514,22.47037],[114.22531,22.47053],[114.22538,22.47076],[114.22569,22.47119],[114.22615,22.47107],[114.2264,22.47087],[114.22661,22.47078],[114.22662,22.47084],[114.22646,22.47104],[114.2264,22.47116],[114.22632,22.47128],[114.22637,22.4713],[114.22654,22.47101],[114.22664,22.47093],[114.22669,22.47099],[114.22675,22.4712],[114.22719,22.47126],[114.22749,22.47146],[114.22779,22.4715],[114.22794,22.47158],[114.22805,22.4717],[114.22808,22.47183],[114.22824,22.47181],[114.22837,22.47183],[114.22981,22.47211],[114.23103,22.47228],[114.2313,22.47231],[114.23157,22.47216],[114.23174,22.47186],[114.2317,22.47177],[114.23173,22.4717],[114.23181,22.47168],[114.23187,22.47169],[114.23209,22.47156],[114.23216,22.47151],[114.23256,22.47114],[114.23253,22.4711],[114.2326,22.47102],[114.23231,22.4709],[114.23233,22.47087],[114.23271,22.47102],[114.23279,22.47084],[114.23284,22.47053],[114.23244,22.47045],[114.23244,22.47042],[114.23275,22.47047],[114.23278,22.47038],[114.23284,22.47036],[114.23305,22.46972],[114.23315,22.46956],[114.23328,22.46942],[114.23331,22.46919],[114.23323,22.46912],[114.23296,22.469],[114.23278,22.46884],[114.2327,22.46881],[114.23259,22.4688],[114.23245,22.46879],[114.23224,22.46881],[114.23217,22.46882],[114.23201,22.46883],[114.23199,22.46884],[114.23197,22.46885],[114.23195,22.46888],[114.23194,22.46892],[114.23193,22.46898],[114.23191,22.469],[114.23187,22.46903],[114.23186,22.46904],[114.23184,22.46904],[114.23183,22.46904],[114.23182,22.46903],[114.23181,22.46902],[114.23181,22.46901],[114.2318,22.469],[114.23179,22.46894],[114.23178,22.46891],[114.23177,22.46884],[114.23175,22.46879],[114.23174,22.46874],[114.23173,22.46871],[114.23171,22.46868],[114.23168,22.46863],[114.23167,22.4686],[114.23167,22.46857],[114.23166,22.46854],[114.23166,22.4685],[114.23167,22.46847],[114.23168,22.46844],[114.2317,22.46842],[114.23171,22.46841],[114.23172,22.4684],[114.23173,22.4684],[114.23182,22.46839],[114.23191,22.46838],[114.23201,22.46838],[114.23204,22.46838],[114.23213,22.46836],[114.23214,22.46836],[114.23226,22.46836],[114.23233,22.46837],[114.23249,22.46839],[114.23253,22.46838],[114.23263,22.46837],[114.23278,22.46835],[114.23283,22.46834],[114.23285,22.46834],[114.23288,22.46835],[114.23292,22.46834],[114.23291,22.4683],[114.2329,22.46807],[114.23283,22.46805],[114.23284,22.46801],[114.23257,22.46797],[114.23247,22.46796],[114.23247,22.46794],[114.23257,22.46795],[114.23284,22.46799],[114.23286,22.46786],[114.23292,22.46777],[114.23307,22.4677],[114.23384,22.46765],[114.2342,22.46787],[114.23444,22.46794],[114.23459,22.46791],[114.23481,22.46781],[114.23509,22.46753],[114.23614,22.4665],[114.2392,22.46348],[114.24765,22.45514],[114.24769,22.45497],[114.24766,22.45486],[114.2476,22.45475],[114.24736,22.4546],[114.24679,22.454],[114.24662,22.45374],[114.2467,22.45353],[114.24683,22.45344],[114.24692,22.45303],[114.24682,22.45277],[114.24691,22.45197],[114.24691,22.45144],[114.24675,22.45049],[114.24669,22.45041],[114.2466,22.44994],[114.24681,22.44981],[114.2469,22.44988],[114.24698,22.45006],[114.24712,22.45025],[114.24743,22.45106],[114.24769,22.45141],[114.24799,22.45156],[114.24829,22.45186],[114.24862,22.45209],[114.24879,22.4523],[114.24885,22.45229],[114.249,22.45241],[114.24974,22.4528],[114.25002,22.45278],[114.25038,22.45267],[114.25044,22.45269],[114.2507,22.45314],[114.25077,22.45319],[114.25085,22.45315],[114.25091,22.45319],[114.25089,22.45347],[114.25099,22.45341],[114.25107,22.45341],[114.25146,22.4535],[114.25199,22.45353],[114.25215,22.4536],[114.25216,22.45353],[114.2522,22.45348],[114.25226,22.45344],[114.25249,22.45345],[114.25266,22.45355],[114.25287,22.45362],[114.25342,22.45366],[114.25363,22.45355],[114.25402,22.45308],[114.25415,22.45285],[114.2543,22.45293],[114.25443,22.45307],[114.25476,22.45326],[114.25478,22.45312],[114.25496,22.45302],[114.255,22.45309],[114.25522,22.4532],[114.25546,22.45344],[114.25594,22.45356],[114.25629,22.45388],[114.2566,22.45395],[114.25665,22.45392],[114.25672,22.4539],[114.25694,22.45404],[114.25697,22.4542],[114.25709,22.45428],[114.25728,22.45449],[114.25736,22.4547],[114.25737,22.45513],[114.25725,22.45532],[114.25712,22.45532],[114.25706,22.45557],[114.25734,22.45582],[114.25766,22.45579],[114.2578,22.4556],[114.25792,22.45561],[114.25807,22.45557],[114.25807,22.4551],[114.25821,22.4551],[114.25821,22.45552],[114.25826,22.45551],[114.25858,22.45552],[114.25871,22.45563],[114.25904,22.45617],[114.25918,22.45639],[114.25936,22.45664],[114.25955,22.45685],[114.25954,22.4569],[114.2595,22.45691],[114.25946,22.45691],[114.25935,22.45682],[114.25928,22.45683],[114.25926,22.45719],[114.25943,22.45756],[114.25966,22.45797],[114.25997,22.45843],[114.26016,22.45858],[114.26023,22.45868],[114.26032,22.45863],[114.26033,22.45859],[114.26035,22.45858],[114.26038,22.45857],[114.26041,22.45858],[114.26044,22.45861],[114.26046,22.45865],[114.26048,22.4587],[114.26047,22.45888],[114.26046,22.45911],[114.26116,22.46045],[114.26124,22.46052],[114.2617,22.46065],[114.26171,22.46072],[114.26173,22.46081],[114.26172,22.46083],[114.26172,22.46085],[114.26175,22.46087],[114.2618,22.46087],[114.26185,22.46084],[114.26195,22.46085],[114.26204,22.46099],[114.26221,22.4611],[114.26236,22.4613],[114.26243,22.46134],[114.26237,22.4615],[114.26248,22.46169],[114.26257,22.46199],[114.26279,22.46224],[114.26307,22.46244],[114.26354,22.46264],[114.26368,22.46266],[114.26386,22.46259],[114.26399,22.46265],[114.26421,22.46282],[114.26445,22.46289],[114.26469,22.4629],[114.26494,22.463],[114.26519,22.46315],[114.26581,22.46336],[114.26594,22.46347],[114.2667,22.46405],[114.26758,22.46505],[114.26771,22.4651],[114.26797,22.46531],[114.26838,22.4655],[114.26879,22.46558],[114.26921,22.46563],[114.26946,22.46572],[114.26964,22.46573],[114.27034,22.46602],[114.27041,22.46602],[114.27065,22.46613],[114.27069,22.46613],[114.27093,22.4663],[114.2712,22.4664],[114.27168,22.46669],[114.27241,22.46713],[114.27267,22.4672],[114.27345,22.4677],[114.27443,22.46822],[114.27475,22.46847],[114.27481,22.46846],[114.27485,22.46851],[114.27486,22.46857],[114.27473,22.46863],[114.27466,22.46878],[114.27444,22.4689],[114.27436,22.46891],[114.27386,22.46882],[114.2736,22.4688],[114.27336,22.46861],[114.27286,22.46833],[114.27271,22.46829],[114.27231,22.46799],[114.27221,22.46797],[114.27209,22.46788],[114.27182,22.46777],[114.27169,22.46776],[114.27165,22.46775],[114.27147,22.46764],[114.2712,22.46757],[114.27087,22.4672],[114.27042,22.46708],[114.2702,22.4671],[114.27011,22.46708],[114.27001,22.46714],[114.26999,22.46743],[114.26998,22.46752],[114.26994,22.46754],[114.26993,22.46754],[114.26992,22.46754],[114.2699,22.46753],[114.2699,22.46749],[114.2699,22.46744],[114.2699,22.46742],[114.2699,22.46737],[114.26991,22.4673],[114.26991,22.46729],[114.26991,22.46727],[114.26989,22.46727],[114.26988,22.46727],[114.26986,22.46727],[114.26984,22.46727],[114.26983,22.46727],[114.26981,22.46726],[114.26978,22.46726],[114.26976,22.46725],[114.26973,22.46725],[114.26971,22.46724],[114.26969,22.46723],[114.26966,22.46722],[114.26965,22.46721],[114.26964,22.4672],[114.26963,22.46719],[114.26961,22.46718],[114.26961,22.46717],[114.2696,22.46717],[114.26958,22.46716],[114.26957,22.46716],[114.26954,22.46714],[114.26951,22.46712],[114.2695,22.46712],[114.26949,22.46711],[114.26948,22.46709],[114.26947,22.46708],[114.26947,22.46707],[114.26946,22.46707],[114.26945,22.46706],[114.26943,22.46706],[114.26942,22.46706],[114.2694,22.46705],[114.26939,22.46705],[114.26936,22.46702],[114.26935,22.46701],[114.26931,22.46698],[114.26928,22.46695],[114.26926,22.46693],[114.26926,22.46692],[114.26926,22.46691],[114.26925,22.4669],[114.26925,22.46689],[114.26925,22.46687],[114.26924,22.46686],[114.26923,22.46685],[114.26922,22.46684],[114.2692,22.46682],[114.26917,22.4668],[114.26916,22.46679],[114.26915,22.4668],[114.26914,22.4668],[114.26912,22.4668],[114.26911,22.4668],[114.2691,22.4668],[114.26908,22.4668],[114.26906,22.46679],[114.26905,22.46678],[114.26905,22.46677],[114.26905,22.46675],[114.26905,22.46674],[114.26905,22.46674],[114.26905,22.46672],[114.26905,22.46671],[114.26905,22.4667],[114.26904,22.46668],[114.26903,22.46667],[114.26901,22.46665],[114.269,22.46665],[114.269,22.46664],[114.26898,22.46663],[114.26893,22.46662],[114.26892,22.46661],[114.2689,22.4666],[114.26888,22.46658],[114.26887,22.46657],[114.26886,22.46655],[114.26886,22.46653],[114.26885,22.46651],[114.26884,22.4665],[114.26883,22.46649],[114.26881,22.46646],[114.26879,22.46644],[114.26878,22.46643],[114.26874,22.46639],[114.26873,22.46637],[114.26872,22.46636],[114.2687,22.46635],[114.26868,22.46634],[114.26866,22.46633],[114.26864,22.4663],[114.26862,22.46629],[114.26861,22.46628],[114.26858,22.46625],[114.26855,22.46624],[114.26854,22.46623],[114.26852,22.46622],[114.2685,22.46622],[114.26846,22.46622],[114.26841,22.46621],[114.26838,22.46621],[114.26835,22.4662],[114.26833,22.46619],[114.26832,22.46618],[114.26829,22.46617],[114.26828,22.46615],[114.26827,22.46614],[114.26826,22.46612],[114.26824,22.4661],[114.26821,22.46608],[114.2682,22.46608],[114.26818,22.46608],[114.26817,22.46608],[114.26811,22.46608],[114.26808,22.46608],[114.26805,22.46607],[114.26803,22.46607],[114.268,22.46607],[114.26795,22.46605],[114.2679,22.46603],[114.26788,22.46603],[114.26786,22.46602],[114.2678,22.46601],[114.26778,22.46601],[114.26776,22.46601],[114.26774,22.466],[114.2677,22.466],[114.26766,22.46599],[114.26762,22.46598],[114.26756,22.46596],[114.26753,22.46595],[114.26749,22.46595],[114.26745,22.46594],[114.26738,22.46592],[114.26735,22.46591],[114.26733,22.46591],[114.26731,22.4659],[114.26727,22.4659],[114.26725,22.4659],[114.26722,22.4659],[114.26722,22.4659],[114.26721,22.46592],[114.26721,22.46594],[114.26722,22.46595],[114.26723,22.46596],[114.26725,22.46597],[114.26727,22.46598],[114.26731,22.466],[114.26735,22.46601],[114.26738,22.46604],[114.2674,22.46605],[114.2674,22.46607],[114.2674,22.46608],[114.2674,22.4661],[114.26738,22.46614],[114.26737,22.46616],[114.26738,22.4662],[114.2674,22.46625],[114.26742,22.46632],[114.26742,22.46638],[114.26742,22.4664],[114.26742,22.46648],[114.26741,22.4665],[114.26741,22.46652],[114.2674,22.46653],[114.26739,22.46655],[114.26738,22.46658],[114.26733,22.46663],[114.26728,22.46666],[114.26726,22.46667],[114.26724,22.46668],[114.26723,22.46669],[114.26721,22.46669],[114.26719,22.46669],[114.26717,22.46668],[114.26715,22.46668],[114.26712,22.46667],[114.26708,22.46667],[114.26708,22.46668],[114.26707,22.46668],[114.26707,22.46669],[114.26707,22.4667],[114.26707,22.46671],[114.26708,22.46672],[114.26709,22.46673],[114.26709,22.46675],[114.2671,22.46678],[114.26711,22.4668],[114.26711,22.46682],[114.2671,22.46684],[114.2671,22.46685],[114.2671,22.46688],[114.26711,22.46691],[114.26711,22.46693],[114.26712,22.46693],[114.26713,22.46696],[114.26714,22.46698],[114.26715,22.467],[114.26715,22.46701],[114.26716,22.46703],[114.26719,22.46705],[114.26721,22.46707],[114.26722,22.46708],[114.26723,22.46709],[114.26725,22.4671],[114.26726,22.46712],[114.26729,22.46714],[114.26731,22.46717],[114.26732,22.46719],[114.26734,22.46721],[114.26736,22.46723],[114.26737,22.46726],[114.26738,22.46728],[114.26739,22.4673],[114.2674,22.46732],[114.2674,22.46735],[114.2674,22.46737],[114.2674,22.46742],[114.2674,22.46743],[114.26739,22.46745],[114.26738,22.46748],[114.26737,22.46751],[114.26737,22.46752],[114.26737,22.46753],[114.26738,22.46755],[114.26739,22.46757],[114.26739,22.46758],[114.2674,22.4676],[114.26742,22.46762],[114.26743,22.46763],[114.26745,22.46765],[114.26747,22.46766],[114.26748,22.46767],[114.26749,22.46767],[114.26752,22.46767],[114.26754,22.46766],[114.26756,22.46766],[114.26757,22.46765],[114.26759,22.46763],[114.2676,22.46763],[114.26762,22.46762],[114.26764,22.46761],[114.26765,22.46761],[114.26767,22.46761],[114.26768,22.46762],[114.26769,22.46762],[114.2677,22.46763],[114.26771,22.46764],[114.26772,22.46765],[114.26773,22.46766],[114.26774,22.46767],[114.26776,22.46771],[114.26777,22.46772],[114.26778,22.46773],[114.26778,22.46774],[114.26778,22.46775],[114.26777,22.46777],[114.26777,22.46778],[114.26777,22.46779],[114.26777,22.4678],[114.26778,22.46781],[114.26779,22.46782],[114.2678,22.46783],[114.26781,22.46784],[114.26783,22.46784],[114.26785,22.46785],[114.26788,22.46786],[114.26792,22.46786],[114.26794,22.46787],[114.26795,22.46788],[114.26797,22.46789],[114.26798,22.46791],[114.26799,22.46792],[114.268,22.46795],[114.26801,22.46801],[114.26801,22.46805],[114.26801,22.46807],[114.26801,22.4681],[114.26801,22.46812],[114.26801,22.46814],[114.268,22.46816],[114.268,22.46816],[114.26799,22.46817],[114.26798,22.46818],[114.26797,22.46819],[114.26795,22.46821],[114.26792,22.46827],[114.26791,22.4683],[114.2679,22.46835],[114.26789,22.46836],[114.26789,22.46838],[114.26789,22.4684],[114.26789,22.46842],[114.26788,22.46842],[114.26787,22.46844],[114.26786,22.46844],[114.26785,22.46845],[114.26783,22.46845],[114.26782,22.46846],[114.26778,22.46846],[114.26776,22.46847],[114.26775,22.46847],[114.26773,22.46848],[114.26771,22.46848],[114.2677,22.46849],[114.26768,22.46851],[114.26765,22.46853],[114.26763,22.46854],[114.26762,22.46854],[114.26761,22.46855],[114.26758,22.46855],[114.26756,22.46855],[114.26754,22.46855],[114.26752,22.46854],[114.2675,22.46854],[114.26747,22.46854],[114.26745,22.46854],[114.26742,22.46854],[114.26738,22.46854],[114.26736,22.46854],[114.26732,22.46853],[114.26729,22.46853],[114.26726,22.46852],[114.26723,22.46851],[114.26721,22.46851],[114.26719,22.46851],[114.26714,22.46849],[114.26711,22.46848],[114.2671,22.46847],[114.26708,22.46845],[114.26707,22.46844],[114.26705,22.46843],[114.26702,22.4684],[114.26699,22.46838],[114.26698,22.46837],[114.26696,22.46836],[114.26695,22.46835],[114.26694,22.46834],[114.26693,22.46832],[114.26691,22.4683],[114.2669,22.46829],[114.26689,22.46828],[114.26687,22.46825],[114.26686,22.46824],[114.26685,22.46823],[114.26684,22.46822],[114.26682,22.46822],[114.26681,22.46821],[114.2668,22.46821],[114.2668,22.46821],[114.26679,22.46821],[114.26678,22.46822],[114.26678,22.46822],[114.26677,22.46823],[114.26677,22.46823],[114.26677,22.46824],[114.26677,22.46825],[114.26677,22.46826],[114.26677,22.46827],[114.26678,22.46828],[114.26679,22.4683],[114.2668,22.46831],[114.26681,22.46833],[114.26682,22.46835],[114.26683,22.46836],[114.26685,22.46839],[114.26686,22.4684],[114.26689,22.4685],[114.2669,22.46852],[114.26692,22.46855],[114.26693,22.46856],[114.26697,22.46859],[114.26698,22.4686],[114.26702,22.46863],[114.26705,22.46866],[114.26707,22.46867],[114.26709,22.46869],[114.26711,22.46871],[114.26713,22.46872],[114.26715,22.46875],[114.26717,22.46876],[114.26721,22.4688],[114.26723,22.46882],[114.26725,22.46883],[114.26728,22.46884],[114.26729,22.46885],[114.2673,22.46885],[114.26732,22.46885],[114.26733,22.46885],[114.26735,22.46884],[114.26736,22.46884],[114.26739,22.46885],[114.2674,22.46887],[114.26741,22.46888],[114.26742,22.46888],[114.26742,22.46889],[114.26744,22.46893],[114.26745,22.46895],[114.26746,22.46899],[114.26746,22.46901],[114.26748,22.46903],[114.26749,22.46905],[114.26751,22.46906],[114.26753,22.46908],[114.26754,22.46909],[114.26756,22.4691],[114.26761,22.46913],[114.26762,22.46914],[114.26765,22.46915],[114.26766,22.46916],[114.26769,22.46917],[114.26771,22.46918],[114.26773,22.46919],[114.26775,22.4692],[114.26778,22.4692],[114.2678,22.46921],[114.26781,22.46922],[114.26783,22.46923],[114.26785,22.46924],[114.26788,22.46925],[114.26791,22.46926],[114.26794,22.46927],[114.26798,22.46928],[114.26802,22.46929],[114.26805,22.46931],[114.26809,22.46933],[114.26813,22.46935],[114.26819,22.46939],[114.26821,22.46939],[114.26823,22.4694],[114.26825,22.46941],[114.26829,22.46944],[114.2683,22.46944],[114.26833,22.46947],[114.26834,22.46948],[114.26837,22.46949],[114.26838,22.46949],[114.26841,22.4695],[114.26844,22.4695],[114.26845,22.4695],[114.26846,22.4695],[114.26847,22.46951],[114.26848,22.46951],[114.26849,22.46952],[114.26851,22.46953],[114.26853,22.46953],[114.26855,22.46954],[114.26858,22.46954],[114.2686,22.46954],[114.26861,22.46954],[114.26862,22.46955],[114.26863,22.46955],[114.26863,22.46957],[114.26864,22.46958],[114.26865,22.46958],[114.26866,22.46957],[114.26868,22.46953],[114.26868,22.46952],[114.26869,22.46951],[114.2687,22.4695],[114.26871,22.4695],[114.26872,22.4695],[114.26873,22.46951],[114.26874,22.46952],[114.26876,22.46953],[114.26876,22.46954],[114.26877,22.46956],[114.26878,22.46957],[114.26879,22.46958],[114.26881,22.46958],[114.26884,22.46959],[114.26887,22.46959],[114.26889,22.46959],[114.26892,22.46958],[114.26893,22.46957],[114.26894,22.46956],[114.26895,22.46955],[114.26895,22.46952],[114.26896,22.46951],[114.26897,22.46951],[114.26899,22.4695],[114.26901,22.4695],[114.26907,22.46949],[114.26908,22.46948],[114.26909,22.46947],[114.2691,22.46946],[114.26911,22.46945],[114.26912,22.46945],[114.26914,22.46945],[114.26921,22.46945],[114.26926,22.46946],[114.26929,22.46946],[114.26939,22.46945],[114.26942,22.46945],[114.26943,22.46945],[114.26945,22.46946],[114.26951,22.46951],[114.26954,22.46953],[114.26956,22.46954],[114.26958,22.46955],[114.26959,22.46955],[114.26961,22.46955],[114.26961,22.46955],[114.26961,22.46954],[114.2696,22.46953],[114.26958,22.46951],[114.26958,22.4695],[114.26959,22.46948],[114.2696,22.46947],[114.26961,22.46944],[114.26962,22.4694],[114.26962,22.46937],[114.26961,22.46936],[114.2696,22.46935],[114.26959,22.46934],[114.26959,22.46933],[114.26958,22.46931],[114.26958,22.46929],[114.26957,22.46928],[114.26954,22.46925],[114.26951,22.46922],[114.2695,22.46921],[114.26949,22.46919],[114.26947,22.46917],[114.26944,22.46916],[114.26942,22.46913],[114.26941,22.46911],[114.26935,22.46906],[114.26931,22.46902],[114.26927,22.46897],[114.26926,22.46896],[114.26924,22.46894],[114.26922,22.46892],[114.2692,22.46888],[114.26919,22.46887],[114.26916,22.46883],[114.26908,22.46875],[114.26907,22.46873],[114.26906,22.46871],[114.26906,22.4687],[114.26906,22.46869],[114.26911,22.46867],[114.26916,22.46866],[114.26918,22.46865],[114.26919,22.46864],[114.26922,22.46863],[114.26925,22.4686],[114.26929,22.46853],[114.26935,22.4685],[114.26938,22.46846],[114.26944,22.4684],[114.26951,22.46834],[114.26955,22.46828],[114.26957,22.46824],[114.26957,22.4682],[114.26955,22.46814],[114.26953,22.46811],[114.26953,22.46808],[114.26955,22.46806],[114.26958,22.46805],[114.2696,22.46805],[114.26964,22.46805],[114.26967,22.46806],[114.26969,22.46806],[114.26971,22.46807],[114.26972,22.46807],[114.26977,22.46808],[114.26979,22.46808],[114.2698,22.46806],[114.26981,22.46801],[114.26982,22.46797],[114.2698,22.46797],[114.2698,22.46795],[114.26983,22.46795],[114.26983,22.46794],[114.26983,22.46789],[114.26984,22.46787],[114.26984,22.46784],[114.26985,22.46782],[114.26986,22.46779],[114.26986,22.46778],[114.26989,22.46777],[114.26992,22.46778],[114.26994,22.46778],[114.26993,22.4679],[114.26994,22.46812],[114.27021,22.46837],[114.27026,22.46847],[114.27024,22.46864],[114.27039,22.46887],[114.27081,22.46906],[114.271,22.46897],[114.27095,22.46885],[114.27114,22.46887],[114.27169,22.4691],[114.2717,22.46911],[114.27184,22.46921],[114.27216,22.46956],[114.27219,22.46975],[114.27229,22.46991],[114.27239,22.47002],[114.27284,22.47046],[114.2729,22.47044],[114.27302,22.47063],[114.27303,22.47064],[114.27297,22.47068],[114.27296,22.47079],[114.27314,22.47105],[114.27331,22.47117],[114.27334,22.47125],[114.27354,22.47121],[114.27379,22.47111],[114.27409,22.47111],[114.27411,22.47111],[114.27444,22.47117],[114.27459,22.47113],[114.2749,22.4712],[114.27579,22.47155],[114.27612,22.4715],[114.27674,22.47151],[114.27689,22.47148],[114.27708,22.47137],[114.27709,22.47119],[114.27716,22.47114],[114.27818,22.47064],[114.27849,22.47059],[114.27882,22.47065],[114.27914,22.47065],[114.2792,22.47059],[114.27929,22.47057],[114.27967,22.47048],[114.27995,22.4706],[114.28003,22.47071],[114.28052,22.47107],[114.28091,22.47128],[114.28147,22.47147],[114.28209,22.47195],[114.28303,22.47238],[114.28381,22.47289],[114.28394,22.47293],[114.28415,22.47308],[114.2846,22.4734],[114.28513,22.4737],[114.28546,22.47379],[114.2859,22.4738],[114.28626,22.4739],[114.28694,22.47393],[114.28713,22.47397],[114.28752,22.47419],[114.28812,22.47467],[114.28845,22.47484],[114.28864,22.47485],[114.28905,22.47463],[114.28904,22.47437],[114.28913,22.47427],[114.2893,22.47423],[114.28963,22.47435],[114.28976,22.47434],[114.2901,22.47469],[114.29003,22.47481],[114.2897,22.47492],[114.28946,22.47513],[114.28944,22.47525],[114.28954,22.47547],[114.28965,22.47554],[114.29014,22.47549],[114.29083,22.47534],[114.29093,22.47528],[114.29106,22.47529],[114.2918,22.47549],[114.29207,22.47559],[114.29263,22.47601],[114.29301,22.47636],[114.29331,22.47654],[114.29356,22.47675],[114.29374,22.47698],[114.29402,22.47744],[114.29434,22.47776],[114.29436,22.47788],[114.29426,22.47818],[114.29426,22.47846],[114.29422,22.47866],[114.2943,22.47882],[114.29449,22.47904],[114.29462,22.47927],[114.29485,22.47924],[114.29505,22.47939],[114.29519,22.47936],[114.2953,22.47903],[114.29572,22.47884],[114.29599,22.4788],[114.29639,22.47885],[114.2968,22.479],[114.29704,22.47918],[114.29751,22.47941],[114.29786,22.47942],[114.29838,22.47943],[114.29879,22.47944],[114.29942,22.47955],[114.29986,22.47962],[114.30071,22.48003],[114.30127,22.48038],[114.30178,22.48057],[114.30194,22.48069],[114.30212,22.48072],[114.30232,22.4807],[114.30253,22.48077],[114.30294,22.48109],[114.30349,22.48137],[114.304,22.48179],[114.30416,22.48182],[114.30468,22.48203],[114.30513,22.48208],[114.30584,22.48248],[114.3061,22.4827],[114.30634,22.48279],[114.30673,22.48301],[114.30703,22.4832],[114.30711,22.48326],[114.30718,22.48331],[114.30724,22.48334],[114.30749,22.48355],[114.30769,22.48374],[114.30802,22.48428],[114.30813,22.48444],[114.30827,22.48455],[114.30829,22.4846],[114.30877,22.48512],[114.30888,22.48522],[114.30898,22.48534],[114.3092,22.48554],[114.30922,22.4856],[114.3093,22.48567],[114.30932,22.48577],[114.30926,22.48596],[114.30912,22.48602],[114.30892,22.48588],[114.30839,22.48589],[114.30804,22.48574],[114.30768,22.48566],[114.30683,22.48571],[114.30649,22.48585],[114.30613,22.48591],[114.3061,22.48592],[114.30594,22.48623],[114.30588,22.48645],[114.306,22.48667],[114.30637,22.48686],[114.30645,22.48687],[114.3067,22.48693],[114.30687,22.48691],[114.3071,22.48701],[114.30743,22.48698],[114.30764,22.48701],[114.30813,22.48727],[114.30851,22.48753],[114.30876,22.48788],[114.30883,22.48796],[114.30886,22.48797],[114.30892,22.48802],[114.30893,22.4881],[114.30895,22.48814],[114.30887,22.4883],[114.30872,22.48842],[114.30876,22.48853],[114.30889,22.48862],[114.30907,22.48874],[114.30926,22.48881],[114.30953,22.48873],[114.30975,22.48854],[114.30979,22.48846],[114.31001,22.48836],[114.31028,22.48839],[114.31045,22.48846],[114.31056,22.48856],[114.31073,22.4888],[114.31073,22.48901],[114.3106,22.48929],[114.31058,22.4894],[114.31078,22.48953],[114.3108,22.48954],[114.31097,22.4897],[114.31098,22.48984],[114.31093,22.48989],[114.31107,22.48994],[114.31128,22.49003],[114.31133,22.48999],[114.3116,22.48991],[114.31195,22.49],[114.31217,22.49013],[114.31231,22.4903],[114.31239,22.49028],[114.31265,22.49025],[114.31273,22.49013],[114.31279,22.48993],[114.31254,22.48976],[114.31225,22.48945],[114.31214,22.48939],[114.31201,22.48924],[114.31198,22.48915],[114.3119,22.48899],[114.31179,22.48882],[114.31172,22.48876],[114.31169,22.4885],[114.31194,22.48835],[114.31198,22.48819],[114.31193,22.488],[114.31203,22.48796],[114.31207,22.4879],[114.31211,22.48761],[114.31206,22.48756],[114.31207,22.48751],[114.31222,22.48744],[114.31234,22.48743],[114.31255,22.48753],[114.31271,22.48763],[114.31301,22.48788],[114.31319,22.48795],[114.31336,22.48811],[114.31336,22.48821],[114.31332,22.48827],[114.31335,22.48838],[114.31345,22.48846],[114.3136,22.48851],[114.31365,22.48863],[114.31379,22.48874],[114.31403,22.48887],[114.31418,22.48894],[114.31437,22.48888],[114.31465,22.48889],[114.31474,22.48893],[114.31484,22.48903],[114.31485,22.48907],[114.31487,22.48917],[114.31519,22.48929],[114.31534,22.48956],[114.31544,22.48992],[114.31568,22.4902],[114.31598,22.49037],[114.31607,22.49052],[114.31622,22.49065],[114.31633,22.49098],[114.31645,22.49119],[114.31644,22.49126],[114.31653,22.49129],[114.31653,22.49136],[114.31665,22.49157],[114.31685,22.49183],[114.31721,22.49196],[114.31752,22.49208],[114.31804,22.49213],[114.31812,22.49211],[114.31821,22.49204],[114.31825,22.49171],[114.31849,22.49171],[114.31856,22.49184],[114.31879,22.49203],[114.31891,22.49226],[114.3188,22.49246],[114.31877,22.49251],[114.31884,22.49294],[114.31926,22.49341],[114.31942,22.49373],[114.31953,22.49391],[114.31964,22.4941],[114.3196,22.49436],[114.31946,22.49456],[114.31963,22.49486],[114.31999,22.49501],[114.3205,22.49506],[114.32101,22.49499],[114.32112,22.49502],[114.32135,22.49511],[114.32156,22.4955],[114.32166,22.49566],[114.32175,22.49581],[114.32177,22.49585],[114.32165,22.49624],[114.32164,22.49634],[114.32182,22.49668],[114.32202,22.49688],[114.32229,22.49693],[114.32258,22.4969],[114.32298,22.49694],[114.32321,22.4971],[114.3233,22.49721],[114.32348,22.49757],[114.32398,22.49802],[114.32415,22.49832],[114.32416,22.49846],[114.32413,22.49864],[114.3241,22.49868],[114.32434,22.49923],[114.32461,22.49961],[114.32528,22.50033],[114.32534,22.50048],[114.32571,22.50077],[114.32585,22.50083],[114.32616,22.50074],[114.32641,22.50077],[114.32673,22.50063],[114.3268,22.50058],[114.327,22.50065],[114.32713,22.50074],[114.3272,22.50089],[114.32733,22.50103],[114.3277,22.50134],[114.32802,22.50166],[114.32807,22.50179],[114.32818,22.50209],[114.32826,22.50221],[114.32829,22.50226],[114.32856,22.50258],[114.3288,22.50271],[114.32887,22.50277],[114.32917,22.50319],[114.3293,22.50332],[114.3294,22.50335],[114.32952,22.50345],[114.32964,22.5035],[114.33001,22.50355],[114.33021,22.50352],[114.33058,22.50349],[114.3309,22.50357],[114.3311,22.50359],[114.33151,22.50382],[114.33157,22.50398],[114.33163,22.50403],[114.33188,22.50415],[114.33218,22.50426],[114.33213,22.50431],[114.3323,22.50447],[114.33253,22.50464],[114.33274,22.50481],[114.33325,22.50508],[114.33343,22.50512],[114.33359,22.50523],[114.33397,22.50554],[114.33428,22.50596],[114.33431,22.50608],[114.33446,22.50624],[114.33463,22.50653],[114.33481,22.50682],[114.33515,22.50708],[114.33597,22.50747],[114.33625,22.50776],[114.33629,22.50786],[114.33642,22.50803],[114.33662,22.50825],[114.33645,22.50837],[114.33633,22.5086],[114.33629,22.50874],[114.33631,22.50881],[114.33634,22.5089],[114.33649,22.50904],[114.33637,22.50906],[114.33613,22.50901],[114.33615,22.50913],[114.33614,22.50923],[114.336,22.50929],[114.33616,22.50951],[114.33598,22.50985],[114.33595,22.50988],[114.33586,22.50983],[114.33592,22.51004],[114.33574,22.51004],[114.33571,22.51015],[114.33562,22.51011],[114.3355,22.51007],[114.33549,22.51013],[114.3354,22.51018],[114.33521,22.51011],[114.33504,22.51018],[114.33482,22.51016],[114.33464,22.51019],[114.33449,22.51025],[114.33438,22.51047],[114.33432,22.51048],[114.33426,22.51048],[114.33418,22.51054],[114.33413,22.51075],[114.33406,22.51085],[114.33403,22.51096],[114.33392,22.51108],[114.33385,22.51117],[114.33385,22.5113],[114.33379,22.51136],[114.3334,22.51118],[114.33327,22.5111],[114.33289,22.51087],[114.33295,22.51082],[114.33296,22.51073],[114.33283,22.51055],[114.33261,22.51047],[114.33246,22.51044],[114.33229,22.5104],[114.33204,22.51015],[114.33174,22.51003],[114.33152,22.50983],[114.33153,22.50971],[114.33144,22.50966],[114.33125,22.50961],[114.33093,22.50951],[114.33055,22.50953],[114.33032,22.50943],[114.33011,22.50925],[114.32997,22.50895],[114.32988,22.50887],[114.32908,22.50841],[114.32878,22.50812],[114.32862,22.50806],[114.32856,22.50807],[114.32847,22.50798],[114.32827,22.50791],[114.32808,22.50775],[114.32804,22.50766],[114.32784,22.50753],[114.32794,22.50737],[114.32781,22.5072],[114.32773,22.50715],[114.32768,22.50713],[114.32751,22.50709],[114.32746,22.50696],[114.32747,22.50686],[114.32723,22.50669],[114.32726,22.50638],[114.32711,22.50629],[114.32692,22.50628],[114.32699,22.50615],[114.32691,22.50599],[114.32668,22.506],[114.32646,22.50595],[114.3263,22.50584],[114.32594,22.50583],[114.32576,22.50593],[114.32524,22.50592],[114.32476,22.50591],[114.3246,22.50593],[114.32452,22.50591],[114.32426,22.50589],[114.32384,22.50578],[114.32295,22.50552],[114.32248,22.50538],[114.32206,22.50508],[114.32194,22.50488],[114.32164,22.5047],[114.32161,22.50474],[114.32159,22.50471],[114.32133,22.50471],[114.32127,22.50485],[114.32101,22.50479],[114.32101,22.50474],[114.32104,22.50473],[114.32098,22.50463],[114.32074,22.50451],[114.32059,22.50449],[114.32047,22.50452],[114.32037,22.5046],[114.32023,22.50459],[114.32023,22.50451],[114.32011,22.50436],[114.3201,22.50428],[114.32016,22.50413],[114.32029,22.50403],[114.32036,22.50383],[114.32025,22.5037],[114.32013,22.50363],[114.31949,22.50359],[114.31944,22.50367],[114.31929,22.50383],[114.31888,22.50375],[114.31886,22.50378],[114.31865,22.50378],[114.3184,22.50378],[114.31765,22.50382],[114.31752,22.50391],[114.31757,22.50407],[114.31739,22.50411],[114.31725,22.50422],[114.31736,22.50439],[114.31715,22.50437],[114.31695,22.50427],[114.3169,22.5042],[114.31692,22.5041],[114.31683,22.50402],[114.31672,22.50394],[114.31664,22.50395],[114.31659,22.50391],[114.31661,22.50386],[114.31651,22.50373],[114.31648,22.5037],[114.31637,22.50366],[114.31622,22.50372],[114.3161,22.50373],[114.31605,22.50375],[114.31589,22.50385],[114.31596,22.50406],[114.31584,22.5041],[114.31578,22.50409],[114.31572,22.50407],[114.31552,22.50401],[114.31536,22.50419],[114.31469,22.50399],[114.31461,22.50407],[114.31434,22.50397],[114.31418,22.50389],[114.31401,22.50383],[114.31364,22.50364],[114.31353,22.50352],[114.31347,22.50343],[114.31344,22.50334],[114.31348,22.50318],[114.31332,22.50287],[114.31318,22.50272],[114.31309,22.50269],[114.31283,22.50267],[114.3126,22.50272],[114.31246,22.50275],[114.31229,22.50287],[114.31217,22.50286],[114.31219,22.50289],[114.31216,22.5029],[114.31199,22.50283],[114.312,22.50276],[114.31189,22.50249],[114.31167,22.5025],[114.31155,22.50255],[114.31142,22.50252],[114.31096,22.50256],[114.31078,22.50252],[114.31062,22.50262],[114.30994,22.50243],[114.30941,22.50209],[114.30924,22.50195],[114.30908,22.50158],[114.30902,22.50132],[114.30902,22.5012],[114.30913,22.50108],[114.30927,22.50083],[114.30949,22.50073],[114.30958,22.50068],[114.30963,22.50063],[114.30965,22.50053],[114.30959,22.50061],[114.30951,22.50068],[114.30942,22.50071],[114.30936,22.50069],[114.30932,22.50057],[114.30929,22.50052],[114.30929,22.50059],[114.30927,22.50063],[114.30898,22.5008],[114.30889,22.50101],[114.30869,22.50127],[114.30861,22.50149],[114.30852,22.50154],[114.3085,22.50155],[114.30833,22.50155],[114.30789,22.50143],[114.30785,22.50138],[114.30739,22.5013],[114.30717,22.50132],[114.30701,22.50129],[114.30668,22.50116],[114.3066,22.5011],[114.30655,22.5009],[114.3063,22.50055],[114.30599,22.50045],[114.30569,22.50022],[114.30533,22.50022],[114.30511,22.50011],[114.30511,22.49995],[114.30506,22.49983],[114.30438,22.4993],[114.30436,22.49908],[114.30432,22.49905],[114.30431,22.49898],[114.30436,22.49877],[114.30448,22.49861],[114.30463,22.4985],[114.30479,22.4983],[114.30488,22.4979],[114.30486,22.49786],[114.30461,22.49782],[114.30462,22.49757],[114.30436,22.49773],[114.30428,22.49792],[114.30419,22.49795],[114.30403,22.49789],[114.30398,22.49799],[114.30384,22.49807],[114.30366,22.49809],[114.30356,22.49804],[114.30343,22.49804],[114.30336,22.4981],[114.30359,22.49836],[114.30368,22.4986],[114.30359,22.49881],[114.30343,22.49895],[114.30298,22.49951],[114.30307,22.49967],[114.30302,22.49982],[114.3029,22.49981],[114.30284,22.49984],[114.3026,22.50008],[114.30217,22.50043],[114.302,22.50062],[114.30182,22.50078],[114.30171,22.50095],[114.30165,22.50113],[114.3016,22.50116],[114.30153,22.50123],[114.30144,22.50127],[114.3013,22.50129],[114.30114,22.50126],[114.30054,22.501],[114.30027,22.501],[114.30021,22.50103],[114.30007,22.50126],[114.30001,22.50152],[114.30041,22.50177],[114.30049,22.50188],[114.3005,22.50201],[114.30046,22.50221],[114.30024,22.50218],[114.30022,22.50224],[114.3002,22.50228],[114.30007,22.50237],[114.2999,22.5023],[114.29976,22.50235],[114.2997,22.50245],[114.29962,22.50254],[114.29953,22.50252],[114.29942,22.50238],[114.29909,22.50229],[114.29884,22.50235],[114.29862,22.50243],[114.29856,22.50249],[114.2983,22.50247],[114.29825,22.50242],[114.2982,22.50236],[114.29823,22.50227],[114.29834,22.50218],[114.29835,22.50199],[114.29845,22.50152],[114.29849,22.50154],[114.29849,22.50164],[114.29853,22.50162],[114.2987,22.50132],[114.29841,22.50127],[114.29837,22.5013],[114.29811,22.5012],[114.29806,22.50114],[114.29811,22.50091],[114.29835,22.50063],[114.29857,22.5006],[114.29856,22.50055],[114.29847,22.50055],[114.29823,22.50021],[114.29821,22.50037],[114.29801,22.50066],[114.29771,22.50088],[114.2976,22.5009],[114.29725,22.50085],[114.2969,22.50096],[114.29674,22.50107],[114.2967,22.50115],[114.29674,22.50133],[114.29697,22.50159],[114.29697,22.50174],[114.29671,22.50192],[114.29636,22.50199],[114.29626,22.50208],[114.29615,22.5021],[114.29629,22.50224],[114.29635,22.50239],[114.29645,22.50229],[114.29698,22.50237],[114.29718,22.50228],[114.29733,22.50248],[114.29735,22.50262],[114.29739,22.50305],[114.29747,22.50324],[114.29756,22.50328],[114.29756,22.50355],[114.29746,22.50383],[114.29735,22.50394],[114.29708,22.50395],[114.29701,22.50399],[114.29701,22.50412],[114.29705,22.50428],[114.29702,22.5045],[114.29694,22.5047],[114.29687,22.50476],[114.29658,22.50478],[114.2964,22.5047],[114.29615,22.50466],[114.29606,22.50469],[114.29603,22.50476],[114.29582,22.50489],[114.29566,22.50489],[114.29552,22.50483],[114.29537,22.5049],[114.29529,22.50517],[114.29517,22.50526],[114.29489,22.50512],[114.29474,22.50524],[114.29461,22.50528],[114.29444,22.50518],[114.29392,22.50498],[114.29381,22.50485],[114.2938,22.50464],[114.29411,22.50448],[114.29427,22.50433],[114.29429,22.50426],[114.29429,22.50407],[114.2941,22.50393],[114.29403,22.5037],[114.29392,22.50371],[114.29392,22.50379],[114.29387,22.50392],[114.29365,22.50409],[114.29349,22.50415],[114.2933,22.50413],[114.29323,22.504],[114.29296,22.50385],[114.29286,22.50383],[114.29281,22.5039],[114.2929,22.50405],[114.29293,22.50418],[114.29318,22.50434],[114.29323,22.50447],[114.29303,22.50472],[114.29277,22.5048],[114.29264,22.5048],[114.29256,22.50498],[114.29262,22.50517],[114.29275,22.50528],[114.29285,22.50528],[114.29302,22.50536],[114.2932,22.50542],[114.29328,22.50549],[114.29331,22.50561],[114.29341,22.50567],[114.29363,22.50578],[114.29386,22.50618],[114.29381,22.50653],[114.29366,22.50659],[114.29351,22.50689],[114.29352,22.50704],[114.29362,22.50736],[114.2936,22.50761],[114.29356,22.50772],[114.29359,22.50781],[114.2937,22.50787],[114.29374,22.50803],[114.29358,22.50817],[114.29337,22.50827],[114.29314,22.50844],[114.29298,22.5085],[114.29287,22.50847],[114.2928,22.50821],[114.29284,22.50785],[114.29293,22.5077],[114.29295,22.50709],[114.29279,22.50695],[114.29235,22.50684],[114.29231,22.50678],[114.29229,22.5066],[114.29215,22.50647],[114.29207,22.50656],[114.29207,22.50662],[114.29218,22.50684],[114.29227,22.5069],[114.29246,22.50742],[114.29244,22.50747],[114.29234,22.5076],[114.29227,22.5077],[114.29208,22.50767],[114.29169,22.50762],[114.29162,22.50769],[114.29151,22.50802],[114.29148,22.50839],[114.2916,22.50874],[114.29172,22.50891],[114.29148,22.50895],[114.29128,22.50892],[114.2909,22.50873],[114.29067,22.50873],[114.29047,22.50866],[114.29028,22.50845],[114.29017,22.50841],[114.28999,22.5084],[114.28985,22.50832],[114.2897,22.50806],[114.28986,22.50784],[114.29037,22.50748],[114.29032,22.50713],[114.29001,22.50699],[114.28994,22.5069],[114.29003,22.50669],[114.29019,22.50649],[114.29003,22.50605],[114.29019,22.50592],[114.29039,22.50591],[114.29063,22.50599],[114.29075,22.50585],[114.29089,22.50584],[114.29115,22.50588],[114.29144,22.50579],[114.29164,22.50558],[114.29164,22.50534],[114.29152,22.50511],[114.29152,22.50498],[114.29158,22.50472],[114.2915,22.50437],[114.29126,22.50434],[114.29097,22.50421],[114.29116,22.50387],[114.29112,22.50385],[114.29091,22.50415],[114.29084,22.5041],[114.29074,22.50413],[114.29065,22.50436],[114.29068,22.50446],[114.29075,22.50453],[114.29102,22.50461],[114.29114,22.50473],[114.29115,22.50489],[114.29102,22.50507],[114.29087,22.50511],[114.29047,22.50498],[114.29017,22.50505],[114.28983,22.50518],[114.28953,22.50548],[114.28939,22.50551],[114.28934,22.50547],[114.28926,22.50547],[114.28919,22.50549],[114.28916,22.50592],[114.28902,22.50597],[114.28887,22.50597],[114.28871,22.50594],[114.28855,22.5059],[114.28833,22.50605],[114.28834,22.50623],[114.28843,22.5063],[114.28845,22.5064],[114.28844,22.50649],[114.28817,22.50663],[114.28764,22.5065],[114.2874,22.5064],[114.28727,22.50634],[114.28702,22.50602],[114.28687,22.50608],[114.2867,22.50607],[114.28663,22.50592],[114.28649,22.50588],[114.28631,22.5057],[114.28627,22.50556],[114.2862,22.50553],[114.28604,22.5055],[114.28587,22.5056],[114.28584,22.50565],[114.28599,22.50561],[114.28612,22.50593],[114.28626,22.50615],[114.28631,22.50641],[114.28649,22.50666],[114.28653,22.50682],[114.28707,22.50745],[114.28718,22.50748],[114.28731,22.50767],[114.28771,22.50795],[114.28783,22.50811],[114.28787,22.50826],[114.28774,22.50857],[114.28777,22.50884],[114.28772,22.50908],[114.2877,22.50925],[114.28755,22.50929],[114.28749,22.50927],[114.28736,22.50916],[114.28739,22.5091],[114.28729,22.50897],[114.28707,22.50887],[114.28689,22.50862],[114.28676,22.50855],[114.2866,22.50856],[114.28623,22.50824],[114.28615,22.50839],[114.28619,22.50849],[114.28609,22.50854],[114.28575,22.50863],[114.2855,22.50869],[114.28538,22.50869],[114.28526,22.50868],[114.285,22.50853],[114.2849,22.50839],[114.28475,22.50831],[114.28463,22.5082],[114.28453,22.50803],[114.28434,22.50813],[114.28412,22.50809],[114.28401,22.50812],[114.28397,22.50821],[114.28382,22.50833],[114.28325,22.50845],[114.28319,22.5086],[114.28322,22.50898],[114.28303,22.50926],[114.28285,22.50927],[114.28261,22.50897],[114.2823,22.50889],[114.28227,22.50897],[114.28234,22.50903],[114.28241,22.50923],[114.28232,22.50932],[114.28232,22.5094],[114.28204,22.50946],[114.28191,22.50961],[114.2818,22.50965],[114.28168,22.50976],[114.28156,22.5098],[114.28168,22.50991],[114.28176,22.50992],[114.28215,22.50986],[114.28251,22.50967],[114.28283,22.50964],[114.28305,22.50967],[114.28316,22.50975],[114.28324,22.50965],[114.2835,22.50956],[114.28363,22.50932],[114.28363,22.50926],[114.28374,22.50923],[114.28385,22.50909],[114.28395,22.50902],[114.28418,22.50906],[114.28442,22.50939],[114.28441,22.50947],[114.28468,22.50991],[114.28474,22.51013],[114.28482,22.51021],[114.28526,22.51026],[114.28557,22.51041],[114.28591,22.51051],[114.28586,22.51057],[114.28567,22.51054],[114.28566,22.51071],[114.28566,22.51081],[114.28533,22.51094],[114.2852,22.51091],[114.28513,22.51085],[114.28485,22.51087],[114.28472,22.51079],[114.28473,22.51072],[114.28457,22.51063],[114.28431,22.51069],[114.28397,22.511],[114.28395,22.51118],[114.28399,22.51126],[114.28403,22.51127],[114.28401,22.51137],[114.28382,22.51122],[114.28378,22.51113],[114.28378,22.51091],[114.28368,22.51078],[114.28364,22.51054],[114.28352,22.51031],[114.28341,22.51023],[114.28313,22.51027],[114.28247,22.51061],[114.28214,22.51061],[114.28204,22.5107],[114.28192,22.51071],[114.28156,22.51063],[114.28132,22.51046],[114.28022,22.51055],[114.27979,22.5104],[114.27973,22.51032],[114.27972,22.51022],[114.27959,22.50998],[114.2796,22.50953],[114.27954,22.5096],[114.27935,22.51007],[114.27922,22.51021],[114.2791,22.51023],[114.27903,22.51028],[114.27901,22.51035],[114.27906,22.51039],[114.279,22.51051],[114.27882,22.51055],[114.27881,22.5104],[114.27872,22.51036],[114.27859,22.51037],[114.27838,22.51046],[114.27811,22.51046],[114.27795,22.5103],[114.27792,22.51016],[114.27804,22.50972],[114.27799,22.50924],[114.27816,22.50896],[114.27823,22.50892],[114.27819,22.50885],[114.27788,22.50885],[114.27757,22.50897],[114.27746,22.50946],[114.2773,22.50957],[114.27715,22.50969],[114.27706,22.50978],[114.27704,22.50978],[114.27681,22.5097],[114.27662,22.50978],[114.27631,22.50983],[114.2762,22.50996],[114.27604,22.51003],[114.27588,22.51005],[114.27554,22.50993],[114.27541,22.5098],[114.27551,22.5093],[114.27559,22.50916],[114.27579,22.50902],[114.27587,22.50884],[114.2758,22.50869],[114.27593,22.50845],[114.27589,22.50828],[114.2758,22.50817],[114.27571,22.50815],[114.27552,22.50796],[114.27554,22.50783],[114.27539,22.5078],[114.27512,22.50799],[114.27496,22.50785],[114.27476,22.5079],[114.27469,22.50795],[114.27461,22.50811],[114.27448,22.50824],[114.27441,22.50822],[114.27414,22.50784],[114.27392,22.50777],[114.27387,22.50797],[114.27386,22.50815],[114.27371,22.50821],[114.27342,22.50823],[114.27334,22.50827],[114.27323,22.50839],[114.27319,22.50855],[114.27309,22.50869],[114.27289,22.50868],[114.27274,22.50857],[114.27276,22.5081],[114.27262,22.50797],[114.27271,22.50777],[114.2728,22.50767],[114.27268,22.50761],[114.27233,22.50775],[114.27216,22.50777],[114.27177,22.50766],[114.27189,22.5078],[114.27206,22.50789],[114.27223,22.50817],[114.27215,22.50824],[114.27212,22.50822],[114.272,22.50815],[114.27192,22.50802],[114.27183,22.508],[114.27171,22.50787],[114.27167,22.50782],[114.27155,22.50794],[114.27155,22.50798],[114.27151,22.50804],[114.27156,22.50812],[114.2719,22.50836],[114.27203,22.50838],[114.27211,22.50843],[114.27233,22.50858],[114.27226,22.50867],[114.27216,22.50866],[114.27193,22.50907],[114.27194,22.50949],[114.272,22.50947],[114.27214,22.50927],[114.27255,22.50947],[114.27286,22.5095],[114.27318,22.50944],[114.27339,22.50928],[114.27356,22.50919],[114.27367,22.50904],[114.27415,22.50875],[114.27441,22.50874],[114.27461,22.50881],[114.27469,22.50898],[114.27468,22.5091],[114.27444,22.5096],[114.27441,22.50973],[114.2743,22.50982],[114.27404,22.50987],[114.27387,22.51008],[114.27371,22.5101],[114.27344,22.51081],[114.27337,22.5109],[114.27319,22.51093],[114.27317,22.511],[114.27334,22.51115],[114.27338,22.51139],[114.27352,22.51098],[114.27362,22.5109],[114.27385,22.51088],[114.2743,22.51095],[114.27448,22.51107],[114.27459,22.51131],[114.27469,22.51141],[114.27486,22.51152],[114.27516,22.51159],[114.27513,22.51167],[114.27505,22.51168],[114.27482,22.51164],[114.27465,22.5116],[114.27443,22.51166],[114.27429,22.51177],[114.27417,22.51179],[114.27413,22.51195],[114.27412,22.51246],[114.27406,22.51268],[114.27411,22.51273],[114.27424,22.51273],[114.27438,22.51262],[114.27451,22.51261],[114.2746,22.51273],[114.27476,22.51309],[114.27491,22.51316],[114.27497,22.51309],[114.2751,22.51308],[114.27521,22.51314],[114.27524,22.51326],[114.27522,22.51328],[114.27516,22.51342],[114.27501,22.51347],[114.27464,22.51342],[114.27445,22.51329],[114.27432,22.51325],[114.27368,22.51343],[114.27334,22.51339],[114.27325,22.5133],[114.27316,22.51327],[114.27315,22.51319],[114.27307,22.51313],[114.27294,22.51313],[114.27259,22.51286],[114.27223,22.51273],[114.27221,22.51253],[114.27228,22.51215],[114.27225,22.51213],[114.27217,22.51219],[114.27217,22.51237],[114.27201,22.51268],[114.27172,22.51273],[114.27139,22.51279],[114.27134,22.51289],[114.27135,22.51292],[114.27157,22.51285],[114.27172,22.51286],[114.27177,22.51286],[114.2721,22.51303],[114.27233,22.51324],[114.27233,22.51331],[114.27224,22.51344],[114.27193,22.51352],[114.27184,22.51363],[114.27182,22.51371],[114.27224,22.51384],[114.27209,22.514],[114.27249,22.51503],[114.27249,22.51522],[114.27258,22.51529],[114.2728,22.51545],[114.27307,22.51555],[114.27324,22.51551],[114.27352,22.51529],[114.2736,22.51522],[114.27369,22.51533],[114.27371,22.51542],[114.27365,22.51554],[114.27367,22.51568],[114.27349,22.51586],[114.27339,22.51585],[114.27309,22.51569],[114.27261,22.51569],[114.27244,22.5158],[114.27226,22.51607],[114.27218,22.51606],[114.27201,22.51629],[114.272,22.51637],[114.27228,22.51658],[114.27232,22.51673],[114.27247,22.51692],[114.27239,22.51702],[114.27247,22.51741],[114.27266,22.51749],[114.27292,22.51751],[114.27317,22.51746],[114.27333,22.51734],[114.27379,22.5174],[114.27403,22.51734],[114.2742,22.51703],[114.27446,22.51664],[114.27469,22.51647],[114.27473,22.51629],[114.27505,22.51622],[114.27534,22.51633],[114.27575,22.51628],[114.27586,22.51632],[114.27598,22.51644],[114.27615,22.51652],[114.27644,22.51638],[114.27658,22.51632],[114.27664,22.51623],[114.27663,22.51616],[114.2764,22.51603],[114.27625,22.51589],[114.2761,22.51587],[114.27618,22.51561],[114.27651,22.51547],[114.27668,22.51535],[114.27682,22.51534],[114.27678,22.51508],[114.27687,22.51488],[114.27689,22.51473],[114.27697,22.51453],[114.27727,22.51404],[114.27775,22.51358],[114.27818,22.51337],[114.27835,22.5134],[114.27862,22.51367],[114.27867,22.51402],[114.27877,22.5143],[114.27892,22.51437],[114.27893,22.51442],[114.27899,22.51445],[114.27892,22.51464],[114.27894,22.51496],[114.279,22.51508],[114.27913,22.51528],[114.27919,22.5153],[114.27959,22.51529],[114.27942,22.51571],[114.2791,22.51627],[114.27915,22.51716],[114.27931,22.51764],[114.27935,22.51779],[114.27953,22.51821],[114.27981,22.51849],[114.28008,22.51855],[114.2803,22.51855],[114.28057,22.51863],[114.2809,22.51865],[114.2811,22.51858],[114.28127,22.51847],[114.28154,22.51819],[114.28177,22.51823],[114.28191,22.51835],[114.2819,22.5185],[114.28195,22.5187],[114.28193,22.51898],[114.28178,22.51918],[114.28168,22.51952],[114.28133,22.51999],[114.28101,22.52022],[114.28086,22.52041],[114.28056,22.52087],[114.2805,22.52115],[114.28064,22.52116],[114.28092,22.52094],[114.281,22.52094],[114.28105,22.52083],[114.281,22.52075],[114.28101,22.52067],[114.281,22.52053],[114.28117,22.52044],[114.28145,22.52042],[114.28168,22.52051],[114.28219,22.52099],[114.28292,22.52125],[114.28305,22.52133],[114.28322,22.52151],[114.28329,22.52171],[114.28345,22.52196],[114.28387,22.52209],[114.28414,22.52256],[114.28448,22.52291],[114.28477,22.52338],[114.28496,22.52348],[114.28506,22.52369],[114.28523,22.52375],[114.28535,22.52374],[114.28555,22.52378],[114.28574,22.52397],[114.2858,22.52412],[114.28581,22.52437],[114.28575,22.52463],[114.28588,22.52498],[114.2864,22.52492],[114.2864,22.52494],[114.28608,22.52498],[114.2859,22.525],[114.28602,22.52514],[114.28603,22.52524],[114.28595,22.52538],[114.28574,22.52547],[114.28563,22.52561],[114.28529,22.52557],[114.28505,22.5255],[114.28479,22.52527],[114.28478,22.52538],[114.28469,22.52544],[114.28466,22.52552],[114.2845,22.52575],[114.2845,22.52585],[114.28457,22.52588],[114.28461,22.52597],[114.28458,22.5261],[114.28443,22.5262],[114.28425,22.52626],[114.28409,22.52624],[114.28398,22.5261],[114.28406,22.5259],[114.28445,22.52577],[114.28453,22.52558],[114.2847,22.52538],[114.28475,22.52522],[114.28467,22.52509],[114.28462,22.52489],[114.28466,22.5248],[114.28486,22.52445],[114.2849,22.52426],[114.28459,22.52403],[114.28427,22.52393],[114.28377,22.52385],[114.2834,22.52386],[114.28319,22.5239],[114.28302,22.52398],[114.28283,22.52416],[114.28279,22.52437],[114.28294,22.52463],[114.28295,22.52472],[114.28263,22.52464],[114.28252,22.5245],[114.2824,22.52445],[114.28231,22.52436],[114.28237,22.52394],[114.2823,22.52379],[114.28212,22.52363],[114.28198,22.52353],[114.28161,22.52348],[114.28117,22.52324],[114.28099,22.52317],[114.2808,22.52314],[114.28076,22.5231],[114.28075,22.52287],[114.28071,22.52274],[114.28044,22.52247],[114.28039,22.52231],[114.28022,22.52202],[114.28021,22.52189],[114.2803,22.52165],[114.28026,22.52162],[114.28013,22.52174],[114.27992,22.52181],[114.27968,22.52177],[114.27936,22.5218],[114.27921,22.52196],[114.2792,22.52204],[114.27953,22.52242],[114.2795,22.52264],[114.27946,22.52269],[114.27919,22.5227],[114.27893,22.52267],[114.27887,22.52263],[114.27886,22.52263],[114.27873,22.52255],[114.27861,22.52253],[114.27842,22.52227],[114.27817,22.52228],[114.27769,22.52286],[114.27746,22.52292],[114.27739,22.52271],[114.27728,22.52291],[114.27729,22.52309],[114.27742,22.52336],[114.2774,22.52364],[114.27751,22.52356],[114.27759,22.52349],[114.27791,22.52339],[114.278,22.52337],[114.27835,22.5234],[114.2785,22.5235],[114.27852,22.52361],[114.27859,22.52372],[114.27813,22.52405],[114.27784,22.52449],[114.27808,22.52473],[114.27839,22.52481],[114.27854,22.52489],[114.27861,22.52505],[114.27903,22.52544],[114.27917,22.52574],[114.27931,22.52587],[114.27939,22.52603],[114.27951,22.52615],[114.2795,22.52621],[114.2794,22.52631],[114.27934,22.52648],[114.27946,22.52687],[114.27957,22.52705],[114.28,22.52747],[114.28036,22.5276],[114.28058,22.52775],[114.28077,22.52806],[114.28094,22.52821],[114.2811,22.52826],[114.28126,22.52826],[114.28149,22.52842],[114.28157,22.52861],[114.28149,22.52875],[114.28128,22.52877],[114.28116,22.52889],[114.28109,22.52888],[114.28093,22.52893],[114.28073,22.52895],[114.2804,22.52906],[114.28019,22.52898],[114.28006,22.52894],[114.2799,22.52885],[114.27974,22.5287],[114.27917,22.52866],[114.27879,22.5287],[114.2787,22.52877],[114.27868,22.52871],[114.27855,22.52871],[114.27845,22.52855],[114.27821,22.52843],[114.27758,22.52852],[114.2772,22.5284],[114.27695,22.52837],[114.27625,22.52837],[114.27601,22.52845],[114.2758,22.52858],[114.27565,22.5286],[114.27563,22.52855],[114.27552,22.52856],[114.27513,22.52877],[114.27499,22.5289],[114.27459,22.52957],[114.27441,22.5297],[114.27422,22.52955],[114.27407,22.52952],[114.27404,22.52946],[114.27381,22.5294],[114.27372,22.52935],[114.27366,22.52912],[114.27373,22.52889],[114.27412,22.52852],[114.27463,22.52823],[114.27477,22.5282],[114.27498,22.52825],[114.27515,22.52824],[114.27541,22.52809],[114.2755,22.52796],[114.27558,22.52751],[114.27572,22.52723],[114.27573,22.52683],[114.27561,22.52667],[114.27552,22.52663],[114.27526,22.52664],[114.275,22.52672],[114.27488,22.52672],[114.27451,22.52651],[114.27436,22.52657],[114.27432,22.52655],[114.27434,22.52644],[114.27418,22.52625],[114.27399,22.52611],[114.27384,22.52571],[114.2738,22.52558],[114.27353,22.52521],[114.27346,22.52523],[114.27342,22.5253],[114.27331,22.52532],[114.27304,22.52548],[114.27282,22.52568],[114.2725,22.52567],[114.27236,22.52562],[114.27177,22.52508],[114.27172,22.52508],[114.27162,22.52509],[114.27129,22.52527],[114.27102,22.52563],[114.27077,22.52561],[114.26995,22.52565],[114.26953,22.52582],[114.26951,22.52589],[114.26943,22.52593],[114.26903,22.52593],[114.26896,22.52613],[114.26841,22.52642],[114.26828,22.52654],[114.26795,22.5272],[114.26764,22.52702],[114.26751,22.527],[114.26728,22.52706],[114.26679,22.52696],[114.2666,22.52695],[114.26651,22.52687],[114.26638,22.52664],[114.26639,22.52653],[114.26635,22.5263],[114.2659,22.52612],[114.26483,22.52556],[114.26444,22.5253],[114.26419,22.52542],[114.26415,22.52561],[114.26406,22.52571],[114.26387,22.52568],[114.26362,22.52544],[114.26342,22.52532],[114.26327,22.52499],[114.26323,22.52472],[114.26307,22.52466],[114.26304,22.52485],[114.26261,22.52504],[114.26217,22.52536],[114.26203,22.52565],[114.26199,22.52571],[114.26175,22.52569],[114.26162,22.52567],[114.26146,22.52574],[114.26141,22.52581],[114.26147,22.52595],[114.26162,22.52586],[114.26169,22.52585],[114.26175,22.52587],[114.26178,22.52589],[114.26175,22.52609],[114.26171,22.52617],[114.26165,22.52623],[114.26163,22.52635],[114.26161,22.5264],[114.26159,22.52641],[114.26151,22.52645],[114.26151,22.52647],[114.26153,22.52651],[114.26156,22.52655],[114.2616,22.52657],[114.26163,22.52661],[114.26163,22.52667],[114.2616,22.52673],[114.26162,22.52679],[114.26168,22.52685],[114.26175,22.52692],[114.26183,22.52699],[114.26192,22.52706],[114.26193,22.52706],[114.2621,22.52719],[114.26223,22.52721],[114.2623,22.52724],[114.26234,22.5273],[114.26237,22.52738],[114.26232,22.52742],[114.26234,22.52746],[114.26245,22.52751],[114.26251,22.52756],[114.26252,22.52759],[114.26251,22.52763],[114.26246,22.52766],[114.26234,22.52768],[114.2623,22.52769],[114.26227,22.52771],[114.26228,22.52776],[114.26233,22.52781],[114.26236,22.5281],[114.26241,22.52818],[114.26249,22.52824],[114.26252,22.52831],[114.26251,22.52833],[114.26248,22.52834],[114.26245,22.52836],[114.26247,22.52873],[114.26244,22.52891],[114.26261,22.52923],[114.26272,22.52967],[114.26276,22.52973],[114.26279,22.52975],[114.26287,22.52984],[114.26291,22.53003],[114.263,22.53076],[114.26356,22.53164],[114.26369,22.53204],[114.2638,22.53221],[114.26387,22.53259],[114.26396,22.53277],[114.26417,22.53288],[114.2642,22.53294],[114.26434,22.53295],[114.26441,22.53299],[114.26473,22.53297],[114.26548,22.53309],[114.26601,22.53312],[114.2665,22.53327],[114.26698,22.53334],[114.26701,22.53337],[114.267,22.53337],[114.26701,22.53338],[114.267,22.53338],[114.26701,22.53339],[114.26706,22.53342],[114.26707,22.53343],[114.26707,22.53342],[114.26707,22.53342],[114.26709,22.53341],[114.26709,22.53341],[114.2671,22.5334],[114.26711,22.53339],[114.26712,22.53339],[114.26713,22.53339],[114.26714,22.5334],[114.26716,22.53342],[114.26715,22.53344],[114.26715,22.53347],[114.26714,22.53347],[114.26714,22.5335],[114.26714,22.53355],[114.26715,22.53357],[114.26716,22.53358],[114.26718,22.53357],[114.2672,22.53357],[114.26721,22.53358],[114.26721,22.53359],[114.26721,22.53361],[114.26719,22.53363],[114.2672,22.53364],[114.26722,22.53367],[114.26724,22.5337],[114.26726,22.5337],[114.26729,22.5337],[114.26732,22.53372],[114.26733,22.53374],[114.26734,22.53377],[114.26734,22.53381],[114.26735,22.53385],[114.26737,22.53387],[114.26739,22.5339],[114.26743,22.53394],[114.26745,22.53396],[114.26745,22.53397],[114.26744,22.53399],[114.26746,22.53403],[114.26746,22.53405],[114.2675,22.53416],[114.26762,22.53439],[114.2676,22.53465],[114.26769,22.53514],[114.26767,22.53538],[114.26755,22.53552],[114.26743,22.5358],[114.2673,22.53593],[114.2672,22.53627],[114.26706,22.53652],[114.26707,22.5366],[114.26717,22.53673],[114.26721,22.53696],[114.26719,22.53699],[114.26715,22.53696],[114.26705,22.53701],[114.26701,22.53699],[114.26694,22.53689],[114.26677,22.53691],[114.2663,22.53681],[114.26615,22.53673],[114.266,22.53673],[114.26574,22.53681],[114.2656,22.53678],[114.26534,22.53678],[114.26529,22.53674],[114.26493,22.53657],[114.26464,22.53662],[114.26447,22.53661],[114.26437,22.53667],[114.26425,22.53662],[114.26414,22.53653],[114.26416,22.53641],[114.26408,22.53632],[114.26386,22.53628],[114.26374,22.53615],[114.26359,22.53586],[114.2636,22.53549],[114.26355,22.53529],[114.26336,22.53522],[114.26295,22.53514],[114.26295,22.5349],[114.26256,22.53419],[114.2625,22.53383],[114.26233,22.53374],[114.26203,22.53369],[114.26176,22.53376],[114.26167,22.53378],[114.26126,22.53408],[114.26114,22.53412],[114.26112,22.53422],[114.26103,22.53429],[114.26104,22.53436],[114.26121,22.53432],[114.2615,22.53431],[114.26162,22.53437],[114.2617,22.53463],[114.26176,22.5352],[114.26182,22.53545],[114.26206,22.53591],[114.26249,22.53638],[114.26261,22.53657],[114.26258,22.53698],[114.26259,22.53744],[114.2628,22.5377],[114.2631,22.53777],[114.26321,22.53783],[114.26327,22.53801],[114.26332,22.53814],[114.26336,22.53835],[114.26328,22.5386],[114.26318,22.53895],[114.26323,22.53922],[114.26322,22.53941],[114.26318,22.53957],[114.26283,22.54012],[114.26268,22.54028],[114.26241,22.54058],[114.26221,22.54064],[114.26208,22.54066],[114.26187,22.54058],[114.26176,22.54056],[114.26167,22.54055],[114.26142,22.54063],[114.26132,22.54062],[114.26097,22.54042],[114.26074,22.54016],[114.26035,22.54003],[114.26017,22.53951],[114.26005,22.53942],[114.25979,22.53933],[114.25962,22.53912],[114.25926,22.5391],[114.25915,22.53907],[114.25905,22.53895],[114.25871,22.53879],[114.25866,22.53874],[114.25867,22.53855],[114.25863,22.5385],[114.25831,22.53835],[114.25797,22.5381],[114.25772,22.53802],[114.25731,22.53797],[114.2572,22.53788],[114.25721,22.538],[114.25706,22.53815],[114.25672,22.53842],[114.25647,22.53859],[114.25628,22.5387],[114.25604,22.53911],[114.2561,22.53953],[114.2564,22.53977],[114.2565,22.54003],[114.2566,22.54015],[114.25671,22.54024],[114.25687,22.54036],[114.25723,22.54052],[114.25748,22.54072],[114.25791,22.54132],[114.25814,22.54149],[114.2582,22.54169],[114.25805,22.54194],[114.2579,22.54253],[114.25785,22.54286],[114.2579,22.54316],[114.25798,22.54334],[114.25817,22.54344],[114.25816,22.54353],[114.25815,22.54358],[114.25815,22.54359],[114.25819,22.54358],[114.25824,22.54354],[114.25828,22.54352],[114.25833,22.54351],[114.25868,22.54364],[114.25888,22.54387],[114.25889,22.54407],[114.25892,22.54416],[114.2585,22.54425],[114.25844,22.54443],[114.25842,22.54448],[114.25822,22.54453],[114.25794,22.54449],[114.2577,22.54432],[114.25764,22.54432],[114.25736,22.54437],[114.25725,22.54441],[114.25717,22.54447],[114.25707,22.54444],[114.25699,22.54443],[114.25663,22.54452],[114.25615,22.5445],[114.25586,22.54456],[114.256,22.54467],[114.25631,22.54472],[114.25684,22.54523],[114.25703,22.54558],[114.25707,22.54581],[114.25713,22.54594],[114.25723,22.54605],[114.25743,22.54606],[114.25808,22.54618],[114.25814,22.54643],[114.25826,22.5466],[114.25861,22.54681],[114.25883,22.54701],[114.25897,22.54703],[114.25917,22.54715],[114.2593,22.54738],[114.25926,22.5475],[114.25939,22.54772],[114.25961,22.54781],[114.26006,22.54781],[114.26012,22.54778],[114.26032,22.54779],[114.26051,22.548],[114.26066,22.54804],[114.26068,22.54814],[114.26076,22.54835],[114.26071,22.54863],[114.26066,22.5488],[114.26068,22.5489],[114.26056,22.54897],[114.26048,22.54899],[114.26013,22.54889],[114.26009,22.54885],[114.26006,22.54877],[114.25996,22.54869],[114.25979,22.54855],[114.25964,22.54854],[114.25961,22.54849],[114.2595,22.54841],[114.25939,22.54826],[114.25935,22.54803],[114.25928,22.54794],[114.25892,22.54777],[114.25847,22.54773],[114.25823,22.54788],[114.25813,22.54812],[114.25793,22.54816],[114.25773,22.54825],[114.25737,22.54851],[114.25731,22.54861],[114.25734,22.54896],[114.2573,22.54907],[114.25687,22.54919],[114.25668,22.5493],[114.25656,22.54933],[114.2564,22.54948],[114.25563,22.54952],[114.25562,22.54955],[114.25562,22.54958],[114.25561,22.54963],[114.25563,22.54969],[114.25568,22.54976],[114.25568,22.54978],[114.25573,22.54998],[114.25573,22.55],[114.25573,22.55001],[114.25571,22.55002],[114.25571,22.55006],[114.25571,22.55008],[114.25572,22.55012],[114.25573,22.55015],[114.25575,22.55019],[114.25579,22.55029],[114.2558,22.55032],[114.2558,22.55034],[114.2558,22.55036],[114.25578,22.55039],[114.25576,22.55042],[114.25576,22.55046],[114.25576,22.55049],[114.25587,22.55082],[114.25589,22.55089],[114.25591,22.55095],[114.25593,22.55097],[114.25593,22.55099],[114.25593,22.55101],[114.25593,22.55102],[114.25592,22.55103],[114.25591,22.55105],[114.2559,22.55106],[114.2559,22.55107],[114.25591,22.5511],[114.25594,22.55114],[114.25595,22.55116],[114.25596,22.55116],[114.25598,22.55116],[114.25601,22.55114],[114.25604,22.55113],[114.25606,22.55113],[114.25608,22.55114],[114.25612,22.55115],[114.25616,22.55116],[114.25619,22.55119],[114.25622,22.55124],[114.25623,22.5513],[114.25622,22.55135],[114.2562,22.5514],[114.25605,22.55153],[114.256,22.55155],[114.25596,22.55155],[114.25591,22.55154],[114.25584,22.55148],[114.25572,22.5514],[114.25561,22.55125],[114.25556,22.55112],[114.25556,22.55111],[114.25557,22.55108],[114.2556,22.55104],[114.2556,22.551],[114.25558,22.55095],[114.25556,22.55093],[114.25552,22.55093],[114.25548,22.55092],[114.2554,22.55074],[114.25538,22.55067],[114.2554,22.55061],[114.25549,22.55053],[114.25552,22.55048],[114.25555,22.55033],[114.25556,22.55028],[114.25557,22.55023],[114.25556,22.55018],[114.25555,22.55016],[114.25555,22.55015],[114.25556,22.55013],[114.25557,22.55001],[114.25558,22.54999],[114.2556,22.54993],[114.2556,22.54989],[114.25559,22.54987],[114.25557,22.54979],[114.25555,22.54974],[114.2555,22.54968],[114.25543,22.54954],[114.25539,22.54946],[114.25528,22.54942],[114.25518,22.54934],[114.25502,22.54924],[114.25498,22.5492],[114.25492,22.54918],[114.25494,22.54915],[114.25494,22.54909],[114.25493,22.54902],[114.2549,22.54897],[114.2549,22.54882],[114.25492,22.5487],[114.25495,22.54867],[114.25499,22.54853],[114.25502,22.54838],[114.25503,22.5482],[114.25506,22.54812],[114.25523,22.54794],[114.25533,22.54778],[114.25535,22.54777],[114.25538,22.54772],[114.25531,22.54754],[114.25515,22.54733],[114.25508,22.54719],[114.25488,22.54702],[114.25455,22.54644],[114.25436,22.54633],[114.2542,22.54634],[114.25408,22.54633],[114.2539,22.54632],[114.2539,22.5463],[114.25409,22.54631],[114.25424,22.54631],[114.25435,22.5463],[114.25441,22.54627],[114.25447,22.54623],[114.25444,22.54604],[114.25441,22.54599],[114.25433,22.54591],[114.25423,22.54582],[114.25419,22.54576],[114.2542,22.54571],[114.25429,22.54554],[114.2543,22.54531],[114.25409,22.54527],[114.25384,22.54524],[114.25359,22.54521],[114.25347,22.54519],[114.25338,22.54515],[114.25332,22.54504],[114.25323,22.54458],[114.2532,22.54463],[114.25314,22.54466],[114.25303,22.54467],[114.25285,22.54466],[114.25268,22.54464],[114.25257,22.54468],[114.25229,22.54479],[114.25218,22.54486],[114.25212,22.54494],[114.25211,22.54504],[114.25229,22.54528],[114.25242,22.54538],[114.2526,22.54562],[114.2526,22.54568],[114.25258,22.54574],[114.2526,22.54577],[114.25268,22.54581],[114.25273,22.54587],[114.25281,22.54593],[114.25293,22.54595],[114.25303,22.546],[114.25317,22.54606],[114.25328,22.5461],[114.25337,22.54616],[114.25345,22.54624],[114.25361,22.54627],[114.25377,22.54629],[114.25377,22.54631],[114.25365,22.5463],[114.25356,22.54629],[114.25345,22.54627],[114.25339,22.54631],[114.25323,22.54634],[114.25314,22.5464],[114.25308,22.54655],[114.25307,22.54673],[114.25322,22.54693],[114.25321,22.54726],[114.25326,22.54746],[114.25342,22.54765],[114.25337,22.54775],[114.25321,22.54785],[114.2528,22.54777],[114.25277,22.54751],[114.25259,22.54733],[114.2525,22.54728],[114.25206,22.54745],[114.25178,22.54775],[114.25164,22.54795],[114.25146,22.54807],[114.25131,22.54808],[114.25128,22.54795],[114.25121,22.54789],[114.25118,22.54773],[114.25098,22.54761],[114.25076,22.54759],[114.25045,22.54774],[114.25042,22.54771],[114.25046,22.54767],[114.25036,22.54763],[114.25037,22.54741],[114.25025,22.54708],[114.25029,22.54679],[114.25027,22.54657],[114.25034,22.5465],[114.25057,22.54647],[114.25066,22.54638],[114.25071,22.54613],[114.25067,22.54595],[114.2506,22.54585],[114.2506,22.54575],[114.25084,22.54575],[114.25105,22.54584],[114.25116,22.54582],[114.2513,22.54574],[114.25126,22.54557],[114.25114,22.54542],[114.25087,22.54531],[114.25064,22.54515],[114.25017,22.54496],[114.2497,22.54485],[114.24948,22.54475],[114.2493,22.54461],[114.24899,22.54497],[114.24811,22.54562],[114.24723,22.5462],[114.24713,22.54624],[114.2471,22.54628],[114.24698,22.54647],[114.24695,22.54651],[114.24676,22.54682],[114.24667,22.54699],[114.24649,22.54714],[114.24649,22.54726],[114.24655,22.54746],[114.24662,22.54761],[114.24662,22.54774],[114.24658,22.54778],[114.24655,22.5479],[114.2466,22.54798],[114.24663,22.54809],[114.24664,22.54818],[114.24699,22.54849],[114.24695,22.54861],[114.24702,22.54873],[114.24718,22.54875],[114.2473,22.54889],[114.24725,22.54896],[114.24727,22.549],[114.24745,22.54907],[114.24752,22.54916],[114.24741,22.54933],[114.24732,22.5494],[114.24725,22.54939],[114.24711,22.54935],[114.24683,22.54927],[114.24643,22.54937],[114.24629,22.54941],[114.24621,22.54949],[114.24598,22.54954],[114.24591,22.5495],[114.24573,22.54948],[114.24554,22.54949],[114.2453,22.54955],[114.24515,22.5495],[114.24507,22.54953],[114.24501,22.54947],[114.24482,22.54931],[114.24474,22.54908],[114.24458,22.54895],[114.24447,22.54894],[114.24435,22.54872],[114.24433,22.5485],[114.24428,22.54841],[114.24415,22.54838],[114.24414,22.54837],[114.24415,22.54834],[114.24417,22.54833],[114.24437,22.54833],[114.24444,22.54812],[114.24449,22.54794],[114.24458,22.54773],[114.24458,22.54755],[114.24465,22.54732],[114.24463,22.54723],[114.24464,22.54708],[114.2448,22.54664],[114.24482,22.54633],[114.24473,22.54622],[114.2447,22.54609],[114.24446,22.54593],[114.24391,22.54577],[114.24359,22.54579],[114.24346,22.54586],[114.24348,22.54593],[114.24361,22.54596],[114.24371,22.54604],[114.24378,22.54618],[114.24376,22.54643],[114.2437,22.54656],[114.24373,22.54685],[114.24366,22.54721],[114.24365,22.54763],[114.24347,22.54795],[114.24344,22.54821],[114.24359,22.54826],[114.24359,22.54829],[114.24342,22.54829],[114.24312,22.54843],[114.24309,22.54855],[114.24297,22.54858],[114.24295,22.54869],[114.2429,22.54869],[114.24281,22.54854],[114.24271,22.54853],[114.24262,22.54856],[114.2424,22.54849],[114.24231,22.54841],[114.24212,22.54826],[114.24209,22.54819],[114.24186,22.54801],[114.24177,22.54779],[114.24176,22.54764],[114.24168,22.54752],[114.24161,22.54724],[114.24155,22.54713],[114.24151,22.54704],[114.2414,22.54654],[114.24129,22.54652],[114.24108,22.54634],[114.24098,22.5462],[114.24086,22.54602],[114.24084,22.54593],[114.24084,22.54568],[114.24074,22.54528],[114.24093,22.54508],[114.24098,22.54475],[114.24086,22.54362],[114.24088,22.54356],[114.24068,22.54338],[114.24053,22.54335],[114.2404,22.54324],[114.24023,22.54295],[114.24005,22.54277],[114.23988,22.54244],[114.23951,22.54202],[114.23938,22.54194],[114.23926,22.54166],[114.2391,22.54145],[114.23904,22.54144],[114.239,22.54125],[114.23877,22.54109],[114.23872,22.54088],[114.23857,22.54032],[114.23834,22.53895],[114.23836,22.53878],[114.23839,22.5383],[114.23838,22.53808],[114.23844,22.5379],[114.23842,22.53779],[114.23823,22.5376],[114.23794,22.53723],[114.23772,22.53685],[114.23771,22.53674],[114.23764,22.53667],[114.23774,22.53619],[114.23753,22.5357],[114.23732,22.53557],[114.2372,22.53543],[114.23702,22.53536],[114.23691,22.53518],[114.23679,22.53511],[114.23661,22.53489],[114.23658,22.53479],[114.23628,22.53452],[114.23623,22.5343],[114.23606,22.53406],[114.23564,22.53425],[114.23562,22.53421],[114.23609,22.53399],[114.2361,22.53398],[114.23609,22.53384],[114.23611,22.53366],[114.23602,22.53361],[114.23591,22.53355],[114.235,22.53293],[114.23393,22.53226],[114.23343,22.53188],[114.23339,22.53184],[114.23331,22.5318],[114.23324,22.5318],[114.23317,22.5319],[114.23285,22.53205],[114.23259,22.53206],[114.23241,22.53208],[114.23209,22.5322],[114.23204,22.53227],[114.23191,22.53232],[114.23181,22.53234],[114.23167,22.53255],[114.23165,22.53267],[114.23128,22.53294],[114.231,22.53323],[114.231,22.53334],[114.23097,22.53339],[114.2309,22.53335],[114.23089,22.53347],[114.2308,22.53358],[114.23047,22.53362],[114.23038,22.53358],[114.23005,22.53374],[114.2299,22.53384],[114.22968,22.5339],[114.22916,22.53385],[114.22904,22.53368],[114.22906,22.53357],[114.22914,22.53281],[114.22907,22.53252],[114.22903,22.53218],[114.22906,22.53188],[114.22905,22.53184],[114.22899,22.53182],[114.22901,22.53155],[114.22906,22.53144],[114.22903,22.531],[114.22872,22.53048],[114.22852,22.53037],[114.22806,22.52992],[114.22786,22.5299],[114.22763,22.52996],[114.22755,22.53001],[114.2274,22.53001],[114.22729,22.5301],[114.22734,22.53053],[114.2274,22.53073],[114.22729,22.53077],[114.22727,22.53072],[114.22703,22.53072],[114.22692,22.53063],[114.22679,22.53026],[114.22666,22.53012],[114.22615,22.52967],[114.22594,22.52931],[114.22574,22.52943],[114.22572,22.52939],[114.22592,22.52927],[114.2259,22.52922],[114.22572,22.52912],[114.2252,22.52896],[114.22471,22.52861],[114.22441,22.52872],[114.2243,22.52868],[114.22423,22.52856],[114.22399,22.52856],[114.22391,22.52862],[114.22388,22.52871],[114.22388,22.52901],[114.22374,22.52926],[114.22372,22.52946],[114.22351,22.52982],[114.22338,22.52994],[114.22318,22.53003],[114.22281,22.53037],[114.22272,22.53031],[114.22257,22.53034],[114.22193,22.53071],[114.22183,22.53071],[114.22177,22.53066],[114.22156,22.5306],[114.2214,22.53046],[114.2213,22.53017],[114.22133,22.53005],[114.22147,22.52981],[114.22159,22.52968],[114.2216,22.52945],[114.22151,22.52925],[114.22149,22.52913],[114.22147,22.52896],[114.22148,22.52879],[114.22153,22.52867],[114.22163,22.52849],[114.22179,22.52824],[114.22178,22.52808],[114.22155,22.52803],[114.2213,22.52811],[114.22075,22.52861],[114.22052,22.52858],[114.2204,22.52852],[114.22032,22.52839],[114.22025,22.52824],[114.22023,22.52812],[114.22024,22.52767],[114.22021,22.5275],[114.22014,22.52737],[114.21996,22.52715],[114.21988,22.52696],[114.21964,22.52659],[114.21943,22.52609],[114.21939,22.52572],[114.21927,22.52551],[114.21922,22.5253],[114.21917,22.52524],[114.21866,22.52508],[114.21826,22.525],[114.21742,22.52467],[114.21666,22.52449],[114.21581,22.52412],[114.21574,22.52408],[114.21573,22.52407],[114.21572,22.52406],[114.21571,22.52404],[114.21571,22.52404],[114.21571,22.52403],[114.21571,22.52402],[114.21564,22.524],[114.21562,22.52403],[114.21559,22.52409],[114.21559,22.52435],[114.21593,22.52472],[114.21603,22.52492],[114.21602,22.52528],[114.21589,22.5255],[114.21579,22.52554],[114.21579,22.52559],[114.21617,22.52623],[114.21639,22.52686],[114.21631,22.52712],[114.21633,22.52738],[114.2158,22.52714],[114.21559,22.52691],[114.21544,22.52666],[114.21523,22.52648],[114.21519,22.52616],[114.21528,22.52602],[114.21523,22.5258],[114.21518,22.52573],[114.2149,22.52571],[114.21474,22.5256],[114.21444,22.52566],[114.21436,22.52561],[114.2144,22.52549],[114.21342,22.52534],[114.21301,22.52539],[114.21253,22.52559],[114.21245,22.5255],[114.21234,22.5255],[114.21162,22.52562],[114.21135,22.52575],[114.21042,22.52572],[114.21016,22.52559],[114.21009,22.5255],[114.21011,22.52546],[114.20992,22.52528],[114.20988,22.52517],[114.21,22.52497],[114.21025,22.52499],[114.21028,22.52496],[114.21045,22.52448],[114.21046,22.52434],[114.21038,22.52427],[114.21019,22.5242],[114.2097,22.52418],[114.20926,22.52427],[114.20925,22.52426],[114.20905,22.52433],[114.20904,22.52436],[114.20894,22.52439],[114.20893,22.52455],[114.20851,22.52494],[114.20843,22.52499],[114.20827,22.52501],[114.20815,22.52493],[114.20791,22.52552],[114.20787,22.52585],[114.20793,22.52608],[114.2081,22.52629],[114.20842,22.52646],[114.20849,22.52657],[114.20852,22.52679],[114.20852,22.52705],[114.20819,22.5275],[114.20819,22.52772],[114.20799,22.52797],[114.20811,22.5283],[114.2081,22.52846],[114.2082,22.52863],[114.20843,22.52886],[114.20842,22.52919],[114.20837,22.5294],[114.20892,22.53039],[114.20894,22.5305],[114.20906,22.53044],[114.20929,22.5306],[114.20941,22.53062],[114.20953,22.53098],[114.20965,22.53162],[114.20963,22.53173],[114.20958,22.53175],[114.20901,22.53164],[114.20893,22.53178],[114.20843,22.5323],[114.20841,22.53249],[114.20849,22.5334],[114.20843,22.53359],[114.20832,22.5338],[114.20854,22.53386],[114.20895,22.53414],[114.2091,22.53489],[114.20903,22.5351],[114.20912,22.53505],[114.20916,22.53495],[114.20911,22.53454],[114.20919,22.53446],[114.20935,22.53446],[114.20946,22.53441],[114.20955,22.53448],[114.2097,22.53486],[114.2097,22.53515],[114.20932,22.53551],[114.20945,22.53556],[114.20956,22.53562],[114.20968,22.53569],[114.20975,22.53578],[114.20982,22.53588],[114.21005,22.53563],[114.21016,22.53556],[114.21024,22.53559],[114.21033,22.53573],[114.21043,22.53575],[114.21045,22.53568],[114.2104,22.53552],[114.21039,22.53538],[114.21043,22.53524],[114.2105,22.53511],[114.21056,22.53503],[114.21063,22.53499],[114.21082,22.53493],[114.21097,22.53487],[114.21107,22.5348],[114.21125,22.53466],[114.2114,22.53442],[114.21152,22.5343],[114.21193,22.53416],[114.2123,22.53419],[114.21239,22.53431],[114.21271,22.53453],[114.21304,22.53499],[114.21353,22.53546],[114.21366,22.53568],[114.21405,22.53609],[114.2143,22.53619],[114.21451,22.53616],[114.21463,22.53619],[114.21482,22.53643],[114.215,22.53688],[114.21491,22.53766],[114.21496,22.53797],[114.2151,22.53823],[114.21516,22.53849],[114.21531,22.53869],[114.21544,22.53873],[114.21562,22.53888],[114.21561,22.53904],[114.21545,22.53917],[114.21537,22.53934],[114.21524,22.53956],[114.21505,22.53966],[114.21503,22.54],[114.21509,22.53999],[114.21517,22.53997],[114.21522,22.53997],[114.21525,22.53997],[114.21534,22.54004],[114.21536,22.54008],[114.21535,22.54011],[114.21535,22.54016],[114.21535,22.5402],[114.21539,22.5403],[114.2158,22.54089],[114.21654,22.5414],[114.21675,22.5416],[114.21695,22.54163],[114.2171,22.54172],[114.21716,22.54194],[114.2173,22.54207],[114.21738,22.54223],[114.21765,22.54287],[114.21802,22.54286],[114.2184,22.54296],[114.21925,22.54334],[114.21945,22.5435],[114.21947,22.54355],[114.21941,22.54362],[114.21909,22.5439],[114.219,22.54401],[114.21872,22.54421],[114.2189,22.54422],[114.21902,22.5443],[114.21928,22.54442],[114.21939,22.54461],[114.21949,22.54473],[114.21961,22.54482],[114.21959,22.54476],[114.21962,22.5446],[114.21975,22.54432],[114.21985,22.54419],[114.22004,22.54403],[114.22023,22.54391],[114.22043,22.54384],[114.22068,22.54378],[114.22088,22.54379],[114.22091,22.5438],[114.22092,22.54381],[114.22092,22.54383],[114.22093,22.54375],[114.22109,22.54377],[114.22107,22.54388],[114.22109,22.54386],[114.22115,22.54385],[114.22121,22.54385],[114.22162,22.54407],[114.22175,22.54411],[114.22189,22.54416],[114.22208,22.5442],[114.22246,22.54423],[114.22256,22.54422],[114.22271,22.54421],[114.22301,22.54422],[114.22314,22.54424],[114.22325,22.54428],[114.22339,22.54433],[114.22357,22.54443],[114.2237,22.54452],[114.22378,22.54458],[114.22386,22.54463],[114.22394,22.54466],[114.22401,22.54466],[114.22414,22.54465],[114.22423,22.54462],[114.2243,22.54458],[114.22439,22.5445],[114.22498,22.5436],[114.22497,22.54355],[114.22486,22.54342],[114.22486,22.54336],[114.22498,22.54315],[114.22507,22.54303],[114.22513,22.54299],[114.22518,22.54298],[114.22521,22.54299],[114.22524,22.54299],[114.22531,22.54302],[114.22547,22.54312],[114.22552,22.54317],[114.22553,22.54321],[114.22603,22.54349],[114.22743,22.54135],[114.22726,22.54125],[114.22732,22.54117],[114.22769,22.54139],[114.22764,22.54147],[114.22747,22.54137],[114.22607,22.54351],[114.22635,22.54367],[114.22635,22.54367],[114.22635,22.54367],[114.22636,22.5437],[114.22636,22.5437],[114.22636,22.54371],[114.22636,22.54372],[114.22636,22.54373],[114.22636,22.54374],[114.22635,22.54375],[114.22635,22.54376],[114.22628,22.54385],[114.22617,22.54415],[114.22616,22.54418],[114.22607,22.54427],[114.22605,22.54431],[114.226,22.54438],[114.22589,22.54453],[114.22585,22.54457],[114.22571,22.54477],[114.22553,22.54503],[114.22549,22.54509],[114.22541,22.54521],[114.2254,22.54531],[114.22547,22.54546],[114.22561,22.54571],[114.22563,22.54574],[114.22565,22.5459],[114.22566,22.54593],[114.22567,22.54595],[114.22567,22.54596],[114.22577,22.54608],[114.22621,22.54656],[114.22642,22.54683],[114.22662,22.54706],[114.22692,22.54785],[114.22691,22.54801],[114.22663,22.54811],[114.22636,22.54827],[114.22607,22.54851],[114.22602,22.54858],[114.22592,22.54877],[114.22587,22.54883],[114.22554,22.54925],[114.22547,22.54933],[114.22536,22.54942],[114.22521,22.54959],[114.22504,22.54977],[114.22492,22.54988],[114.22473,22.55003],[114.22459,22.55014],[114.22456,22.55019],[114.22452,22.5503],[114.22437,22.55065],[114.22432,22.55079],[114.22429,22.55083],[114.22427,22.55086],[114.22423,22.5509],[114.22417,22.55092],[114.22399,22.55097],[114.22371,22.55099],[114.22364,22.55098],[114.22343,22.55094],[114.22333,22.55093],[114.22329,22.55094],[114.22326,22.55094],[114.22318,22.55098],[114.22309,22.55103],[114.22309,22.55103],[114.223,22.55108],[114.22291,22.55114],[114.22283,22.55123],[114.2228,22.55126],[114.22274,22.55129],[114.22268,22.55132],[114.22255,22.55136],[114.22241,22.5514],[114.22236,22.55142],[114.22228,22.55146],[114.22209,22.55152],[114.22198,22.55155],[114.22187,22.55157],[114.22179,22.55157],[114.22168,22.5516],[114.22154,22.55162],[114.22147,22.55164],[114.22138,22.55167],[114.22133,22.55171],[114.22128,22.55174],[114.22119,22.55186],[114.2211,22.55195],[114.22104,22.55205],[114.22097,22.55219],[114.22088,22.5524],[114.22086,22.55248],[114.22085,22.55254],[114.22085,22.55299],[114.22085,22.55303],[114.22083,22.55308],[114.22077,22.5532],[114.22071,22.55327],[114.22043,22.55368],[114.22042,22.55369],[114.2204,22.5537],[114.22038,22.5537],[114.22035,22.5537],[114.22033,22.55369],[114.22025,22.55363],[114.22016,22.55359],[114.22011,22.55358],[114.22006,22.55359],[114.22001,22.55361],[114.21998,22.55364],[114.21992,22.55367],[114.21987,22.5537],[114.21982,22.55372],[114.21978,22.55374],[114.21976,22.55377],[114.21972,22.55385],[114.21972,22.55387],[114.21972,22.55393],[114.21972,22.55395],[114.21971,22.55398],[114.21969,22.55401],[114.21967,22.55403],[114.21966,22.55404],[114.2196,22.55409],[114.21954,22.55413],[114.21952,22.55415],[114.21951,22.55417],[114.2195,22.55422],[114.2195,22.55426],[114.21949,22.55429],[114.21947,22.55431],[114.21945,22.55435],[114.2194,22.55441],[114.21939,22.55444],[114.21939,22.55452],[114.21937,22.55457],[114.21929,22.55468],[114.21923,22.55476],[114.21912,22.55488],[114.21903,22.55498],[114.21892,22.55512],[114.21887,22.55516],[114.21879,22.55522],[114.21863,22.55537],[114.21848,22.55552],[114.21844,22.55555],[114.21834,22.55564],[114.21816,22.55574],[114.21801,22.55586],[114.21794,22.55594],[114.21791,22.55596],[114.21789,22.55598],[114.21787,22.55599],[114.21785,22.55599],[114.21782,22.55599],[114.2178,22.55599],[114.21778,22.55599],[114.21771,22.55597],[114.21749,22.5559],[114.21745,22.55589],[114.21742,22.55587],[114.21734,22.55581],[114.21731,22.5558],[114.21729,22.55579],[114.21726,22.55579],[114.21711,22.55582],[114.21708,22.55582],[114.21706,22.55581],[114.21695,22.55574],[114.21694,22.55574],[114.21693,22.55573],[114.21692,22.55571],[114.21692,22.5557],[114.21692,22.55569],[114.21692,22.55568],[114.21693,22.55566],[114.21694,22.55565],[114.21695,22.55563],[114.21696,22.55562],[114.21697,22.5556],[114.21698,22.55559],[114.21698,22.55558],[114.21698,22.55556],[114.21699,22.55554],[114.21698,22.55551],[114.21698,22.55548],[114.21697,22.55545],[114.21697,22.55542],[114.21696,22.55539],[114.21694,22.55536],[114.21692,22.55533],[114.2169,22.5553],[114.21688,22.55528],[114.21686,22.55525],[114.21684,22.55523],[114.21681,22.55522],[114.21679,22.5552],[114.21675,22.55519],[114.21671,22.55517],[114.21661,22.55514],[114.21653,22.55512],[114.21648,22.55511],[114.21641,22.5551],[114.21635,22.55507],[114.2163,22.55506],[114.21628,22.55506],[114.21625,22.55506],[114.21624,22.55507],[114.21622,22.55507],[114.21621,22.55508],[114.2162,22.55508],[114.21619,22.5551],[114.21617,22.55511],[114.21614,22.55516],[114.2161,22.55521],[114.21606,22.55526],[114.21601,22.55532],[114.21597,22.55535],[114.21595,22.55537],[114.21593,22.55538],[114.21592,22.55538],[114.21589,22.55539],[114.21588,22.5554],[114.21586,22.5554],[114.21585,22.5554],[114.21582,22.5554],[114.21581,22.55539],[114.21579,22.55538],[114.21577,22.55537],[114.21575,22.55536],[114.21571,22.55533],[114.21567,22.5553],[114.21561,22.55524],[114.21545,22.55511],[114.21535,22.55504],[114.21527,22.55499],[114.21526,22.55498],[114.21524,22.55498],[114.21523,22.55497],[114.21521,22.55496],[114.21518,22.55496],[114.21509,22.55496],[114.21503,22.55496],[114.21498,22.55496],[114.21494,22.55496],[114.2149,22.55495],[114.21486,22.55495],[114.21483,22.55495],[114.21478,22.55494],[114.21472,22.55493],[114.21465,22.55492],[114.21457,22.5549],[114.2145,22.55489],[114.21442,22.55489],[114.21437,22.55488],[114.21428,22.55487],[114.21415,22.55486],[114.21405,22.55484],[114.214,22.55485],[114.21396,22.55485],[114.21392,22.55485],[114.21392,22.55485],[114.21386,22.55484],[114.21378,22.55483],[114.21372,22.55482],[114.21365,22.55481],[114.21362,22.5548],[114.21358,22.5548],[114.21353,22.5548],[114.21349,22.5548],[114.21345,22.55481],[114.21342,22.55481],[114.21339,22.55481],[114.21337,22.55482],[114.21334,22.55483],[114.21332,22.55484],[114.21326,22.55485],[114.21322,22.55487],[114.21321,22.55487],[114.21318,22.55488],[114.21314,22.55491],[114.21309,22.55493],[114.21304,22.55494],[114.21298,22.55495],[114.21288,22.55497],[114.21285,22.55498],[114.21283,22.55499],[114.21281,22.55499],[114.21279,22.555],[114.21277,22.55502],[114.21275,22.55503],[114.21273,22.55504],[114.21271,22.55505],[114.2127,22.55507],[114.21268,22.55509],[114.21266,22.55511],[114.21265,22.55512],[114.21264,22.55513],[114.21263,22.55515],[114.21262,22.55517],[114.2126,22.55519],[114.21259,22.55521],[114.21258,22.55523],[114.21257,22.55525],[114.21255,22.55527],[114.21254,22.5553],[114.21253,22.55532],[114.21252,22.55534],[114.21251,22.55536],[114.21249,22.55538],[114.21248,22.5554],[114.21246,22.55541],[114.21244,22.55543],[114.21242,22.55545],[114.2124,22.55546],[114.21238,22.55547],[114.21237,22.55548],[114.21235,22.55549],[114.21232,22.55551],[114.21229,22.55552],[114.21226,22.55553],[114.21223,22.55555],[114.21219,22.55557],[114.21215,22.5556],[114.21209,22.55562],[114.21199,22.55568],[114.21197,22.55569],[114.21195,22.55572],[114.21194,22.55574],[114.21193,22.55576],[114.21192,22.55584],[114.21191,22.5559],[114.2119,22.55593],[114.21185,22.55598],[114.21177,22.55604],[114.21168,22.55608],[114.21166,22.5561],[114.21165,22.55612],[114.21164,22.5562],[114.21163,22.55625],[114.21157,22.5563],[114.21148,22.55637],[114.21136,22.55645],[114.21134,22.55646],[114.2113,22.55649],[114.2111,22.55628],[114.21104,22.55622],[114.2109,22.55613],[114.21086,22.55608],[114.21077,22.55599],[114.21073,22.55594],[114.21069,22.55592],[114.21064,22.55591],[114.2106,22.5559],[114.21055,22.55591],[114.21044,22.55594],[114.21031,22.55601],[114.2102,22.55605],[114.21016,22.55605],[114.21014,22.55605],[114.21012,22.55608],[114.2101,22.55613],[114.21008,22.55617],[114.21005,22.5562],[114.21003,22.5562],[114.21002,22.5562],[114.20993,22.55619],[114.20988,22.55618],[114.20983,22.55621],[114.20955,22.55639],[114.20949,22.55641],[114.20927,22.55644],[114.2091,22.55651],[114.20893,22.55661],[114.20876,22.55677],[114.20865,22.55687],[114.20849,22.55693],[114.20805,22.55683],[114.20796,22.55681],[114.20682,22.55654],[114.20674,22.55652],[114.20631,22.55655],[114.20618,22.55652],[114.20612,22.55651],[114.20602,22.55649],[114.20592,22.55647],[114.20589,22.55645],[114.20582,22.55644],[114.20574,22.55643],[114.20564,22.55643],[114.20557,22.55643],[114.20546,22.55641],[114.20537,22.5564],[114.20527,22.5564],[114.20518,22.5564],[114.20512,22.55637],[114.20495,22.55632],[114.2049,22.55632],[114.20478,22.55632],[114.20458,22.55633],[114.20448,22.55635],[114.20437,22.55635],[114.20421,22.55634],[114.20411,22.5563],[114.20398,22.55627],[114.2039,22.55626],[114.20378,22.55623],[114.2037,22.55622],[114.20348,22.55621],[114.20331,22.55622],[114.20316,22.55616],[114.2031,22.55617],[114.20294,22.55612],[114.20289,22.55611],[114.20268,22.55613],[114.20255,22.55612],[114.20234,22.55614],[114.20228,22.55616],[114.20218,22.55617],[114.2021,22.55619],[114.20202,22.55622],[114.20199,22.55622],[114.20192,22.5562],[114.20181,22.55615],[114.20177,22.55614],[114.2016,22.55611],[114.20158,22.5561],[114.20155,22.55609],[114.20151,22.55618],[114.20148,22.55621],[114.2014,22.55629],[114.20134,22.55634],[114.20126,22.55642],[114.20121,22.55647],[114.20118,22.55652],[114.20113,22.55663],[114.2011,22.5567],[114.20109,22.5568],[114.20108,22.55701],[114.20109,22.55716],[114.20108,22.55722],[114.20105,22.55728],[114.20087,22.5575],[114.20084,22.55752],[114.20071,22.55755],[114.20066,22.55755],[114.20059,22.55754],[114.20037,22.55749],[114.20026,22.55746],[114.20016,22.55742],[114.19985,22.55722],[114.19977,22.55717],[114.19971,22.55712],[114.19969,22.5571],[114.19965,22.55704],[114.19963,22.557],[114.19961,22.55693],[114.19959,22.5569],[114.19954,22.55684],[114.19952,22.55683],[114.19942,22.55678],[114.1993,22.55671],[114.19925,22.55669],[114.19918,22.55666],[114.19901,22.55663],[114.19892,22.55663],[114.19858,22.55667],[114.19825,22.55669],[114.19813,22.5567],[114.19806,22.5567],[114.19803,22.55669],[114.198,22.55667],[114.19794,22.55663],[114.19785,22.55659],[114.1977,22.55654],[114.19759,22.55651],[114.1975,22.55652],[114.19733,22.5566],[114.19709,22.55675],[114.19678,22.55691],[114.19663,22.55704],[114.19656,22.55708],[114.19647,22.55713],[114.19641,22.55715],[114.19635,22.55716],[114.1963,22.55716],[114.19626,22.55714],[114.19622,22.5571],[114.19618,22.55703],[114.19598,22.55649],[114.19595,22.55607],[114.19593,22.55601],[114.1959,22.55596],[114.19584,22.55584],[114.19579,22.5558],[114.19572,22.55579],[114.19558,22.55577],[114.19552,22.55576],[114.19545,22.55574],[114.19527,22.55563],[114.19495,22.55548],[114.19479,22.55542],[114.1946,22.55537],[114.19444,22.55535],[114.19423,22.55534],[114.19411,22.55535],[114.19361,22.55541],[114.19342,22.55544],[114.19325,22.55548],[114.19316,22.5555],[114.19305,22.55553],[114.19288,22.55562],[114.19275,22.55567],[114.19269,22.5557],[114.19263,22.55573],[114.19245,22.55588],[114.19235,22.55599],[114.19227,22.55606],[114.19223,22.55608],[114.19218,22.55609],[114.19214,22.55609],[114.19211,22.55608],[114.19207,22.55606],[114.19199,22.55603],[114.19192,22.55598],[114.1918,22.55589],[114.19171,22.55579],[114.19166,22.55567],[114.19157,22.55553],[114.1915,22.55545],[114.19143,22.55539],[114.19135,22.55533],[114.19118,22.55524],[114.19108,22.55517],[114.19099,22.55512],[114.19093,22.55506],[114.19086,22.55497],[114.19078,22.55486],[114.19074,22.55478],[114.19072,22.55469],[114.19069,22.55455],[114.19068,22.5545],[114.19067,22.55447],[114.19065,22.55444],[114.19063,22.55443],[114.19059,22.55441],[114.19054,22.55439],[114.19045,22.55437],[114.19026,22.55434],[114.19005,22.55429],[114.18986,22.55424],[114.18979,22.55423],[114.18972,22.55422],[114.18959,22.55418],[114.18952,22.55417],[114.18943,22.55417],[114.18935,22.55417],[114.18928,22.55419],[114.18919,22.55422],[114.18904,22.55428],[114.18901,22.55431],[114.18898,22.55433],[114.18888,22.55444],[114.18885,22.55448],[114.18883,22.55452],[114.1887,22.55465],[114.18863,22.55479],[114.18855,22.55499],[114.18842,22.5552],[114.18831,22.55534],[114.18814,22.55551],[114.18795,22.55566],[114.18787,22.55569],[114.18774,22.55569],[114.18763,22.55568],[114.18752,22.55564],[114.18742,22.55558],[114.18734,22.5555],[114.18727,22.5554],[114.18722,22.55529],[114.18721,22.55517],[114.18721,22.55505],[114.18719,22.55497],[114.18709,22.55482],[114.187,22.55472],[114.18694,22.55467],[114.18694,22.55467],[114.18692,22.55466],[114.18688,22.55465],[114.1866,22.5546],[114.18646,22.55463],[114.18623,22.55468],[114.18616,22.5547],[114.18586,22.55478],[114.18578,22.55481],[114.18561,22.55486],[114.18528,22.55496],[114.1846,22.55513],[114.18436,22.55516],[114.18401,22.55521],[114.18389,22.55521],[114.18343,22.55519],[114.18336,22.5552],[114.18294,22.55524],[114.1827,22.55529],[114.18207,22.55541],[114.18188,22.55544],[114.1818,22.55546],[114.18174,22.55546],[114.18169,22.55545],[114.18165,22.55544],[114.18157,22.5554],[114.18149,22.55536],[114.18134,22.55524],[114.18127,22.55515],[114.18119,22.55498],[114.18116,22.55481],[114.18116,22.55465],[114.18119,22.55448],[114.18121,22.5544],[114.18121,22.55435],[114.18116,22.55425],[114.1811,22.55419],[114.18104,22.55416],[114.181,22.55416],[114.18095,22.55417],[114.18085,22.55422],[114.18071,22.5543],[114.18051,22.55441],[114.18036,22.55449],[114.18025,22.55455],[114.18006,22.55466],[114.1799,22.55473],[114.17985,22.55475],[114.1795,22.55493],[114.17904,22.55512],[114.17856,22.55528],[114.17805,22.5555],[114.17791,22.55556],[114.1778,22.55562],[114.17776,22.55564],[114.17772,22.55568],[114.17771,22.55569],[114.17771,22.55571],[114.17773,22.55587],[114.17776,22.55621],[114.17775,22.55656],[114.17764,22.55728],[114.1776,22.55778],[114.17757,22.55818],[114.17745,22.55888],[114.17732,22.55944],[114.17729,22.55954],[114.17723,22.55963],[114.17714,22.55969],[114.17703,22.55975],[114.17595,22.56003],[114.17583,22.56005],[114.17559,22.56009],[114.17544,22.56009],[114.17522,22.56006],[114.17521,22.56006],[114.17501,22.56002],[114.17472,22.55993],[114.17415,22.55974],[114.17402,22.55971],[114.17391,22.55968],[114.17341,22.55961],[114.17295,22.55963],[114.17256,22.55968],[114.17179,22.55965],[114.17153,22.55964],[114.17126,22.55963],[114.17088,22.55964],[114.17074,22.55967],[114.17059,22.5597],[114.17045,22.55974],[114.17031,22.55982],[114.17011,22.55997],[114.17003,22.56004],[114.16996,22.56011],[114.16988,22.56024],[114.16967,22.56055],[114.16949,22.56074],[114.1693,22.5609],[114.16914,22.56104],[114.16907,22.56108],[114.16897,22.56112],[114.16881,22.56116],[114.16865,22.56121],[114.16851,22.56123],[114.16792,22.56123],[114.16755,22.56122],[114.16736,22.56116],[114.16718,22.56108],[114.16701,22.56096],[114.16681,22.56073],[114.16657,22.56045],[114.16647,22.56035],[114.16612,22.55998],[114.16587,22.55975],[114.16567,22.55959],[114.16548,22.55947],[114.16523,22.55937],[114.16491,22.55925],[114.1647,22.55919],[114.16451,22.55917],[114.16388,22.55918]],[[114.12338,22.51799],[114.12346,22.51799],[114.12351,22.518],[114.12354,22.518],[114.12359,22.51801],[114.12366,22.51801],[114.12371,22.51801],[114.12376,22.51802],[114.1238,22.51802],[114.12385,22.51803],[114.12389,22.51803],[114.12394,22.51803],[114.1241,22.51805],[114.12415,22.51805],[114.12432,22.51807],[114.12438,22.51807],[114.12441,22.51807],[114.12447,22.51808],[114.12452,22.51809],[114.12458,22.5181],[114.12462,22.51812],[114.1247,22.51814],[114.12475,22.51816],[114.1248,22.51818],[114.12495,22.51823],[114.12512,22.5183],[114.12519,22.51819],[114.12551,22.51767],[114.12564,22.51748],[114.12569,22.51742],[114.12576,22.51732],[114.12579,22.51728],[114.12588,22.51716],[114.12596,22.51702],[114.12604,22.51687],[114.12609,22.51676],[114.12612,22.51668],[114.12616,22.51652],[114.12617,22.51644],[114.12621,22.51615],[114.12629,22.51616],[114.12657,22.51619],[114.12659,22.5162],[114.1266,22.5162],[114.12665,22.5162],[114.12685,22.51621],[114.12689,22.51622],[114.12705,22.51623],[114.12708,22.51623],[114.1271,22.51623],[114.12713,22.51623],[114.12742,22.51625],[114.12781,22.51623],[114.12805,22.51621],[114.1282,22.51619],[114.1282,22.51619],[114.12827,22.51619],[114.1283,22.51618],[114.12851,22.51615],[114.12867,22.51612],[114.12883,22.51609],[114.12893,22.51607],[114.12897,22.51606],[114.12906,22.51604],[114.12913,22.51602],[114.12924,22.51599],[114.12928,22.51598],[114.12947,22.51592],[114.12947,22.51592],[114.12961,22.51587],[114.12975,22.51582],[114.12985,22.51578],[114.13005,22.5157],[114.13006,22.5157],[114.13006,22.51569],[114.13008,22.51569],[114.13047,22.5155],[114.13053,22.51546],[114.13067,22.51538],[114.13088,22.51526],[114.13097,22.51521],[114.13105,22.51515],[114.13127,22.515],[114.13132,22.51496],[114.13138,22.51491],[114.13164,22.51471],[114.13168,22.51467],[114.13171,22.51465],[114.13177,22.51459],[114.13216,22.51419],[114.13234,22.51399],[114.1325,22.51379],[114.13286,22.51328],[114.13287,22.51326],[114.13289,22.51323],[114.1329,22.51321],[114.13306,22.51293],[114.13307,22.51291],[114.13327,22.51241],[114.13332,22.51227],[114.13333,22.51225],[114.13342,22.51205],[114.13347,22.51193],[114.13353,22.51179],[114.13362,22.51149],[114.13363,22.51147],[114.13374,22.51119],[114.13375,22.51116],[114.13391,22.51074],[114.13392,22.51071],[114.13399,22.51054],[114.134,22.51052],[114.13416,22.51008],[114.13419,22.51001],[114.13435,22.50958],[114.13436,22.50955],[114.13444,22.50933],[114.13448,22.50925],[114.13457,22.50899],[114.13465,22.50882],[114.13469,22.50873],[114.1347,22.5087],[114.13472,22.50867],[114.13476,22.50858],[114.13479,22.50854],[114.1348,22.50851],[114.13481,22.5085],[114.13482,22.50848],[114.13483,22.50846],[114.13484,22.50845],[114.13485,22.50843],[114.13486,22.50841],[114.13488,22.50839],[114.13489,22.50836],[114.13491,22.50834],[114.13492,22.50832],[114.13498,22.50824],[114.135,22.50821],[114.13501,22.5082],[114.13502,22.50819],[114.13504,22.50817],[114.13506,22.50814],[114.13509,22.50811],[114.13511,22.50809],[114.13512,22.50806],[114.13514,22.50804],[114.13515,22.50803],[114.13516,22.50802],[114.13518,22.508],[114.13519,22.50798],[114.1352,22.50798],[114.13521,22.50796],[114.13521,22.50796],[114.13523,22.50794],[114.13524,22.50793],[114.13525,22.50792],[114.13526,22.50791],[114.13527,22.50789],[114.13531,22.50786],[114.13532,22.50784],[114.13534,22.50782],[114.13536,22.50781],[114.13541,22.50776],[114.13543,22.50774],[114.13545,22.50772],[114.13547,22.5077],[114.1355,22.50767],[114.1355,22.50767],[114.13574,22.50748],[114.13602,22.50729],[114.13604,22.50727],[114.13627,22.50715],[114.13631,22.50713],[114.13652,22.50701],[114.13665,22.50694],[114.13684,22.50683],[114.13724,22.50661],[114.13755,22.50646],[114.13774,22.50639],[114.13779,22.50637],[114.13781,22.50636],[114.13783,22.50636],[114.13789,22.50634],[114.13803,22.50631],[114.13817,22.50629],[114.13821,22.50629],[114.13828,22.50628],[114.13848,22.50627],[114.13851,22.50627],[114.13851,22.50627],[114.13851,22.50627],[114.13851,22.50627],[114.13851,22.50627],[114.13851,22.50627],[114.13851,22.50627],[114.13851,22.50627],[114.13852,22.50627],[114.13852,22.50627],[114.13852,22.50627],[114.13852,22.50627],[114.13852,22.50627],[114.13852,22.50627],[114.13852,22.50627],[114.13852,22.50627],[114.13852,22.50627],[114.13852,22.50627],[114.13853,22.50627],[114.13853,22.50627],[114.13853,22.50627],[114.13853,22.50627],[114.13853,22.50627],[114.13853,22.50627],[114.13853,22.50627],[114.13853,22.50627],[114.13853,22.50627],[114.13853,22.50627],[114.13854,22.50627],[114.13854,22.50627],[114.13854,22.50627],[114.13854,22.50627],[114.13854,22.50627],[114.13854,22.50627],[114.13854,22.50627],[114.13854,22.50627],[114.13854,22.50627],[114.13854,22.50627],[114.13854,22.50627],[114.13855,22.50627],[114.13855,22.50627],[114.13855,22.50627],[114.13855,22.50627],[114.13855,22.50627],[114.13855,22.50627],[114.13855,22.50627],[114.13855,22.50627],[114.13855,22.50627],[114.13855,22.50627],[114.13856,22.50627],[114.13856,22.50627],[114.13856,22.50627],[114.13856,22.50627],[114.13856,22.50627],[114.13856,22.50627],[114.13856,22.50627],[114.13856,22.50627],[114.13856,22.50627],[114.13856,22.50627],[114.13857,22.50627],[114.13857,22.50627],[114.13857,22.50627],[114.13857,22.50627],[114.13857,22.50627],[114.13857,22.50627],[114.13857,22.50627],[114.13857,22.50627],[114.13857,22.50627],[114.13857,22.50627],[114.13857,22.50627],[114.13858,22.50627],[114.13858,22.50627],[114.13858,22.50627],[114.13858,22.50627],[114.13858,22.50627],[114.13858,22.50627],[114.13858,22.50627],[114.13858,22.50627],[114.13858,22.50627],[114.13858,22.50627],[114.13859,22.50627],[114.13859,22.50627],[114.13859,22.50627],[114.13859,22.50627],[114.13859,22.50627],[114.13859,22.50627],[114.13859,22.50627],[114.13859,22.50627],[114.13859,22.50627],[114.13859,22.50627],[114.1386,22.50627],[114.1386,22.50627],[114.1386,22.50627],[114.1386,22.50627],[114.1386,22.50627],[114.1386,22.50627],[114.1386,22.50627],[114.1386,22.50627],[114.1386,22.50627],[114.1386,22.50627],[114.1386,22.50627],[114.13861,22.50627],[114.13861,22.50627],[114.13861,22.50627],[114.13861,22.50627],[114.13861,22.50627],[114.13861,22.50627],[114.13861,22.50627],[114.13861,22.50627],[114.13861,22.50627],[114.13861,22.50627],[114.13862,22.50627],[114.13862,22.50627],[114.13862,22.50627],[114.13862,22.50627],[114.13862,22.50627],[114.13862,22.50627],[114.13862,22.50627],[114.13862,22.50627],[114.13862,22.50627],[114.13862,22.50627],[114.13863,22.50627],[114.13863,22.50627],[114.13863,22.50627],[114.13863,22.50627],[114.13863,22.50627],[114.13863,22.50627],[114.13863,22.50627],[114.13863,22.50627],[114.13863,22.50627],[114.13863,22.50627],[114.13864,22.50627],[114.13864,22.50627],[114.13864,22.50627],[114.13864,22.50627],[114.13864,22.50627],[114.13864,22.50627],[114.13864,22.50627],[114.13864,22.50627],[114.13864,22.50627],[114.13864,22.50627],[114.13864,22.50627],[114.13865,22.50627],[114.13865,22.50627],[114.13865,22.50627],[114.13865,22.50627],[114.13865,22.50627],[114.13865,22.50627],[114.13865,22.50627],[114.13865,22.50627],[114.13865,22.50627],[114.13865,22.50627],[114.13866,22.50627],[114.13866,22.50627],[114.13866,22.50627],[114.13866,22.50627],[114.13866,22.50627],[114.13866,22.50627],[114.13866,22.50627],[114.13866,22.50627],[114.13866,22.50627],[114.13866,22.50627],[114.13867,22.50627],[114.13867,22.50627],[114.13867,22.50627],[114.13867,22.50627],[114.13867,22.50627],[114.13867,22.50627],[114.13867,22.50627],[114.13867,22.50627],[114.13867,22.50627],[114.13867,22.50627],[114.13867,22.50627],[114.13868,22.50627],[114.13868,22.50627],[114.13868,22.50627],[114.13868,22.50627],[114.13868,22.50627],[114.13868,22.50627],[114.13868,22.50627],[114.13868,22.50627],[114.13868,22.50627],[114.13868,22.50627],[114.13869,22.50628],[114.13869,22.50628],[114.13869,22.50628],[114.13869,22.50628],[114.13869,22.50628],[114.13869,22.50628],[114.13869,22.50628],[114.13869,22.50628],[114.13869,22.50628],[114.13869,22.50628],[114.1387,22.50628],[114.1387,22.50628],[114.1387,22.50628],[114.1387,22.50628],[114.1387,22.50628],[114.1387,22.50628],[114.1387,22.50628],[114.1387,22.50628],[114.1387,22.50628],[114.1387,22.50628],[114.1387,22.50628],[114.13871,22.50628],[114.13871,22.50628],[114.13871,22.50628],[114.13871,22.50628],[114.13871,22.50628],[114.13871,22.50628],[114.13871,22.50628],[114.13871,22.50628],[114.13871,22.50628],[114.13871,22.50628],[114.13872,22.50628],[114.13872,22.50628],[114.13872,22.50628],[114.13872,22.50628],[114.13872,22.50628],[114.13872,22.50628],[114.13872,22.50628],[114.13872,22.50628],[114.13872,22.50628],[114.13872,22.50628],[114.13873,22.50628],[114.13873,22.50628],[114.13873,22.50628],[114.13873,22.50628],[114.13873,22.50628],[114.13873,22.50628],[114.13873,22.50628],[114.13873,22.50628],[114.13873,22.50628],[114.13873,22.50628],[114.13873,22.50628],[114.13874,22.50628],[114.13874,22.50628],[114.13874,22.50628],[114.13874,22.50628],[114.13874,22.50628],[114.13874,22.50628],[114.13874,22.50628],[114.13874,22.50628],[114.13874,22.50628],[114.13874,22.50628],[114.13875,22.50628],[114.13875,22.50628],[114.13875,22.50628],[114.13875,22.50628],[114.13875,22.50628],[114.13875,22.50628],[114.13875,22.50628],[114.13875,22.50628],[114.13875,22.50628],[114.13875,22.50628],[114.13875,22.50628],[114.13876,22.50628],[114.13876,22.50628],[114.13876,22.50628],[114.13876,22.50628],[114.13876,22.50628],[114.13876,22.50628],[114.13876,22.50628],[114.13876,22.50628],[114.1388,22.50629],[114.1388,22.50629],[114.1388,22.50629],[114.1388,22.50629],[114.1388,22.50629],[114.13881,22.50629],[114.13881,22.50629],[114.13881,22.50629],[114.13881,22.50629],[114.13881,22.50629],[114.13881,22.50629],[114.13881,22.50629],[114.13881,22.50629],[114.13881,22.50629],[114.13881,22.50629],[114.13881,22.50629],[114.13882,22.50629],[114.13882,22.50629],[114.13882,22.50629],[114.13882,22.50629],[114.13882,22.50629],[114.13882,22.50629],[114.13882,22.50629],[114.13882,22.50629],[114.13882,22.50629],[114.13882,22.50629],[114.13883,22.50629],[114.13883,22.50629],[114.13883,22.50629],[114.13883,22.50629],[114.13883,22.50629],[114.13883,22.50629],[114.13883,22.50629],[114.13883,22.50629],[114.13883,22.50629],[114.13883,22.50629],[114.13883,22.50629],[114.13884,22.50629],[114.13884,22.50629],[114.13884,22.50629],[114.13884,22.50629],[114.13884,22.50629],[114.13884,22.50629],[114.13884,22.50629],[114.13884,22.50629],[114.13884,22.50629],[114.13884,22.50629],[114.13885,22.50629],[114.13885,22.50629],[114.13885,22.50629],[114.13885,22.50629],[114.13885,22.50629],[114.13885,22.5063],[114.13885,22.5063],[114.13885,22.5063],[114.13885,22.5063],[114.13885,22.5063],[114.13886,22.5063],[114.13886,22.5063],[114.13886,22.5063],[114.13886,22.5063],[114.13886,22.5063],[114.13886,22.5063],[114.13886,22.5063],[114.13886,22.5063],[114.13886,22.5063],[114.13886,22.5063],[114.13886,22.5063],[114.13887,22.5063],[114.13887,22.5063],[114.13887,22.5063],[114.13887,22.5063],[114.13887,22.5063],[114.13887,22.5063],[114.13887,22.5063],[114.13887,22.5063],[114.13887,22.5063],[114.13887,22.5063],[114.13888,22.5063],[114.13888,22.5063],[114.13888,22.5063],[114.13888,22.5063],[114.13888,22.5063],[114.13888,22.5063],[114.13888,22.5063],[114.13888,22.5063],[114.13888,22.5063],[114.13888,22.5063],[114.13888,22.5063],[114.13889,22.5063],[114.13889,22.5063],[114.13889,22.5063],[114.13889,22.5063],[114.13889,22.5063],[114.13889,22.5063],[114.13889,22.5063],[114.13889,22.5063],[114.13889,22.5063],[114.13889,22.5063],[114.1389,22.5063],[114.1389,22.5063],[114.1389,22.5063],[114.1389,22.5063],[114.1389,22.5063],[114.1389,22.5063],[114.1389,22.5063],[114.1389,22.5063],[114.1389,22.5063],[114.1389,22.5063],[114.1389,22.5063],[114.13891,22.5063],[114.13891,22.5063],[114.13891,22.5063],[114.13891,22.5063],[114.13891,22.5063],[114.13891,22.50631],[114.13891,22.50631],[114.13891,22.50631],[114.13891,22.50631],[114.13891,22.50631],[114.13892,22.50631],[114.13892,22.50631],[114.13892,22.50631],[114.13892,22.50631],[114.13892,22.50631],[114.13892,22.50631],[114.13892,22.50631],[114.13892,22.50631],[114.13892,22.50631],[114.13892,22.50631],[114.13892,22.50631],[114.13893,22.50631],[114.13893,22.50631],[114.13893,22.50631],[114.13893,22.50631],[114.13893,22.50631],[114.13893,22.50631],[114.13893,22.50631],[114.13893,22.50631],[114.13893,22.50631],[114.13893,22.50631],[114.13894,22.50631],[114.13894,22.50631],[114.13894,22.50631],[114.13894,22.50631],[114.13894,22.50631],[114.13894,22.50631],[114.13894,22.50631],[114.13894,22.50631],[114.13894,22.50631],[114.13894,22.50631],[114.13894,22.50631],[114.13895,22.50631],[114.13895,22.50631],[114.13895,22.50631],[114.13895,22.50631],[114.13895,22.50631],[114.13895,22.50631],[114.13895,22.50631],[114.13895,22.50631],[114.13895,22.50631],[114.13895,22.50631],[114.13896,22.50631],[114.13896,22.50631],[114.13896,22.50631],[114.13896,22.50631],[114.13896,22.50631],[114.13896,22.50631],[114.13896,22.50631],[114.13896,22.50631],[114.13896,22.50631],[114.13896,22.50631],[114.13897,22.50631],[114.13897,22.50631],[114.13897,22.50631],[114.13897,22.50632],[114.13897,22.50632],[114.13897,22.50632],[114.13897,22.50632],[114.13897,22.50632],[114.13897,22.50632],[114.13897,22.50632],[114.13897,22.50632],[114.13898,22.50632],[114.13898,22.50632],[114.13898,22.50632],[114.13898,22.50632],[114.13898,22.50632],[114.13898,22.50632],[114.13898,22.50632],[114.13898,22.50632],[114.13898,22.50632],[114.13898,22.50632],[114.13899,22.50632],[114.13899,22.50632],[114.13899,22.50632],[114.13899,22.50632],[114.13899,22.50632],[114.13899,22.50632],[114.13899,22.50632],[114.13899,22.50632],[114.13899,22.50632],[114.13899,22.50632],[114.13899,22.50632],[114.139,22.50632],[114.139,22.50632],[114.139,22.50632],[114.139,22.50632],[114.139,22.50632],[114.139,22.50632],[114.139,22.50632],[114.139,22.50632],[114.139,22.50632],[114.139,22.50632],[114.13901,22.50632],[114.13901,22.50632],[114.13901,22.50632],[114.13901,22.50632],[114.13901,22.50632],[114.13901,22.50632],[114.13901,22.50632],[114.13901,22.50632],[114.13901,22.50632],[114.13901,22.50632],[114.13901,22.50632],[114.13902,22.50632],[114.13902,22.50632],[114.13902,22.50632],[114.13902,22.50632],[114.13902,22.50633],[114.13902,22.50633],[114.13902,22.50633],[114.13902,22.50633],[114.13902,22.50633],[114.13902,22.50633],[114.13902,22.50633],[114.13903,22.50633],[114.13903,22.50633],[114.13903,22.50633],[114.13903,22.50633],[114.13903,22.50633],[114.13903,22.50633],[114.13903,22.50633],[114.13903,22.50633],[114.13903,22.50633],[114.13903,22.50633],[114.13904,22.50633],[114.13904,22.50633],[114.13904,22.50633],[114.13904,22.50633],[114.13904,22.50633],[114.13904,22.50633],[114.13904,22.50633],[114.13904,22.50633],[114.13904,22.50633],[114.13904,22.50633],[114.13904,22.50633],[114.13905,22.50633],[114.13905,22.50633],[114.13905,22.50633],[114.13905,22.50633],[114.13905,22.50633],[114.13905,22.50633],[114.13905,22.50633],[114.13905,22.50633],[114.13905,22.50633],[114.13905,22.50633],[114.13906,22.50633],[114.13906,22.50633],[114.13906,22.50633],[114.13906,22.50633],[114.13906,22.50633],[114.13906,22.50633],[114.13906,22.50633],[114.13906,22.50633],[114.13906,22.50633],[114.13906,22.50633],[114.13906,22.50634],[114.13907,22.50634],[114.13907,22.50634],[114.13907,22.50634],[114.13907,22.50634],[114.13907,22.50634],[114.13907,22.50634],[114.13907,22.50634],[114.13907,22.50634],[114.13907,22.50634],[114.13907,22.50634],[114.13907,22.50634],[114.13908,22.50634],[114.13908,22.50634],[114.13908,22.50634],[114.13908,22.50634],[114.13908,22.50634],[114.13908,22.50634],[114.13908,22.50634],[114.13908,22.50634],[114.13908,22.50634],[114.13908,22.50634],[114.13909,22.50634],[114.13909,22.50634],[114.13909,22.50634],[114.13909,22.50634],[114.13909,22.50634],[114.13909,22.50634],[114.13909,22.50634],[114.13909,22.50634],[114.13909,22.50634],[114.13909,22.50634],[114.13909,22.50634],[114.1391,22.50634],[114.1391,22.50634],[114.1391,22.50634],[114.1391,22.50634],[114.1391,22.50634],[114.1391,22.50634],[114.1391,22.50634],[114.1391,22.50634],[114.1391,22.50635],[114.1391,22.50635],[114.1391,22.50635],[114.13911,22.50635],[114.13911,22.50635],[114.13911,22.50635],[114.13911,22.50635],[114.13911,22.50635],[114.13911,22.50635],[114.13911,22.50635],[114.13911,22.50635],[114.13911,22.50635],[114.13911,22.50635],[114.13912,22.50635],[114.13912,22.50635],[114.13912,22.50635],[114.13912,22.50635],[114.13912,22.50635],[114.13912,22.50635],[114.13912,22.50635],[114.13912,22.50635],[114.13912,22.50635],[114.13912,22.50635],[114.13912,22.50635],[114.13913,22.50635],[114.13913,22.50635],[114.13913,22.50635],[114.13913,22.50635],[114.13913,22.50635],[114.13913,22.50635],[114.13913,22.50635],[114.13913,22.50635],[114.13913,22.50635],[114.13913,22.50635],[114.13913,22.50635],[114.13914,22.50635],[114.13914,22.50635],[114.13914,22.50635],[114.13914,22.50635],[114.13914,22.50636],[114.13914,22.50636],[114.13914,22.50636],[114.13914,22.50636],[114.13914,22.50636],[114.13914,22.50636],[114.13914,22.50636],[114.13915,22.50636],[114.13915,22.50636],[114.13915,22.50636],[114.13915,22.50636],[114.13915,22.50636],[114.13915,22.50636],[114.13915,22.50636],[114.13915,22.50636],[114.13915,22.50636],[114.13915,22.50636],[114.13916,22.50636],[114.13916,22.50636],[114.13916,22.50636],[114.13916,22.50636],[114.13916,22.50636],[114.13916,22.50636],[114.13916,22.50636],[114.13916,22.50636],[114.13916,22.50636],[114.13916,22.50636],[114.13916,22.50636],[114.13917,22.50636],[114.13917,22.50636],[114.13917,22.50636],[114.13917,22.50636],[114.13917,22.50636],[114.13917,22.50636],[114.13917,22.50636],[114.13917,22.50636],[114.13917,22.50636],[114.13917,22.50636],[114.13917,22.50636],[114.13918,22.50637],[114.13918,22.50637],[114.13918,22.50637],[114.13918,22.50637],[114.13918,22.50637],[114.13918,22.50637],[114.13918,22.50637],[114.13918,22.50637],[114.13918,22.50637],[114.13918,22.50637],[114.13918,22.50637],[114.13919,22.50637],[114.13919,22.50637],[114.13919,22.50637],[114.13919,22.50637],[114.13919,22.50637],[114.13919,22.50637],[114.13919,22.50637],[114.13919,22.50637],[114.13919,22.50637],[114.13919,22.50637],[114.1392,22.50637],[114.1392,22.50637],[114.1392,22.50637],[114.1392,22.50637],[114.1392,22.50637],[114.1392,22.50637],[114.1392,22.50637],[114.1392,22.50637],[114.1392,22.50637],[114.1392,22.50637],[114.1392,22.50637],[114.13921,22.50637],[114.13921,22.50637],[114.13921,22.50637],[114.13921,22.50637],[114.13921,22.50637],[114.13921,22.50637],[114.13921,22.50637],[114.13921,22.50638],[114.13921,22.50638],[114.13921,22.50638],[114.13921,22.50638],[114.13922,22.50638],[114.13922,22.50638],[114.13922,22.50638],[114.13922,22.50638],[114.13922,22.50638],[114.13922,22.50638],[114.13922,22.50638],[114.13922,22.50638],[114.13926,22.50639],[114.13968,22.50655],[114.13971,22.50656],[114.13979,22.50659],[114.13993,22.50665],[114.14013,22.50673],[114.14017,22.50674],[114.14039,22.50683],[114.14056,22.50691],[114.14059,22.50692],[114.14085,22.50702],[114.1412,22.50715],[114.14123,22.50716],[114.14124,22.50717],[114.1415,22.50726],[114.14151,22.50726],[114.14154,22.50727],[114.14157,22.50728],[114.14173,22.50733],[114.14177,22.50734],[114.14184,22.50736],[114.14191,22.50738],[114.14219,22.50745],[114.14235,22.50749],[114.14247,22.50751],[114.14256,22.50753],[114.14271,22.50756],[114.14279,22.50757],[114.143,22.50761],[114.14322,22.50764],[114.14344,22.50766],[114.14367,22.50769],[114.14386,22.5077],[114.1441,22.50771],[114.14426,22.50772],[114.14429,22.50772],[114.1447,22.50772],[114.14511,22.5077],[114.14515,22.5077],[114.14526,22.50772],[114.14541,22.50774],[114.14551,22.50755],[114.14576,22.50726],[114.14576,22.50726],[114.14577,22.50725],[114.14579,22.50723],[114.14583,22.5072],[114.14586,22.50716],[114.14593,22.50709],[114.146,22.50698],[114.14612,22.50683],[114.14614,22.50681],[114.14615,22.5068],[114.14618,22.50676],[114.14633,22.50656],[114.14643,22.50644],[114.14652,22.50632],[114.14657,22.50623],[114.14664,22.50611],[114.14669,22.506],[114.14669,22.50598],[114.14672,22.50588],[114.14673,22.50586],[114.14674,22.50582],[114.14676,22.50576],[114.14679,22.50561],[114.14682,22.50549],[114.14682,22.50544],[114.14682,22.50534],[114.14682,22.50528],[114.14683,22.50492],[114.14683,22.50491],[114.14683,22.50488],[114.14683,22.50484],[114.14684,22.50433],[114.14685,22.50419],[114.14685,22.50414],[114.14685,22.5041],[114.14687,22.50398],[114.14689,22.5039],[114.14692,22.50382],[114.14693,22.50379],[114.14696,22.50373],[114.147,22.50367],[114.14701,22.50366],[114.14704,22.50362],[114.14708,22.50359],[114.14708,22.50358],[114.14711,22.50356],[114.14717,22.50352],[114.14718,22.50351],[114.14728,22.50346],[114.14732,22.50344],[114.14737,22.50342],[114.1476,22.50334],[114.14764,22.50333],[114.14775,22.50327],[114.14796,22.50311],[114.1482,22.50298],[114.1483,22.50291],[114.14834,22.50288],[114.14839,22.50283],[114.14844,22.50279],[114.1485,22.50274],[114.14854,22.50271],[114.14855,22.5027],[114.14859,22.50266],[114.14861,22.50264],[114.14867,22.50258],[114.14872,22.50252],[114.14875,22.50249],[114.14877,22.50247],[114.14878,22.50245],[114.14882,22.50239],[114.14886,22.50233],[114.14887,22.5023],[114.14891,22.50224],[114.14893,22.50221],[114.14899,22.5021],[114.149,22.50207],[114.14904,22.50198],[114.14908,22.50189],[114.1491,22.50185],[114.14912,22.5018],[114.14916,22.50169],[114.14917,22.50165],[114.14917,22.50164],[114.14919,22.50158],[114.14922,22.50151],[114.14925,22.50142],[114.14934,22.50117],[114.14934,22.50116],[114.14935,22.50113],[114.14935,22.50109],[114.14936,22.50105],[114.14937,22.50102],[114.14937,22.50098],[114.14937,22.50094],[114.14936,22.5009],[114.14936,22.50087],[114.14935,22.50083],[114.14935,22.50081],[114.14934,22.50079],[114.14934,22.50077],[114.14933,22.50075],[114.14932,22.50072],[114.14931,22.5007],[114.1493,22.50068],[114.14928,22.50066],[114.14927,22.50064],[114.14925,22.50062],[114.14924,22.5006],[114.14922,22.50058],[114.14921,22.50057],[114.14919,22.50055],[114.14918,22.50054],[114.14916,22.50052],[114.14915,22.50051],[114.14914,22.50051],[114.14912,22.50048],[114.14864,22.50012],[114.14787,22.49953],[114.14786,22.49952],[114.14784,22.49951],[114.14783,22.49949],[114.14782,22.49948],[114.14781,22.49947],[114.14779,22.49945],[114.14778,22.49944],[114.14777,22.49942],[114.14776,22.4994],[114.14775,22.49938],[114.14775,22.49935],[114.14774,22.49933],[114.14774,22.49928],[114.14774,22.49924],[114.14774,22.49909],[114.14774,22.49886],[114.14775,22.49883],[114.14777,22.49767],[114.14778,22.49754],[114.14778,22.49725],[114.14778,22.49723],[114.14777,22.4972],[114.14777,22.49719],[114.14777,22.49718],[114.14777,22.49717],[114.14776,22.49715],[114.14776,22.49714],[114.14775,22.49712],[114.14775,22.4971],[114.14774,22.49709],[114.14773,22.49707],[114.14772,22.49705],[114.14771,22.49704],[114.14771,22.49703],[114.14769,22.49701],[114.14768,22.497],[114.14767,22.49698],[114.14741,22.49673],[114.14737,22.49669],[114.14729,22.49661],[114.14726,22.49659],[114.14723,22.49656],[114.14721,22.49654],[114.14719,22.49652],[114.14716,22.49649],[114.14713,22.49647],[114.14709,22.49646],[114.14706,22.49643],[114.14695,22.49639],[114.14663,22.49624],[114.1466,22.49622],[114.14657,22.4962],[114.14654,22.49619],[114.14652,22.49617],[114.14649,22.49616],[114.14646,22.49613],[114.14644,22.49611],[114.14632,22.496],[114.14614,22.49581],[114.14611,22.49578],[114.14586,22.49554],[114.14584,22.49552],[114.14582,22.4955],[114.14581,22.49548],[114.1458,22.49547],[114.14579,22.49545],[114.14578,22.49543],[114.14577,22.49541],[114.14576,22.49539],[114.14575,22.49537],[114.14575,22.49535],[114.14574,22.49533],[114.14574,22.49531],[114.14573,22.49529],[114.14573,22.49527],[114.14573,22.49525],[114.14573,22.49523],[114.14574,22.49476],[114.14574,22.49474],[114.14575,22.49472],[114.14575,22.4947],[114.14576,22.49468],[114.14576,22.49466],[114.14577,22.49464],[114.14577,22.49462],[114.14578,22.49461],[114.14579,22.4946],[114.1458,22.49458],[114.14581,22.49456],[114.14582,22.49454],[114.14583,22.49453],[114.14584,22.49452],[114.14585,22.4945],[114.14587,22.49449],[114.14638,22.49406],[114.14641,22.49403],[114.14697,22.49355],[114.14701,22.49352],[114.14704,22.49349],[114.14706,22.49347],[114.14708,22.49345],[114.1471,22.49343],[114.14712,22.49341],[114.14714,22.49338],[114.14715,22.49336],[114.14717,22.49334],[114.14718,22.49331],[114.1472,22.49329],[114.14754,22.49267],[114.14756,22.49264],[114.14778,22.49225],[114.14779,22.49222],[114.1478,22.4922],[114.14781,22.49217],[114.14782,22.49215],[114.14782,22.49213],[114.14783,22.4921],[114.14784,22.49208],[114.14784,22.49205],[114.14785,22.49202],[114.14785,22.49199],[114.14785,22.49196],[114.14785,22.49194],[114.14784,22.49191],[114.14784,22.49188],[114.14783,22.49186],[114.14783,22.49183],[114.14782,22.49181],[114.14781,22.4918],[114.1478,22.49177],[114.14779,22.49176],[114.14778,22.49174],[114.14776,22.49171],[114.14773,22.49168],[114.1477,22.49165],[114.14685,22.49085],[114.14683,22.49083],[114.14681,22.49081],[114.14678,22.49076],[114.14676,22.49074],[114.14674,22.49072],[114.14674,22.49072],[114.14673,22.49069],[114.14671,22.49066],[114.1467,22.49065],[114.14668,22.49061],[114.14668,22.49058],[114.14667,22.49057],[114.14667,22.49055],[114.14667,22.4905],[114.14667,22.49043],[114.14668,22.49041],[114.14668,22.49039],[114.14669,22.49038],[114.14669,22.49035],[114.14671,22.49033],[114.14672,22.49031],[114.14673,22.49029],[114.14674,22.49027],[114.14676,22.49025],[114.14678,22.49023],[114.1468,22.49021],[114.14682,22.49019],[114.14688,22.4901],[114.14689,22.49009],[114.1469,22.49008],[114.1469,22.49007],[114.14692,22.49006],[114.14693,22.49004],[114.14694,22.49001],[114.14696,22.48997],[114.14699,22.48992],[114.147,22.48989],[114.14702,22.48986],[114.14706,22.48979],[114.14708,22.48975],[114.1471,22.48973],[114.14711,22.4897],[114.14712,22.48968],[114.14712,22.48965],[114.14713,22.48961],[114.14715,22.48953],[114.14716,22.4895],[114.14717,22.48948],[114.14719,22.48945],[114.14751,22.48892],[114.14753,22.48889],[114.14755,22.48886],[114.14756,22.48884],[114.14757,22.48882],[114.14758,22.48879],[114.14759,22.48874],[114.14761,22.48865],[114.14762,22.48862],[114.14763,22.4886],[114.14763,22.48857],[114.14763,22.48854],[114.14763,22.48851],[114.14763,22.48848],[114.14763,22.48845],[114.14762,22.48838],[114.1476,22.4882],[114.1476,22.48819],[114.14762,22.48811],[114.14786,22.48799],[114.14794,22.48795],[114.14801,22.48792],[114.14806,22.48789],[114.1481,22.48784],[114.14812,22.48779],[114.14816,22.48772],[114.14818,22.48761],[114.14821,22.48754],[114.14823,22.48749],[114.14827,22.48743],[114.14833,22.48737],[114.1484,22.48732],[114.1484,22.48732],[114.14896,22.48693],[114.14896,22.48692],[114.14898,22.48692],[114.14921,22.48673],[114.14949,22.48651],[114.14962,22.48643],[114.14995,22.48622],[114.14997,22.48621],[114.15095,22.48567],[114.15119,22.48553],[114.15134,22.48545],[114.15201,22.48503],[114.15207,22.48498],[114.1521,22.48495],[114.15202,22.48491],[114.1519,22.48487],[114.15179,22.48482],[114.15165,22.48476],[114.1516,22.48473],[114.15157,22.48471],[114.15154,22.48469],[114.15151,22.48467],[114.15148,22.48464],[114.15144,22.48461],[114.15141,22.48458],[114.15137,22.48454],[114.15134,22.4845],[114.15131,22.48447],[114.15129,22.48444],[114.15127,22.48441],[114.15125,22.48438],[114.15122,22.48432],[114.15119,22.48427],[114.15117,22.48422],[114.15115,22.48418],[114.15115,22.48418],[114.15113,22.48413],[114.15111,22.48409],[114.15109,22.48404],[114.15108,22.48401],[114.15107,22.48398],[114.15106,22.48396],[114.15106,22.48394],[114.15105,22.48391],[114.15104,22.48387],[114.15104,22.48386],[114.15103,22.48382],[114.15102,22.48372],[114.15101,22.48368],[114.151,22.4836],[114.15098,22.4834],[114.15093,22.48344],[114.1509,22.48347],[114.15086,22.4835],[114.15082,22.48352],[114.15079,22.48353],[114.15076,22.48353],[114.15074,22.48353],[114.15072,22.48352],[114.15068,22.4835],[114.15066,22.48348],[114.15064,22.48346],[114.15062,22.48343],[114.1506,22.4834],[114.15058,22.48336],[114.15056,22.48333],[114.15053,22.48331],[114.15052,22.4833],[114.15048,22.48328],[114.15045,22.48327],[114.1504,22.48327],[114.15027,22.48329],[114.15015,22.48329],[114.1501,22.48331],[114.15006,22.48333],[114.15002,22.48336],[114.14999,22.48341],[114.14997,22.48345],[114.14995,22.48352],[114.14994,22.48355],[114.14991,22.4836],[114.14988,22.48365],[114.14983,22.4837],[114.1498,22.48372],[114.14977,22.48374],[114.14975,22.48376],[114.14972,22.48377],[114.1497,22.48378],[114.14967,22.48378],[114.14965,22.48378],[114.14962,22.48378],[114.14958,22.48378],[114.14951,22.48376],[114.14928,22.48369],[114.14925,22.48367],[114.14922,22.48364],[114.14921,22.48362],[114.1492,22.48359],[114.1492,22.48357],[114.14921,22.48345],[114.14922,22.48331],[114.14922,22.48328],[114.14922,22.48326],[114.1492,22.48321],[114.14919,22.4832],[114.14919,22.4832],[114.14915,22.48317],[114.14914,22.48316],[114.14911,22.48314],[114.14908,22.48312],[114.14906,22.48311],[114.14904,22.48311],[114.14902,22.4831],[114.149,22.4831],[114.14894,22.48311],[114.14888,22.48312],[114.14882,22.48313],[114.14877,22.48314],[114.14873,22.48315],[114.14872,22.48316],[114.1487,22.48317],[114.14868,22.48318],[114.14863,22.48322],[114.14861,22.48323],[114.14852,22.48327],[114.14851,22.48328],[114.14849,22.48329],[114.14848,22.48329],[114.14846,22.4833],[114.14845,22.4833],[114.14843,22.4833],[114.14841,22.48329],[114.14839,22.48329],[114.14838,22.48328],[114.14836,22.48327],[114.14835,22.48326],[114.14833,22.48324],[114.14832,22.48323],[114.14831,22.48321],[114.14831,22.48319],[114.1483,22.48318],[114.1483,22.48316],[114.1483,22.48314],[114.1483,22.48311],[114.1483,22.48309],[114.14831,22.48307],[114.14831,22.48305],[114.14833,22.48302],[114.14834,22.48299],[114.14836,22.48296],[114.14843,22.48281],[114.14844,22.48279],[114.14845,22.48277],[114.14846,22.48275],[114.14846,22.48273],[114.14846,22.48272],[114.14845,22.48268],[114.14845,22.48266],[114.14844,22.48265],[114.14843,22.4826],[114.14843,22.48258],[114.14842,22.48257],[114.14842,22.48255],[114.1484,22.48253],[114.14838,22.4825],[114.14835,22.48247],[114.14829,22.48241],[114.14824,22.48236],[114.14822,22.48234],[114.14821,22.48232],[114.14819,22.4823],[114.14818,22.48227],[114.14817,22.48225],[114.14817,22.48223],[114.14816,22.48218],[114.14816,22.48217],[114.14815,22.48214],[114.14814,22.48212],[114.14813,22.48209],[114.14811,22.48207],[114.1481,22.48205],[114.14808,22.48203],[114.14807,22.48202],[114.14803,22.482],[114.148,22.48199],[114.14797,22.48198],[114.14794,22.48197],[114.14792,22.48196],[114.1479,22.48196],[114.14788,22.48196],[114.14787,22.48196],[114.14776,22.48196],[114.14758,22.482],[114.14744,22.48202],[114.14725,22.48204],[114.14692,22.48214],[114.14688,22.48217],[114.14685,22.4822],[114.14672,22.48242],[114.14667,22.48241],[114.14661,22.48246],[114.14659,22.48247],[114.14658,22.48249],[114.14657,22.4825],[114.14654,22.48251],[114.14653,22.48252],[114.14649,22.48255],[114.14648,22.48256],[114.14646,22.48258],[114.14644,22.48259],[114.14643,22.48261],[114.14639,22.48265],[114.14636,22.48268],[114.14634,22.48271],[114.14632,22.48273],[114.14629,22.48276],[114.14626,22.48279],[114.14624,22.48281],[114.14623,22.48282],[114.14619,22.48286],[114.14619,22.48287],[114.14618,22.48288],[114.14617,22.48289],[114.14616,22.48291],[114.14615,22.48293],[114.14614,22.48296],[114.14613,22.48298],[114.14613,22.48302],[114.14612,22.48304],[114.14612,22.48307],[114.14609,22.48318],[114.14608,22.48321],[114.14607,22.48324],[114.14607,22.48325],[114.14606,22.48328],[114.14603,22.48334],[114.14602,22.48336],[114.146,22.48338],[114.14599,22.48341],[114.14597,22.48343],[114.14595,22.48345],[114.14593,22.48347],[114.1459,22.48354],[114.1459,22.48355],[114.1459,22.48357],[114.1459,22.48359],[114.14589,22.48361],[114.14587,22.48351],[114.14579,22.48346],[114.14576,22.48344],[114.14568,22.48347],[114.14564,22.48348],[114.14566,22.48341],[114.14571,22.48308],[114.14592,22.48221],[114.14603,22.4817],[114.14562,22.48161],[114.14553,22.48159],[114.14544,22.48157],[114.14522,22.48155],[114.14516,22.48155],[114.145,22.48155],[114.14491,22.48156],[114.14484,22.48157],[114.14468,22.48161],[114.14464,22.48161],[114.14461,22.48162],[114.14458,22.48163],[114.14452,22.48165],[114.14448,22.48167],[114.14441,22.4817],[114.14437,22.48172],[114.14433,22.48173],[114.1443,22.48175],[114.14428,22.48176],[114.14405,22.48165],[114.14404,22.48166],[114.14401,22.48166],[114.14397,22.48168],[114.14391,22.48169],[114.14384,22.4817],[114.14381,22.4817],[114.14377,22.4817],[114.14372,22.4817],[114.14369,22.4817],[114.14367,22.4817],[114.14365,22.4817],[114.14361,22.48169],[114.14357,22.48169],[114.14351,22.48167],[114.14348,22.48167],[114.14347,22.48167],[114.14345,22.48167],[114.14344,22.48167],[114.14338,22.48167],[114.14335,22.48168],[114.14329,22.48169],[114.14325,22.4817],[114.1431,22.48174],[114.14305,22.48176],[114.14298,22.48177],[114.14292,22.48178],[114.14289,22.48178],[114.14285,22.48179],[114.14282,22.48179],[114.1428,22.48179],[114.14278,22.48179],[114.14276,22.48178],[114.1427,22.48177],[114.14263,22.48175],[114.1426,22.48174],[114.14259,22.48173],[114.14258,22.48172],[114.14256,22.48171],[114.14255,22.4817],[114.14254,22.48169],[114.14252,22.48168],[114.1425,22.48166],[114.14248,22.48164],[114.14246,22.48161],[114.14245,22.48159],[114.14244,22.48156],[114.14239,22.48147],[114.14238,22.48138],[114.14236,22.48129],[114.14236,22.48127],[114.14235,22.48125],[114.14234,22.48123],[114.14233,22.48121],[114.14232,22.48118],[114.14228,22.48113],[114.14226,22.4811],[114.14225,22.48107],[114.14224,22.48103],[114.14222,22.481],[114.14221,22.48097],[114.1422,22.48093],[114.14219,22.48089],[114.14218,22.48085],[114.14217,22.4808],[114.14214,22.4807],[114.14214,22.48063],[114.14213,22.4806],[114.14213,22.48058],[114.14212,22.48056],[114.14211,22.48055],[114.14211,22.48054],[114.14209,22.48052],[114.14207,22.48051],[114.14206,22.4805],[114.14204,22.48049],[114.14202,22.48048],[114.142,22.48048],[114.14198,22.48048],[114.14195,22.48047],[114.14192,22.48047],[114.14189,22.48047],[114.14186,22.48047],[114.14183,22.48047],[114.14176,22.48048],[114.14161,22.4805],[114.14143,22.48035],[114.14139,22.48032],[114.14135,22.48029],[114.14128,22.48024],[114.14122,22.4802],[114.14117,22.48016],[114.14112,22.48013],[114.14106,22.4801],[114.141,22.48007],[114.14094,22.48004],[114.14088,22.48001],[114.14083,22.47999],[114.14077,22.47998],[114.14075,22.47997],[114.14073,22.47997],[114.14071,22.47997],[114.14068,22.47997],[114.14064,22.47997],[114.1406,22.47997],[114.1406,22.47998],[114.14058,22.47998],[114.14057,22.47999],[114.14055,22.47999],[114.14054,22.48],[114.14053,22.48001],[114.14051,22.48003],[114.1405,22.48004],[114.14049,22.48005],[114.14049,22.48006],[114.14048,22.48007],[114.14048,22.48009],[114.14048,22.48011],[114.14048,22.48017],[114.14047,22.48019],[114.14047,22.48021],[114.14045,22.48029],[114.14042,22.48043],[114.14037,22.48056],[114.14036,22.48059],[114.14035,22.48062],[114.14032,22.48067],[114.1403,22.48071],[114.14028,22.48075],[114.14026,22.48078],[114.14024,22.48081],[114.14022,22.48083],[114.1402,22.48085],[114.14018,22.48087],[114.14015,22.48089],[114.14012,22.48091],[114.14009,22.48093],[114.14006,22.48095],[114.14003,22.48097],[114.14,22.48098],[114.13997,22.48099],[114.13989,22.48101],[114.13987,22.48101],[114.13985,22.48102],[114.13982,22.48103],[114.13979,22.48105],[114.13975,22.48107],[114.13965,22.48112],[114.13962,22.48114],[114.13959,22.48115],[114.13955,22.48117],[114.13951,22.48118],[114.13947,22.4812],[114.13942,22.48121],[114.13936,22.48122],[114.13932,22.48122],[114.13929,22.48122],[114.13924,22.48123],[114.13921,22.48123],[114.13919,22.48123],[114.13917,22.48123],[114.13915,22.48122],[114.13914,22.48121],[114.13909,22.48119],[114.13901,22.48117],[114.13889,22.48119],[114.13884,22.4812],[114.13867,22.48121],[114.13863,22.48122],[114.13859,22.48122],[114.13856,22.48122],[114.13854,22.48122],[114.13852,22.48122],[114.1385,22.48121],[114.13848,22.48121],[114.13846,22.4812],[114.13843,22.48119],[114.1384,22.48118],[114.13835,22.48116],[114.13832,22.48115],[114.1383,22.48113],[114.13828,22.48112],[114.13826,22.48111],[114.13824,22.48109],[114.13822,22.48108],[114.13821,22.48106],[114.13819,22.48103],[114.13817,22.48101],[114.13815,22.48097],[114.13813,22.48093],[114.13812,22.4809],[114.13811,22.48088],[114.13807,22.48078],[114.13794,22.48076],[114.1379,22.48076],[114.13787,22.48075],[114.13781,22.48074],[114.13774,22.48072],[114.1377,22.48071],[114.13756,22.48066],[114.13744,22.48061],[114.13733,22.48055],[114.13709,22.48042],[114.13657,22.48093],[114.13657,22.48093],[114.13654,22.4809],[114.13651,22.48086],[114.1363,22.48061],[114.13619,22.48049],[114.13615,22.48046],[114.13611,22.48043],[114.13606,22.48039],[114.13599,22.48034],[114.13585,22.48023],[114.1358,22.48019],[114.13575,22.48016],[114.13568,22.48013],[114.13562,22.48011],[114.13557,22.48009],[114.13553,22.48008],[114.13548,22.48007],[114.13542,22.48036],[114.1354,22.4806],[114.13539,22.48066],[114.13538,22.48076],[114.13536,22.48098],[114.13537,22.48121],[114.13537,22.4813],[114.13539,22.48142],[114.13543,22.48157],[114.13549,22.4817],[114.13554,22.4818],[114.13563,22.48197],[114.1358,22.48227],[114.13585,22.48235],[114.1359,22.48243],[114.13598,22.48255],[114.13618,22.48284],[114.13644,22.48323],[114.1365,22.48332],[114.13657,22.48343],[114.1366,22.48348],[114.13663,22.48353],[114.13665,22.48358],[114.13666,22.4836],[114.13667,22.48363],[114.13668,22.48365],[114.13669,22.48367],[114.13669,22.48369],[114.13669,22.48371],[114.1367,22.48374],[114.1367,22.48378],[114.13669,22.48382],[114.13668,22.4839],[114.13668,22.48394],[114.13663,22.48407],[114.13661,22.48413],[114.13656,22.48424],[114.13644,22.48447],[114.1364,22.48457],[114.13631,22.48476],[114.13628,22.48484],[114.13625,22.48491],[114.13622,22.48497],[114.13619,22.48506],[114.13617,22.48512],[114.13615,22.48518],[114.13613,22.48523],[114.13612,22.48528],[114.13611,22.48533],[114.1361,22.48538],[114.1361,22.48543],[114.13609,22.48548],[114.13609,22.48552],[114.13609,22.48557],[114.13609,22.48562],[114.1361,22.48567],[114.1361,22.48575],[114.13613,22.48591],[114.13613,22.48597],[114.13622,22.4863],[114.13627,22.48649],[114.13629,22.48657],[114.1363,22.48664],[114.13632,22.48674],[114.13633,22.48683],[114.13634,22.48693],[114.13635,22.48706],[114.13636,22.4872],[114.13637,22.48733],[114.13637,22.48746],[114.13637,22.48755],[114.13636,22.48761],[114.13636,22.48768],[114.13634,22.48787],[114.13626,22.48816],[114.13623,22.48824],[114.13621,22.4883],[114.13618,22.48839],[114.13615,22.48848],[114.13611,22.48855],[114.13608,22.48862],[114.13603,22.48871],[114.13598,22.48881],[114.13593,22.48889],[114.13587,22.48898],[114.13586,22.489],[114.13582,22.48905],[114.13577,22.48912],[114.13556,22.4894],[114.13502,22.48997],[114.13498,22.48996],[114.13496,22.48996],[114.13493,22.48996],[114.13489,22.48995],[114.13485,22.48995],[114.13481,22.48995],[114.13472,22.48995],[114.13468,22.48995],[114.13466,22.48995],[114.13464,22.48996],[114.13459,22.48997],[114.13457,22.48997],[114.13455,22.48998],[114.13454,22.48999],[114.13452,22.49],[114.13451,22.49001],[114.13449,22.49001],[114.13446,22.49004],[114.1344,22.49008],[114.13438,22.4901],[114.13435,22.49012],[114.13433,22.49014],[114.1343,22.49017],[114.13428,22.49019],[114.13427,22.49022],[114.13425,22.49023],[114.13424,22.49026],[114.13423,22.49027],[114.13422,22.49028],[114.13421,22.49031],[114.13419,22.49036],[114.13418,22.49038],[114.13417,22.4904],[114.134,22.49058],[114.13397,22.49061],[114.13393,22.49065],[114.13391,22.49066],[114.13389,22.49067],[114.13388,22.49069],[114.13386,22.4907],[114.13384,22.49071],[114.13382,22.49072],[114.13379,22.49074],[114.13376,22.49075],[114.13375,22.49075],[114.13373,22.49076],[114.13371,22.49077],[114.13368,22.49077],[114.13367,22.49078],[114.13365,22.49078],[114.13363,22.49079],[114.13358,22.49079],[114.13354,22.4908],[114.1335,22.4908],[114.13345,22.4908],[114.13339,22.4908],[114.13337,22.4908],[114.13337,22.4908],[114.13336,22.49081],[114.13336,22.49081],[114.13336,22.49082],[114.13336,22.49082],[114.13333,22.49082],[114.13332,22.49082],[114.13329,22.49083],[114.13324,22.4908],[114.13315,22.49075],[114.13301,22.49068],[114.13259,22.49055],[114.13237,22.4905],[114.13225,22.49047],[114.13219,22.49047],[114.13212,22.49047],[114.13207,22.49048],[114.13202,22.49048],[114.13195,22.49048],[114.13188,22.49047],[114.13167,22.49122],[114.13166,22.49122],[114.13162,22.49122],[114.13158,22.49122],[114.13154,22.49123],[114.13145,22.49125],[114.13142,22.49125],[114.13142,22.49125],[114.13141,22.49126],[114.13141,22.49126],[114.13139,22.49126],[114.13139,22.49126],[114.13138,22.49126],[114.13131,22.49129],[114.13128,22.4913],[114.13127,22.4913],[114.13126,22.49131],[114.13124,22.49132],[114.13123,22.49133],[114.13122,22.49134],[114.1312,22.49136],[114.13118,22.49138],[114.13116,22.4914],[114.13113,22.49141],[114.13111,22.49143],[114.13108,22.49144],[114.13106,22.49146],[114.13104,22.49148],[114.13101,22.4915],[114.13097,22.49154],[114.13091,22.49161],[114.13091,22.49161],[114.13087,22.49165],[114.1308,22.49171],[114.13078,22.49175],[114.13075,22.49178],[114.13073,22.49181],[114.13071,22.49183],[114.1307,22.49185],[114.13068,22.49186],[114.13068,22.49188],[114.13065,22.49203],[114.13064,22.49207],[114.13063,22.4921],[114.13063,22.49213],[114.13062,22.49216],[114.13062,22.49218],[114.13062,22.49218],[114.13061,22.49222],[114.13061,22.49223],[114.13061,22.49227],[114.1306,22.49231],[114.13059,22.49235],[114.13058,22.49238],[114.13057,22.49242],[114.13057,22.49243],[114.13057,22.49245],[114.13057,22.49248],[114.13057,22.49249],[114.13058,22.49251],[114.13059,22.49253],[114.13059,22.49254],[114.13059,22.49257],[114.13059,22.49258],[114.1306,22.49263],[114.13062,22.4927],[114.13064,22.49281],[114.13066,22.49286],[114.13072,22.49316],[114.13072,22.49317],[114.13078,22.49321],[114.13081,22.49323],[114.13084,22.49326],[114.13055,22.49373],[114.13033,22.49362],[114.13019,22.49383],[114.1301,22.49397],[114.13007,22.49396],[114.13004,22.49394],[114.12999,22.49392],[114.12994,22.49391],[114.12989,22.49388],[114.12985,22.49387],[114.12981,22.49385],[114.12977,22.49384],[114.12971,22.49381],[114.12966,22.49379],[114.12961,22.49377],[114.12956,22.49376],[114.12953,22.49374],[114.12951,22.49377],[114.1295,22.49378],[114.1295,22.49379],[114.12947,22.49379],[114.12944,22.49378],[114.1294,22.49377],[114.12937,22.49377],[114.12933,22.49376],[114.12929,22.49375],[114.12926,22.49374],[114.12922,22.49373],[114.12919,22.49373],[114.12916,22.49372],[114.12915,22.49375],[114.12914,22.49377],[114.12913,22.49379],[114.12912,22.49381],[114.1291,22.49381],[114.1291,22.49381],[114.12909,22.49381],[114.12907,22.49381],[114.12905,22.49381],[114.12902,22.49381],[114.129,22.49381],[114.12898,22.49381],[114.12898,22.49381],[114.12896,22.49382],[114.12894,22.49382],[114.12892,22.49383],[114.12891,22.49383],[114.12889,22.49384],[114.12888,22.49385],[114.12885,22.49386],[114.12884,22.49386],[114.12855,22.494],[114.12852,22.49393],[114.12827,22.49339],[114.12821,22.49327],[114.12815,22.49319],[114.12807,22.49309],[114.12806,22.49307],[114.128,22.49301],[114.12791,22.49294],[114.12782,22.49287],[114.12765,22.49276],[114.1275,22.49269],[114.12734,22.49264],[114.12711,22.49261],[114.12688,22.4926],[114.12666,22.49261],[114.12576,22.49269],[114.12559,22.49267],[114.12504,22.49265],[114.12483,22.49266],[114.12478,22.49266],[114.1247,22.49265],[114.12462,22.49263],[114.12452,22.4926],[114.12437,22.49253],[114.12418,22.49243],[114.12416,22.49242],[114.124,22.49232],[114.12365,22.49286],[114.12357,22.49314],[114.12335,22.49354],[114.12313,22.49406],[114.12308,22.49416],[114.12302,22.49438],[114.123,22.49444],[114.12299,22.49451],[114.12297,22.49459],[114.12293,22.49476],[114.12291,22.49484],[114.1229,22.49486],[114.1229,22.49489],[114.1229,22.4949],[114.12289,22.49494],[114.1229,22.49498],[114.1229,22.49503],[114.1229,22.49507],[114.12291,22.49515],[114.12292,22.49519],[114.12293,22.49524],[114.12294,22.49528],[114.12295,22.49532],[114.12297,22.49539],[114.12298,22.49544],[114.123,22.49549],[114.12302,22.49555],[114.12303,22.49558],[114.12304,22.49561],[114.12309,22.49571],[114.12309,22.49571],[114.12285,22.49599],[114.12284,22.496],[114.12277,22.49605],[114.12269,22.49615],[114.12258,22.49632],[114.12247,22.49645],[114.1224,22.49653],[114.12239,22.49654],[114.12238,22.49655],[114.12237,22.49656],[114.12236,22.49656],[114.12235,22.49657],[114.12234,22.49657],[114.12233,22.49658],[114.12232,22.49658],[114.12228,22.49658],[114.12223,22.49658],[114.1222,22.49658],[114.12218,22.49658],[114.12209,22.49656],[114.12203,22.49649],[114.12195,22.49656],[114.12197,22.49658],[114.12212,22.49676],[114.12215,22.49679],[114.12218,22.49683],[114.12223,22.49688],[114.12228,22.49693],[114.12231,22.49696],[114.12233,22.49699],[114.12237,22.49704],[114.12241,22.49708],[114.12243,22.49711],[114.12244,22.49712],[114.12248,22.49717],[114.12251,22.49722],[114.12254,22.49725],[114.12256,22.49729],[114.12259,22.49733],[114.12261,22.49736],[114.12263,22.4974],[114.12265,22.49744],[114.12267,22.49749],[114.12268,22.49753],[114.1227,22.49757],[114.12271,22.49761],[114.12272,22.49765],[114.12272,22.49769],[114.12273,22.49773],[114.12274,22.49778],[114.12275,22.49782],[114.12275,22.49786],[114.12276,22.49796],[114.12277,22.49804],[114.1228,22.4982],[114.12281,22.49829],[114.12282,22.49834],[114.12281,22.49851],[114.12282,22.49858],[114.12282,22.49864],[114.12287,22.49879],[114.12287,22.4988],[114.12288,22.49884],[114.12289,22.49889],[114.1229,22.49894],[114.12292,22.49899],[114.12293,22.49903],[114.12303,22.49929],[114.12303,22.49929],[114.12302,22.49928],[114.123,22.49927],[114.12299,22.49926],[114.12298,22.49925],[114.12296,22.49925],[114.12294,22.49925],[114.12293,22.49924],[114.12291,22.49925],[114.1229,22.49925],[114.12288,22.49925],[114.12288,22.49926],[114.12283,22.49929],[114.12271,22.49936],[114.12264,22.49942],[114.12256,22.49948],[114.12252,22.49951],[114.12248,22.49953],[114.12231,22.4996],[114.12222,22.49964],[114.12215,22.49969],[114.12207,22.49974],[114.12192,22.49982],[114.12178,22.49991],[114.12167,22.49998],[114.12142,22.50012],[114.12125,22.50022],[114.12116,22.50026],[114.1211,22.50028],[114.12106,22.50029],[114.12101,22.50031],[114.12096,22.50032],[114.12091,22.50034],[114.12079,22.50036],[114.12074,22.50037],[114.12069,22.50037],[114.12064,22.50037],[114.12061,22.50038],[114.12043,22.50034],[114.12006,22.50025],[114.12004,22.50024],[114.11976,22.50017],[114.11971,22.50016],[114.11965,22.50015],[114.11959,22.50014],[114.11954,22.50013],[114.1195,22.50013],[114.11943,22.50012],[114.11936,22.50012],[114.11929,22.50012],[114.11925,22.50012],[114.11919,22.50012],[114.11912,22.50013],[114.11905,22.50013],[114.11898,22.50014],[114.1189,22.50016],[114.11887,22.50017],[114.11883,22.50017],[114.11876,22.50019],[114.11872,22.5002],[114.11868,22.50022],[114.11863,22.50024],[114.11858,22.50026],[114.11852,22.50028],[114.11847,22.50031],[114.11841,22.50034],[114.11834,22.50038],[114.11829,22.50041],[114.11823,22.50045],[114.11813,22.50052],[114.11808,22.50056],[114.11804,22.5006],[114.11776,22.50083],[114.11742,22.50109],[114.11733,22.50116],[114.11716,22.5013],[114.11707,22.50137],[114.11702,22.50141],[114.11661,22.50172],[114.11643,22.50185],[114.11632,22.50194],[114.11631,22.50195],[114.1162,22.50203],[114.11638,22.50218],[114.11654,22.50232],[114.11655,22.50233],[114.11656,22.50234],[114.11668,22.5025],[114.1167,22.50254],[114.11671,22.50255],[114.11678,22.50263],[114.11679,22.50264],[114.11679,22.50265],[114.11683,22.50272],[114.11687,22.50278],[114.1169,22.50284],[114.11693,22.5029],[114.11695,22.50296],[114.11697,22.50302],[114.11698,22.50306],[114.11699,22.5031],[114.11699,22.50314],[114.11699,22.50318],[114.11699,22.50318],[114.11698,22.50322],[114.11698,22.50326],[114.11696,22.50332],[114.11694,22.50337],[114.11692,22.50343],[114.11689,22.50348],[114.11686,22.50353],[114.11683,22.50358],[114.1168,22.50363],[114.11678,22.50365],[114.11676,22.50368],[114.11675,22.5037],[114.11672,22.50374],[114.1167,22.50378],[114.11668,22.50383],[114.11666,22.50387],[114.11665,22.50391],[114.11664,22.50396],[114.11663,22.504],[114.11662,22.50404],[114.11661,22.50409],[114.11661,22.50414],[114.11661,22.50419],[114.11661,22.50424],[114.11662,22.50429],[114.11663,22.50434],[114.11664,22.50439],[114.11666,22.50444],[114.11668,22.50449],[114.1167,22.50453],[114.11672,22.50458],[114.11675,22.50462],[114.11678,22.50466],[114.11681,22.5047],[114.11684,22.50474],[114.11688,22.50478],[114.11692,22.50482],[114.11696,22.50485],[114.117,22.50488],[114.11704,22.50491],[114.11708,22.50493],[114.11713,22.50496],[114.11717,22.50498],[114.11778,22.50523],[114.11783,22.50525],[114.11789,22.50528],[114.11794,22.50531],[114.11799,22.50533],[114.11804,22.50537],[114.11809,22.5054],[114.11813,22.50543],[114.11817,22.50547],[114.1182,22.5055],[114.11823,22.50554],[114.11827,22.50558],[114.11832,22.50566],[114.11838,22.50578],[114.1184,22.50582],[114.11842,22.50591],[114.11843,22.50599],[114.11844,22.50607],[114.11837,22.50617],[114.11835,22.5062],[114.11829,22.50628],[114.11828,22.5063],[114.11821,22.50641],[114.11819,22.50646],[114.11816,22.50651],[114.11814,22.50656],[114.11809,22.50668],[114.11804,22.50681],[114.11803,22.50684],[114.11802,22.50689],[114.118,22.50693],[114.11798,22.50701],[114.11798,22.50703],[114.11795,22.50711],[114.11794,22.50717],[114.11793,22.50722],[114.11793,22.50728],[114.11791,22.5074],[114.11789,22.50759],[114.11785,22.50829],[114.11785,22.5083],[114.11761,22.50854],[114.11749,22.50867],[114.11738,22.50879],[114.11716,22.50904],[114.11701,22.50924],[114.11691,22.50936],[114.11685,22.50945],[114.1168,22.50952],[114.11672,22.50963],[114.11665,22.50974],[114.11657,22.50985],[114.1165,22.50996],[114.11643,22.51007],[114.11636,22.51019],[114.11629,22.5103],[114.11623,22.51041],[114.11619,22.51048],[114.11614,22.51057],[114.11598,22.51088],[114.11584,22.51117],[114.1158,22.51125],[114.11577,22.51131],[114.11575,22.51138],[114.11569,22.51152],[114.11554,22.51194],[114.11546,22.51217],[114.11544,22.5122],[114.11543,22.51223],[114.11542,22.51225],[114.11541,22.51225],[114.1154,22.51226],[114.11534,22.5123],[114.11531,22.51232],[114.11529,22.51233],[114.11525,22.51235],[114.11522,22.51236],[114.11514,22.51238],[114.11512,22.51257],[114.1151,22.51277],[114.11515,22.51279],[114.11516,22.5128],[114.11518,22.51282],[114.1152,22.51283],[114.11522,22.51285],[114.11523,22.51286],[114.11524,22.51287],[114.11525,22.51288],[114.11526,22.5129],[114.11526,22.51291],[114.11526,22.51293],[114.11526,22.51294],[114.11526,22.51296],[114.11526,22.51298],[114.11525,22.51304],[114.11521,22.51331],[114.1152,22.51334],[114.11517,22.51353],[114.11515,22.5137],[114.11513,22.51387],[114.11508,22.51425],[114.11508,22.51433],[114.11507,22.51442],[114.11506,22.51456],[114.11506,22.51467],[114.11505,22.51475],[114.11505,22.51483],[114.11505,22.51492],[114.11505,22.51502],[114.11506,22.51534],[114.11508,22.51564],[114.11504,22.51571],[114.11492,22.5159],[114.11489,22.51596],[114.11486,22.51602],[114.11483,22.51608],[114.11479,22.51616],[114.11476,22.51623],[114.11473,22.5163],[114.1147,22.51636],[114.11468,22.51643],[114.11466,22.51649],[114.11464,22.51654],[114.11463,22.51659],[114.11462,22.51664],[114.11458,22.51682],[114.11457,22.51688],[114.11457,22.51693],[114.11456,22.51707],[114.11456,22.51711],[114.11456,22.51715],[114.11456,22.51719],[114.11457,22.51724],[114.11457,22.51729],[114.11458,22.51734],[114.1146,22.5174],[114.11461,22.51746],[114.11463,22.51753],[114.11465,22.5176],[114.11467,22.51766],[114.11469,22.51772],[114.11477,22.51795],[114.11486,22.5179],[114.1149,22.51788],[114.11495,22.51784],[114.115,22.51782],[114.11504,22.5178],[114.11508,22.51778],[114.1151,22.51777],[114.11512,22.51776],[114.11517,22.51774],[114.11522,22.51772],[114.11536,22.51766],[114.11542,22.51764],[114.11549,22.51762],[114.11556,22.51759],[114.11564,22.51757],[114.11574,22.51755],[114.11578,22.51754],[114.11587,22.51753],[114.11592,22.51752],[114.11598,22.51751],[114.11611,22.51748],[114.11611,22.51747],[114.11609,22.51735],[114.11601,22.51662],[114.11621,22.51659],[114.11625,22.51658],[114.11626,22.51658],[114.11635,22.51657],[114.11643,22.51712],[114.11648,22.5171],[114.11663,22.51701],[114.1167,22.51696],[114.11679,22.51688],[114.11682,22.51685],[114.11687,22.51681],[114.11697,22.51675],[114.11705,22.5167],[114.11727,22.51661],[114.11743,22.51655],[114.11762,22.51647],[114.11776,22.51642],[114.11794,22.51638],[114.1182,22.51633],[114.11823,22.51632],[114.11831,22.51631],[114.11838,22.5163],[114.11842,22.51629],[114.11849,22.51627],[114.11857,22.51625],[114.11866,22.51623],[114.11875,22.51621],[114.11883,22.51619],[114.1189,22.51618],[114.11917,22.51611],[114.11923,22.5161],[114.11929,22.51609],[114.11936,22.51607],[114.11945,22.51605],[114.11951,22.51603],[114.1196,22.51602],[114.11962,22.51601],[114.11967,22.516],[114.11979,22.51599],[114.11984,22.51598],[114.11991,22.51597],[114.12002,22.51596],[114.12007,22.51596],[114.12015,22.51596],[114.12027,22.51596],[114.12039,22.51596],[114.1205,22.51597],[114.12057,22.51597],[114.1207,22.51598],[114.12078,22.51599],[114.12085,22.51599],[114.12093,22.516],[114.12104,22.516],[114.12117,22.51601],[114.12123,22.51602],[114.12128,22.51602],[114.12134,22.51603],[114.12138,22.51603],[114.12142,22.51604],[114.12152,22.51606],[114.12155,22.51607],[114.12158,22.51609],[114.12163,22.51612],[114.12165,22.51614],[114.12169,22.51617],[114.12172,22.5162],[114.12173,22.51622],[114.12175,22.51624],[114.12176,22.51625],[114.12177,22.51627],[114.12178,22.51629],[114.1218,22.51632],[114.12181,22.51635],[114.12182,22.51638],[114.12186,22.51649],[114.12188,22.51653],[114.12192,22.51666],[114.12193,22.51669],[114.12196,22.51677],[114.12197,22.51681],[114.12199,22.51686],[114.12201,22.51693],[114.12202,22.51697],[114.12203,22.51702],[114.12204,22.51705],[114.12205,22.51713],[114.12207,22.51729],[114.12207,22.51733],[114.12208,22.51738],[114.12209,22.51743],[114.1221,22.51748],[114.12211,22.51751],[114.12213,22.51754],[114.12214,22.51757],[114.12215,22.5176],[114.12216,22.51762],[114.1222,22.51768],[114.12222,22.51771],[114.12224,22.51774],[114.12228,22.51778],[114.12232,22.51781],[114.12235,22.51784],[114.12239,22.51786],[114.12242,22.51789],[114.12246,22.51791],[114.12251,22.51793],[114.12256,22.51795],[114.12263,22.51797],[114.12268,22.51797],[114.12272,22.51798],[114.12275,22.51798],[114.12285,22.51799],[114.12298,22.51799],[114.12306,22.51798],[114.12314,22.51798],[114.12324,22.51798],[114.12334,22.51799],[114.12338,22.51799]]]]},"properties":{"M_NM_Eng":"Non-Metro","SR_Eng":"NENT","PDD_Cat_En":"Other Areas","PDD_Eng":"NENT (Other Area)","M_NM_Tc":"非都會區","SR_Tc":"新界東北","PDD_Cat_Tc":"其他地區","PDD_Tc":"新界東北 (其他地區)","M_NM_Sc":"非都会区","SR_Sc_1":"新界东北","PDD_Cat_Sc":"其他地区","PDD_Sc":"新界东北 (其他地区)","Y2019_Popu":222800,"Y2019_Empl":58400,"Y2026_Popu":239250,"Y2026_Empl":76850,"Y2031_Popu":353900,"Y2031_Empl":140150}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[113.94502,22.43189],[113.945,22.43191],[113.94499,22.43191],[113.94498,22.4319],[113.94495,22.43188],[113.94493,22.43188],[113.9449,22.43188],[113.94488,22.43187],[113.94486,22.43184],[113.94486,22.43183],[113.94487,22.43182],[113.94488,22.43181],[113.9449,22.43182],[113.94493,22.43183],[113.94497,22.43183],[113.94498,22.43183],[113.94499,22.43184],[113.94499,22.43185],[113.94499,22.43186],[113.945,22.43187],[113.94501,22.43186],[113.94502,22.43186],[113.94503,22.43186],[113.94503,22.43187],[113.94502,22.43189]]],[[[113.96313,22.45367],[113.9631,22.45368],[113.96305,22.45365],[113.96299,22.45362],[113.96298,22.45359],[113.96299,22.45357],[113.96301,22.45357],[113.96305,22.45359],[113.96312,22.45362],[113.96317,22.45361],[113.96318,22.45359],[113.96319,22.45358],[113.96323,22.45362],[113.96321,22.45364],[113.96321,22.45366],[113.9632,22.45366],[113.96314,22.45365],[113.96313,22.45367]]],[[[113.99674,22.48653],[113.99669,22.48663],[113.99663,22.48665],[113.9966,22.48665],[113.99657,22.48664],[113.99656,22.48662],[113.99659,22.48658],[113.9967,22.48651],[113.99672,22.48651],[113.99674,22.48653]]],[[[113.99777,22.4891],[113.99776,22.48912],[113.99774,22.48911],[113.99769,22.48907],[113.99769,22.48905],[113.99766,22.48906],[113.99761,22.48908],[113.99756,22.48909],[113.99752,22.48908],[113.99747,22.48905],[113.99747,22.48904],[113.99748,22.48902],[113.99757,22.489],[113.99763,22.48893],[113.99773,22.48882],[113.99777,22.48878],[113.99786,22.4887],[113.99791,22.48863],[113.99793,22.48863],[113.99798,22.48864],[113.99799,22.48865],[113.998,22.48867],[113.99795,22.48873],[113.99789,22.48878],[113.99786,22.48879],[113.99781,22.48882],[113.99778,22.48885],[113.99773,22.48894],[113.99772,22.48897],[113.99774,22.489],[113.99776,22.48902],[113.99777,22.4891]]],[[[114.08469,22.51927],[114.0846,22.51932],[114.08449,22.5194],[114.0844,22.51947],[114.08429,22.51956],[114.08403,22.51977],[114.08373,22.52],[114.08398,22.52031],[114.08468,22.52126],[114.08508,22.52193],[114.08532,22.52251],[114.08534,22.52302],[114.0853,22.52341],[114.08512,22.52381],[114.08483,22.52422],[114.08419,22.52475],[114.08374,22.52505],[114.08192,22.52606],[114.08061,22.52662],[114.07968,22.5273],[114.07868,22.52846],[114.0784,22.52891],[114.07834,22.52942],[114.0785,22.52997],[114.07802,22.52942],[114.07777,22.529],[114.07772,22.52888],[114.07751,22.52843],[114.07697,22.52692],[114.07682,22.52648],[114.07673,22.52622],[114.07479,22.52077],[114.0743,22.51992],[114.0736,22.51912],[114.07318,22.51879],[114.07293,22.51861],[114.07254,22.5184],[114.07214,22.51825],[114.07166,22.51807],[114.07153,22.51804],[114.07136,22.518],[114.07078,22.51784],[114.07011,22.51764],[114.06953,22.51747],[114.0694,22.51743],[114.06926,22.5174],[114.06905,22.51736],[114.0686,22.51729],[114.0673,22.5171],[114.06682,22.51704],[114.06635,22.51697],[114.0657,22.51688],[114.06546,22.51685],[114.06507,22.51675],[114.06476,22.51666],[114.06446,22.51654],[114.06422,22.51643],[114.06409,22.51636],[114.06363,22.51608],[114.06359,22.51605],[114.06181,22.51487],[114.06133,22.51455],[114.06068,22.5141],[114.06025,22.51377],[114.05976,22.51334],[114.05931,22.51287],[114.05888,22.51234],[114.0585,22.51177],[114.058,22.51075],[114.05768,22.50991],[114.05748,22.50914],[114.05741,22.50867],[114.05739,22.50847],[114.05736,22.50795],[114.05723,22.5066],[114.05715,22.50617],[114.0571,22.50592],[114.05698,22.50555],[114.05685,22.50528],[114.05655,22.50482],[114.05611,22.50431],[114.05567,22.50393],[114.05541,22.50377],[114.05543,22.50375],[114.0552,22.50361],[114.05489,22.5035],[114.05384,22.50304],[114.0533,22.50283],[114.05271,22.50262],[114.05183,22.50242],[114.05115,22.50235],[114.05043,22.50237],[114.04947,22.50251],[114.04859,22.50279],[114.0485,22.50283],[114.04746,22.50277],[114.04773,22.50212],[114.04768,22.50216],[114.04764,22.50219],[114.04753,22.50234],[114.04752,22.50236],[114.04742,22.5024],[114.04712,22.50254],[114.04683,22.50266],[114.04635,22.50285],[114.04615,22.50293],[114.04586,22.50304],[114.04539,22.50315],[114.04511,22.50321],[114.04462,22.50327],[114.04453,22.50327],[114.04445,22.50327],[114.04429,22.50323],[114.04398,22.50317],[114.04373,22.5031],[114.04356,22.50305],[114.04331,22.50297],[114.04329,22.50294],[114.04321,22.50278],[114.04315,22.50268],[114.04311,22.50266],[114.04307,22.50264],[114.04245,22.50249],[114.04212,22.50249],[114.04188,22.50242],[114.04159,22.50229],[114.04112,22.50216],[114.03939,22.50185],[114.03885,22.5016],[114.03824,22.50136],[114.03809,22.50129],[114.03794,22.50121],[114.0379,22.50117],[114.03788,22.50113],[114.03783,22.50106],[114.03784,22.50099],[114.03784,22.5009],[114.03786,22.50074],[114.03784,22.50068],[114.03776,22.50056],[114.03769,22.50054],[114.03724,22.50035],[114.03699,22.50018],[114.03633,22.49982],[114.03558,22.49938],[114.03428,22.4986],[114.03406,22.49837],[114.03383,22.49808],[114.03379,22.49788],[114.03377,22.49769],[114.03383,22.49755],[114.03386,22.4975],[114.03431,22.49685],[114.03448,22.49665],[114.03483,22.49644],[114.03538,22.4963],[114.03602,22.49619],[114.03646,22.49619],[114.03681,22.49638],[114.0371,22.49663],[114.0373,22.4969],[114.03754,22.4972],[114.03769,22.49731],[114.03797,22.49723],[114.03666,22.49594],[114.03591,22.49513],[114.03474,22.494],[114.03419,22.49347],[114.03398,22.49328],[114.03375,22.49302],[114.03351,22.49267],[114.03338,22.49229],[114.03333,22.49216],[114.03318,22.49176],[114.03259,22.48994],[114.03258,22.4899],[114.03254,22.48978],[114.03251,22.48968],[114.03219,22.48869],[114.03172,22.48719],[114.03172,22.48701],[114.03221,22.48458],[114.03224,22.48442],[114.03225,22.48441],[114.03263,22.48248],[114.03232,22.48243],[114.03233,22.48238],[114.03236,22.4822],[114.03167,22.48205],[114.03144,22.48196],[114.03131,22.48198],[114.03095,22.48193],[114.03147,22.48158],[114.03182,22.48129],[114.03298,22.48071],[114.03309,22.48068],[114.0332,22.48033],[114.03319,22.48033],[114.03257,22.48036],[114.03167,22.4803],[114.03133,22.48026],[114.0311,22.48022],[114.03098,22.48016],[114.03082,22.48002],[114.03072,22.47986],[114.03065,22.47973],[114.03064,22.47963],[114.03066,22.47909],[114.0301,22.47816],[114.02932,22.47813],[114.02935,22.47781],[114.0295,22.47714],[114.02985,22.47534],[114.02992,22.47501],[114.02993,22.47487],[114.02993,22.47467],[114.02992,22.47455],[114.03003,22.47406],[114.03011,22.47364],[114.03012,22.47356],[114.03025,22.47287],[114.03032,22.4725],[114.03038,22.47214],[114.03038,22.47214],[114.03039,22.47196],[114.03039,22.47189],[114.03039,22.47171],[114.03039,22.47154],[114.03035,22.4713],[114.03031,22.47111],[114.03025,22.47089],[114.03019,22.47073],[114.03009,22.47053],[114.02993,22.47026],[114.0298,22.47007],[114.02966,22.46986],[114.02954,22.46968],[114.02939,22.4695],[114.02927,22.46936],[114.02916,22.46924],[114.02907,22.46913],[114.02893,22.46897],[114.02875,22.46874],[114.02859,22.46853],[114.0285,22.46841],[114.02842,22.46828],[114.02837,22.46818],[114.02834,22.4681],[114.02828,22.46797],[114.02821,22.46776],[114.02815,22.46762],[114.02809,22.46747],[114.02803,22.46727],[114.02795,22.46705],[114.02795,22.46705],[114.02795,22.46692],[114.02794,22.46677],[114.02794,22.46663],[114.02795,22.46645],[114.02795,22.46641],[114.02795,22.46636],[114.02795,22.46631],[114.02795,22.46629],[114.02795,22.46627],[114.02796,22.46618],[114.02797,22.46617],[114.02797,22.46598],[114.02797,22.46596],[114.02797,22.4659],[114.02797,22.46567],[114.02797,22.46558],[114.02797,22.46552],[114.02798,22.46548],[114.02799,22.46536],[114.028,22.46527],[114.02801,22.4652],[114.02802,22.46514],[114.02803,22.46506],[114.02805,22.46502],[114.02806,22.46497],[114.02808,22.46491],[114.0281,22.46486],[114.02812,22.4648],[114.02817,22.46469],[114.0282,22.46462],[114.02823,22.46455],[114.02827,22.46448],[114.02831,22.4644],[114.02834,22.46434],[114.02842,22.46423],[114.02853,22.46408],[114.02855,22.46405],[114.02857,22.46403],[114.02863,22.46396],[114.02874,22.46386],[114.02881,22.46378],[114.02882,22.46377],[114.02886,22.46373],[114.02887,22.46373],[114.02892,22.46368],[114.029,22.46359],[114.02907,22.46351],[114.02912,22.46346],[114.02915,22.46342],[114.02933,22.4632],[114.02958,22.46291],[114.02973,22.46274],[114.02979,22.46267],[114.02992,22.46251],[114.03033,22.46203],[114.03051,22.46181],[114.03052,22.46179],[114.03075,22.46152],[114.0309,22.46133],[114.03104,22.46117],[114.03135,22.46081],[114.03144,22.4607],[114.03158,22.46053],[114.03161,22.4605],[114.03164,22.46046],[114.03168,22.46041],[114.03171,22.46038],[114.03178,22.46029],[114.03179,22.46027],[114.03185,22.46019],[114.03189,22.46014],[114.03192,22.46009],[114.03196,22.46002],[114.03199,22.45997],[114.03204,22.45989],[114.03207,22.45984],[114.03209,22.4598],[114.0321,22.45978],[114.03211,22.45976],[114.03214,22.45969],[114.03228,22.45934],[114.0323,22.45929],[114.0323,22.45927],[114.03233,22.4592],[114.03239,22.45906],[114.0324,22.45904],[114.03241,22.45901],[114.03241,22.45899],[114.03242,22.45896],[114.03244,22.45892],[114.03245,22.45888],[114.03246,22.4588],[114.03247,22.45875],[114.03248,22.4587],[114.03248,22.45866],[114.03248,22.45862],[114.03248,22.45855],[114.03248,22.45852],[114.03248,22.45847],[114.03247,22.45842],[114.03247,22.45838],[114.03246,22.45835],[114.03246,22.45832],[114.03245,22.45829],[114.03244,22.45826],[114.03242,22.45821],[114.0324,22.45815],[114.0324,22.45813],[114.03237,22.45808],[114.03236,22.45805],[114.03235,22.45803],[114.03234,22.45801],[114.0323,22.45794],[114.03226,22.45787],[114.03224,22.45784],[114.03221,22.4578],[114.03219,22.45777],[114.03212,22.45766],[114.03174,22.45708],[114.03168,22.457],[114.03166,22.45695],[114.03164,22.45692],[114.03162,22.45688],[114.03159,22.45682],[114.0314,22.45653],[114.03128,22.45635],[114.03124,22.45628],[114.03121,22.45623],[114.03115,22.45612],[114.031,22.45585],[114.03099,22.45583],[114.03096,22.45578],[114.03092,22.45571],[114.03091,22.4557],[114.03087,22.45563],[114.03072,22.4554],[114.03066,22.45531],[114.03059,22.4552],[114.03055,22.45514],[114.03052,22.4551],[114.03047,22.45504],[114.03043,22.45499],[114.03042,22.45498],[114.03041,22.45496],[114.03037,22.45491],[114.03034,22.45488],[114.0303,22.45483],[114.03026,22.45478],[114.03022,22.45474],[114.03015,22.45467],[114.03009,22.45461],[114.03003,22.45455],[114.02999,22.45452],[114.02995,22.45447],[114.02991,22.45444],[114.02989,22.45442],[114.02988,22.4544],[114.02984,22.45437],[114.02979,22.45432],[114.02935,22.45389],[114.02926,22.4538],[114.02919,22.45374],[114.02919,22.45373],[114.029,22.45354],[114.02894,22.45348],[114.02889,22.45343],[114.02886,22.4534],[114.0288,22.45333],[114.0287,22.45321],[114.0286,22.45309],[114.02857,22.45305],[114.02854,22.45302],[114.0285,22.45297],[114.02844,22.45291],[114.02843,22.4529],[114.02844,22.4529],[114.02845,22.45289],[114.02845,22.45289],[114.02902,22.45277],[114.02917,22.45274],[114.02941,22.4527],[114.02949,22.45269],[114.02954,22.45268],[114.02986,22.45261],[114.03035,22.45251],[114.03045,22.45249],[114.03057,22.45246],[114.03062,22.45244],[114.03066,22.45243],[114.03071,22.45242],[114.03076,22.4524],[114.0308,22.45238],[114.03084,22.45236],[114.0309,22.45234],[114.03094,22.45232],[114.03101,22.45228],[114.03103,22.45227],[114.03106,22.45225],[114.03107,22.45224],[114.03109,22.45223],[114.03117,22.45218],[114.03119,22.45216],[114.0312,22.45216],[114.03138,22.45204],[114.03157,22.45191],[114.03169,22.45183],[114.03242,22.45233],[114.03276,22.45188],[114.03286,22.45175],[114.03293,22.45166],[114.03296,22.45167],[114.03479,22.4523],[114.03487,22.45233],[114.03526,22.45246],[114.0358,22.45265],[114.03809,22.45344],[114.03816,22.45346],[114.03826,22.45344],[114.03829,22.45343],[114.03867,22.45332],[114.03986,22.45334],[114.03994,22.45315],[114.03994,22.45314],[114.03996,22.4531],[114.03998,22.45303],[114.03999,22.45302],[114.04,22.45299],[114.04001,22.45292],[114.04001,22.45288],[114.04001,22.45283],[114.04001,22.45281],[114.04002,22.45276],[114.04003,22.45273],[114.04003,22.45271],[114.04004,22.4527],[114.04003,22.45269],[114.04003,22.45267],[114.04003,22.45266],[114.04003,22.45265],[114.04003,22.45264],[114.04004,22.45263],[114.04005,22.45262],[114.04006,22.45261],[114.04006,22.4526],[114.04008,22.45251],[114.0401,22.45247],[114.04013,22.45243],[114.04017,22.45241],[114.04021,22.45239],[114.04036,22.45234],[114.04038,22.45225],[114.04037,22.45221],[114.04035,22.45218],[114.04006,22.45171],[114.04003,22.45166],[114.04,22.45158],[114.04,22.45154],[114.04,22.45145],[114.04002,22.45142],[114.04003,22.4514],[114.04004,22.45138],[114.04004,22.45136],[114.04005,22.45134],[114.04006,22.45133],[114.04008,22.45131],[114.0401,22.45128],[114.04012,22.45122],[114.04014,22.4512],[114.04014,22.45118],[114.04015,22.45116],[114.04015,22.45115],[114.04015,22.45111],[114.04015,22.45109],[114.04016,22.45107],[114.04016,22.45106],[114.04018,22.45102],[114.04019,22.451],[114.04021,22.45098],[114.04022,22.45097],[114.04024,22.45095],[114.04026,22.45094],[114.04029,22.45093],[114.04034,22.4509],[114.04056,22.45073],[114.04056,22.45073],[114.04061,22.45066],[114.04064,22.45062],[114.04081,22.45038],[114.04105,22.45004],[114.04116,22.44985],[114.04132,22.44962],[114.04131,22.44946],[114.04132,22.44932],[114.04127,22.44927],[114.04121,22.44919],[114.04117,22.44915],[114.04117,22.44912],[114.04117,22.44907],[114.0412,22.449],[114.04121,22.44895],[114.04119,22.4489],[114.0411,22.44869],[114.04104,22.44854],[114.04099,22.44842],[114.04095,22.44834],[114.0409,22.44829],[114.04085,22.44823],[114.04084,22.44818],[114.04086,22.44811],[114.04089,22.44808],[114.04095,22.44802],[114.04111,22.44786],[114.04113,22.44784],[114.04119,22.44779],[114.04113,22.44777],[114.04094,22.44769],[114.0409,22.44768],[114.04082,22.44762],[114.04069,22.44749],[114.04064,22.44744],[114.04051,22.44732],[114.04036,22.44715],[114.04025,22.44699],[114.04024,22.44698],[114.04015,22.44684],[114.04004,22.44666],[114.03999,22.44653],[114.03992,22.4464],[114.03985,22.44623],[114.03985,22.44623],[114.03985,22.44622],[114.03981,22.44611],[114.03979,22.44605],[114.03979,22.44605],[114.03978,22.44602],[114.03974,22.44592],[114.03973,22.4459],[114.03966,22.44563],[114.03963,22.4454],[114.0396,22.44515],[114.03959,22.44479],[114.03959,22.44478],[114.03977,22.44465],[114.03977,22.44465],[114.03978,22.44465],[114.03978,22.44464],[114.03979,22.44464],[114.03979,22.44464],[114.0398,22.44463],[114.03981,22.44463],[114.03981,22.44462],[114.03982,22.44462],[114.03982,22.44462],[114.03983,22.44461],[114.03984,22.44461],[114.03984,22.44461],[114.03985,22.4446],[114.03985,22.4446],[114.03986,22.4446],[114.03987,22.44459],[114.03987,22.44459],[114.03988,22.44459],[114.03989,22.44458],[114.03991,22.44458],[114.03992,22.44458],[114.03994,22.44458],[114.03998,22.44458],[114.03998,22.44452],[114.03998,22.44441],[114.03998,22.44436],[114.03998,22.44415],[114.03997,22.44415],[114.03996,22.44415],[114.03995,22.44415],[114.03994,22.44415],[114.03994,22.44415],[114.03994,22.44415],[114.03994,22.44415],[114.03993,22.44415],[114.03993,22.44415],[114.03992,22.44414],[114.03991,22.44414],[114.03991,22.44414],[114.03991,22.44414],[114.0399,22.44414],[114.0399,22.44414],[114.03989,22.44414],[114.03989,22.44414],[114.03989,22.44414],[114.03988,22.44414],[114.03987,22.44413],[114.03986,22.44413],[114.03985,22.44412],[114.03984,22.44412],[114.03984,22.44412],[114.03983,22.44412],[114.03982,22.44411],[114.03982,22.44411],[114.03981,22.4441],[114.0398,22.4441],[114.0398,22.4441],[114.03979,22.44409],[114.03979,22.44409],[114.03979,22.44408],[114.03978,22.44407],[114.03977,22.44407],[114.03977,22.44406],[114.03977,22.44406],[114.03976,22.44405],[114.03976,22.44404],[114.03976,22.44404],[114.03975,22.44403],[114.03975,22.44402],[114.03975,22.44401],[114.03974,22.44401],[114.03974,22.444],[114.03974,22.44399],[114.03974,22.44399],[114.03974,22.44398],[114.03977,22.44379],[114.03977,22.44377],[114.03978,22.44371],[114.03978,22.4437],[114.03978,22.4437],[114.03979,22.44367],[114.03979,22.44367],[114.03979,22.44365],[114.03979,22.44364],[114.03979,22.44363],[114.03979,22.44362],[114.0398,22.44361],[114.0398,22.44361],[114.0398,22.44359],[114.0398,22.44359],[114.0398,22.44358],[114.0398,22.44358],[114.0398,22.44357],[114.0398,22.44356],[114.0398,22.44356],[114.0398,22.44355],[114.03981,22.44354],[114.03981,22.44354],[114.03981,22.44353],[114.03981,22.44353],[114.03981,22.44352],[114.03981,22.44352],[114.03981,22.44352],[114.03981,22.44351],[114.03981,22.4435],[114.03981,22.4435],[114.03981,22.4435],[114.03981,22.44349],[114.03981,22.44348],[114.03981,22.44348],[114.03981,22.44348],[114.03981,22.44347],[114.03981,22.44347],[114.03982,22.44347],[114.03982,22.44346],[114.03982,22.44346],[114.03982,22.44346],[114.03982,22.44345],[114.03982,22.44345],[114.03982,22.44344],[114.03982,22.44344],[114.03982,22.44344],[114.03982,22.44343],[114.03982,22.44343],[114.03982,22.44343],[114.03982,22.44342],[114.03982,22.44342],[114.03982,22.44342],[114.03982,22.44341],[114.03982,22.44341],[114.03982,22.44341],[114.03982,22.4434],[114.03982,22.4434],[114.03982,22.4434],[114.03982,22.44339],[114.03982,22.44339],[114.03982,22.44339],[114.03982,22.44338],[114.03982,22.44338],[114.03982,22.44338],[114.03982,22.44337],[114.03982,22.44337],[114.03982,22.44337],[114.03982,22.44336],[114.03982,22.44336],[114.03983,22.44335],[114.03983,22.44335],[114.03983,22.44335],[114.03983,22.44334],[114.03983,22.44334],[114.03983,22.44333],[114.03983,22.44333],[114.03983,22.44333],[114.03983,22.44332],[114.03983,22.44332],[114.03983,22.44331],[114.03983,22.44331],[114.03983,22.44331],[114.03983,22.4433],[114.03983,22.4433],[114.03983,22.44329],[114.03983,22.44329],[114.03983,22.44328],[114.03983,22.44328],[114.03983,22.44327],[114.03983,22.44327],[114.03983,22.44326],[114.03983,22.44326],[114.03983,22.44325],[114.03983,22.44325],[114.03983,22.44324],[114.03983,22.44324],[114.03983,22.44323],[114.03983,22.44322],[114.03983,22.44322],[114.03983,22.44321],[114.03983,22.4432],[114.03984,22.4432],[114.03984,22.44319],[114.03984,22.44319],[114.03984,22.44317],[114.03984,22.44317],[114.03984,22.44316],[114.03984,22.44315],[114.03984,22.44314],[114.03984,22.44314],[114.03984,22.44312],[114.03984,22.44311],[114.03984,22.44309],[114.03984,22.44309],[114.03984,22.44305],[114.03984,22.44305],[114.03984,22.44303],[114.03982,22.4421],[114.03982,22.44208],[114.03981,22.44191],[114.03981,22.4419],[114.03981,22.44189],[114.03981,22.44188],[114.03981,22.44187],[114.03981,22.44185],[114.03981,22.44184],[114.03981,22.44183],[114.03981,22.44181],[114.03981,22.4418],[114.03981,22.44179],[114.03981,22.44177],[114.03981,22.44176],[114.03981,22.44175],[114.0398,22.44174],[114.0398,22.44173],[114.0398,22.44173],[114.0398,22.44172],[114.0398,22.44172],[114.0398,22.44171],[114.0398,22.44171],[114.0398,22.4417],[114.0398,22.44169],[114.0398,22.44169],[114.0398,22.44168],[114.0398,22.44168],[114.0398,22.44167],[114.0398,22.44167],[114.0398,22.44166],[114.0398,22.44166],[114.0398,22.44165],[114.0398,22.44165],[114.0398,22.44164],[114.0398,22.44164],[114.0398,22.44163],[114.0398,22.44162],[114.0398,22.44162],[114.0398,22.44161],[114.03979,22.44161],[114.03979,22.4416],[114.03979,22.4416],[114.03979,22.44159],[114.03979,22.44159],[114.03979,22.44158],[114.03979,22.44158],[114.03979,22.44157],[114.03979,22.44157],[114.03979,22.44156],[114.03979,22.44155],[114.03979,22.44155],[114.03979,22.44154],[114.03979,22.44154],[114.03979,22.44153],[114.03979,22.44153],[114.03979,22.44152],[114.03979,22.44152],[114.03979,22.44151],[114.03979,22.44151],[114.03978,22.4415],[114.03978,22.4415],[114.03978,22.44149],[114.03978,22.44148],[114.03978,22.44148],[114.03978,22.44147],[114.03978,22.44147],[114.03978,22.44146],[114.03978,22.44146],[114.03978,22.44145],[114.03978,22.44145],[114.03978,22.44144],[114.03978,22.44144],[114.03978,22.44143],[114.03978,22.44143],[114.03978,22.44142],[114.03978,22.44141],[114.03978,22.44141],[114.03978,22.4414],[114.03977,22.4414],[114.03977,22.44139],[114.03977,22.44139],[114.03977,22.44138],[114.03977,22.44138],[114.03977,22.44137],[114.03977,22.44137],[114.03977,22.44136],[114.03977,22.44136],[114.03977,22.44135],[114.03977,22.44134],[114.03977,22.44134],[114.03977,22.44133],[114.03977,22.44133],[114.03977,22.44132],[114.03977,22.44132],[114.03977,22.44131],[114.03976,22.44131],[114.03976,22.4413],[114.03976,22.4413],[114.03976,22.44129],[114.03976,22.44129],[114.03976,22.44128],[114.03976,22.44127],[114.03976,22.44127],[114.03976,22.44126],[114.03976,22.44126],[114.03976,22.44125],[114.03976,22.44125],[114.03976,22.44124],[114.03976,22.44124],[114.03975,22.44123],[114.03975,22.44123],[114.03975,22.44122],[114.03975,22.44122],[114.03975,22.44121],[114.03975,22.4412],[114.03975,22.4412],[114.03975,22.44119],[114.03975,22.44119],[114.03975,22.44118],[114.03975,22.44118],[114.03975,22.44117],[114.03975,22.44117],[114.03974,22.44116],[114.03974,22.44116],[114.03974,22.44115],[114.03974,22.44115],[114.03974,22.44114],[114.03974,22.44113],[114.03974,22.44113],[114.03974,22.44112],[114.03974,22.44112],[114.03974,22.44111],[114.03974,22.44111],[114.03973,22.4411],[114.03973,22.4411],[114.03973,22.44109],[114.03973,22.44109],[114.03973,22.44108],[114.03973,22.44108],[114.03973,22.44107],[114.03973,22.44107],[114.03973,22.44106],[114.03973,22.44105],[114.03972,22.44105],[114.03972,22.44104],[114.03972,22.44104],[114.03972,22.44103],[114.03972,22.44103],[114.03972,22.44102],[114.03972,22.44102],[114.03972,22.44101],[114.03972,22.44101],[114.03971,22.441],[114.03971,22.441],[114.03971,22.44099],[114.03971,22.44099],[114.03971,22.44098],[114.03971,22.44097],[114.03971,22.44097],[114.03971,22.44096],[114.03971,22.44096],[114.03971,22.44095],[114.0397,22.44095],[114.0397,22.44094],[114.0397,22.44094],[114.0397,22.44093],[114.0397,22.44093],[114.0397,22.44092],[114.0397,22.44092],[114.0397,22.44091],[114.0397,22.44091],[114.03969,22.4409],[114.03969,22.44089],[114.03969,22.44089],[114.03969,22.44088],[114.03969,22.44088],[114.03969,22.44087],[114.03969,22.44087],[114.03969,22.44086],[114.03969,22.44086],[114.03968,22.44085],[114.03968,22.44085],[114.03968,22.44084],[114.03968,22.44084],[114.03968,22.44083],[114.03968,22.44083],[114.03968,22.44082],[114.03968,22.44081],[114.03968,22.44081],[114.03967,22.4408],[114.03967,22.44079],[114.03967,22.44079],[114.03967,22.44078],[114.03967,22.44078],[114.03967,22.44077],[114.03967,22.44077],[114.03967,22.44076],[114.03966,22.44076],[114.03966,22.44075],[114.03966,22.44075],[114.03966,22.44074],[114.03966,22.44074],[114.03966,22.44073],[114.03966,22.44072],[114.03966,22.44072],[114.03965,22.44071],[114.03965,22.44071],[114.03965,22.4407],[114.03965,22.4407],[114.03965,22.44069],[114.03965,22.44069],[114.03965,22.44068],[114.03965,22.44068],[114.03964,22.44067],[114.03964,22.44067],[114.03964,22.44066],[114.03964,22.44066],[114.03964,22.44065],[114.03964,22.44064],[114.03964,22.44064],[114.03964,22.44063],[114.03963,22.44062],[114.03963,22.44061],[114.03963,22.44061],[114.03963,22.4406],[114.03963,22.4406],[114.03963,22.44059],[114.03962,22.44059],[114.03962,22.44058],[114.03962,22.44058],[114.03962,22.44057],[114.03962,22.44057],[114.03962,22.44056],[114.03962,22.44056],[114.03962,22.44056],[114.03961,22.44055],[114.03961,22.44055],[114.03961,22.44054],[114.03961,22.44053],[114.03961,22.44053],[114.03961,22.44052],[114.03961,22.44052],[114.0396,22.44052],[114.0396,22.44052],[114.0396,22.44051],[114.0396,22.44051],[114.0396,22.4405],[114.0396,22.4405],[114.0396,22.44049],[114.0396,22.44049],[114.0396,22.44048],[114.03959,22.44048],[114.03959,22.44047],[114.03959,22.44047],[114.03959,22.44046],[114.03959,22.44046],[114.03959,22.44045],[114.03959,22.44045],[114.03958,22.44044],[114.03958,22.44043],[114.03958,22.44043],[114.03958,22.44042],[114.03958,22.44042],[114.03958,22.44041],[114.03958,22.44041],[114.03957,22.4404],[114.03957,22.4404],[114.03957,22.44039],[114.03957,22.44039],[114.03957,22.44038],[114.03957,22.44038],[114.03957,22.44037],[114.03956,22.44036],[114.03956,22.44036],[114.03956,22.44035],[114.03956,22.44035],[114.03956,22.44034],[114.03956,22.44034],[114.03956,22.44033],[114.03955,22.44033],[114.03955,22.44032],[114.03955,22.44032],[114.03955,22.44031],[114.03955,22.44031],[114.03955,22.4403],[114.03955,22.4403],[114.03954,22.4403],[114.03954,22.44029],[114.03954,22.44029],[114.03954,22.44028],[114.03954,22.44028],[114.03954,22.44027],[114.03953,22.44026],[114.03953,22.44026],[114.03953,22.44025],[114.03953,22.44025],[114.03953,22.44024],[114.03953,22.44024],[114.03952,22.44023],[114.03952,22.44023],[114.03952,22.44022],[114.03952,22.44022],[114.03952,22.44021],[114.03951,22.44021],[114.03951,22.4402],[114.03951,22.4402],[114.03951,22.44019],[114.03951,22.44019],[114.0395,22.44018],[114.0395,22.44018],[114.0395,22.44017],[114.0395,22.44017],[114.0395,22.44016],[114.03949,22.44016],[114.03949,22.44015],[114.03949,22.44015],[114.03949,22.44014],[114.03949,22.44014],[114.03949,22.44013],[114.03948,22.44013],[114.03948,22.44013],[114.03948,22.44012],[114.03948,22.44012],[114.03948,22.44011],[114.03948,22.44011],[114.03947,22.4401],[114.03947,22.4401],[114.03947,22.4401],[114.03947,22.44009],[114.03947,22.44009],[114.03947,22.44009],[114.03947,22.44008],[114.03946,22.44008],[114.03946,22.44007],[114.03946,22.44007],[114.03946,22.44006],[114.03946,22.44005],[114.03945,22.44005],[114.03945,22.44004],[114.03945,22.44004],[114.03945,22.44003],[114.03945,22.44003],[114.03945,22.44002],[114.03944,22.44002],[114.03944,22.44001],[114.03944,22.44001],[114.03944,22.44],[114.03944,22.44],[114.03943,22.43999],[114.03943,22.43999],[114.03943,22.43998],[114.03943,22.43998],[114.03943,22.43997],[114.03943,22.43997],[114.03942,22.43996],[114.03942,22.43996],[114.03942,22.43995],[114.03942,22.43995],[114.03942,22.43994],[114.03941,22.43994],[114.03941,22.43994],[114.03941,22.43993],[114.03941,22.43993],[114.03941,22.43992],[114.03941,22.43992],[114.0394,22.43991],[114.0394,22.43991],[114.0394,22.4399],[114.0394,22.4399],[114.0394,22.4399],[114.0394,22.43989],[114.03939,22.43989],[114.03939,22.43988],[114.03939,22.43988],[114.03939,22.43987],[114.03939,22.43987],[114.03938,22.43986],[114.03938,22.43986],[114.03938,22.43985],[114.03938,22.43984],[114.03938,22.43984],[114.03937,22.43983],[114.03937,22.43983],[114.03937,22.43982],[114.03937,22.43982],[114.03936,22.43981],[114.03936,22.43981],[114.03936,22.4398],[114.03936,22.4398],[114.03936,22.43979],[114.03935,22.43978],[114.03935,22.43978],[114.03935,22.43977],[114.03935,22.43977],[114.03934,22.43976],[114.03934,22.43976],[114.03934,22.43975],[114.03934,22.43974],[114.03933,22.43974],[114.03933,22.43973],[114.03933,22.43973],[114.03933,22.43972],[114.03932,22.43972],[114.03932,22.43971],[114.03932,22.4397],[114.03931,22.4397],[114.03931,22.43969],[114.03931,22.43969],[114.03931,22.43968],[114.0393,22.43967],[114.0393,22.43967],[114.0393,22.43966],[114.0393,22.43966],[114.03929,22.43965],[114.03929,22.43964],[114.03929,22.43964],[114.03928,22.43963],[114.03928,22.43963],[114.03928,22.43962],[114.03928,22.43961],[114.03927,22.43961],[114.03927,22.4396],[114.03927,22.43959],[114.03926,22.43959],[114.03926,22.43958],[114.03926,22.43958],[114.03926,22.43957],[114.03925,22.43956],[114.03925,22.43956],[114.03925,22.43955],[114.03925,22.43955],[114.03924,22.43954],[114.03924,22.43953],[114.03924,22.43953],[114.03923,22.43952],[114.03923,22.43952],[114.03923,22.43951],[114.03922,22.4395],[114.03922,22.4395],[114.03922,22.43949],[114.03921,22.43948],[114.03921,22.43947],[114.0392,22.43946],[114.0392,22.43946],[114.0392,22.43945],[114.0392,22.43944],[114.03919,22.43944],[114.03919,22.43943],[114.03919,22.43942],[114.03918,22.43942],[114.03918,22.43941],[114.03917,22.4394],[114.03917,22.43939],[114.03917,22.43939],[114.03916,22.43938],[114.03916,22.43937],[114.03915,22.43936],[114.03915,22.43935],[114.03915,22.43935],[114.03914,22.43934],[114.03914,22.43934],[114.03914,22.43933],[114.03913,22.43932],[114.03913,22.43932],[114.03913,22.43931],[114.03913,22.4393],[114.03912,22.4393],[114.03912,22.43929],[114.03912,22.43929],[114.03911,22.43928],[114.03911,22.43928],[114.03911,22.43927],[114.0391,22.43926],[114.0391,22.43926],[114.0391,22.43925],[114.0391,22.43925],[114.03909,22.43924],[114.03909,22.43924],[114.03909,22.43923],[114.03908,22.43922],[114.03908,22.43922],[114.03908,22.43921],[114.03907,22.43921],[114.03907,22.4392],[114.03907,22.43919],[114.03906,22.43919],[114.03906,22.43918],[114.03906,22.43918],[114.03905,22.43917],[114.03905,22.43916],[114.03905,22.43916],[114.03904,22.43915],[114.03904,22.43915],[114.03904,22.43914],[114.03904,22.43914],[114.03903,22.43913],[114.03903,22.43912],[114.03903,22.43912],[114.03902,22.43911],[114.03902,22.43911],[114.03902,22.4391],[114.03901,22.4391],[114.03901,22.43909],[114.03901,22.43908],[114.039,22.43908],[114.039,22.43907],[114.03899,22.43906],[114.03899,22.43906],[114.03899,22.43905],[114.03899,22.43905],[114.03898,22.43904],[114.03898,22.43904],[114.03898,22.43903],[114.03897,22.43903],[114.03897,22.43902],[114.03897,22.43902],[114.03896,22.43901],[114.03896,22.439],[114.03896,22.439],[114.03895,22.43899],[114.03895,22.43899],[114.03895,22.43898],[114.03894,22.43898],[114.03894,22.43897],[114.03894,22.43897],[114.03893,22.43896],[114.03893,22.43896],[114.03893,22.43895],[114.03892,22.43894],[114.03892,22.43894],[114.03892,22.43894],[114.03891,22.43893],[114.03891,22.43893],[114.03891,22.43892],[114.03891,22.43891],[114.0389,22.43891],[114.0389,22.4389],[114.03889,22.4389],[114.03889,22.43889],[114.03889,22.43889],[114.03888,22.43888],[114.03888,22.43888],[114.03888,22.43887],[114.03887,22.43887],[114.03887,22.43886],[114.03887,22.43885],[114.03886,22.43885],[114.03886,22.43884],[114.03886,22.43884],[114.03885,22.43883],[114.03885,22.43883],[114.03885,22.43883],[114.03885,22.43882],[114.03884,22.43882],[114.03884,22.43881],[114.03884,22.43881],[114.03883,22.4388],[114.03883,22.4388],[114.03883,22.43879],[114.03882,22.43879],[114.03882,22.43878],[114.03882,22.43878],[114.03882,22.43877],[114.03881,22.43877],[114.03881,22.43877],[114.03881,22.43876],[114.0388,22.43876],[114.0388,22.43875],[114.0388,22.43875],[114.03879,22.43874],[114.03879,22.43874],[114.03879,22.43873],[114.03879,22.43873],[114.03878,22.43872],[114.03878,22.43872],[114.03878,22.43871],[114.03877,22.43871],[114.03877,22.4387],[114.03876,22.4387],[114.03876,22.43869],[114.03876,22.43869],[114.03875,22.43868],[114.03875,22.43868],[114.03875,22.43867],[114.03875,22.43867],[114.03874,22.43867],[114.03874,22.43866],[114.03874,22.43866],[114.03873,22.43866],[114.03873,22.43865],[114.03873,22.43865],[114.03873,22.43864],[114.03872,22.43864],[114.03872,22.43863],[114.03872,22.43863],[114.03871,22.43862],[114.03871,22.43862],[114.03871,22.43861],[114.0387,22.43861],[114.0387,22.4386],[114.0387,22.4386],[114.03869,22.4386],[114.03869,22.43859],[114.03869,22.43859],[114.03868,22.43858],[114.03868,22.43858],[114.03868,22.43857],[114.03867,22.43857],[114.03867,22.43856],[114.03867,22.43856],[114.03866,22.43855],[114.03866,22.43854],[114.03865,22.43854],[114.03865,22.43853],[114.03865,22.43853],[114.03864,22.43852],[114.03864,22.43852],[114.03864,22.43851],[114.03863,22.43851],[114.03863,22.4385],[114.03863,22.4385],[114.03862,22.4385],[114.03862,22.43849],[114.03862,22.43849],[114.03862,22.43849],[114.03861,22.43848],[114.03861,22.43848],[114.03861,22.43847],[114.0386,22.43847],[114.0386,22.43846],[114.0386,22.43846],[114.03859,22.43845],[114.03859,22.43845],[114.03858,22.43844],[114.03858,22.43843],[114.03858,22.43843],[114.03857,22.43843],[114.03857,22.43842],[114.03856,22.43841],[114.03854,22.43838],[114.03853,22.43837],[114.03853,22.43837],[114.03853,22.43836],[114.03852,22.43836],[114.03852,22.43835],[114.03852,22.43835],[114.03851,22.43834],[114.0385,22.43833],[114.0385,22.43833],[114.03849,22.43832],[114.03849,22.43832],[114.03849,22.43831],[114.03848,22.43831],[114.03848,22.4383],[114.03848,22.4383],[114.03847,22.43829],[114.03847,22.43829],[114.03847,22.43828],[114.03846,22.43828],[114.03846,22.43828],[114.03846,22.43827],[114.03845,22.43827],[114.03845,22.43826],[114.03845,22.43826],[114.03844,22.43825],[114.03844,22.43825],[114.03843,22.43824],[114.03843,22.43824],[114.03843,22.43823],[114.03842,22.43823],[114.03842,22.43822],[114.03842,22.43822],[114.03841,22.43822],[114.03841,22.43821],[114.03841,22.43821],[114.0384,22.4382],[114.0384,22.4382],[114.03839,22.43819],[114.03839,22.43819],[114.03839,22.43819],[114.03838,22.43818],[114.03838,22.43818],[114.03838,22.43817],[114.03837,22.43817],[114.03837,22.43816],[114.03837,22.43816],[114.03836,22.43815],[114.03836,22.43815],[114.03836,22.43815],[114.03835,22.43814],[114.03835,22.43814],[114.03835,22.43813],[114.03834,22.43813],[114.03834,22.43812],[114.03834,22.43812],[114.03833,22.43812],[114.03833,22.43811],[114.03832,22.43811],[114.03832,22.4381],[114.03832,22.43809],[114.03831,22.43809],[114.0383,22.43808],[114.0383,22.43808],[114.0383,22.43807],[114.03829,22.43807],[114.03829,22.43806],[114.03828,22.43806],[114.03828,22.43805],[114.03828,22.43805],[114.03827,22.43804],[114.03826,22.43803],[114.03826,22.43803],[114.03826,22.43802],[114.03825,22.43801],[114.03825,22.43801],[114.03824,22.43801],[114.03824,22.438],[114.03824,22.438],[114.03823,22.43799],[114.03823,22.43799],[114.03822,22.43798],[114.03822,22.43798],[114.03821,22.43797],[114.03821,22.43796],[114.03821,22.43796],[114.0382,22.43795],[114.0382,22.43795],[114.03819,22.43794],[114.03819,22.43794],[114.03819,22.43794],[114.03818,22.43793],[114.03818,22.43793],[114.03818,22.43792],[114.03817,22.43792],[114.03817,22.43791],[114.03816,22.43791],[114.03816,22.43791],[114.03816,22.4379],[114.03815,22.4379],[114.03815,22.43789],[114.03815,22.43789],[114.03814,22.43788],[114.03814,22.43788],[114.03814,22.43788],[114.03813,22.43787],[114.03813,22.43787],[114.03813,22.43786],[114.03812,22.43786],[114.03812,22.43785],[114.03811,22.43785],[114.03811,22.43785],[114.03811,22.43784],[114.0381,22.43784],[114.0381,22.43783],[114.0381,22.43783],[114.03809,22.43782],[114.03809,22.43782],[114.03808,22.43782],[114.03808,22.43781],[114.03808,22.43781],[114.03807,22.4378],[114.03807,22.4378],[114.03807,22.4378],[114.03806,22.43779],[114.03806,22.43779],[114.03806,22.43778],[114.03805,22.43778],[114.03805,22.43777],[114.03804,22.43777],[114.03804,22.43777],[114.03804,22.43776],[114.03803,22.43776],[114.03803,22.43775],[114.03802,22.43775],[114.03802,22.43774],[114.03801,22.43774],[114.03801,22.43773],[114.03801,22.43773],[114.038,22.43772],[114.038,22.43772],[114.03799,22.43772],[114.03799,22.43771],[114.03799,22.43771],[114.03798,22.43771],[114.03798,22.4377],[114.03798,22.4377],[114.03797,22.43769],[114.03797,22.43769],[114.03796,22.43768],[114.03796,22.43768],[114.03796,22.43768],[114.03795,22.43767],[114.03795,22.43767],[114.03794,22.43766],[114.03794,22.43766],[114.03794,22.43766],[114.03793,22.43765],[114.03793,22.43765],[114.03793,22.43764],[114.03792,22.43764],[114.03792,22.43764],[114.03791,22.43763],[114.03791,22.43763],[114.03791,22.43762],[114.0379,22.43762],[114.0379,22.43762],[114.0379,22.43761],[114.03789,22.43761],[114.03789,22.4376],[114.03788,22.4376],[114.03788,22.4376],[114.03788,22.43759],[114.03787,22.43759],[114.03787,22.43758],[114.03786,22.43758],[114.03786,22.43757],[114.03786,22.43757],[114.03785,22.43757],[114.03785,22.43756],[114.03785,22.43756],[114.03784,22.43755],[114.03784,22.43755],[114.03783,22.43755],[114.03783,22.43754],[114.03783,22.43754],[114.03782,22.43753],[114.03782,22.43753],[114.03781,22.43753],[114.03781,22.43752],[114.03781,22.43752],[114.0378,22.43751],[114.0378,22.43751],[114.03779,22.43751],[114.03779,22.4375],[114.03779,22.4375],[114.03778,22.43749],[114.03778,22.43749],[114.03778,22.43749],[114.03777,22.43748],[114.03777,22.43748],[114.03776,22.43747],[114.03776,22.43747],[114.03776,22.43747],[114.03775,22.43746],[114.03775,22.43746],[114.03774,22.43745],[114.03774,22.43745],[114.03774,22.43745],[114.03773,22.43744],[114.03773,22.43744],[114.03773,22.43743],[114.03772,22.43743],[114.03772,22.43743],[114.03771,22.43742],[114.03771,22.43742],[114.03771,22.43741],[114.0377,22.43741],[114.0377,22.43741],[114.03769,22.4374],[114.03769,22.4374],[114.03769,22.43739],[114.03768,22.43739],[114.03768,22.43739],[114.03768,22.43739],[114.03767,22.43738],[114.03767,22.43738],[114.03767,22.43737],[114.03766,22.43737],[114.03765,22.43736],[114.03765,22.43736],[114.03764,22.43735],[114.03764,22.43735],[114.03763,22.43734],[114.03763,22.43734],[114.03762,22.43733],[114.03762,22.43733],[114.03762,22.43732],[114.03761,22.43732],[114.03761,22.43732],[114.0376,22.43731],[114.0376,22.43731],[114.03759,22.43731],[114.03759,22.4373],[114.03759,22.4373],[114.03758,22.43729],[114.03758,22.43729],[114.03757,22.43729],[114.03757,22.43728],[114.03757,22.43728],[114.03756,22.43727],[114.03756,22.43727],[114.03755,22.43726],[114.03755,22.43726],[114.03754,22.43726],[114.03754,22.43725],[114.03753,22.43725],[114.03753,22.43724],[114.03753,22.43724],[114.03752,22.43724],[114.03752,22.43723],[114.03751,22.43723],[114.0375,22.43722],[114.0375,22.43722],[114.0375,22.43721],[114.03749,22.43721],[114.03749,22.43721],[114.03748,22.4372],[114.03748,22.43719],[114.03747,22.43719],[114.03747,22.43719],[114.03746,22.43718],[114.03745,22.43718],[114.03745,22.43717],[114.03745,22.43717],[114.03744,22.43716],[114.03744,22.43716],[114.03743,22.43716],[114.03743,22.43715],[114.03743,22.43715],[114.03742,22.43715],[114.03742,22.43714],[114.03741,22.43714],[114.03741,22.43713],[114.0374,22.43713],[114.0374,22.43713],[114.0374,22.43712],[114.03739,22.43712],[114.03739,22.43712],[114.03738,22.43711],[114.03682,22.43663],[114.03658,22.43643],[114.03647,22.43634],[114.03643,22.4363],[114.03642,22.4363],[114.03642,22.4363],[114.03642,22.43629],[114.03641,22.43629],[114.03641,22.43629],[114.0364,22.43628],[114.03639,22.43628],[114.03639,22.43627],[114.03638,22.43627],[114.03637,22.43626],[114.03636,22.43626],[114.03636,22.43625],[114.03635,22.43625],[114.03634,22.43624],[114.03634,22.43624],[114.03633,22.43624],[114.03633,22.43623],[114.03632,22.43623],[114.03632,22.43623],[114.03632,22.43622],[114.03631,22.43622],[114.03631,22.43622],[114.0363,22.43621],[114.0363,22.43621],[114.03629,22.4362],[114.03628,22.4362],[114.03628,22.4362],[114.03627,22.43619],[114.03627,22.43619],[114.03626,22.43619],[114.03626,22.43618],[114.03626,22.43618],[114.03625,22.43617],[114.03624,22.43617],[114.03624,22.43617],[114.03623,22.43616],[114.03623,22.43616],[114.03622,22.43616],[114.03622,22.43615],[114.03621,22.43615],[114.03621,22.43615],[114.0362,22.43614],[114.0362,22.43614],[114.03619,22.43614],[114.03619,22.43614],[114.03619,22.43613],[114.03618,22.43613],[114.03618,22.43613],[114.03617,22.43612],[114.03617,22.43612],[114.03616,22.43612],[114.03616,22.43611],[114.03615,22.43611],[114.03615,22.43611],[114.03614,22.4361],[114.03614,22.4361],[114.03613,22.4361],[114.03613,22.43609],[114.03612,22.43609],[114.03612,22.43609],[114.03611,22.43608],[114.03611,22.43608],[114.0361,22.43608],[114.0361,22.43607],[114.03609,22.43607],[114.03609,22.43607],[114.03608,22.43606],[114.03608,22.43606],[114.03607,22.43606],[114.03607,22.43606],[114.03606,22.43605],[114.03606,22.43605],[114.03605,22.43605],[114.03605,22.43604],[114.03604,22.43604],[114.03604,22.43604],[114.03603,22.43603],[114.03603,22.43603],[114.03602,22.43603],[114.03601,22.43602],[114.03601,22.43602],[114.036,22.43602],[114.036,22.43601],[114.03599,22.43601],[114.03599,22.43601],[114.03598,22.436],[114.03598,22.436],[114.03597,22.436],[114.03597,22.43599],[114.03596,22.43599],[114.03596,22.43599],[114.03596,22.43598],[114.03595,22.43598],[114.03595,22.43597],[114.03594,22.43597],[114.03594,22.43597],[114.03594,22.43596],[114.03593,22.43595],[114.03593,22.43595],[114.03593,22.43595],[114.03592,22.43594],[114.03592,22.43594],[114.03592,22.43593],[114.03591,22.43593],[114.03591,22.43592],[114.03591,22.43592],[114.03591,22.43591],[114.0359,22.4359],[114.0359,22.4359],[114.0359,22.43589],[114.0359,22.43589],[114.0359,22.43588],[114.0359,22.43588],[114.03589,22.43587],[114.03589,22.43587],[114.03589,22.43586],[114.03589,22.43586],[114.03588,22.43585],[114.03588,22.43585],[114.03588,22.43584],[114.03588,22.43584],[114.03588,22.43583],[114.03587,22.43583],[114.03587,22.43582],[114.03587,22.43581],[114.03586,22.43579],[114.03585,22.43578],[114.03584,22.43577],[114.03584,22.43577],[114.03584,22.43576],[114.03583,22.43576],[114.03583,22.43575],[114.03583,22.43575],[114.03582,22.43574],[114.03582,22.43574],[114.03582,22.43574],[114.03581,22.43573],[114.03581,22.43573],[114.03581,22.43572],[114.0358,22.43572],[114.0358,22.43571],[114.0358,22.43571],[114.03579,22.43571],[114.03579,22.4357],[114.03578,22.4357],[114.03578,22.43569],[114.03578,22.43569],[114.03577,22.43569],[114.03577,22.43568],[114.03576,22.43568],[114.03576,22.43567],[114.03576,22.43567],[114.03575,22.43567],[114.03575,22.43566],[114.03574,22.43566],[114.03574,22.43566],[114.03573,22.43565],[114.03573,22.43565],[114.03573,22.43565],[114.03572,22.43564],[114.03572,22.43564],[114.03571,22.43564],[114.03571,22.43563],[114.0357,22.43563],[114.0357,22.43563],[114.03569,22.43562],[114.03569,22.43562],[114.03568,22.43561],[114.03567,22.43561],[114.03567,22.43561],[114.03566,22.43561],[114.03566,22.4356],[114.03565,22.4356],[114.03564,22.4356],[114.03564,22.4356],[114.03563,22.43559],[114.03563,22.43559],[114.03562,22.43559],[114.03561,22.43558],[114.03561,22.43558],[114.0356,22.43558],[114.0356,22.43558],[114.03559,22.43558],[114.03559,22.43557],[114.03558,22.43557],[114.03557,22.43557],[114.03557,22.43557],[114.03556,22.43557],[114.03556,22.43557],[114.03555,22.43557],[114.03555,22.43556],[114.03554,22.43556],[114.03554,22.43556],[114.03553,22.43556],[114.03552,22.43556],[114.03551,22.43556],[114.03551,22.43555],[114.0355,22.43555],[114.0355,22.43555],[114.03549,22.43555],[114.03549,22.43555],[114.03548,22.43554],[114.03547,22.43554],[114.03546,22.43554],[114.03546,22.43553],[114.03545,22.43553],[114.03544,22.43552],[114.03532,22.43543],[114.03532,22.43543],[114.03531,22.43542],[114.03531,22.43542],[114.0353,22.43542],[114.0353,22.43541],[114.0353,22.43541],[114.03529,22.43541],[114.03529,22.4354],[114.03528,22.4354],[114.03528,22.4354],[114.03527,22.43539],[114.03527,22.43539],[114.03526,22.43539],[114.03526,22.43538],[114.03525,22.43538],[114.03525,22.43538],[114.03524,22.43537],[114.03524,22.43537],[114.03523,22.43537],[114.03523,22.43536],[114.03522,22.43536],[114.03522,22.43536],[114.03522,22.43535],[114.03521,22.43535],[114.03521,22.43535],[114.0352,22.43534],[114.03519,22.43534],[114.03519,22.43533],[114.03518,22.43533],[114.03518,22.43533],[114.03517,22.43532],[114.03517,22.43532],[114.03516,22.43532],[114.03516,22.43531],[114.03516,22.43531],[114.03515,22.43531],[114.03515,22.4353],[114.03514,22.4353],[114.03514,22.4353],[114.03513,22.43529],[114.03512,22.43529],[114.03512,22.43528],[114.03511,22.43528],[114.03511,22.43528],[114.0351,22.43527],[114.0351,22.43527],[114.03509,22.43526],[114.03509,22.43526],[114.03508,22.43526],[114.03508,22.43525],[114.03507,22.43525],[114.03507,22.43525],[114.03506,22.43524],[114.03506,22.43524],[114.03505,22.43524],[114.03505,22.43523],[114.03504,22.43523],[114.03504,22.43523],[114.03503,22.43522],[114.03503,22.43522],[114.03502,22.43522],[114.03502,22.43522],[114.03501,22.43521],[114.03501,22.43521],[114.035,22.4352],[114.035,22.4352],[114.03499,22.4352],[114.03499,22.43519],[114.03498,22.43519],[114.03498,22.43519],[114.03497,22.43519],[114.03497,22.43518],[114.03496,22.43518],[114.03496,22.43518],[114.03495,22.43517],[114.03495,22.43517],[114.03494,22.43517],[114.03494,22.43516],[114.03493,22.43516],[114.03493,22.43516],[114.03492,22.43515],[114.03491,22.43515],[114.0349,22.43514],[114.0349,22.43514],[114.03477,22.43506],[114.03476,22.43506],[114.03476,22.43505],[114.03475,22.43505],[114.03475,22.43505],[114.03474,22.43505],[114.03474,22.43504],[114.03473,22.43504],[114.03472,22.43503],[114.03471,22.43502],[114.0347,22.43502],[114.0347,22.43502],[114.03469,22.43502],[114.03469,22.43501],[114.03468,22.43501],[114.03467,22.435],[114.03467,22.435],[114.03466,22.435],[114.03465,22.43499],[114.03465,22.43499],[114.03464,22.43499],[114.03464,22.43498],[114.03463,22.43498],[114.03463,22.43498],[114.03462,22.43498],[114.03461,22.43497],[114.03461,22.43497],[114.0346,22.43497],[114.0346,22.43496],[114.03459,22.43496],[114.03458,22.43495],[114.03458,22.43495],[114.03457,22.43495],[114.03457,22.43495],[114.03456,22.43494],[114.03456,22.43494],[114.03455,22.43494],[114.03455,22.43493],[114.03454,22.43493],[114.03453,22.43493],[114.03453,22.43493],[114.03452,22.43492],[114.03452,22.43492],[114.03451,22.43492],[114.03451,22.43492],[114.0345,22.43491],[114.0345,22.43491],[114.03449,22.43491],[114.03449,22.43491],[114.03448,22.4349],[114.03447,22.4349],[114.03447,22.43489],[114.03446,22.43489],[114.03445,22.43489],[114.03445,22.43489],[114.03444,22.43488],[114.03444,22.43488],[114.03443,22.43488],[114.03443,22.43488],[114.03442,22.43487],[114.03442,22.43487],[114.03441,22.43487],[114.0344,22.43486],[114.0344,22.43486],[114.03439,22.43486],[114.03439,22.43486],[114.03438,22.43485],[114.03437,22.43485],[114.03436,22.43485],[114.03436,22.43484],[114.03435,22.43484],[114.03435,22.43484],[114.03434,22.43483],[114.03433,22.43483],[114.03433,22.43483],[114.03432,22.43483],[114.03432,22.43482],[114.03431,22.43482],[114.03431,22.43482],[114.0343,22.43481],[114.03429,22.43481],[114.03428,22.43481],[114.03427,22.4348],[114.03427,22.4348],[114.03426,22.4348],[114.03426,22.4348],[114.03425,22.43479],[114.03424,22.43479],[114.03424,22.43479],[114.03423,22.43478],[114.03422,22.43478],[114.03422,22.43478],[114.03421,22.43477],[114.0342,22.43477],[114.0342,22.43477],[114.03419,22.43477],[114.03418,22.43476],[114.03418,22.43476],[114.03417,22.43476],[114.03416,22.43475],[114.03415,22.43475],[114.03415,22.43475],[114.03414,22.43474],[114.03413,22.43474],[114.03412,22.43474],[114.03412,22.43473],[114.03411,22.43473],[114.0341,22.43473],[114.03409,22.43473],[114.03409,22.43472],[114.03408,22.43472],[114.03407,22.43472],[114.03407,22.43471],[114.03406,22.43471],[114.03406,22.43471],[114.03307,22.43433],[114.03307,22.43433],[114.03306,22.43433],[114.03306,22.43432],[114.03305,22.43432],[114.03305,22.43432],[114.03304,22.43432],[114.03303,22.43431],[114.03303,22.43431],[114.03302,22.43431],[114.03301,22.43431],[114.03301,22.43431],[114.033,22.4343],[114.033,22.4343],[114.03299,22.4343],[114.03299,22.4343],[114.03298,22.4343],[114.03298,22.43429],[114.03297,22.43429],[114.03297,22.43429],[114.03296,22.43429],[114.03295,22.43429],[114.03295,22.43429],[114.03294,22.43428],[114.03294,22.43428],[114.03293,22.43428],[114.03293,22.43428],[114.03292,22.43428],[114.03292,22.43427],[114.03291,22.43427],[114.03291,22.43427],[114.0329,22.43427],[114.03289,22.43427],[114.03289,22.43426],[114.03288,22.43426],[114.03288,22.43426],[114.03287,22.43426],[114.03287,22.43426],[114.03286,22.43425],[114.03286,22.43425],[114.03285,22.43425],[114.03285,22.43425],[114.03284,22.43425],[114.03283,22.43425],[114.03283,22.43424],[114.03282,22.43424],[114.03282,22.43424],[114.03281,22.43424],[114.03281,22.43424],[114.0328,22.43423],[114.0328,22.43423],[114.03279,22.43423],[114.03279,22.43423],[114.03278,22.43423],[114.03277,22.43423],[114.03277,22.43422],[114.03276,22.43422],[114.03276,22.43422],[114.03275,22.43422],[114.03275,22.43422],[114.03274,22.43421],[114.03274,22.43421],[114.03273,22.43421],[114.03272,22.43421],[114.03272,22.43421],[114.03271,22.43421],[114.03271,22.4342],[114.0327,22.4342],[114.0327,22.4342],[114.03269,22.4342],[114.03269,22.4342],[114.03268,22.4342],[114.03267,22.43419],[114.03267,22.43419],[114.03266,22.43419],[114.03266,22.43419],[114.03265,22.43419],[114.03265,22.43419],[114.03264,22.43418],[114.03264,22.43418],[114.03263,22.43418],[114.03262,22.43418],[114.03262,22.43418],[114.03261,22.43418],[114.03261,22.43418],[114.0326,22.43417],[114.0326,22.43417],[114.03259,22.43417],[114.03259,22.43417],[114.03258,22.43417],[114.03257,22.43417],[114.03257,22.43416],[114.03256,22.43416],[114.03256,22.43416],[114.03255,22.43416],[114.03255,22.43416],[114.03254,22.43416],[114.03254,22.43416],[114.03253,22.43415],[114.03252,22.43415],[114.03252,22.43415],[114.03251,22.43415],[114.03251,22.43415],[114.0325,22.43415],[114.0325,22.43415],[114.03249,22.43414],[114.03248,22.43414],[114.03248,22.43414],[114.03247,22.43414],[114.03247,22.43414],[114.03246,22.43414],[114.03246,22.43414],[114.03245,22.43413],[114.03245,22.43413],[114.03244,22.43413],[114.03243,22.43413],[114.03243,22.43413],[114.03242,22.43413],[114.03242,22.43412],[114.03241,22.43412],[114.03241,22.43412],[114.0324,22.43412],[114.0324,22.43412],[114.03239,22.43412],[114.03238,22.43412],[114.03238,22.43412],[114.03237,22.43411],[114.03237,22.43411],[114.03236,22.43411],[114.03236,22.43411],[114.03235,22.43411],[114.03234,22.43411],[114.03234,22.43411],[114.03233,22.4341],[114.03233,22.4341],[114.03232,22.4341],[114.03232,22.4341],[114.03231,22.4341],[114.0323,22.4341],[114.0323,22.4341],[114.03229,22.43409],[114.03229,22.43409],[114.03228,22.43409],[114.03228,22.43409],[114.03227,22.43409],[114.03227,22.43409],[114.03226,22.43409],[114.03225,22.43409],[114.03225,22.43408],[114.03224,22.43408],[114.03224,22.43408],[114.03223,22.43408],[114.03223,22.43408],[114.03222,22.43408],[114.03221,22.43408],[114.03221,22.43407],[114.0322,22.43407],[114.0322,22.43407],[114.03219,22.43407],[114.03219,22.43407],[114.03218,22.43407],[114.03217,22.43407],[114.03217,22.43407],[114.03216,22.43406],[114.03216,22.43406],[114.03215,22.43406],[114.03215,22.43406],[114.03214,22.43406],[114.03214,22.43406],[114.03213,22.43406],[114.03212,22.43405],[114.03212,22.43405],[114.03211,22.43405],[114.03211,22.43405],[114.0321,22.43405],[114.0321,22.43405],[114.03209,22.43405],[114.03208,22.43405],[114.03208,22.43404],[114.03207,22.43404],[114.03207,22.43404],[114.03206,22.43404],[114.03206,22.43404],[114.03205,22.43404],[114.03204,22.43404],[114.03204,22.43404],[114.03203,22.43404],[114.03203,22.43403],[114.03202,22.43403],[114.03202,22.43403],[114.03201,22.43403],[114.032,22.43403],[114.032,22.43403],[114.03199,22.43403],[114.03199,22.43403],[114.03198,22.43402],[114.03197,22.43402],[114.03196,22.43402],[114.03196,22.43402],[114.03195,22.43402],[114.03195,22.43402],[114.03194,22.43402],[114.03194,22.43402],[114.03193,22.43401],[114.03192,22.43401],[114.03192,22.43401],[114.03191,22.43401],[114.0319,22.43401],[114.0319,22.43401],[114.03187,22.434],[114.03186,22.434],[114.03186,22.434],[114.03185,22.434],[114.03184,22.434],[114.03184,22.434],[114.03183,22.434],[114.03183,22.434],[114.03182,22.434],[114.03181,22.434],[114.03181,22.43399],[114.0318,22.43399],[114.0318,22.43399],[114.03179,22.43399],[114.03178,22.43399],[114.03177,22.43399],[114.03177,22.43399],[114.03176,22.43399],[114.03176,22.43399],[114.03175,22.43398],[114.03174,22.43398],[114.03174,22.43398],[114.03173,22.43398],[114.03173,22.43398],[114.03172,22.43398],[114.03171,22.43398],[114.03171,22.43398],[114.0317,22.43398],[114.0317,22.43398],[114.03169,22.43398],[114.03168,22.43398],[114.03167,22.43397],[114.03167,22.43397],[114.03166,22.43397],[114.03165,22.43397],[114.03165,22.43397],[114.03164,22.43397],[114.03163,22.43397],[114.03163,22.43397],[114.03162,22.43397],[114.03161,22.43397],[114.03161,22.43397],[114.0316,22.43396],[114.03159,22.43396],[114.03159,22.43396],[114.03158,22.43396],[114.03157,22.43396],[114.03156,22.43396],[114.03155,22.43396],[114.03155,22.43396],[114.03154,22.43396],[114.03153,22.43396],[114.03152,22.43396],[114.03152,22.43395],[114.03151,22.43395],[114.0315,22.43395],[114.0315,22.43395],[114.03149,22.43395],[114.03148,22.43395],[114.03148,22.43395],[114.03147,22.43395],[114.03146,22.43395],[114.03145,22.43395],[114.03145,22.43395],[114.03144,22.43395],[114.03143,22.43394],[114.03143,22.43394],[114.03142,22.43394],[114.03141,22.43394],[114.0314,22.43394],[114.03139,22.43394],[114.03139,22.43394],[114.03138,22.43394],[114.03137,22.43394],[114.03137,22.43394],[114.03136,22.43394],[114.03135,22.43394],[114.03134,22.43393],[114.03134,22.43393],[114.03133,22.43393],[114.03132,22.43393],[114.03131,22.43393],[114.0313,22.43393],[114.0313,22.43393],[114.03129,22.43393],[114.03128,22.43393],[114.03128,22.43393],[114.03127,22.43393],[114.03126,22.43393],[114.03125,22.43393],[114.03125,22.43393],[114.03124,22.43392],[114.03123,22.43392],[114.03122,22.43392],[114.03121,22.43392],[114.03121,22.43392],[114.0312,22.43392],[114.03119,22.43392],[114.03119,22.43392],[114.03118,22.43392],[114.03117,22.43392],[114.03116,22.43392],[114.03116,22.43392],[114.03115,22.43392],[114.03114,22.43392],[114.03113,22.43392],[114.03113,22.43392],[114.03112,22.43391],[114.03111,22.43391],[114.0311,22.43391],[114.0311,22.43391],[114.03109,22.43391],[114.03108,22.43391],[114.03108,22.43391],[114.03107,22.43391],[114.03106,22.43391],[114.03105,22.43391],[114.03105,22.43391],[114.03104,22.43391],[114.03103,22.43391],[114.03102,22.43391],[114.03102,22.43391],[114.03101,22.43391],[114.031,22.43391],[114.03099,22.43391],[114.03099,22.43391],[114.03098,22.43391],[114.03097,22.43391],[114.03096,22.43391],[114.03096,22.43391],[114.03095,22.4339],[114.03094,22.4339],[114.03094,22.4339],[114.03093,22.4339],[114.03092,22.4339],[114.03091,22.4339],[114.03091,22.4339],[114.0309,22.4339],[114.03089,22.4339],[114.03088,22.4339],[114.03087,22.4339],[114.03086,22.4339],[114.03085,22.4339],[114.03083,22.4339],[114.03081,22.4339],[114.0308,22.4339],[114.03079,22.4339],[114.03078,22.4339],[114.03077,22.4339],[114.03076,22.4339],[114.03075,22.4339],[114.03074,22.4339],[114.03072,22.4339],[114.03072,22.4339],[114.0307,22.4339],[114.03069,22.4339],[114.03068,22.4339],[114.03067,22.4339],[114.03067,22.4339],[114.03066,22.4339],[114.03065,22.4339],[114.03064,22.4339],[114.03064,22.4339],[114.03062,22.4339],[114.03061,22.43389],[114.03059,22.43389],[114.03058,22.43389],[114.03057,22.43389],[114.03054,22.43389],[114.03043,22.43389],[114.03043,22.43389],[114.03042,22.4339],[114.0304,22.4339],[114.03039,22.4339],[114.03038,22.4339],[114.03037,22.4339],[114.03035,22.4339],[114.03035,22.4339],[114.03034,22.4339],[114.03033,22.4339],[114.03032,22.4339],[114.03031,22.4339],[114.0303,22.4339],[114.0303,22.4339],[114.03029,22.4339],[114.03028,22.4339],[114.03027,22.4339],[114.03026,22.4339],[114.03025,22.4339],[114.03024,22.4339],[114.03023,22.4339],[114.03023,22.4339],[114.03022,22.4339],[114.03021,22.4339],[114.03021,22.4339],[114.0302,22.4339],[114.03019,22.4339],[114.03018,22.4339],[114.03018,22.4339],[114.03017,22.4339],[114.03016,22.4339],[114.03016,22.4339],[114.03015,22.4339],[114.03014,22.4339],[114.03013,22.4339],[114.03013,22.4339],[114.03012,22.43391],[114.03011,22.43391],[114.0301,22.43391],[114.0301,22.43391],[114.03009,22.43391],[114.03008,22.43391],[114.03007,22.43391],[114.03007,22.43391],[114.03006,22.43391],[114.03005,22.43391],[114.03005,22.43391],[114.03004,22.43391],[114.03003,22.43391],[114.03002,22.43391],[114.03002,22.43391],[114.03001,22.43391],[114.03,22.43391],[114.03,22.43391],[114.02999,22.43391],[114.02998,22.43391],[114.02998,22.43392],[114.02997,22.43392],[114.02996,22.43392],[114.02996,22.43392],[114.02995,22.43392],[114.02994,22.43392],[114.02994,22.43392],[114.02993,22.43392],[114.02992,22.43392],[114.02991,22.43392],[114.02991,22.43392],[114.0299,22.43392],[114.02989,22.43392],[114.02988,22.43393],[114.02988,22.43393],[114.02987,22.43393],[114.02986,22.43393],[114.02985,22.43393],[114.02985,22.43393],[114.02984,22.43393],[114.02983,22.43393],[114.02982,22.43393],[114.02982,22.43393],[114.02981,22.43393],[114.0298,22.43394],[114.02979,22.43394],[114.02979,22.43394],[114.02978,22.43394],[114.02977,22.43394],[114.02976,22.43394],[114.02976,22.43394],[114.02975,22.43394],[114.02974,22.43394],[114.02974,22.43394],[114.02973,22.43394],[114.02972,22.43394],[114.02972,22.43395],[114.02971,22.43395],[114.0297,22.43395],[114.0297,22.43395],[114.02969,22.43395],[114.02968,22.43395],[114.02967,22.43395],[114.02967,22.43395],[114.02966,22.43395],[114.02965,22.43395],[114.02965,22.43395],[114.02964,22.43396],[114.02963,22.43396],[114.02963,22.43396],[114.02962,22.43396],[114.02962,22.43396],[114.02961,22.43396],[114.02961,22.43396],[114.0296,22.43396],[114.02959,22.43396],[114.02958,22.43396],[114.02957,22.43396],[114.02957,22.43397],[114.02956,22.43397],[114.02955,22.43397],[114.02955,22.43397],[114.02954,22.43397],[114.02953,22.43397],[114.02952,22.43397],[114.02952,22.43397],[114.02951,22.43397],[114.0295,22.43398],[114.02949,22.43398],[114.02949,22.43398],[114.02948,22.43398],[114.02948,22.43398],[114.02947,22.43398],[114.02946,22.43398],[114.02946,22.43398],[114.02946,22.43398],[114.02945,22.43398],[114.02945,22.43398],[114.02944,22.43399],[114.02943,22.43399],[114.02943,22.43399],[114.02864,22.43412],[114.02861,22.43412],[114.02856,22.43413],[114.02767,22.43428],[114.02689,22.43442],[114.0265,22.43449],[114.02543,22.43467],[114.0249,22.43477],[114.02486,22.43477],[114.0248,22.43478],[114.02479,22.43479],[114.02477,22.43479],[114.02415,22.4349],[114.02354,22.435],[114.02321,22.43506],[114.02253,22.43518],[114.02225,22.43523],[114.02205,22.43527],[114.0216,22.43535],[114.02141,22.43538],[114.02134,22.4354],[114.02128,22.43541],[114.02021,22.43562],[114.02014,22.43563],[114.02013,22.43563],[114.02012,22.43564],[114.02012,22.43564],[114.02011,22.43564],[114.0201,22.43564],[114.0201,22.43564],[114.02009,22.43564],[114.02009,22.43564],[114.02008,22.43564],[114.02007,22.43565],[114.02007,22.43565],[114.02006,22.43565],[114.02006,22.43565],[114.02005,22.43565],[114.02004,22.43565],[114.02003,22.43565],[114.02003,22.43566],[114.02002,22.43566],[114.02002,22.43566],[114.02001,22.43566],[114.02001,22.43566],[114.02,22.43566],[114.01999,22.43566],[114.01999,22.43566],[114.01998,22.43567],[114.01998,22.43567],[114.01997,22.43567],[114.01997,22.43567],[114.01996,22.43567],[114.01995,22.43567],[114.01994,22.43567],[114.01994,22.43568],[114.01993,22.43568],[114.01993,22.43568],[114.01991,22.43568],[114.01991,22.43568],[114.0199,22.43568],[114.0199,22.43568],[114.01989,22.43569],[114.01989,22.43569],[114.01988,22.43569],[114.01988,22.43569],[114.01987,22.43569],[114.01986,22.43569],[114.01986,22.43569],[114.01985,22.4357],[114.01984,22.4357],[114.01984,22.4357],[114.01983,22.4357],[114.01982,22.4357],[114.01982,22.4357],[114.01981,22.4357],[114.0198,22.43571],[114.01979,22.43571],[114.01978,22.43571],[114.01978,22.43571],[114.01977,22.43572],[114.01976,22.43572],[114.01975,22.43572],[114.01974,22.43572],[114.01974,22.43572],[114.01973,22.43573],[114.01973,22.43573],[114.01972,22.43573],[114.01972,22.43573],[114.0197,22.43573],[114.01969,22.43574],[114.01969,22.43574],[114.01968,22.43574],[114.01968,22.43574],[114.01967,22.43574],[114.01966,22.43575],[114.01965,22.43575],[114.01965,22.43575],[114.01964,22.43575],[114.01964,22.43575],[114.01963,22.43575],[114.01963,22.43575],[114.01962,22.43576],[114.01961,22.43576],[114.01961,22.43576],[114.0196,22.43576],[114.01959,22.43576],[114.01959,22.43577],[114.01958,22.43577],[114.01958,22.43577],[114.01958,22.43577],[114.01957,22.43577],[114.01956,22.43577],[114.01956,22.43577],[114.01955,22.43577],[114.01955,22.43578],[114.01954,22.43578],[114.01954,22.43578],[114.01953,22.43578],[114.01953,22.43578],[114.01952,22.43578],[114.01951,22.43579],[114.01951,22.43579],[114.0195,22.43579],[114.0195,22.43579],[114.01949,22.43579],[114.01949,22.43579],[114.01948,22.4358],[114.01947,22.4358],[114.01947,22.4358],[114.01946,22.4358],[114.01946,22.4358],[114.01945,22.4358],[114.01945,22.4358],[114.01944,22.43581],[114.01944,22.43581],[114.01943,22.43581],[114.01942,22.43581],[114.01942,22.43581],[114.01941,22.43581],[114.01941,22.43582],[114.0194,22.43582],[114.0194,22.43582],[114.01939,22.43582],[114.01939,22.43582],[114.01938,22.43582],[114.01937,22.43583],[114.01937,22.43583],[114.01936,22.43583],[114.01935,22.43583],[114.01935,22.43584],[114.01934,22.43584],[114.01934,22.43584],[114.01933,22.43584],[114.01932,22.43584],[114.01932,22.43584],[114.01931,22.43585],[114.01931,22.43585],[114.0193,22.43585],[114.0193,22.43585],[114.01929,22.43585],[114.01929,22.43585],[114.01928,22.43586],[114.01927,22.43586],[114.01926,22.43586],[114.01926,22.43586],[114.01925,22.43587],[114.01925,22.43587],[114.01924,22.43587],[114.01924,22.43587],[114.01923,22.43587],[114.01922,22.43588],[114.01922,22.43588],[114.01921,22.43588],[114.01921,22.43588],[114.0192,22.43588],[114.0192,22.43588],[114.01919,22.43589],[114.01919,22.43589],[114.01918,22.43589],[114.01918,22.43589],[114.01917,22.43589],[114.01916,22.4359],[114.01916,22.4359],[114.01915,22.4359],[114.01915,22.4359],[114.01914,22.4359],[114.01914,22.43591],[114.01913,22.43591],[114.01909,22.43592],[114.01909,22.43592],[114.01908,22.43592],[114.01907,22.43593],[114.01907,22.43593],[114.01906,22.43593],[114.01906,22.43593],[114.01905,22.43594],[114.01904,22.43594],[114.01903,22.43594],[114.01903,22.43594],[114.01902,22.43595],[114.01902,22.43595],[114.01901,22.43595],[114.01901,22.43595],[114.019,22.43595],[114.019,22.43596],[114.01899,22.43596],[114.01899,22.43596],[114.01898,22.43596],[114.01897,22.43596],[114.01897,22.43597],[114.01896,22.43597],[114.01895,22.43597],[114.01895,22.43598],[114.01894,22.43598],[114.01894,22.43598],[114.01893,22.43598],[114.01892,22.43598],[114.01892,22.43599],[114.01891,22.43599],[114.01891,22.43599],[114.0189,22.43599],[114.0189,22.43599],[114.01889,22.436],[114.01889,22.436],[114.01888,22.436],[114.01888,22.436],[114.01887,22.436],[114.01887,22.43601],[114.01886,22.43601],[114.01885,22.43601],[114.01884,22.43602],[114.01883,22.43602],[114.01883,22.43602],[114.01882,22.43602],[114.01882,22.43603],[114.01881,22.43603],[114.0188,22.43603],[114.01879,22.43604],[114.01878,22.43604],[114.01878,22.43604],[114.01877,22.43604],[114.01877,22.43605],[114.01876,22.43605],[114.01876,22.43605],[114.01875,22.43605],[114.01875,22.43605],[114.01874,22.43606],[114.01873,22.43606],[114.01873,22.43606],[114.01872,22.43606],[114.01872,22.43607],[114.01871,22.43607],[114.0187,22.43607],[114.01857,22.43613],[114.01844,22.43619],[114.01838,22.43622],[114.01815,22.43632],[114.01789,22.43644],[114.01782,22.43647],[114.01779,22.43649],[114.01742,22.43666],[114.01707,22.43681],[114.01699,22.43683],[114.01672,22.43695],[114.01655,22.43703],[114.01648,22.43707],[114.01641,22.4371],[114.01638,22.43711],[114.01634,22.43713],[114.01626,22.43716],[114.01619,22.43719],[114.01611,22.43721],[114.01602,22.43724],[114.01593,22.43726],[114.01583,22.43728],[114.01581,22.43728],[114.01577,22.43729],[114.01571,22.43731],[114.01566,22.43731],[114.0156,22.43732],[114.0156,22.43732],[114.01555,22.43732],[114.01553,22.43732],[114.01551,22.43732],[114.01547,22.43732],[114.01547,22.43732],[114.01546,22.43732],[114.01546,22.43733],[114.01553,22.43755],[114.01558,22.43774],[114.01571,22.43819],[114.01573,22.43824],[114.01574,22.43826],[114.01592,22.43888],[114.01593,22.4389],[114.01595,22.43897],[114.01645,22.44067],[114.01728,22.44385],[114.0173,22.44395],[114.0173,22.44395],[114.01725,22.44394],[114.0164,22.44385],[114.01583,22.44376],[114.01524,22.44366],[114.01413,22.44342],[114.01396,22.44337],[114.01376,22.44331],[114.01365,22.44356],[114.01344,22.44366],[114.01339,22.4437],[114.01335,22.44378],[114.01332,22.44383],[114.01329,22.44387],[114.01325,22.4439],[114.0132,22.44393],[114.01317,22.44395],[114.01319,22.44404],[114.01319,22.44404],[114.01314,22.44405],[114.01285,22.44405],[114.01271,22.44408],[114.01271,22.44408],[114.01272,22.44404],[114.01271,22.44402],[114.01269,22.44395],[114.01266,22.44383],[114.01264,22.44375],[114.01263,22.44371],[114.01262,22.44365],[114.01262,22.44364],[114.01261,22.44363],[114.01261,22.44362],[114.0126,22.44362],[114.01259,22.44362],[114.01258,22.44362],[114.01257,22.44361],[114.01254,22.44361],[114.0125,22.4436],[114.01247,22.4436],[114.01244,22.4436],[114.0124,22.44359],[114.0123,22.44354],[114.01188,22.44358],[114.01182,22.4436],[114.01191,22.44381],[114.01191,22.44381],[114.01195,22.4438],[114.01199,22.44382],[114.01228,22.44382],[114.01228,22.44382],[114.01228,22.44382],[114.01228,22.44383],[114.01228,22.44383],[114.01228,22.44383],[114.01228,22.44384],[114.01228,22.44384],[114.01228,22.44384],[114.01228,22.44384],[114.01228,22.44385],[114.01228,22.44385],[114.01228,22.44385],[114.01228,22.44386],[114.01228,22.44386],[114.01228,22.44386],[114.01228,22.44387],[114.01228,22.44387],[114.01228,22.44387],[114.01228,22.44387],[114.01228,22.44388],[114.01228,22.44388],[114.01228,22.44388],[114.01228,22.44388],[114.01228,22.44389],[114.01228,22.44389],[114.01228,22.44389],[114.01228,22.4439],[114.01228,22.4439],[114.01228,22.4439],[114.01228,22.44391],[114.01228,22.44391],[114.01228,22.44391],[114.01228,22.44391],[114.01228,22.44392],[114.01228,22.44392],[114.01228,22.44392],[114.01228,22.44392],[114.01228,22.44393],[114.01228,22.44393],[114.01228,22.44393],[114.01229,22.44394],[114.01229,22.44394],[114.01229,22.44394],[114.01229,22.44395],[114.01229,22.44395],[114.01229,22.44395],[114.01229,22.44395],[114.01229,22.44396],[114.01229,22.44396],[114.01229,22.44396],[114.01229,22.44397],[114.01229,22.44397],[114.01229,22.44397],[114.01229,22.44397],[114.01229,22.44398],[114.01229,22.44398],[114.01229,22.44398],[114.01229,22.44398],[114.0123,22.44399],[114.0123,22.44399],[114.0123,22.44399],[114.0123,22.44399],[114.0123,22.444],[114.0123,22.444],[114.0123,22.444],[114.0123,22.444],[114.0123,22.44401],[114.0123,22.44401],[114.0123,22.44401],[114.0123,22.44402],[114.0123,22.44402],[114.0123,22.44402],[114.01231,22.44402],[114.01231,22.44403],[114.01231,22.44403],[114.01231,22.44403],[114.01231,22.44403],[114.01231,22.44404],[114.01231,22.44404],[114.01231,22.44404],[114.01231,22.44404],[114.01231,22.44405],[114.01231,22.44405],[114.01231,22.44405],[114.01232,22.44405],[114.01232,22.44406],[114.01232,22.44406],[114.01232,22.44406],[114.01232,22.44406],[114.01232,22.44407],[114.01232,22.44407],[114.01232,22.44407],[114.01232,22.44407],[114.01232,22.44408],[114.01233,22.44408],[114.01233,22.44408],[114.01233,22.44408],[114.01233,22.44409],[114.01233,22.44409],[114.01233,22.44409],[114.01233,22.44409],[114.01233,22.4441],[114.01233,22.4441],[114.01234,22.4441],[114.01234,22.4441],[114.01235,22.4441],[114.01235,22.44411],[114.01235,22.44411],[114.01235,22.44412],[114.01235,22.44413],[114.01235,22.44413],[114.01235,22.44413],[114.01235,22.44414],[114.01236,22.44414],[114.01236,22.44414],[114.01236,22.44415],[114.01236,22.44415],[114.01236,22.44415],[114.01237,22.44415],[114.01237,22.44416],[114.01237,22.44416],[114.01237,22.44416],[114.01237,22.44416],[114.01237,22.44417],[114.01237,22.44417],[114.01237,22.44417],[114.01238,22.44417],[114.01238,22.44418],[114.01238,22.44418],[114.01238,22.44418],[114.01238,22.44418],[114.01238,22.44418],[114.01238,22.44419],[114.01239,22.44419],[114.01239,22.44419],[114.01239,22.44419],[114.01239,22.4442],[114.01239,22.4442],[114.01239,22.4442],[114.0124,22.4442],[114.0124,22.4442],[114.0124,22.44421],[114.0124,22.44421],[114.0124,22.44421],[114.0124,22.44421],[114.01241,22.44422],[114.01241,22.44422],[114.01241,22.44422],[114.01241,22.44422],[114.01241,22.44422],[114.01242,22.44423],[114.01242,22.44423],[114.01242,22.44423],[114.01242,22.44423],[114.01242,22.44423],[114.01243,22.44424],[114.01243,22.44424],[114.01243,22.44424],[114.01243,22.44424],[114.01243,22.44424],[114.01244,22.44425],[114.01244,22.44425],[114.01244,22.44425],[114.01244,22.44425],[114.01244,22.44425],[114.01245,22.44425],[114.01245,22.44426],[114.01245,22.44426],[114.01245,22.44426],[114.01246,22.44426],[114.01246,22.44426],[114.01246,22.44427],[114.01246,22.44427],[114.01246,22.44427],[114.01247,22.44427],[114.01247,22.44427],[114.01247,22.44427],[114.01247,22.44427],[114.01248,22.44428],[114.01248,22.44428],[114.01248,22.44428],[114.01248,22.44428],[114.01249,22.44428],[114.01249,22.44428],[114.01249,22.44429],[114.01249,22.44429],[114.0125,22.44429],[114.0125,22.4443],[114.0125,22.4443],[114.0125,22.4443],[114.01251,22.44429],[114.01251,22.44429],[114.01251,22.44429],[114.01252,22.4443],[114.01253,22.4443],[114.01253,22.44431],[114.01253,22.44431],[114.01254,22.44431],[114.01254,22.44431],[114.01255,22.44431],[114.01255,22.44431],[114.01255,22.44431],[114.01255,22.44431],[114.01256,22.44431],[114.01256,22.44431],[114.01256,22.44431],[114.01257,22.44432],[114.01257,22.44432],[114.01258,22.44432],[114.01258,22.44432],[114.01259,22.44433],[114.01259,22.44433],[114.01259,22.44433],[114.01259,22.44433],[114.0126,22.44433],[114.0126,22.44433],[114.01261,22.44433],[114.01261,22.44434],[114.01261,22.44434],[114.01261,22.44434],[114.01261,22.44434],[114.01261,22.44435],[114.01262,22.44435],[114.01262,22.44436],[114.01263,22.44437],[114.01263,22.44438],[114.01263,22.44438],[114.01263,22.44439],[114.01266,22.44447],[114.01272,22.44463],[114.01248,22.44474],[114.01253,22.445],[114.01255,22.44532],[114.01256,22.44538],[114.01261,22.44535],[114.01263,22.44535],[114.01264,22.44534],[114.01265,22.44534],[114.01266,22.44534],[114.01267,22.44534],[114.0127,22.44535],[114.01275,22.44536],[114.01279,22.44537],[114.01282,22.44538],[114.01285,22.44538],[114.01288,22.44539],[114.01298,22.44543],[114.01298,22.44564],[114.01304,22.44563],[114.01308,22.44564],[114.01309,22.44574],[114.01315,22.44586],[114.01317,22.44596],[114.01308,22.44599],[114.01302,22.446],[114.01298,22.446],[114.01294,22.44601],[114.01294,22.44603],[114.01296,22.44608],[114.01297,22.44612],[114.01298,22.44616],[114.01299,22.44619],[114.013,22.44622],[114.01302,22.44622],[114.01308,22.44623],[114.0131,22.44623],[114.01315,22.44623],[114.0132,22.44624],[114.01321,22.44624],[114.01344,22.44626],[114.01389,22.44621],[114.0139,22.44624],[114.01391,22.44628],[114.01398,22.44638],[114.014,22.44643],[114.01401,22.44647],[114.01402,22.44657],[114.01401,22.44674],[114.01401,22.44684],[114.01398,22.4471],[114.01385,22.4471],[114.01354,22.44712],[114.0134,22.44714],[114.01335,22.44715],[114.01316,22.44718],[114.01307,22.4472],[114.01302,22.44721],[114.01292,22.44723],[114.01287,22.44724],[114.01282,22.44726],[114.01269,22.4473],[114.0126,22.44733],[114.01245,22.44739],[114.0123,22.44746],[114.01216,22.44753],[114.01204,22.4476],[114.01196,22.44764],[114.01189,22.44769],[114.01182,22.44774],[114.01176,22.44778],[114.01152,22.44798],[114.01101,22.44841],[114.01077,22.4486],[114.01069,22.44867],[114.01055,22.44879],[114.01044,22.4489],[114.01032,22.44901],[114.01021,22.44913],[114.0102,22.44915],[114.01015,22.4492],[114.01008,22.44929],[114.01001,22.44937],[114.00993,22.44947],[114.00986,22.44957],[114.00976,22.44972],[114.00971,22.4498],[114.00965,22.4499],[114.00957,22.45003],[114.0095,22.45016],[114.00947,22.45023],[114.00941,22.45035],[114.00939,22.45041],[114.00936,22.45047],[114.00932,22.45058],[114.0093,22.45063],[114.00928,22.45068],[114.00924,22.4508],[114.0092,22.4509],[114.00916,22.45105],[114.00915,22.45111],[114.00913,22.45119],[114.00911,22.45125],[114.0091,22.45132],[114.00909,22.45137],[114.00907,22.45148],[114.00893,22.45146],[114.00889,22.45145],[114.00886,22.45145],[114.00869,22.45143],[114.00866,22.45142],[114.00842,22.45138],[114.00821,22.45133],[114.00803,22.45128],[114.00794,22.45124],[114.00787,22.45122],[114.00786,22.45122],[114.00771,22.45115],[114.0076,22.45109],[114.00758,22.45108],[114.00749,22.45102],[114.00736,22.45092],[114.00733,22.4509],[114.00724,22.45081],[114.0071,22.45067],[114.00688,22.45043],[114.00671,22.45024],[114.0067,22.45023],[114.00655,22.45007],[114.00646,22.44999],[114.00634,22.44989],[114.00629,22.44984],[114.00619,22.44975],[114.006,22.44989],[114.00583,22.4497],[114.0056,22.44944],[114.00526,22.44909],[114.00394,22.44772],[114.00391,22.44769],[114.00317,22.44698],[114.00277,22.44662],[114.00259,22.44656],[114.00241,22.44649],[114.00211,22.44641],[114.00189,22.44637],[114.00168,22.44635],[114.00139,22.44634],[114.00114,22.44634],[114.0009,22.44635],[114.00072,22.44637],[114.00057,22.44639],[114.00029,22.44644],[114.00002,22.44649],[113.99974,22.44656],[113.99957,22.4466],[113.99951,22.44661],[113.99944,22.44663],[113.99929,22.44666],[113.99928,22.44666],[113.99926,22.44667],[113.99916,22.44669],[113.9985,22.4467],[113.99785,22.4467],[113.99727,22.44665],[113.99769,22.44755],[113.99802,22.44831],[113.99833,22.4491],[113.99854,22.44985],[113.998,22.45078],[113.99731,22.45195],[113.99668,22.45294],[113.99652,22.45318],[113.99645,22.4533],[113.9959,22.45417],[113.99427,22.45673],[113.99411,22.457],[113.99387,22.45744],[113.99386,22.45748],[113.9936,22.458],[113.99339,22.4584],[113.99326,22.45865],[113.99324,22.45871],[113.99308,22.45909],[113.99292,22.45957],[113.99285,22.45979],[113.99276,22.46012],[113.99267,22.46048],[113.99256,22.46109],[113.99253,22.46133],[113.99252,22.46159],[113.99252,22.46159],[113.99252,22.4616],[113.99253,22.46176],[113.99253,22.46192],[113.99252,22.46212],[113.99252,22.4624],[113.99256,22.46267],[113.9926,22.46277],[113.99263,22.46281],[113.99268,22.46286],[113.99276,22.46291],[113.9929,22.46298],[113.99293,22.46299],[113.99298,22.46301],[113.99307,22.46304],[113.99323,22.46309],[113.99331,22.46311],[113.99356,22.46319],[113.99365,22.46325],[113.99373,22.4633],[113.99377,22.46332],[113.99381,22.46337],[113.99391,22.46343],[113.99398,22.46348],[113.9941,22.46358],[113.99413,22.46363],[113.99413,22.46367],[113.99413,22.4637],[113.99412,22.46374],[113.9941,22.46379],[113.99408,22.46381],[113.99402,22.46389],[113.99397,22.46393],[113.99395,22.46394],[113.99392,22.46398],[113.9939,22.46403],[113.99389,22.46408],[113.99389,22.46414],[113.9939,22.46422],[113.99404,22.46443],[113.99409,22.46449],[113.99411,22.46452],[113.99411,22.46454],[113.99411,22.46458],[113.99409,22.46462],[113.99407,22.46465],[113.99404,22.46473],[113.99402,22.46477],[113.99402,22.46484],[113.99419,22.4654],[113.99434,22.46587],[113.99398,22.466],[113.99408,22.46687],[113.9942,22.46741],[113.99426,22.4676],[113.99435,22.46773],[113.99444,22.46783],[113.9947,22.46807],[113.99502,22.46834],[113.99557,22.46875],[113.99575,22.4689],[113.996,22.46913],[113.99626,22.46936],[113.99636,22.46959],[113.99655,22.47002],[113.99664,22.47021],[113.99667,22.47039],[113.99663,22.47059],[113.99658,22.47069],[113.9965,22.4708],[113.9965,22.47083],[113.99653,22.47094],[113.99659,22.47102],[113.99663,22.47114],[113.99676,22.47135],[113.99699,22.4718],[113.99705,22.47187],[113.99723,22.4722],[113.99732,22.4723],[113.99758,22.47251],[113.9978,22.47265],[113.998,22.47277],[113.99804,22.47278],[113.99807,22.4728],[113.99811,22.47281],[113.99832,22.47291],[113.99854,22.47311],[113.99872,22.47327],[113.99917,22.47294],[113.99917,22.47294],[113.99927,22.47316],[113.99929,22.47321],[113.99929,22.47324],[113.99929,22.47327],[113.99927,22.47331],[113.99924,22.47335],[113.99906,22.47358],[113.99917,22.47377],[113.99928,22.474],[113.99938,22.47416],[113.99942,22.47423],[113.99969,22.47431],[113.99999,22.47436],[114.00026,22.4744],[114.00042,22.47441],[114.00053,22.47442],[114.00082,22.47442],[114.00116,22.47442],[114.00182,22.47439],[114.00289,22.47432],[114.00371,22.47424],[114.00402,22.47422],[114.0043,22.47421],[114.0044,22.47422],[114.00453,22.47425],[114.005,22.47439],[114.00516,22.47445],[114.00521,22.47444],[114.00522,22.47444],[114.00531,22.47445],[114.00544,22.47446],[114.00555,22.47448],[114.00561,22.47451],[114.00582,22.47455],[114.00591,22.47456],[114.0061,22.47453],[114.00631,22.47451],[114.00659,22.4745],[114.00691,22.47448],[114.00712,22.47448],[114.00715,22.47447],[114.00725,22.4744],[114.00728,22.47439],[114.00742,22.47436],[114.00756,22.47433],[114.00767,22.47431],[114.00777,22.4743],[114.0079,22.47431],[114.00796,22.47433],[114.00802,22.47436],[114.00815,22.47419],[114.00862,22.47359],[114.00867,22.47362],[114.00882,22.47371],[114.00951,22.47419],[114.00966,22.47429],[114.00983,22.47441],[114.00999,22.47452],[114.01015,22.47463],[114.01016,22.47464],[114.01025,22.47471],[114.01032,22.47475],[114.0104,22.4748],[114.01094,22.47518],[114.01112,22.47496],[114.01132,22.47473],[114.01147,22.47455],[114.01147,22.47454],[114.01147,22.47454],[114.01152,22.47452],[114.01036,22.47605],[114.01039,22.4761],[114.011,22.47773],[114.01109,22.47787],[114.01116,22.47813],[114.01134,22.47849],[114.01131,22.47887],[114.01127,22.47902],[114.01123,22.47917],[114.01118,22.47922],[114.01115,22.47936],[114.01141,22.4801],[114.01157,22.48122],[114.01154,22.4813],[114.01162,22.48208],[114.01159,22.48222],[114.01168,22.48281],[114.01166,22.48299],[114.01176,22.48417],[114.01175,22.48461],[114.0115,22.48602],[114.01171,22.48611],[114.01192,22.48613],[114.01191,22.4863],[114.01204,22.48648],[114.0122,22.48656],[114.01224,22.48659],[114.01234,22.48647],[114.01243,22.48654],[114.01241,22.48657],[114.01235,22.48653],[114.01228,22.48663],[114.01296,22.48715],[114.01309,22.4872],[114.01406,22.4873],[114.01405,22.48733],[114.01365,22.48729],[114.01363,22.48728],[114.01308,22.48723],[114.01295,22.48717],[114.01287,22.48712],[114.01241,22.48677],[114.01225,22.48671],[114.0122,22.48668],[114.01144,22.4863],[114.01126,22.48624],[114.01109,22.48632],[114.01083,22.48655],[114.00995,22.48638],[114.00969,22.48644],[114.00968,22.48647],[114.00905,22.48658],[114.00917,22.48696],[114.00842,22.48716],[114.00837,22.4871],[114.0083,22.48717],[114.00823,22.48725],[114.00818,22.48729],[114.00811,22.48732],[114.00785,22.48738],[114.00767,22.48744],[114.0077,22.48753],[114.00766,22.48758],[114.00762,22.48761],[114.00752,22.48766],[114.00739,22.48768],[114.00735,22.48764],[114.00717,22.48768],[114.0071,22.48767],[114.00701,22.48761],[114.00688,22.48755],[114.00654,22.48755],[114.00625,22.48748],[114.00602,22.48754],[114.00568,22.4877],[114.00528,22.48782],[114.00492,22.48809],[114.00469,22.48817],[114.00421,22.48822],[114.00383,22.48829],[114.00383,22.48834],[114.00381,22.48842],[114.00373,22.48849],[114.0036,22.48856],[114.00358,22.48861],[114.00358,22.48865],[114.00362,22.48883],[114.00361,22.48889],[114.00354,22.48896],[114.00316,22.48911],[114.00312,22.4891],[114.00291,22.48918],[114.00253,22.48932],[114.00247,22.48931],[114.00246,22.4893],[114.00228,22.4893],[114.00219,22.4893],[114.00215,22.48928],[114.00209,22.48929],[114.00206,22.48927],[114.00194,22.48926],[114.00182,22.48923],[114.00175,22.48924],[114.00169,22.48924],[114.00153,22.48914],[114.00137,22.48915],[114.00135,22.48916],[114.00124,22.48919],[114.00066,22.4892],[114.00004,22.48916],[114.00001,22.48914],[113.99999,22.48911],[113.99993,22.48911],[113.99988,22.4891],[113.99981,22.48908],[113.99975,22.48905],[113.99971,22.48901],[113.99969,22.489],[113.99963,22.48899],[113.99953,22.48903],[113.99942,22.48907],[113.99939,22.48911],[113.99939,22.48916],[113.99937,22.48918],[113.99938,22.4892],[113.99942,22.48921],[113.99942,22.48924],[113.99941,22.48928],[113.99938,22.48932],[113.99938,22.4894],[113.99939,22.48944],[113.99939,22.48946],[113.99937,22.48949],[113.99936,22.48949],[113.99935,22.48949],[113.99934,22.48947],[113.99934,22.48943],[113.99934,22.48934],[113.99934,22.48924],[113.9993,22.48917],[113.99929,22.48916],[113.99924,22.48919],[113.99908,22.48927],[113.99895,22.48932],[113.99881,22.4893],[113.9987,22.4892],[113.99856,22.48914],[113.99851,22.48905],[113.99857,22.48899],[113.99856,22.48891],[113.9985,22.48882],[113.99838,22.48831],[113.99832,22.48825],[113.99833,22.48798],[113.9983,22.48769],[113.99814,22.48772],[113.99784,22.48732],[113.99779,22.48732],[113.99771,22.48728],[113.9977,22.48723],[113.99771,22.48722],[113.9976,22.48715],[113.99746,22.48697],[113.99743,22.487],[113.9974,22.48704],[113.99736,22.48707],[113.9973,22.48713],[113.9972,22.48721],[113.99715,22.48724],[113.99711,22.48728],[113.99708,22.4873],[113.99708,22.4873],[113.99708,22.48731],[113.99708,22.48732],[113.99709,22.48733],[113.99709,22.48733],[113.9971,22.48734],[113.99709,22.48736],[113.99706,22.48739],[113.99704,22.4874],[113.99694,22.48742],[113.99691,22.48742],[113.9969,22.48741],[113.99689,22.48741],[113.99688,22.4874],[113.99687,22.48739],[113.99687,22.48737],[113.99689,22.48734],[113.99698,22.48728],[113.99706,22.48722],[113.99715,22.48715],[113.99724,22.48708],[113.99734,22.48699],[113.99737,22.48696],[113.9974,22.48692],[113.99736,22.4869],[113.9974,22.48683],[113.9969,22.48656],[113.99677,22.48644],[113.99667,22.48643],[113.99664,22.48643],[113.9966,22.48639],[113.99657,22.4865],[113.99652,22.48652],[113.9965,22.48657],[113.99645,22.48662],[113.99643,22.48667],[113.9964,22.48674],[113.99646,22.48677],[113.99651,22.48673],[113.99651,22.48674],[113.99651,22.48683],[113.99647,22.48685],[113.99643,22.48683],[113.99638,22.48681],[113.99633,22.48675],[113.9963,22.48668],[113.99628,22.48661],[113.99629,22.48658],[113.99631,22.48657],[113.99635,22.4866],[113.99638,22.48656],[113.99642,22.48649],[113.9965,22.48644],[113.99648,22.48642],[113.99644,22.48643],[113.99638,22.48642],[113.99635,22.48639],[113.99631,22.48633],[113.99627,22.48635],[113.99621,22.48644],[113.99609,22.48652],[113.99601,22.48652],[113.99602,22.48644],[113.99614,22.48635],[113.99627,22.48627],[113.99632,22.48625],[113.99638,22.48624],[113.99642,22.48624],[113.99639,22.48622],[113.99633,22.48621],[113.99628,22.4862],[113.99629,22.48617],[113.99628,22.48616],[113.99617,22.48627],[113.99606,22.48633],[113.99594,22.48643],[113.99587,22.48648],[113.99585,22.48646],[113.99585,22.48644],[113.99588,22.48639],[113.99592,22.48637],[113.99597,22.4863],[113.99609,22.48624],[113.9962,22.48618],[113.99623,22.48614],[113.99624,22.48613],[113.9962,22.48605],[113.99615,22.48606],[113.99619,22.48598],[113.9962,22.48594],[113.99617,22.48591],[113.99612,22.48592],[113.99612,22.48591],[113.99618,22.48586],[113.99616,22.48583],[113.9961,22.48582],[113.99607,22.48587],[113.99601,22.48599],[113.99597,22.486],[113.99593,22.48598],[113.99592,22.48585],[113.99586,22.48581],[113.99578,22.48571],[113.99565,22.48582],[113.99558,22.48589],[113.99543,22.48608],[113.99544,22.48612],[113.99543,22.48613],[113.99542,22.48613],[113.99535,22.48612],[113.99535,22.48607],[113.99554,22.48588],[113.99564,22.48562],[113.99552,22.48549],[113.99558,22.48542],[113.99533,22.48487],[113.9952,22.48457],[113.99514,22.48445],[113.9951,22.48444],[113.99515,22.48432],[113.99512,22.48399],[113.99506,22.48393],[113.99508,22.48388],[113.99499,22.48306],[113.99488,22.48287],[113.99483,22.48234],[113.9947,22.4821],[113.99464,22.48187],[113.99443,22.48172],[113.99421,22.48126],[113.99419,22.48098],[113.99421,22.48086],[113.99416,22.48061],[113.99407,22.4803],[113.99396,22.48025],[113.99382,22.48026],[113.99349,22.48016],[113.99333,22.48015],[113.99329,22.48008],[113.99342,22.47995],[113.99349,22.47998],[113.99352,22.47989],[113.99348,22.47948],[113.99344,22.47937],[113.99338,22.47932],[113.99331,22.47927],[113.99323,22.47915],[113.99311,22.47876],[113.99311,22.4786],[113.99318,22.47845],[113.99312,22.47843],[113.99306,22.47838],[113.99304,22.47835],[113.99295,22.47815],[113.9928,22.47792],[113.99274,22.47767],[113.99276,22.4774],[113.99298,22.47734],[113.9931,22.47738],[113.99331,22.47749],[113.99334,22.4775],[113.99336,22.4775],[113.99336,22.47747],[113.99334,22.47745],[113.99316,22.47735],[113.99304,22.47729],[113.99292,22.47727],[113.99281,22.47732],[113.9926,22.47719],[113.9921,22.47701],[113.99185,22.47684],[113.9917,22.47673],[113.99164,22.47668],[113.99122,22.47623],[113.99096,22.47605],[113.99079,22.47599],[113.99056,22.47599],[113.99048,22.47598],[113.99037,22.47598],[113.99011,22.47587],[113.99001,22.47578],[113.98988,22.47549],[113.98951,22.475],[113.98916,22.47465],[113.98903,22.47443],[113.98858,22.47405],[113.98807,22.47377],[113.98794,22.4737],[113.98782,22.47363],[113.98774,22.47357],[113.98764,22.47364],[113.98759,22.47363],[113.98752,22.4736],[113.98735,22.47345],[113.98713,22.47318],[113.98692,22.47309],[113.98665,22.47304],[113.98645,22.47312],[113.98628,22.47313],[113.98622,22.47309],[113.98614,22.473],[113.98612,22.47296],[113.98615,22.47294],[113.98595,22.47275],[113.98573,22.47264],[113.98552,22.47235],[113.98543,22.47232],[113.98521,22.47232],[113.98499,22.47222],[113.98464,22.47151],[113.9846,22.4712],[113.98464,22.47108],[113.98475,22.47092],[113.98469,22.47071],[113.9842,22.47024],[113.98375,22.46964],[113.98357,22.4696],[113.98353,22.4695],[113.98312,22.46902],[113.98287,22.46886],[113.98265,22.46859],[113.98245,22.46872],[113.98238,22.46879],[113.98227,22.4686],[113.98217,22.46857],[113.98209,22.46847],[113.98195,22.4686],[113.98185,22.46845],[113.98197,22.46838],[113.98197,22.46827],[113.982,22.46825],[113.98196,22.46819],[113.98198,22.46818],[113.98196,22.46813],[113.98199,22.46812],[113.98191,22.46799],[113.98187,22.46801],[113.98184,22.46792],[113.98203,22.46782],[113.98185,22.46761],[113.98166,22.46764],[113.98164,22.46762],[113.98188,22.46746],[113.98157,22.46714],[113.9815,22.46719],[113.98147,22.4671],[113.98151,22.46707],[113.98142,22.46698],[113.98132,22.46704],[113.98108,22.46689],[113.98106,22.4668],[113.98119,22.46675],[113.98104,22.4667],[113.98096,22.46662],[113.9809,22.46647],[113.98071,22.46632],[113.98068,22.46629],[113.98075,22.46616],[113.98064,22.46615],[113.98072,22.46605],[113.98062,22.46594],[113.98053,22.46597],[113.98052,22.46592],[113.98046,22.46593],[113.98052,22.46586],[113.98052,22.46576],[113.98037,22.46556],[113.98026,22.46511],[113.9802,22.46512],[113.98014,22.46497],[113.98021,22.46492],[113.98019,22.46486],[113.98005,22.46484],[113.98001,22.46466],[113.98008,22.46464],[113.98008,22.46446],[113.98011,22.46438],[113.98015,22.46434],[113.98019,22.46432],[113.98016,22.4642],[113.98013,22.46413],[113.97999,22.464],[113.97966,22.46337],[113.97964,22.46333],[113.97934,22.46205],[113.97922,22.46176],[113.9792,22.46176],[113.97918,22.46172],[113.97916,22.46169],[113.97914,22.46163],[113.97917,22.46162],[113.97914,22.46155],[113.97911,22.46156],[113.97908,22.46149],[113.97908,22.46147],[113.97908,22.46145],[113.97905,22.46137],[113.97897,22.46139],[113.97892,22.46129],[113.97902,22.46126],[113.97888,22.46088],[113.97891,22.46085],[113.97884,22.46065],[113.97865,22.46018],[113.97838,22.45972],[113.97828,22.45949],[113.97824,22.4594],[113.9781,22.45909],[113.97803,22.45899],[113.978,22.45901],[113.97798,22.45901],[113.97796,22.45901],[113.97794,22.459],[113.97793,22.45898],[113.97791,22.45897],[113.97789,22.45898],[113.97788,22.45899],[113.97786,22.459],[113.97783,22.459],[113.97779,22.45899],[113.97775,22.459],[113.97772,22.459],[113.97769,22.45899],[113.97766,22.45897],[113.97764,22.45895],[113.97761,22.45893],[113.9776,22.45886],[113.97731,22.45855],[113.97727,22.45858],[113.97718,22.4585],[113.97723,22.45846],[113.97718,22.45841],[113.97712,22.45835],[113.9771,22.4583],[113.9771,22.45826],[113.97711,22.45823],[113.97714,22.4582],[113.97719,22.45813],[113.97725,22.45807],[113.97726,22.45802],[113.97725,22.45801],[113.97721,22.45798],[113.97718,22.45797],[113.97714,22.45796],[113.97712,22.45794],[113.97711,22.45791],[113.97713,22.45789],[113.97717,22.45787],[113.9772,22.45786],[113.97733,22.45765],[113.97731,22.45763],[113.9772,22.45775],[113.97704,22.45788],[113.97699,22.45786],[113.97657,22.45752],[113.97635,22.4572],[113.97609,22.45705],[113.97591,22.45693],[113.97571,22.45682],[113.97554,22.45683],[113.97542,22.45679],[113.97506,22.45644],[113.97474,22.45623],[113.97454,22.45621],[113.97449,22.4562],[113.97446,22.45618],[113.97443,22.45619],[113.97438,22.4562],[113.97428,22.45619],[113.97418,22.45615],[113.9741,22.45611],[113.97404,22.45607],[113.97399,22.45603],[113.97396,22.45599],[113.97394,22.45593],[113.97393,22.45588],[113.97393,22.45584],[113.97391,22.4558],[113.97389,22.4557],[113.97386,22.45569],[113.97379,22.45568],[113.97376,22.45567],[113.97376,22.45567],[113.97374,22.45565],[113.9737,22.45548],[113.9737,22.45542],[113.97369,22.45538],[113.97367,22.45535],[113.97366,22.45534],[113.97362,22.4553],[113.97351,22.45521],[113.97342,22.45514],[113.9733,22.45508],[113.97299,22.45487],[113.97294,22.45485],[113.97288,22.45483],[113.97283,22.45482],[113.97278,22.45481],[113.97273,22.45481],[113.97271,22.4548],[113.97267,22.4548],[113.97261,22.45478],[113.97252,22.45474],[113.97251,22.45473],[113.9725,22.45472],[113.97212,22.45462],[113.97212,22.45462],[113.97209,22.45461],[113.97158,22.4544],[113.97149,22.45445],[113.97132,22.45442],[113.97078,22.45412],[113.97025,22.45391],[113.97002,22.45382],[113.96956,22.45371],[113.96938,22.45376],[113.96906,22.45375],[113.96887,22.45367],[113.96881,22.45361],[113.96782,22.45335],[113.9675,22.45333],[113.96737,22.45324],[113.96747,22.45313],[113.96769,22.4529],[113.96764,22.45286],[113.96754,22.45298],[113.96749,22.453],[113.96738,22.45305],[113.96715,22.45324],[113.96702,22.45327],[113.96661,22.45322],[113.96635,22.45308],[113.96544,22.45287],[113.9651,22.45271],[113.96505,22.45262],[113.96509,22.45254],[113.96526,22.45238],[113.965,22.45213],[113.96473,22.45201],[113.96449,22.452],[113.96452,22.45208],[113.96445,22.4521],[113.96439,22.4521],[113.96435,22.45213],[113.96441,22.45215],[113.96443,22.45218],[113.96438,22.45249],[113.9641,22.45237],[113.96405,22.45241],[113.96397,22.45237],[113.96392,22.45228],[113.96393,22.45222],[113.964,22.45207],[113.96392,22.45202],[113.96385,22.45192],[113.96373,22.45186],[113.96368,22.45178],[113.96375,22.45162],[113.96384,22.45146],[113.96399,22.45129],[113.96424,22.45082],[113.96427,22.4507],[113.96418,22.45064],[113.96412,22.45085],[113.96366,22.45152],[113.96363,22.45154],[113.96347,22.45142],[113.96331,22.45141],[113.96327,22.45145],[113.96333,22.45163],[113.96345,22.45179],[113.96354,22.45184],[113.96355,22.45202],[113.96345,22.45216],[113.96332,22.4522],[113.963,22.45203],[113.96297,22.45197],[113.9627,22.4519],[113.96269,22.45189],[113.96267,22.45183],[113.96264,22.45174],[113.96262,22.45168],[113.96243,22.4515],[113.96203,22.45124],[113.96192,22.45121],[113.96161,22.45077],[113.96157,22.45068],[113.96158,22.4506],[113.96155,22.45052],[113.96154,22.45047],[113.96149,22.4504],[113.96141,22.45033],[113.96133,22.45028],[113.96127,22.45025],[113.96123,22.45022],[113.96114,22.45017],[113.96107,22.45018],[113.96102,22.45019],[113.96092,22.45013],[113.96086,22.45013],[113.96068,22.45015],[113.9605,22.45024],[113.96032,22.45032],[113.96004,22.4501],[113.95955,22.44988],[113.95863,22.44967],[113.95823,22.44962],[113.95799,22.44963],[113.95786,22.44965],[113.95779,22.44978],[113.95738,22.44998],[113.95736,22.44998],[113.9573,22.44997],[113.95726,22.44996],[113.95721,22.44997],[113.95713,22.44999],[113.95699,22.44999],[113.95689,22.44998],[113.95674,22.44989],[113.95669,22.44984],[113.95666,22.44981],[113.95662,22.44976],[113.95655,22.44967],[113.9565,22.44961],[113.95644,22.44957],[113.9564,22.44954],[113.95636,22.4495],[113.95632,22.44948],[113.95628,22.44945],[113.95623,22.44941],[113.95619,22.44937],[113.95615,22.44933],[113.95611,22.44929],[113.95609,22.44927],[113.95609,22.44924],[113.95608,22.44922],[113.95607,22.4492],[113.95605,22.44918],[113.95603,22.44917],[113.95594,22.44917],[113.9559,22.44918],[113.95586,22.44921],[113.95583,22.44923],[113.9558,22.44924],[113.95578,22.44927],[113.95576,22.4493],[113.95575,22.44932],[113.95574,22.44934],[113.95575,22.44935],[113.95575,22.44936],[113.95568,22.44939],[113.95565,22.44938],[113.95565,22.4494],[113.95561,22.44944],[113.95534,22.44921],[113.95522,22.44906],[113.9553,22.44897],[113.95544,22.44898],[113.9557,22.44887],[113.95568,22.44865],[113.95571,22.44858],[113.95544,22.44828],[113.95555,22.44826],[113.9556,22.44828],[113.95575,22.44852],[113.95577,22.44852],[113.95576,22.44835],[113.9558,22.44809],[113.95577,22.44786],[113.95554,22.4478],[113.95505,22.44781],[113.95502,22.44785],[113.95509,22.44818],[113.95512,22.44832],[113.95509,22.44835],[113.95496,22.44836],[113.95477,22.44831],[113.95473,22.44823],[113.95472,22.44818],[113.95475,22.44809],[113.95463,22.44791],[113.95459,22.4479],[113.95458,22.44796],[113.95453,22.448],[113.95446,22.44781],[113.95449,22.44779],[113.95472,22.44775],[113.95479,22.44776],[113.95533,22.44774],[113.95542,22.44773],[113.95573,22.44771],[113.95584,22.44765],[113.95593,22.44759],[113.95603,22.44748],[113.95597,22.44739],[113.95577,22.44758],[113.95572,22.4476],[113.95553,22.44763],[113.95528,22.44761],[113.95507,22.4476],[113.95488,22.44764],[113.95475,22.44765],[113.95453,22.44764],[113.95434,22.44767],[113.95425,22.44752],[113.95414,22.44738],[113.95409,22.44728],[113.95404,22.44704],[113.95392,22.44697],[113.95371,22.44684],[113.95358,22.44665],[113.95362,22.44634],[113.95363,22.44624],[113.95379,22.44608],[113.95389,22.44555],[113.95389,22.44521],[113.95385,22.44511],[113.95384,22.44485],[113.95379,22.44476],[113.9538,22.44468],[113.95379,22.44461],[113.95379,22.4446],[113.95378,22.44457],[113.95377,22.44456],[113.95377,22.44455],[113.95376,22.44452],[113.95374,22.44449],[113.95371,22.44447],[113.95369,22.44445],[113.95368,22.44442],[113.95368,22.4444],[113.95361,22.44424],[113.9535,22.44406],[113.95343,22.44376],[113.95339,22.44366],[113.95335,22.44362],[113.95318,22.44358],[113.95309,22.44358],[113.95301,22.44357],[113.95294,22.44354],[113.95288,22.44352],[113.95282,22.4435],[113.95265,22.44364],[113.95265,22.44367],[113.95259,22.44368],[113.95256,22.44368],[113.95254,22.44371],[113.95253,22.44369],[113.95261,22.44361],[113.9527,22.44351],[113.9528,22.44343],[113.95281,22.44336],[113.95281,22.44326],[113.9528,22.44322],[113.95277,22.44318],[113.95273,22.44306],[113.95298,22.44275],[113.95291,22.44272],[113.95263,22.44305],[113.95199,22.44264],[113.95202,22.44259],[113.9518,22.44239],[113.95172,22.4424],[113.95147,22.44239],[113.95125,22.44226],[113.95105,22.44224],[113.9507,22.44197],[113.95033,22.44175],[113.94965,22.44119],[113.94961,22.44118],[113.94956,22.44114],[113.94944,22.44104],[113.94935,22.44092],[113.94922,22.44084],[113.94918,22.44074],[113.94906,22.44062],[113.94898,22.44049],[113.94886,22.44036],[113.94874,22.44026],[113.94865,22.44017],[113.94833,22.43989],[113.94812,22.43973],[113.94794,22.43961],[113.9478,22.43956],[113.94765,22.4395],[113.94761,22.43948],[113.94753,22.43946],[113.94751,22.43941],[113.94752,22.43933],[113.94753,22.43929],[113.94757,22.43926],[113.94761,22.43925],[113.94772,22.43925],[113.94784,22.43922],[113.94806,22.43912],[113.9484,22.43893],[113.94852,22.43884],[113.94864,22.43876],[113.94872,22.43871],[113.94875,22.43868],[113.94882,22.43864],[113.94884,22.43863],[113.94887,22.4386],[113.94889,22.43857],[113.94889,22.43857],[113.94889,22.43856],[113.94882,22.43844],[113.94875,22.43852],[113.94872,22.43855],[113.94868,22.43858],[113.94837,22.43873],[113.9483,22.43877],[113.94821,22.43882],[113.9479,22.439],[113.94763,22.43911],[113.9474,22.43893],[113.94728,22.43876],[113.94715,22.43864],[113.94711,22.43849],[113.94711,22.43835],[113.94716,22.43815],[113.94722,22.4381],[113.94731,22.43799],[113.94749,22.43798],[113.94752,22.43795],[113.94755,22.4379],[113.94755,22.43783],[113.94754,22.43776],[113.94744,22.43756],[113.94735,22.43753],[113.94721,22.43752],[113.94708,22.43747],[113.947,22.4374],[113.94694,22.43723],[113.94687,22.43685],[113.94683,22.43632],[113.94683,22.43551],[113.94675,22.43526],[113.94683,22.43521],[113.94684,22.43499],[113.94661,22.43395],[113.9464,22.43335],[113.94623,22.43325],[113.94624,22.43315],[113.94618,22.43307],[113.94616,22.43301],[113.94618,22.43295],[113.94628,22.43286],[113.94637,22.43282],[113.94638,22.43262],[113.94628,22.43231],[113.9455,22.43141],[113.94532,22.43094],[113.94542,22.43076],[113.9454,22.43075],[113.945,22.43073],[113.94505,22.4308],[113.94505,22.43089],[113.945,22.43096],[113.94494,22.43098],[113.94448,22.43081],[113.94377,22.43035],[113.94255,22.42964],[113.94198,22.42928],[113.9417,22.4291],[113.94086,22.42852],[113.94037,22.42822],[113.93994,22.42801],[113.93838,22.42712],[113.93819,22.42694],[113.9383,22.42667],[113.93859,22.42642],[113.93887,22.42607],[113.93923,22.42588],[113.93945,22.42567],[113.93964,22.42523],[113.93959,22.42522],[113.9395,22.42511],[113.93943,22.42495],[113.93943,22.42494],[113.93936,22.42487],[113.93932,22.42487],[113.93925,22.42482],[113.93917,22.42475],[113.93921,22.42454],[113.93921,22.42451],[113.93921,22.42445],[113.93922,22.42439],[113.93923,22.42435],[113.93923,22.42433],[113.93926,22.4243],[113.93929,22.42429],[113.93933,22.42427],[113.93934,22.42426],[113.93941,22.42422],[113.93938,22.42401],[113.93933,22.42396],[113.93929,22.42395],[113.93916,22.42395],[113.9391,22.42394],[113.93894,22.42386],[113.93891,22.42384],[113.9395,22.42166],[113.93932,22.42089],[113.93928,22.42076],[113.93927,22.42063],[113.93904,22.42068],[113.93908,22.42091],[113.93915,22.42143],[113.93891,22.4222],[113.93802,22.42539],[113.93786,22.42595],[113.93782,22.42606],[113.93774,22.42618],[113.9376,22.42632],[113.9374,22.42644],[113.93724,22.4265],[113.93711,22.42654],[113.93687,22.42651],[113.93661,22.42646],[113.93654,22.42643],[113.93651,22.4264],[113.93651,22.42636],[113.93074,22.42443],[113.93073,22.42444],[113.93069,22.42445],[113.93067,22.42446],[113.9306,22.42442],[113.93059,22.42438],[113.93053,22.42436],[113.93049,22.42439],[113.93023,22.42436],[113.9298,22.42421],[113.92936,22.42389],[113.92922,22.42372],[113.92911,22.42343],[113.9289,22.4225],[113.92867,22.42123],[113.92862,22.42105],[113.92852,22.42085],[113.92842,22.42071],[113.92821,22.42048],[113.9281,22.4204],[113.92804,22.42034],[113.92777,22.4202],[113.9275,22.4201],[113.92729,22.42004],[113.92725,22.42002],[113.92711,22.41982],[113.927,22.4198],[113.92692,22.42012],[113.92685,22.42016],[113.92675,22.42017],[113.92632,22.42036],[113.92604,22.4204],[113.92597,22.42038],[113.92588,22.42036],[113.92528,22.42015],[113.92499,22.42],[113.92418,22.4194],[113.92341,22.41901],[113.92287,22.41884],[113.92203,22.41865],[113.92162,22.41858],[113.92152,22.41839],[113.9214,22.41845],[113.92142,22.41854],[113.92138,22.41858],[113.92127,22.41858],[113.92127,22.41867],[113.92154,22.41867],[113.92167,22.41869],[113.92223,22.41878],[113.92272,22.4189],[113.92304,22.419],[113.92352,22.41918],[113.92383,22.41932],[113.92414,22.41951],[113.92473,22.41998],[113.92498,22.42012],[113.92544,22.42031],[113.92583,22.42045],[113.92593,22.42047],[113.92617,22.4205],[113.92639,22.42044],[113.92659,22.42034],[113.9268,22.42029],[113.92696,22.42027],[113.92732,22.42033],[113.92736,22.4203],[113.92742,22.42032],[113.92753,22.42036],[113.92762,22.42044],[113.92764,22.4205],[113.92777,22.42066],[113.92793,22.42102],[113.92803,22.42152],[113.92806,22.4221],[113.92802,22.42252],[113.92794,22.42286],[113.92776,22.42309],[113.92749,22.42326],[113.92637,22.42354],[113.92485,22.42376],[113.9239,22.42375],[113.92304,22.42366],[113.92228,22.4235],[113.92155,22.42328],[113.9193,22.42242],[113.91557,22.42154],[113.91484,22.42129],[113.91423,22.42103],[113.91396,22.42081],[113.91389,22.42066],[113.91388,22.42054],[113.91374,22.42054],[113.91374,22.41998],[113.91387,22.41998],[113.91388,22.41873],[113.91384,22.41847],[113.91368,22.4184],[113.91364,22.41842],[113.91365,22.41848],[113.9136,22.4185],[113.91359,22.41845],[113.91334,22.41838],[113.91319,22.41828],[113.91144,22.41661],[113.91098,22.41612],[113.91098,22.41598],[113.9109,22.4159],[113.91074,22.41589],[113.91062,22.41582],[113.90895,22.41415],[113.909,22.41402],[113.9086,22.41362],[113.90852,22.41369],[113.90848,22.41366],[113.90853,22.41362],[113.90829,22.41341],[113.90825,22.41342],[113.90816,22.41336],[113.9079,22.41306],[113.90779,22.41315],[113.90652,22.41191],[113.9066,22.41184],[113.90648,22.41171],[113.90603,22.41131],[113.90571,22.41098],[113.90493,22.41024],[113.90477,22.41012],[113.9046,22.41021],[113.90452,22.41017],[113.90444,22.41021],[113.90439,22.41018],[113.90433,22.41022],[113.90428,22.41017],[113.90421,22.41019],[113.90414,22.41002],[113.90403,22.40989],[113.90405,22.40981],[113.90397,22.40977],[113.90401,22.40959],[113.9039,22.40959],[113.90396,22.40943],[113.9039,22.40938],[113.90386,22.40926],[113.90381,22.40927],[113.90378,22.40941],[113.90375,22.4094],[113.90377,22.40916],[113.9037,22.4091],[113.90362,22.4091],[113.90361,22.40908],[113.90351,22.40892],[113.90354,22.40882],[113.90345,22.4088],[113.90338,22.40872],[113.9034,22.40863],[113.90326,22.40847],[113.90323,22.40836],[113.90309,22.40829],[113.90285,22.40773],[113.90268,22.40756],[113.90263,22.40758],[113.90253,22.40754],[113.90241,22.40745],[113.90246,22.40737],[113.90244,22.40718],[113.90208,22.40694],[113.90207,22.40688],[113.9019,22.40683],[113.90182,22.40677],[113.90183,22.40669],[113.90174,22.40663],[113.90162,22.40662],[113.90156,22.40653],[113.90163,22.40648],[113.90163,22.40639],[113.90169,22.40631],[113.90163,22.406],[113.90152,22.40592],[113.90146,22.40596],[113.90142,22.40591],[113.90143,22.4059],[113.90143,22.4059],[113.90143,22.4059],[113.90144,22.40588],[113.90145,22.40588],[113.90144,22.40587],[113.90145,22.40586],[113.90145,22.40586],[113.90146,22.40587],[113.90146,22.40587],[113.90147,22.40587],[113.90148,22.40587],[113.90148,22.40586],[113.90148,22.40585],[113.90148,22.40586],[113.90148,22.40588],[113.9015,22.40586],[113.90151,22.40585],[113.90151,22.40584],[113.9015,22.40585],[113.9015,22.40585],[113.9015,22.40584],[113.9015,22.40583],[113.90151,22.40582],[113.90152,22.40581],[113.90152,22.40581],[113.90151,22.40581],[113.9015,22.40582],[113.9015,22.40582],[113.90149,22.40581],[113.90151,22.4058],[113.90151,22.40579],[113.90152,22.40579],[113.90151,22.40578],[113.90158,22.40573],[113.90158,22.40573],[113.90159,22.40574],[113.90159,22.40573],[113.9016,22.40574],[113.90161,22.40574],[113.90161,22.40574],[113.90163,22.40575],[113.90171,22.40577],[113.90172,22.40576],[113.90172,22.40576],[113.90173,22.40575],[113.90173,22.40575],[113.90174,22.40576],[113.90175,22.40575],[113.90176,22.40574],[113.90176,22.40573],[113.90177,22.40572],[113.90178,22.40571],[113.90178,22.40571],[113.90178,22.4057],[113.90177,22.40571],[113.90177,22.40571],[113.90182,22.40566],[113.90183,22.40566],[113.90183,22.40566],[113.90184,22.40566],[113.90184,22.40567],[113.90184,22.40567],[113.90184,22.40568],[113.90184,22.40569],[113.90184,22.40569],[113.90185,22.40568],[113.90186,22.40567],[113.90187,22.40566],[113.90187,22.40566],[113.90187,22.40566],[113.90187,22.40565],[113.90186,22.40565],[113.90188,22.40563],[113.90188,22.40563],[113.9019,22.40561],[113.90191,22.40562],[113.90191,22.40562],[113.9019,22.40563],[113.90191,22.40564],[113.90191,22.40564],[113.90192,22.40564],[113.90193,22.40563],[113.90194,22.40562],[113.90194,22.40562],[113.90195,22.40562],[113.90195,22.40562],[113.90195,22.40563],[113.90194,22.40563],[113.90194,22.40564],[113.90194,22.40564],[113.90194,22.40565],[113.90195,22.40564],[113.90197,22.40562],[113.90199,22.40561],[113.90199,22.40561],[113.902,22.40561],[113.90201,22.40559],[113.90201,22.40559],[113.90201,22.40559],[113.90205,22.40554],[113.90205,22.40554],[113.90204,22.40553],[113.90204,22.40553],[113.90204,22.40553],[113.90203,22.40553],[113.90202,22.40552],[113.90202,22.40552],[113.902,22.40551],[113.90201,22.40551],[113.90204,22.40549],[113.90205,22.40549],[113.90205,22.40548],[113.90207,22.40549],[113.90207,22.40549],[113.90208,22.4055],[113.90208,22.4055],[113.90208,22.40551],[113.90208,22.40552],[113.90209,22.40551],[113.9021,22.40552],[113.9021,22.40552],[113.90211,22.40552],[113.90211,22.40552],[113.90212,22.40551],[113.90212,22.40551],[113.90212,22.4055],[113.90211,22.4055],[113.90212,22.40549],[113.90212,22.40549],[113.90213,22.40548],[113.90213,22.40548],[113.90214,22.40548],[113.90215,22.40549],[113.90215,22.40549],[113.90215,22.40549],[113.90216,22.40549],[113.90216,22.40549],[113.90217,22.40549],[113.90217,22.4055],[113.90218,22.40549],[113.90219,22.40549],[113.90218,22.4055],[113.90219,22.40551],[113.9022,22.4055],[113.90221,22.4055],[113.90222,22.4055],[113.90222,22.4055],[113.90221,22.40551],[113.90222,22.40552],[113.90222,22.40552],[113.90223,22.40551],[113.90225,22.40551],[113.90225,22.40551],[113.90226,22.40551],[113.90227,22.4055],[113.90227,22.4055],[113.90228,22.40549],[113.90229,22.40548],[113.9023,22.40548],[113.9023,22.40548],[113.90231,22.40547],[113.90231,22.40547],[113.90231,22.40547],[113.90231,22.40546],[113.90232,22.40546],[113.90234,22.40544],[113.90234,22.40543],[113.90234,22.40542],[113.90236,22.4054],[113.90236,22.4054],[113.90236,22.4054],[113.90237,22.40539],[113.90238,22.40538],[113.90239,22.40538],[113.90239,22.40538],[113.9024,22.40537],[113.90242,22.40537],[113.90244,22.40537],[113.90244,22.40536],[113.90244,22.40536],[113.90244,22.40535],[113.90245,22.40535],[113.90246,22.40535],[113.90247,22.40535],[113.90249,22.40534],[113.9025,22.40532],[113.90265,22.40533],[113.90265,22.40533],[113.90266,22.40533],[113.90267,22.40533],[113.9027,22.40533],[113.9027,22.40532],[113.90271,22.40532],[113.90273,22.40532],[113.90273,22.40532],[113.90275,22.40531],[113.90276,22.40531],[113.90275,22.4053],[113.90282,22.40528],[113.90282,22.40529],[113.90283,22.40529],[113.90284,22.40529],[113.90284,22.4053],[113.90285,22.4053],[113.90286,22.40529],[113.90288,22.4053],[113.90286,22.40531],[113.90286,22.40531],[113.90286,22.40532],[113.90286,22.40532],[113.90288,22.40532],[113.90289,22.40532],[113.90289,22.40532],[113.90289,22.40532],[113.90291,22.40532],[113.90291,22.40532],[113.90292,22.40533],[113.90295,22.40533],[113.90295,22.40533],[113.90296,22.40533],[113.90296,22.40533],[113.90296,22.40533],[113.90311,22.40527],[113.90311,22.40527],[113.90313,22.40527],[113.90314,22.40524],[113.90314,22.40524],[113.90315,22.40524],[113.90315,22.40523],[113.90315,22.40522],[113.90315,22.40522],[113.90316,22.40522],[113.90325,22.4052],[113.90325,22.4052],[113.90325,22.40521],[113.90326,22.40521],[113.90327,22.4052],[113.90329,22.4052],[113.90331,22.40519],[113.90331,22.40519],[113.90331,22.40519],[113.90331,22.40518],[113.90332,22.40518],[113.90333,22.40518],[113.90334,22.40517],[113.90336,22.40517],[113.90338,22.40516],[113.90338,22.40516],[113.90342,22.40515],[113.90342,22.40516],[113.90342,22.40516],[113.90344,22.40516],[113.90347,22.40517],[113.90347,22.40517],[113.90347,22.40517],[113.90351,22.40518],[113.90351,22.40518],[113.90351,22.40518],[113.90352,22.40519],[113.90352,22.40519],[113.90353,22.40519],[113.90354,22.40519],[113.90357,22.4052],[113.90359,22.40519],[113.90359,22.40519],[113.9036,22.40519],[113.9036,22.40519],[113.90375,22.40512],[113.90375,22.40513],[113.90376,22.40512],[113.90379,22.40511],[113.90378,22.40511],[113.90386,22.40508],[113.90386,22.40508],[113.90386,22.40508],[113.90387,22.40508],[113.90388,22.40507],[113.90389,22.40505],[113.9039,22.40504],[113.90391,22.40504],[113.90391,22.40503],[113.90391,22.40503],[113.9039,22.40503],[113.9039,22.40503],[113.9039,22.40503],[113.9039,22.40502],[113.9039,22.40502],[113.90391,22.40502],[113.90393,22.40501],[113.90392,22.405],[113.90391,22.405],[113.90391,22.405],[113.90392,22.40499],[113.90393,22.40499],[113.90393,22.40498],[113.90392,22.40498],[113.90392,22.40497],[113.90393,22.40497],[113.90393,22.40496],[113.90392,22.40496],[113.90392,22.40496],[113.90392,22.40495],[113.90393,22.40495],[113.90394,22.40495],[113.90394,22.40495],[113.90393,22.40494],[113.90393,22.40494],[113.90393,22.40493],[113.90394,22.40493],[113.90395,22.40492],[113.90395,22.40492],[113.90394,22.40492],[113.90394,22.40491],[113.90395,22.40491],[113.90396,22.40491],[113.90399,22.4049],[113.904,22.40489],[113.904,22.40489],[113.90404,22.40488],[113.90404,22.40489],[113.90403,22.40489],[113.90404,22.4049],[113.90407,22.40489],[113.90408,22.40488],[113.90409,22.40489],[113.90409,22.40489],[113.9041,22.40489],[113.90411,22.40489],[113.90411,22.40488],[113.90412,22.40488],[113.90412,22.40489],[113.90413,22.40489],[113.90415,22.40488],[113.90417,22.40487],[113.90416,22.40487],[113.90416,22.40487],[113.90416,22.40486],[113.90418,22.40485],[113.90418,22.40485],[113.90419,22.40485],[113.90419,22.40483],[113.9042,22.40483],[113.90421,22.40483],[113.90424,22.40482],[113.90424,22.40482],[113.90425,22.40482],[113.90425,22.40483],[113.90426,22.40483],[113.90427,22.40482],[113.90428,22.40482],[113.90428,22.40482],[113.90428,22.40483],[113.90427,22.40483],[113.90427,22.40484],[113.90429,22.40483],[113.9043,22.40483],[113.90431,22.40483],[113.90432,22.40483],[113.90432,22.40484],[113.90432,22.40484],[113.90435,22.40483],[113.90435,22.40483],[113.90434,22.40482],[113.90434,22.40482],[113.90433,22.40482],[113.90433,22.40482],[113.90433,22.40481],[113.90434,22.40481],[113.90436,22.4048],[113.90438,22.4048],[113.90438,22.40479],[113.90437,22.40479],[113.90438,22.40478],[113.90439,22.40478],[113.90442,22.40477],[113.90443,22.40477],[113.90443,22.40475],[113.90456,22.40473],[113.90456,22.40473],[113.90457,22.40473],[113.90471,22.40471],[113.90471,22.40471],[113.90472,22.4047],[113.90473,22.4047],[113.90473,22.4047],[113.90475,22.40468],[113.90476,22.40467],[113.90477,22.40467],[113.90478,22.40467],[113.90478,22.40467],[113.90478,22.40466],[113.90479,22.40466],[113.90479,22.40465],[113.90479,22.40465],[113.9048,22.40464],[113.9048,22.40464],[113.9048,22.40463],[113.9048,22.40463],[113.90481,22.40462],[113.90488,22.40465],[113.90488,22.40465],[113.90489,22.40465],[113.90489,22.40466],[113.90489,22.40466],[113.90491,22.40466],[113.90492,22.40466],[113.90492,22.40466],[113.90501,22.40458],[113.90501,22.40458],[113.90501,22.40457],[113.905,22.40456],[113.905,22.40456],[113.905,22.40455],[113.905,22.40455],[113.90499,22.40455],[113.90499,22.40454],[113.90499,22.40454],[113.90499,22.40454],[113.905,22.40454],[113.905,22.40454],[113.90499,22.40453],[113.90499,22.40453],[113.90498,22.40453],[113.90498,22.40453],[113.90497,22.40453],[113.90498,22.40452],[113.90498,22.40452],[113.90497,22.40452],[113.90496,22.40451],[113.90499,22.40449],[113.905,22.40449],[113.905,22.40449],[113.90504,22.4045],[113.90505,22.4045],[113.90505,22.4045],[113.90507,22.4045],[113.90507,22.4045],[113.90508,22.40451],[113.90509,22.40451],[113.90509,22.40451],[113.90509,22.40451],[113.9051,22.40451],[113.9051,22.40451],[113.90511,22.40452],[113.90512,22.40452],[113.90514,22.40451],[113.90514,22.40452],[113.90514,22.40451],[113.90518,22.40451],[113.90519,22.40451],[113.90519,22.40452],[113.90519,22.40452],[113.9052,22.40452],[113.9052,22.40451],[113.90521,22.40451],[113.90521,22.40451],[113.90523,22.4045],[113.90526,22.4045],[113.90527,22.4045],[113.9053,22.40449],[113.9053,22.4045],[113.90531,22.40449],[113.90531,22.4045],[113.90533,22.40451],[113.90533,22.40451],[113.90534,22.40451],[113.90534,22.40451],[113.90535,22.40452],[113.90535,22.40452],[113.90535,22.40452],[113.90536,22.40452],[113.90537,22.40453],[113.90537,22.40453],[113.90537,22.40454],[113.90537,22.40454],[113.90536,22.40454],[113.90535,22.40454],[113.90535,22.40454],[113.90534,22.40454],[113.90535,22.40455],[113.90535,22.40455],[113.90535,22.40455],[113.90536,22.40455],[113.90537,22.40457],[113.90537,22.40457],[113.90538,22.40456],[113.90538,22.40455],[113.90539,22.40455],[113.9054,22.40455],[113.90541,22.40454],[113.90542,22.40454],[113.90542,22.40453],[113.90542,22.40453],[113.90542,22.40452],[113.90542,22.40452],[113.90542,22.40452],[113.90541,22.40452],[113.9054,22.40452],[113.9054,22.40451],[113.9054,22.40451],[113.90539,22.40451],[113.90539,22.40451],[113.90539,22.4045],[113.90539,22.4045],[113.90539,22.4045],[113.90539,22.40449],[113.90538,22.40448],[113.9054,22.40447],[113.90539,22.40447],[113.90539,22.40447],[113.9054,22.40447],[113.9054,22.40446],[113.90541,22.40445],[113.90542,22.40445],[113.90541,22.40445],[113.90542,22.40444],[113.90542,22.40444],[113.90542,22.40444],[113.90542,22.40444],[113.90543,22.40444],[113.90542,22.40444],[113.90542,22.40443],[113.90545,22.40443],[113.90545,22.40444],[113.90545,22.40444],[113.90545,22.40444],[113.90545,22.40445],[113.90544,22.40445],[113.90544,22.40446],[113.90544,22.40447],[113.90544,22.40448],[113.90543,22.40448],[113.90543,22.40448],[113.90543,22.40449],[113.90545,22.40449],[113.90545,22.40449],[113.90546,22.4045],[113.90546,22.4045],[113.90547,22.40449],[113.90548,22.40449],[113.90549,22.40449],[113.90549,22.40449],[113.90549,22.40449],[113.90549,22.40448],[113.90549,22.40448],[113.90548,22.40448],[113.90548,22.40448],[113.90548,22.40448],[113.90549,22.40448],[113.90549,22.40447],[113.90547,22.40447],[113.90547,22.40446],[113.90548,22.40446],[113.9055,22.40445],[113.90551,22.40445],[113.90552,22.40445],[113.90553,22.40445],[113.90554,22.40444],[113.90555,22.40444],[113.90555,22.40445],[113.90556,22.40445],[113.90557,22.40445],[113.90557,22.40445],[113.90557,22.40446],[113.90558,22.40446],[113.90558,22.40446],[113.90559,22.40446],[113.90559,22.40446],[113.9056,22.40445],[113.9056,22.40444],[113.9056,22.40444],[113.90562,22.40444],[113.90562,22.40444],[113.90564,22.40446],[113.90564,22.40447],[113.90565,22.40447],[113.90566,22.40447],[113.90566,22.40447],[113.90567,22.40447],[113.90567,22.40447],[113.90568,22.40447],[113.90568,22.40447],[113.90569,22.40447],[113.90569,22.40446],[113.90569,22.40446],[113.9057,22.40446],[113.9057,22.40445],[113.90571,22.40445],[113.90572,22.40445],[113.90572,22.40445],[113.90573,22.40444],[113.90573,22.40443],[113.90572,22.40443],[113.90572,22.40442],[113.90572,22.40442],[113.90572,22.40441],[113.90572,22.40441],[113.90572,22.40439],[113.90572,22.40439],[113.90573,22.40438],[113.90573,22.40438],[113.90572,22.40437],[113.90572,22.40437],[113.90572,22.40436],[113.90571,22.40435],[113.9057,22.40434],[113.9057,22.40434],[113.9057,22.40434],[113.9057,22.40434],[113.90566,22.40433],[113.90566,22.40433],[113.90567,22.40433],[113.90567,22.40433],[113.90572,22.40431],[113.90572,22.40431],[113.90572,22.40431],[113.90571,22.40432],[113.90572,22.40432],[113.90573,22.40432],[113.90573,22.40433],[113.90573,22.40433],[113.90574,22.40433],[113.90576,22.40436],[113.90576,22.40436],[113.90577,22.40436],[113.90578,22.40438],[113.90578,22.40438],[113.90578,22.40438],[113.90578,22.40438],[113.90579,22.40439],[113.90577,22.40444],[113.90577,22.40444],[113.90577,22.40445],[113.90577,22.40445],[113.90578,22.40445],[113.90579,22.40446],[113.9058,22.40446],[113.9058,22.40446],[113.90582,22.40445],[113.90583,22.40445],[113.90583,22.40445],[113.90586,22.40444],[113.90586,22.40444],[113.90589,22.40443],[113.9059,22.40442],[113.9059,22.40443],[113.90591,22.40442],[113.90593,22.40442],[113.90594,22.40442],[113.90596,22.40441],[113.90596,22.4044],[113.90597,22.40439],[113.90598,22.40439],[113.90599,22.40439],[113.90601,22.40438],[113.90601,22.40438],[113.90602,22.40438],[113.90604,22.40437],[113.90605,22.40436],[113.90605,22.40436],[113.90606,22.40435],[113.90606,22.40435],[113.90606,22.40435],[113.90606,22.40435],[113.90607,22.40434],[113.90606,22.40433],[113.90606,22.40433],[113.90608,22.40431],[113.90608,22.40431],[113.90609,22.4043],[113.90614,22.40431],[113.90614,22.40431],[113.90614,22.40431],[113.90615,22.40431],[113.9062,22.40432],[113.9062,22.40432],[113.90621,22.40432],[113.90634,22.40429],[113.90634,22.40429],[113.90636,22.40429],[113.90637,22.40429],[113.90637,22.40429],[113.90638,22.40429],[113.90638,22.4043],[113.90638,22.4043],[113.9064,22.4043],[113.90641,22.4043],[113.90642,22.4043],[113.90643,22.4043],[113.90644,22.4043],[113.90644,22.40429],[113.90643,22.40429],[113.90643,22.40428],[113.90643,22.40428],[113.90642,22.40428],[113.90642,22.40427],[113.90642,22.40427],[113.90642,22.40426],[113.90643,22.40426],[113.90643,22.40426],[113.90643,22.40426],[113.90644,22.40426],[113.90645,22.40426],[113.90646,22.40426],[113.90647,22.40426],[113.90648,22.40426],[113.90648,22.40426],[113.90649,22.40427],[113.90649,22.40427],[113.90649,22.40428],[113.9065,22.40428],[113.90651,22.40428],[113.90652,22.40428],[113.90652,22.40428],[113.90653,22.40428],[113.90654,22.40428],[113.90656,22.40428],[113.90657,22.40428],[113.90656,22.40427],[113.90659,22.40427],[113.90659,22.40427],[113.90659,22.40426],[113.9066,22.40425],[113.90661,22.40424],[113.90662,22.40423],[113.90662,22.40423],[113.90663,22.40422],[113.90662,22.40422],[113.90662,22.40422],[113.90662,22.40421],[113.90663,22.4042],[113.90664,22.4042],[113.90665,22.4042],[113.90666,22.4042],[113.90666,22.40419],[113.90666,22.40419],[113.90667,22.40419],[113.90668,22.40418],[113.90669,22.40418],[113.90669,22.40417],[113.9067,22.40417],[113.90671,22.40417],[113.90671,22.40416],[113.90674,22.40414],[113.90674,22.40414],[113.90675,22.40415],[113.90676,22.40415],[113.90677,22.40415],[113.90678,22.40415],[113.90679,22.40415],[113.90679,22.40415],[113.90681,22.40415],[113.90682,22.40414],[113.90682,22.40415],[113.90683,22.40415],[113.90684,22.40414],[113.90684,22.40414],[113.90684,22.40413],[113.90685,22.40413],[113.90685,22.40412],[113.90685,22.40411],[113.90686,22.40411],[113.90687,22.4041],[113.90688,22.4041],[113.90688,22.40409],[113.90689,22.40409],[113.9069,22.40409],[113.9069,22.40408],[113.90691,22.40408],[113.90691,22.40407],[113.90691,22.40406],[113.90691,22.40406],[113.9069,22.40406],[113.9069,22.40405],[113.90689,22.40405],[113.90687,22.40405],[113.90687,22.40405],[113.90685,22.40405],[113.90685,22.40405],[113.90697,22.40401],[113.90697,22.40402],[113.90697,22.40402],[113.90698,22.40402],[113.90698,22.40402],[113.90698,22.40403],[113.90697,22.40403],[113.90697,22.40403],[113.90698,22.40404],[113.90698,22.40405],[113.90699,22.40404],[113.907,22.40403],[113.90701,22.40401],[113.90701,22.40401],[113.90701,22.40401],[113.90701,22.404],[113.90701,22.404],[113.90701,22.40399],[113.90701,22.40399],[113.907,22.40399],[113.907,22.40399],[113.907,22.40398],[113.907,22.40397],[113.907,22.40397],[113.90702,22.40395],[113.90709,22.40396],[113.90709,22.40396],[113.9071,22.40396],[113.90711,22.40395],[113.90711,22.40395],[113.90711,22.40395],[113.90711,22.40394],[113.90712,22.40394],[113.90712,22.40393],[113.90713,22.40393],[113.90712,22.40392],[113.90713,22.40392],[113.90713,22.40391],[113.90713,22.40391],[113.90717,22.40389],[113.90718,22.40389],[113.90718,22.4039],[113.90718,22.4039],[113.90719,22.4039],[113.9072,22.4039],[113.9072,22.40389],[113.90722,22.40388],[113.90723,22.40388],[113.90723,22.40388],[113.90724,22.40387],[113.90724,22.40387],[113.9073,22.40385],[113.9073,22.40385],[113.90731,22.40385],[113.90731,22.40385],[113.90731,22.40385],[113.90732,22.40384],[113.90733,22.40384],[113.90734,22.40384],[113.90735,22.40383],[113.90735,22.40383],[113.90737,22.40383],[113.90738,22.40383],[113.90739,22.40383],[113.9074,22.40383],[113.90741,22.40383],[113.90741,22.40383],[113.90741,22.40383],[113.90742,22.40383],[113.90743,22.40383],[113.90743,22.40384],[113.90743,22.40384],[113.90743,22.40384],[113.90744,22.40384],[113.90745,22.40384],[113.90746,22.40384],[113.90746,22.40384],[113.90747,22.40383],[113.90747,22.40383],[113.90748,22.40382],[113.90748,22.40382],[113.90748,22.40382],[113.90748,22.40382],[113.90748,22.40381],[113.90747,22.40381],[113.90747,22.40381],[113.90747,22.4038],[113.90748,22.4038],[113.90748,22.40379],[113.9075,22.40379],[113.9075,22.40378],[113.9075,22.40378],[113.90751,22.40378],[113.90752,22.40378],[113.90752,22.40378],[113.90752,22.40378],[113.90753,22.40377],[113.90754,22.40377],[113.90754,22.40377],[113.90754,22.40377],[113.90755,22.40377],[113.90755,22.40376],[113.90756,22.40376],[113.90758,22.40376],[113.90758,22.40375],[113.90759,22.40375],[113.90759,22.40375],[113.90759,22.40375],[113.9076,22.40375],[113.9076,22.40375],[113.90761,22.40374],[113.90773,22.40378],[113.90773,22.40379],[113.90773,22.40379],[113.90773,22.4038],[113.90773,22.4038],[113.90772,22.4038],[113.90771,22.4038],[113.90771,22.40381],[113.90772,22.40381],[113.90772,22.40382],[113.90772,22.40382],[113.90772,22.40383],[113.90771,22.40383],[113.9077,22.40383],[113.90768,22.40383],[113.90768,22.40383],[113.90768,22.40384],[113.90769,22.40384],[113.90769,22.40385],[113.90768,22.40385],[113.90769,22.40386],[113.90771,22.40386],[113.90773,22.40385],[113.90773,22.40384],[113.90774,22.40384],[113.90773,22.40384],[113.90773,22.40383],[113.90774,22.40383],[113.90774,22.40382],[113.90773,22.40382],[113.90774,22.40381],[113.90774,22.40381],[113.90775,22.40381],[113.90775,22.4038],[113.90775,22.4038],[113.90775,22.40379],[113.90775,22.40379],[113.90781,22.40381],[113.90781,22.40381],[113.90781,22.40381],[113.90782,22.40381],[113.90785,22.40381],[113.90785,22.4038],[113.90785,22.4038],[113.9079,22.40378],[113.90791,22.40379],[113.90792,22.40379],[113.90792,22.4038],[113.90793,22.4038],[113.90794,22.4038],[113.90795,22.40382],[113.90795,22.40383],[113.90796,22.40383],[113.90796,22.40383],[113.90796,22.40383],[113.90797,22.40382],[113.90798,22.40382],[113.90798,22.40381],[113.90799,22.40381],[113.90799,22.4038],[113.90799,22.4038],[113.908,22.4038],[113.908,22.4038],[113.908,22.4038],[113.90801,22.40379],[113.90801,22.4038],[113.90802,22.40379],[113.90801,22.40379],[113.90802,22.40378],[113.90803,22.40378],[113.90803,22.40378],[113.90803,22.40378],[113.90806,22.40377],[113.90806,22.40378],[113.90806,22.40378],[113.90807,22.40379],[113.90807,22.40379],[113.90808,22.40379],[113.90809,22.4038],[113.90809,22.40381],[113.9081,22.40381],[113.90811,22.40382],[113.90812,22.40382],[113.90812,22.4039],[113.90811,22.4039],[113.90811,22.4039],[113.90811,22.40391],[113.90811,22.40391],[113.90811,22.40392],[113.9081,22.40393],[113.9081,22.40393],[113.9081,22.40394],[113.90811,22.40394],[113.90811,22.40396],[113.90811,22.40396],[113.90812,22.40395],[113.90812,22.40396],[113.90812,22.40396],[113.90812,22.40403],[113.90812,22.40403],[113.90812,22.40404],[113.90812,22.40405],[113.90813,22.40406],[113.90814,22.40406],[113.90814,22.40406],[113.90814,22.40406],[113.90817,22.40408],[113.90817,22.40408],[113.90818,22.40409],[113.90818,22.40408],[113.90818,22.40408],[113.9082,22.40407],[113.90821,22.40407],[113.90822,22.40406],[113.90823,22.40406],[113.90823,22.40406],[113.90823,22.40405],[113.90823,22.40405],[113.90824,22.40405],[113.90825,22.40406],[113.90826,22.40406],[113.90826,22.40406],[113.90828,22.40407],[113.90828,22.40407],[113.90828,22.40407],[113.90837,22.4041],[113.90837,22.40411],[113.90837,22.40412],[113.90836,22.40413],[113.90837,22.40415],[113.90837,22.40416],[113.90837,22.40416],[113.90837,22.40416],[113.90844,22.40425],[113.90845,22.40425],[113.90846,22.40425],[113.90846,22.40426],[113.90846,22.40426],[113.90847,22.40425],[113.90854,22.40426],[113.90855,22.40427],[113.90855,22.40426],[113.90856,22.40427],[113.90856,22.40427],[113.90856,22.40427],[113.9086,22.40427],[113.90862,22.40429],[113.90863,22.4043],[113.90865,22.40432],[113.90865,22.40432],[113.90865,22.40432],[113.90865,22.40433],[113.90865,22.40434],[113.90864,22.40434],[113.90864,22.40434],[113.90865,22.40435],[113.90864,22.40439],[113.90864,22.40439],[113.90864,22.4044],[113.90864,22.40442],[113.90865,22.40442],[113.90865,22.40441],[113.90866,22.40441],[113.90866,22.40441],[113.90868,22.40441],[113.90868,22.40441],[113.90869,22.40441],[113.90869,22.40441],[113.90872,22.40441],[113.90872,22.40441],[113.90873,22.40443],[113.90873,22.40443],[113.90873,22.40443],[113.90874,22.40443],[113.90875,22.40444],[113.90876,22.40445],[113.90877,22.40445],[113.90877,22.40445],[113.90878,22.40445],[113.90879,22.40446],[113.9088,22.40447],[113.90881,22.40447],[113.90881,22.40448],[113.90881,22.40448],[113.90882,22.40449],[113.90882,22.4045],[113.90882,22.40451],[113.90882,22.40451],[113.90882,22.40452],[113.90882,22.40453],[113.90883,22.40454],[113.90883,22.40455],[113.90883,22.40455],[113.90884,22.40455],[113.90885,22.40455],[113.90885,22.40455],[113.90887,22.40455],[113.90887,22.40456],[113.90888,22.40455],[113.90888,22.40455],[113.90889,22.40454],[113.9089,22.40454],[113.90891,22.40454],[113.90891,22.40454],[113.90891,22.40454],[113.90892,22.40454],[113.90892,22.40453],[113.90893,22.40452],[113.90893,22.40452],[113.90893,22.40452],[113.90892,22.40452],[113.90892,22.40451],[113.90892,22.4045],[113.90893,22.4045],[113.90893,22.4045],[113.90893,22.40449],[113.90893,22.40449],[113.90892,22.40449],[113.90892,22.40448],[113.90891,22.40447],[113.90891,22.40447],[113.90892,22.40447],[113.90892,22.40446],[113.90893,22.40446],[113.90895,22.40446],[113.90896,22.40446],[113.90896,22.40445],[113.90897,22.40445],[113.90897,22.40445],[113.90898,22.40445],[113.90899,22.40445],[113.909,22.40445],[113.90901,22.40444],[113.90902,22.40444],[113.90903,22.40444],[113.90904,22.40443],[113.90905,22.40443],[113.90905,22.40443],[113.90906,22.40444],[113.90906,22.40444],[113.90907,22.40444],[113.90907,22.40445],[113.90908,22.40445],[113.90907,22.40445],[113.90907,22.40445],[113.90907,22.40446],[113.90908,22.40446],[113.90908,22.40447],[113.90907,22.40447],[113.90907,22.40448],[113.90908,22.40448],[113.90908,22.40449],[113.90907,22.40449],[113.90907,22.4045],[113.90907,22.4045],[113.90907,22.4045],[113.90908,22.40451],[113.90907,22.40451],[113.90907,22.40451],[113.90908,22.40452],[113.90908,22.40453],[113.90907,22.40453],[113.90906,22.40454],[113.90906,22.40454],[113.90906,22.40454],[113.90906,22.40455],[113.90906,22.40456],[113.90906,22.40456],[113.90907,22.40456],[113.90908,22.40457],[113.90909,22.40457],[113.90911,22.40456],[113.90912,22.40456],[113.90913,22.40455],[113.90914,22.40455],[113.90916,22.40455],[113.90917,22.40454],[113.90918,22.40454],[113.90918,22.40454],[113.90919,22.40453],[113.9092,22.40453],[113.9092,22.40452],[113.9092,22.40451],[113.90921,22.4045],[113.90922,22.4045],[113.90922,22.40449],[113.90923,22.40449],[113.90924,22.40449],[113.90926,22.40449],[113.90928,22.4045],[113.90953,22.40425],[113.90961,22.40418],[113.90962,22.40416],[113.91008,22.40372],[113.91013,22.40367],[113.91013,22.40367],[113.91014,22.40367],[113.91118,22.40268],[113.91126,22.4026],[113.91129,22.40259],[113.91134,22.40262],[113.91143,22.40268],[113.91169,22.4029],[113.91187,22.40307],[113.91197,22.40315],[113.91205,22.40323],[113.91223,22.40339],[113.91231,22.40347],[113.91233,22.40347],[113.91237,22.40346],[113.91241,22.40343],[113.91246,22.40339],[113.9125,22.40335],[113.91257,22.40328],[113.9126,22.40324],[113.9126,22.40324],[113.91267,22.40319],[113.91271,22.40317],[113.91279,22.40309],[113.91283,22.40306],[113.91286,22.40302],[113.91288,22.40299],[113.91289,22.40298],[113.91295,22.40288],[113.91301,22.40282],[113.91304,22.40279],[113.91308,22.40272],[113.91325,22.40247],[113.91326,22.40246],[113.91328,22.40243],[113.91338,22.40228],[113.91371,22.40203],[113.91375,22.402],[113.91381,22.40193],[113.91386,22.40188],[113.91391,22.40181],[113.91397,22.40173],[113.91401,22.40167],[113.91405,22.40163],[113.91408,22.40158],[113.91412,22.40153],[113.91418,22.40144],[113.91419,22.40141],[113.91423,22.40136],[113.91437,22.40115],[113.91437,22.40115],[113.91439,22.40113],[113.91443,22.40104],[113.91443,22.40103],[113.91443,22.40103],[113.91444,22.401],[113.91445,22.40098],[113.91447,22.40095],[113.91451,22.40088],[113.91455,22.4008],[113.91458,22.40073],[113.91465,22.40058],[113.91468,22.40048],[113.9147,22.40044],[113.91473,22.40036],[113.91474,22.40031],[113.91477,22.40023],[113.91479,22.40017],[113.9148,22.40009],[113.91483,22.40001],[113.91485,22.39997],[113.91491,22.39988],[113.91494,22.39984],[113.91495,22.39983],[113.91494,22.39983],[113.91494,22.39982],[113.91494,22.39982],[113.91495,22.39981],[113.91495,22.3998],[113.91495,22.39979],[113.91496,22.39979],[113.91497,22.39979],[113.91497,22.3998],[113.91498,22.39981],[113.91499,22.39981],[113.915,22.3998],[113.91502,22.3998],[113.91503,22.39981],[113.91504,22.39981],[113.91505,22.39982],[113.91505,22.39983],[113.91505,22.39984],[113.91504,22.39988],[113.91502,22.39992],[113.91502,22.39993],[113.91502,22.39994],[113.91504,22.39998],[113.91506,22.40003],[113.91506,22.40006],[113.91507,22.40007],[113.91514,22.40007],[113.91515,22.39996],[113.91516,22.39987],[113.91519,22.39988],[113.91521,22.3999],[113.91521,22.39993],[113.91518,22.39996],[113.91516,22.40002],[113.9152,22.40012],[113.91522,22.40018],[113.9153,22.40034],[113.91541,22.40049],[113.91546,22.40052],[113.91551,22.40057],[113.91554,22.40067],[113.91561,22.4008],[113.91562,22.40085],[113.91567,22.40091],[113.91571,22.40104],[113.91579,22.40101],[113.91574,22.40094],[113.91571,22.40085],[113.91565,22.40074],[113.91565,22.40067],[113.91563,22.40063],[113.91562,22.40057],[113.91567,22.40059],[113.91576,22.40067],[113.91581,22.40069],[113.91583,22.40068],[113.9159,22.40064],[113.91596,22.40064],[113.91601,22.40066],[113.91606,22.40061],[113.916,22.40056],[113.91582,22.40055],[113.91566,22.40051],[113.91548,22.40023],[113.91546,22.40002],[113.91544,22.39999],[113.91536,22.39989],[113.9153,22.39985],[113.91518,22.39979],[113.91514,22.39979],[113.91514,22.39979],[113.91513,22.39978],[113.91513,22.39976],[113.91512,22.39974],[113.91513,22.39973],[113.91515,22.39969],[113.91513,22.39964],[113.91507,22.39962],[113.91507,22.3996],[113.91507,22.39959],[113.91507,22.39958],[113.91507,22.39957],[113.91507,22.39957],[113.91507,22.39954],[113.91507,22.39951],[113.91508,22.39948],[113.91508,22.39947],[113.91508,22.39946],[113.91508,22.39945],[113.91508,22.39944],[113.91509,22.3994],[113.91509,22.39935],[113.91509,22.39934],[113.91509,22.39934],[113.91509,22.39933],[113.91509,22.39932],[113.91508,22.39931],[113.91506,22.39923],[113.91511,22.39914],[113.91511,22.39913],[113.91518,22.39904],[113.91519,22.39903],[113.91519,22.39903],[113.91519,22.39902],[113.9152,22.39899],[113.91521,22.39898],[113.91525,22.39884],[113.91526,22.39883],[113.91527,22.39879],[113.91527,22.39878],[113.91527,22.39877],[113.91528,22.39875],[113.91528,22.39873],[113.91528,22.39872],[113.91528,22.39872],[113.91528,22.3987],[113.91529,22.39867],[113.91529,22.39865],[113.9153,22.39862],[113.9153,22.39861],[113.9153,22.3986],[113.9153,22.39857],[113.91531,22.39855],[113.91531,22.39853],[113.91532,22.39852],[113.91532,22.3985],[113.91533,22.39848],[113.91533,22.39846],[113.91533,22.39843],[113.91533,22.39842],[113.91533,22.3984],[113.91533,22.39839],[113.91536,22.39824],[113.91536,22.39824],[113.91536,22.39823],[113.91537,22.39818],[113.91538,22.39814],[113.91539,22.39812],[113.91539,22.39811],[113.91539,22.39806],[113.91539,22.39804],[113.91539,22.39802],[113.91539,22.398],[113.91538,22.39788],[113.91538,22.39784],[113.91539,22.39782],[113.91538,22.39782],[113.91538,22.3978],[113.91538,22.39777],[113.91537,22.39775],[113.91536,22.39772],[113.91536,22.39771],[113.91534,22.39767],[113.91533,22.39766],[113.91531,22.39763],[113.91529,22.3976],[113.91528,22.39759],[113.91527,22.39758],[113.91527,22.39758],[113.91526,22.39757],[113.91526,22.39757],[113.91523,22.39753],[113.91522,22.39749],[113.91523,22.39746],[113.91523,22.39746],[113.91519,22.39736],[113.91516,22.39731],[113.91516,22.39731],[113.91516,22.39731],[113.91515,22.39731],[113.91515,22.39731],[113.91515,22.39731],[113.91513,22.39731],[113.91514,22.39723],[113.91514,22.39723],[113.91513,22.39723],[113.91511,22.39721],[113.91512,22.39718],[113.91511,22.39718],[113.91511,22.39718],[113.91511,22.39716],[113.9151,22.39715],[113.9151,22.39715],[113.91509,22.39715],[113.91508,22.39712],[113.91504,22.39714],[113.915,22.39712],[113.91501,22.39712],[113.91502,22.3971],[113.91502,22.3971],[113.91503,22.3971],[113.91503,22.39709],[113.91503,22.39708],[113.915,22.39705],[113.915,22.39705],[113.915,22.39704],[113.915,22.39704],[113.91499,22.39704],[113.91498,22.39705],[113.91498,22.39706],[113.91498,22.39707],[113.91497,22.39708],[113.91495,22.39705],[113.91495,22.39704],[113.91494,22.39703],[113.91493,22.39702],[113.91492,22.39702],[113.91488,22.39701],[113.91487,22.397],[113.91485,22.397],[113.91478,22.39697],[113.91477,22.39697],[113.91477,22.39696],[113.91475,22.39696],[113.91474,22.39696],[113.91473,22.39696],[113.91473,22.39696],[113.91464,22.39695],[113.91464,22.39694],[113.91463,22.39694],[113.91462,22.39694],[113.91461,22.39695],[113.9146,22.39696],[113.9146,22.39698],[113.91459,22.39698],[113.91459,22.39699],[113.91459,22.39699],[113.91456,22.39698],[113.91456,22.39698],[113.91455,22.39697],[113.91454,22.39697],[113.91453,22.39697],[113.91452,22.39697],[113.91451,22.39697],[113.91451,22.39697],[113.9145,22.39698],[113.91449,22.39698],[113.91444,22.397],[113.91438,22.39691],[113.91437,22.39691],[113.91436,22.39689],[113.91436,22.39688],[113.91434,22.39685],[113.91433,22.39685],[113.91433,22.39685],[113.91433,22.39685],[113.91433,22.39684],[113.9143,22.39682],[113.91428,22.3968],[113.91426,22.39678],[113.91423,22.39676],[113.91422,22.39676],[113.91421,22.39675],[113.91421,22.39675],[113.9142,22.39676],[113.91417,22.39676],[113.91416,22.39676],[113.91416,22.39676],[113.91416,22.39676],[113.91416,22.39676],[113.91415,22.39677],[113.91415,22.39677],[113.91408,22.39679],[113.91408,22.39679],[113.91407,22.39678],[113.91407,22.39678],[113.91406,22.39677],[113.91405,22.39677],[113.91404,22.39677],[113.91402,22.39677],[113.91401,22.39677],[113.914,22.39677],[113.91399,22.39674],[113.91399,22.39674],[113.914,22.39674],[113.914,22.39673],[113.914,22.39673],[113.914,22.39671],[113.914,22.39671],[113.91399,22.39671],[113.91399,22.3967],[113.91399,22.39669],[113.91398,22.39668],[113.91398,22.39668],[113.91398,22.39667],[113.91397,22.39665],[113.91397,22.39664],[113.91388,22.39661],[113.91387,22.3966],[113.91386,22.39661],[113.91387,22.39662],[113.91387,22.39662],[113.91383,22.39668],[113.91382,22.39669],[113.91379,22.39668],[113.91379,22.39668],[113.91378,22.39667],[113.91377,22.39666],[113.91376,22.39666],[113.91376,22.39666],[113.91375,22.39666],[113.9137,22.39664],[113.91369,22.39663],[113.9137,22.39663],[113.91369,22.39663],[113.91369,22.39661],[113.91369,22.39661],[113.91369,22.3966],[113.91369,22.3966],[113.91369,22.3966],[113.9137,22.39658],[113.9137,22.39658],[113.91372,22.39655],[113.91375,22.39656],[113.91375,22.39656],[113.91377,22.39658],[113.91378,22.39657],[113.91378,22.39657],[113.91378,22.39656],[113.91379,22.39655],[113.91379,22.39654],[113.91379,22.39652],[113.91379,22.39652],[113.91379,22.39651],[113.91379,22.3965],[113.91377,22.39647],[113.91377,22.39647],[113.91376,22.39646],[113.91376,22.39646],[113.91376,22.39646],[113.91375,22.39643],[113.91374,22.3964],[113.91373,22.39639],[113.91373,22.39638],[113.91372,22.39636],[113.91371,22.39635],[113.9137,22.39634],[113.9137,22.39634],[113.91369,22.39633],[113.91368,22.39632],[113.91367,22.39631],[113.91365,22.3963],[113.91363,22.39628],[113.91362,22.39627],[113.91361,22.39626],[113.91361,22.39625],[113.9136,22.39624],[113.91359,22.39623],[113.91358,22.39622],[113.91357,22.39622],[113.91356,22.39622],[113.91355,22.39623],[113.91355,22.39624],[113.91355,22.39626],[113.91353,22.39626],[113.91353,22.39625],[113.91351,22.39625],[113.91351,22.39624],[113.91351,22.39622],[113.9135,22.39622],[113.9135,22.39618],[113.91349,22.3962],[113.91348,22.3962],[113.91348,22.39621],[113.91348,22.39622],[113.91348,22.39623],[113.91348,22.39624],[113.91348,22.39624],[113.91349,22.39625],[113.91349,22.39625],[113.9135,22.39626],[113.9135,22.39626],[113.9135,22.39627],[113.9135,22.39628],[113.91347,22.39627],[113.91347,22.39627],[113.91346,22.39627],[113.91345,22.39626],[113.91344,22.39626],[113.91344,22.39626],[113.91342,22.39625],[113.91342,22.39625],[113.91342,22.39625],[113.91341,22.39625],[113.91341,22.39622],[113.91343,22.39622],[113.91344,22.39622],[113.91345,22.39622],[113.91345,22.39622],[113.91345,22.39622],[113.91345,22.39621],[113.91345,22.3962],[113.91345,22.39618],[113.91345,22.39616],[113.91343,22.39613],[113.91338,22.39612],[113.91338,22.39612],[113.91338,22.39612],[113.91339,22.39611],[113.91338,22.3961],[113.91336,22.3961],[113.91336,22.39605],[113.91336,22.39605],[113.91337,22.39604],[113.91338,22.39604],[113.91338,22.39603],[113.91338,22.39603],[113.91338,22.39603],[113.91339,22.39603],[113.9134,22.39603],[113.9134,22.39602],[113.9134,22.39602],[113.91339,22.39602],[113.91338,22.39601],[113.91338,22.39601],[113.91338,22.396],[113.91337,22.396],[113.91336,22.396],[113.91336,22.39599],[113.91336,22.39598],[113.91336,22.39598],[113.91336,22.39597],[113.91336,22.39596],[113.91339,22.39596],[113.91339,22.39596],[113.91342,22.39596],[113.91344,22.39596],[113.91343,22.3959],[113.91345,22.39589],[113.91346,22.39589],[113.91346,22.39589],[113.91347,22.39589],[113.91349,22.39589],[113.9135,22.39589],[113.9135,22.3959],[113.9135,22.39592],[113.9135,22.39596],[113.91353,22.39596],[113.91356,22.39596],[113.91356,22.39597],[113.91356,22.39597],[113.91358,22.39598],[113.91358,22.39598],[113.91358,22.39598],[113.91358,22.39599],[113.91358,22.396],[113.91363,22.39601],[113.91363,22.39601],[113.91363,22.39602],[113.91364,22.39602],[113.91364,22.39602],[113.91367,22.39601],[113.91368,22.39601],[113.91369,22.396],[113.9137,22.396],[113.9137,22.39598],[113.9137,22.39597],[113.9137,22.39597],[113.91369,22.39596],[113.91368,22.39596],[113.91367,22.39595],[113.91367,22.39595],[113.91367,22.39595],[113.91366,22.39594],[113.91366,22.39592],[113.91369,22.39593],[113.91369,22.39593],[113.91369,22.39593],[113.9137,22.39594],[113.91371,22.39594],[113.91372,22.39595],[113.91372,22.39596],[113.91373,22.39597],[113.91374,22.39598],[113.91375,22.39598],[113.91376,22.39597],[113.91377,22.39595],[113.91378,22.39594],[113.9138,22.39591],[113.91381,22.39589],[113.91382,22.39588],[113.91382,22.39587],[113.91382,22.39586],[113.91382,22.39585],[113.91381,22.39585],[113.91381,22.39584],[113.9138,22.39584],[113.91379,22.39584],[113.91378,22.39583],[113.91377,22.39583],[113.91377,22.39583],[113.91376,22.39582],[113.91376,22.39582],[113.91377,22.39579],[113.91376,22.39579],[113.91376,22.39579],[113.91377,22.39576],[113.91382,22.39578],[113.91382,22.39578],[113.91381,22.39579],[113.91381,22.3958],[113.91381,22.3958],[113.91382,22.39581],[113.91382,22.39581],[113.91383,22.3958],[113.91384,22.39581],[113.91385,22.39581],[113.91386,22.39581],[113.91387,22.3958],[113.91387,22.3958],[113.91387,22.3958],[113.91389,22.39579],[113.91389,22.39578],[113.9139,22.39575],[113.91389,22.39574],[113.9139,22.39574],[113.9139,22.39573],[113.9139,22.39572],[113.9139,22.39571],[113.9139,22.39571],[113.91389,22.3957],[113.91389,22.39569],[113.91388,22.39568],[113.91388,22.39568],[113.91387,22.39567],[113.91387,22.39565],[113.91387,22.39565],[113.91387,22.39565],[113.91387,22.39563],[113.91393,22.39561],[113.91393,22.39561],[113.91394,22.39561],[113.91396,22.39564],[113.91398,22.39565],[113.91399,22.39564],[113.91399,22.39564],[113.91402,22.39566],[113.91402,22.39566],[113.91403,22.39566],[113.91404,22.39566],[113.91404,22.39566],[113.91404,22.39567],[113.91408,22.39564],[113.91409,22.39564],[113.9141,22.39564],[113.9141,22.39564],[113.91411,22.39563],[113.91411,22.39563],[113.91411,22.39562],[113.91411,22.39562],[113.91411,22.39553],[113.91411,22.39553],[113.91411,22.39553],[113.91411,22.39552],[113.9141,22.39552],[113.9141,22.39551],[113.9141,22.39548],[113.9141,22.39548],[113.9141,22.39547],[113.91417,22.39547],[113.91417,22.39548],[113.91418,22.39548],[113.91418,22.39548],[113.91418,22.3955],[113.91418,22.39551],[113.91418,22.39553],[113.91419,22.39554],[113.91438,22.39523],[113.91438,22.39522],[113.9144,22.3952],[113.91442,22.39518],[113.91444,22.39513],[113.91447,22.39511],[113.9145,22.39507],[113.91451,22.39504],[113.91452,22.39503],[113.91453,22.39502],[113.91454,22.395],[113.91455,22.39497],[113.91456,22.39496],[113.91457,22.39494],[113.91458,22.39493],[113.91459,22.39491],[113.9146,22.3949],[113.91461,22.39487],[113.91464,22.39482],[113.91465,22.39479],[113.91465,22.39478],[113.91465,22.39477],[113.91465,22.39476],[113.91465,22.39475],[113.91465,22.39473],[113.91465,22.39472],[113.91464,22.39447],[113.91465,22.39444],[113.91465,22.39443],[113.91468,22.3944],[113.9147,22.39437],[113.91471,22.39436],[113.91471,22.39436],[113.91471,22.39435],[113.91472,22.39432],[113.91473,22.39428],[113.91474,22.39426],[113.91476,22.39423],[113.91476,22.39422],[113.91477,22.3942],[113.91477,22.39417],[113.91478,22.39415],[113.91478,22.39413],[113.91479,22.3941],[113.91479,22.39408],[113.91479,22.39408],[113.91478,22.39408],[113.91476,22.39409],[113.91476,22.39409],[113.91475,22.39409],[113.91473,22.39409],[113.91473,22.39409],[113.91472,22.39409],[113.91471,22.39408],[113.9147,22.39408],[113.9147,22.39408],[113.91473,22.39404],[113.91476,22.39404],[113.91477,22.39405],[113.91478,22.39405],[113.9148,22.39405],[113.91482,22.39402],[113.91485,22.39398],[113.91486,22.39395],[113.91487,22.39394],[113.91487,22.39393],[113.91488,22.39392],[113.9149,22.39389],[113.91491,22.39387],[113.91492,22.39384],[113.91493,22.39382],[113.91493,22.39381],[113.91493,22.3938],[113.91494,22.39379],[113.91494,22.39377],[113.91494,22.39376],[113.91493,22.39373],[113.91493,22.3937],[113.91493,22.3937],[113.91491,22.39358],[113.91492,22.39355],[113.91493,22.39351],[113.91493,22.39349],[113.91495,22.39346],[113.91495,22.39343],[113.91496,22.3934],[113.91496,22.39338],[113.91496,22.39337],[113.91497,22.39335],[113.91497,22.39333],[113.91497,22.39331],[113.91497,22.39327],[113.91497,22.39326],[113.91498,22.39325],[113.91499,22.39321],[113.91499,22.3932],[113.91499,22.39319],[113.91499,22.39319],[113.91499,22.39317],[113.91499,22.39316],[113.91499,22.39314],[113.91499,22.39313],[113.915,22.39311],[113.91492,22.39311],[113.9149,22.39308],[113.9149,22.39308],[113.9149,22.39308],[113.91492,22.39305],[113.91492,22.39305],[113.91493,22.39305],[113.91494,22.39305],[113.91494,22.39305],[113.91498,22.39305],[113.91499,22.39305],[113.91501,22.39304],[113.91502,22.39304],[113.91503,22.39304],[113.91503,22.39304],[113.91504,22.39303],[113.91505,22.39303],[113.91506,22.39303],[113.91506,22.39303],[113.91506,22.39302],[113.91506,22.39302],[113.91505,22.39301],[113.91504,22.393],[113.91504,22.393],[113.91502,22.39297],[113.91502,22.39297],[113.91504,22.39296],[113.91504,22.39296],[113.91505,22.39296],[113.91506,22.39295],[113.91507,22.39295],[113.91508,22.39294],[113.91509,22.39294],[113.91509,22.39293],[113.9151,22.39292],[113.9151,22.39288],[113.91511,22.39285],[113.91511,22.39284],[113.91511,22.39283],[113.91511,22.39281],[113.91511,22.39281],[113.91511,22.3928],[113.91511,22.3928],[113.91511,22.3928],[113.9151,22.39279],[113.9151,22.39279],[113.91509,22.39278],[113.91508,22.39278],[113.91506,22.39277],[113.91504,22.39276],[113.91501,22.39275],[113.91502,22.39273],[113.91502,22.39273],[113.91502,22.39273],[113.91508,22.39271],[113.9151,22.39267],[113.91507,22.39265],[113.91505,22.39264],[113.91506,22.39262],[113.91505,22.39262],[113.91505,22.39259],[113.91507,22.3926],[113.91508,22.39259],[113.91511,22.3926],[113.91512,22.39259],[113.91514,22.3926],[113.91518,22.39254],[113.9152,22.39255],[113.91522,22.39252],[113.91524,22.3925],[113.91526,22.39251],[113.91528,22.39248],[113.91531,22.3925],[113.91534,22.39247],[113.91535,22.39248],[113.91538,22.39245],[113.91542,22.39241],[113.91543,22.39242],[113.91543,22.39243],[113.91544,22.39244],[113.91543,22.39245],[113.91545,22.39246],[113.91544,22.39247],[113.91554,22.39246],[113.91555,22.39247],[113.91557,22.39247],[113.9156,22.39246],[113.9156,22.39245],[113.91566,22.39244],[113.91567,22.39245],[113.91568,22.39244],[113.9157,22.39245],[113.91571,22.39244],[113.9157,22.39243],[113.91571,22.39242],[113.91571,22.39242],[113.91573,22.39242],[113.91575,22.39239],[113.91579,22.3924],[113.91577,22.39245],[113.91582,22.39246],[113.91582,22.39247],[113.91582,22.39247],[113.91592,22.39251],[113.91593,22.39251],[113.91594,22.39251],[113.91595,22.39251],[113.91596,22.39251],[113.91597,22.3925],[113.91597,22.3925],[113.916,22.39251],[113.91601,22.39252],[113.91602,22.39251],[113.91603,22.39251],[113.91603,22.3925],[113.91603,22.3925],[113.91608,22.39246],[113.91612,22.39247],[113.91612,22.39248],[113.91612,22.39249],[113.91612,22.39249],[113.91613,22.3925],[113.91615,22.39249],[113.91616,22.39249],[113.91617,22.39249],[113.91618,22.39249],[113.91619,22.39249],[113.9162,22.39248],[113.9162,22.39247],[113.91621,22.39246],[113.91627,22.39236],[113.91638,22.39234],[113.91641,22.39234],[113.91642,22.39234],[113.91643,22.39234],[113.91644,22.39234],[113.91645,22.39235],[113.91646,22.39235],[113.91647,22.39234],[113.91648,22.39233],[113.91648,22.39232],[113.91649,22.39232],[113.9165,22.39232],[113.91652,22.39232],[113.91653,22.39231],[113.91659,22.39224],[113.91659,22.39224],[113.9166,22.39223],[113.91659,22.39223],[113.91659,22.39222],[113.91658,22.39222],[113.91658,22.39222],[113.91652,22.39219],[113.91653,22.39213],[113.91659,22.3921],[113.91666,22.39212],[113.91666,22.39213],[113.91667,22.39213],[113.91668,22.39212],[113.91668,22.39212],[113.91668,22.39211],[113.91668,22.39211],[113.91674,22.39205],[113.91674,22.39205],[113.91674,22.39204],[113.91674,22.39203],[113.91674,22.39201],[113.91675,22.392],[113.91676,22.392],[113.91678,22.39199],[113.91679,22.39198],[113.91681,22.39197],[113.91681,22.39196],[113.91682,22.39196],[113.91682,22.39195],[113.91683,22.39194],[113.91683,22.39193],[113.91683,22.39192],[113.91683,22.3919],[113.91683,22.39189],[113.91682,22.39189],[113.91681,22.39188],[113.91691,22.39183],[113.91692,22.39181],[113.91695,22.3918],[113.91695,22.39179],[113.91695,22.39177],[113.91695,22.39176],[113.91696,22.39175],[113.91697,22.39175],[113.91698,22.39175],[113.91699,22.39175],[113.91699,22.39175],[113.917,22.39175],[113.91701,22.39174],[113.91703,22.39173],[113.91704,22.39172],[113.91704,22.39171],[113.91706,22.3917],[113.91712,22.39167],[113.91712,22.39167],[113.91713,22.39167],[113.91714,22.39167],[113.91715,22.39167],[113.91716,22.39166],[113.91717,22.39166],[113.91717,22.39165],[113.91718,22.39165],[113.9172,22.39164],[113.91721,22.39164],[113.91722,22.39164],[113.91723,22.39163],[113.91723,22.39163],[113.91724,22.39162],[113.91725,22.39161],[113.91725,22.3916],[113.91727,22.39156],[113.91727,22.39155],[113.91727,22.39155],[113.91728,22.39153],[113.91728,22.39152],[113.91727,22.39152],[113.91726,22.39152],[113.91726,22.39152],[113.91725,22.39152],[113.91725,22.39152],[113.91719,22.3915],[113.91719,22.39149],[113.9172,22.39147],[113.9172,22.39146],[113.9172,22.39145],[113.91721,22.39142],[113.91724,22.39142],[113.91724,22.39143],[113.91724,22.39143],[113.91724,22.39144],[113.91725,22.39144],[113.91725,22.39144],[113.91726,22.39144],[113.91727,22.39144],[113.91729,22.39143],[113.9173,22.39142],[113.9173,22.39142],[113.91731,22.39141],[113.91732,22.39139],[113.91732,22.39138],[113.91733,22.39137],[113.91733,22.39136],[113.91733,22.39135],[113.91734,22.39131],[113.91736,22.3913],[113.91736,22.3913],[113.91738,22.39129],[113.91742,22.39128],[113.91742,22.39128],[113.91743,22.39127],[113.91744,22.39126],[113.91744,22.39126],[113.91745,22.39125],[113.91745,22.39125],[113.91747,22.39125],[113.91748,22.39125],[113.91748,22.39124],[113.91748,22.39123],[113.91748,22.39123],[113.91748,22.39122],[113.91748,22.39122],[113.9175,22.39121],[113.91748,22.39121],[113.91748,22.39121],[113.91746,22.39121],[113.91745,22.3912],[113.91744,22.3912],[113.91743,22.3912],[113.91742,22.39119],[113.91742,22.39119],[113.91741,22.39118],[113.91741,22.39118],[113.91741,22.39117],[113.91741,22.39116],[113.91741,22.39115],[113.9174,22.39114],[113.91739,22.39114],[113.91739,22.39114],[113.91738,22.39113],[113.91738,22.39113],[113.91741,22.39108],[113.91743,22.39108],[113.91744,22.39109],[113.91744,22.39109],[113.91745,22.3911],[113.91746,22.39111],[113.91748,22.39113],[113.91748,22.39113],[113.91749,22.39113],[113.9175,22.39113],[113.91752,22.39116],[113.91752,22.39117],[113.91752,22.39117],[113.91753,22.39119],[113.91753,22.39119],[113.91758,22.39118],[113.91758,22.39118],[113.91759,22.39119],[113.9176,22.39119],[113.91761,22.39119],[113.91761,22.39118],[113.91761,22.39118],[113.91762,22.39117],[113.91762,22.39117],[113.91763,22.39117],[113.91764,22.39117],[113.91768,22.39118],[113.91772,22.39119],[113.91772,22.3912],[113.91778,22.39122],[113.91778,22.39122],[113.91784,22.39124],[113.91784,22.39125],[113.91795,22.39129],[113.91794,22.39131],[113.91796,22.39132],[113.91796,22.39132],[113.91796,22.39134],[113.91796,22.39134],[113.91797,22.39135],[113.91799,22.39138],[113.91799,22.39139],[113.918,22.39139],[113.91812,22.39144],[113.91815,22.39149],[113.91815,22.3915],[113.91815,22.39151],[113.91816,22.39152],[113.91816,22.39153],[113.91817,22.39154],[113.91818,22.39155],[113.91819,22.39156],[113.9182,22.39156],[113.91821,22.39157],[113.91822,22.39157],[113.91823,22.39157],[113.91824,22.39156],[113.91826,22.39156],[113.91827,22.39155],[113.91828,22.39155],[113.91829,22.39155],[113.91829,22.39154],[113.91831,22.39152],[113.91831,22.39151],[113.91832,22.39151],[113.91833,22.39151],[113.91833,22.39151],[113.91834,22.3915],[113.91835,22.3915],[113.91835,22.3915],[113.91836,22.39151],[113.91837,22.39151],[113.91837,22.39152],[113.91837,22.39152],[113.91837,22.39153],[113.91838,22.39154],[113.91838,22.39154],[113.91839,22.39153],[113.9184,22.39153],[113.9184,22.39152],[113.9184,22.39151],[113.91841,22.3915],[113.91842,22.3915],[113.91842,22.3915],[113.91843,22.3915],[113.91843,22.39151],[113.91843,22.39151],[113.91844,22.39151],[113.91844,22.3915],[113.91845,22.3915],[113.91846,22.39151],[113.91846,22.39151],[113.91847,22.39152],[113.91848,22.39151],[113.91849,22.39151],[113.9185,22.39152],[113.91852,22.39152],[113.91852,22.39152],[113.91852,22.39152],[113.91854,22.3915],[113.91854,22.3915],[113.91855,22.39149],[113.91857,22.39146],[113.91857,22.39146],[113.91857,22.39145],[113.91858,22.39144],[113.9186,22.39142],[113.91861,22.39142],[113.91863,22.39141],[113.91864,22.39141],[113.91865,22.39141],[113.91864,22.39135],[113.91862,22.39135],[113.91861,22.39134],[113.9186,22.39134],[113.91857,22.39134],[113.91857,22.39133],[113.91856,22.39133],[113.91854,22.39132],[113.91853,22.39131],[113.91852,22.3913],[113.91851,22.3913],[113.9185,22.3913],[113.91849,22.3913],[113.91849,22.3913],[113.91848,22.3913],[113.91847,22.39131],[113.91845,22.39133],[113.91844,22.39133],[113.91842,22.39134],[113.91841,22.39135],[113.9184,22.39135],[113.91839,22.39136],[113.91837,22.39137],[113.91835,22.39137],[113.91833,22.39137],[113.91832,22.39137],[113.9183,22.39137],[113.91827,22.39137],[113.91824,22.39137],[113.91823,22.39137],[113.91822,22.39137],[113.91821,22.39137],[113.9182,22.39136],[113.9183,22.39122],[113.91834,22.39119],[113.91834,22.39118],[113.91836,22.39117],[113.91837,22.39116],[113.91837,22.39116],[113.91839,22.39113],[113.91841,22.39111],[113.91842,22.3911],[113.91843,22.39109],[113.91846,22.39106],[113.91848,22.39105],[113.91848,22.39104],[113.9185,22.39103],[113.91852,22.39101],[113.91854,22.39099],[113.91856,22.39098],[113.91858,22.39097],[113.91859,22.39096],[113.9186,22.39095],[113.91861,22.39094],[113.91862,22.39094],[113.91862,22.39093],[113.91863,22.39093],[113.91864,22.39091],[113.91866,22.39089],[113.91871,22.39083],[113.91874,22.39081],[113.91877,22.39078],[113.9188,22.39073],[113.91882,22.39071],[113.91884,22.39068],[113.91886,22.39066],[113.91887,22.39065],[113.91889,22.39063],[113.9189,22.39061],[113.91894,22.39058],[113.91896,22.39056],[113.91897,22.39054],[113.91899,22.39053],[113.91899,22.39052],[113.919,22.39051],[113.91901,22.3905],[113.91903,22.39048],[113.91905,22.39046],[113.91908,22.39042],[113.9191,22.3904],[113.91912,22.39037],[113.91914,22.39036],[113.91916,22.39033],[113.91917,22.39032],[113.91918,22.39031],[113.91919,22.3903],[113.9192,22.39028],[113.91922,22.39026],[113.91923,22.39025],[113.91925,22.39023],[113.91926,22.39021],[113.91927,22.3902],[113.91927,22.39019],[113.91928,22.39019],[113.91929,22.39017],[113.91931,22.39015],[113.91932,22.39013],[113.91933,22.39012],[113.91935,22.39009],[113.91935,22.39009],[113.91936,22.39009],[113.91939,22.39007],[113.91941,22.39006],[113.91942,22.39005],[113.91943,22.39003],[113.91946,22.39],[113.91947,22.38999],[113.91947,22.38999],[113.91948,22.38997],[113.9195,22.38995],[113.91952,22.38992],[113.91953,22.38991],[113.91953,22.38991],[113.91955,22.38988],[113.91957,22.38986],[113.91957,22.38985],[113.91958,22.38984],[113.91961,22.38979],[113.91962,22.38977],[113.91963,22.38976],[113.91964,22.38976],[113.91964,22.38975],[113.91965,22.38974],[113.91965,22.38973],[113.91966,22.38972],[113.91967,22.38971],[113.91968,22.38969],[113.91968,22.38968],[113.9197,22.38966],[113.91971,22.38965],[113.91973,22.38961],[113.91974,22.3896],[113.91975,22.38958],[113.91976,22.38956],[113.91977,22.38955],[113.91977,22.38954],[113.91978,22.38954],[113.91979,22.38952],[113.9198,22.38951],[113.9198,22.3895],[113.91982,22.38947],[113.91983,22.38945],[113.91985,22.38943],[113.91986,22.38941],[113.91986,22.3894],[113.91988,22.38938],[113.91988,22.38937],[113.9199,22.38934],[113.9199,22.38933],[113.91991,22.38932],[113.91991,22.38931],[113.91993,22.38929],[113.91994,22.38926],[113.91995,22.38924],[113.91995,22.38923],[113.91996,22.38922],[113.91997,22.38921],[113.91998,22.38919],[113.91999,22.38916],[113.92,22.38915],[113.92001,22.38914],[113.92001,22.38913],[113.92002,22.38911],[113.92003,22.38909],[113.92003,22.38908],[113.92004,22.38908],[113.92006,22.38904],[113.92008,22.38901],[113.92008,22.389],[113.92009,22.38898],[113.92011,22.38894],[113.92031,22.38851],[113.92033,22.38847],[113.92034,22.38845],[113.92034,22.38844],[113.92035,22.38843],[113.92036,22.3884],[113.92036,22.3884],[113.92037,22.38838],[113.92038,22.38835],[113.92039,22.38833],[113.9204,22.38832],[113.9204,22.38831],[113.92043,22.38823],[113.92044,22.38822],[113.92045,22.38818],[113.92047,22.38813],[113.92048,22.38811],[113.92058,22.38784],[113.92058,22.38783],[113.92058,22.38783],[113.92058,22.38782],[113.92058,22.38782],[113.92058,22.38782],[113.92059,22.3878],[113.92059,22.3878],[113.92059,22.38779],[113.9206,22.38776],[113.9206,22.38776],[113.92063,22.38769],[113.92065,22.38761],[113.92068,22.38754],[113.92069,22.38746],[113.92069,22.38743],[113.92069,22.3874],[113.92069,22.38739],[113.92072,22.3873],[113.92073,22.38724],[113.92075,22.38716],[113.92077,22.38709],[113.92079,22.38705],[113.9208,22.38703],[113.9208,22.38698],[113.92081,22.38695],[113.92081,22.3869],[113.92085,22.38674],[113.92086,22.38669],[113.92087,22.38662],[113.92088,22.38648],[113.92089,22.38644],[113.92089,22.38634],[113.92089,22.38632],[113.9209,22.38623],[113.9209,22.3862],[113.92091,22.38612],[113.92092,22.38608],[113.92093,22.38601],[113.92093,22.38595],[113.92093,22.38592],[113.92094,22.38589],[113.92094,22.38581],[113.92094,22.38578],[113.92095,22.38565],[113.92096,22.38557],[113.92097,22.38547],[113.92096,22.3854],[113.92096,22.3854],[113.92096,22.38537],[113.92096,22.38537],[113.92096,22.38536],[113.92096,22.38533],[113.92096,22.38519],[113.92097,22.38515],[113.92097,22.38514],[113.92097,22.38512],[113.92091,22.38498],[113.92091,22.38497],[113.92091,22.38496],[113.9209,22.38494],[113.92089,22.38492],[113.92088,22.38491],[113.92082,22.38482],[113.92083,22.38479],[113.92083,22.38474],[113.92083,22.3847],[113.92083,22.38465],[113.92069,22.38431],[113.92069,22.38428],[113.9207,22.38425],[113.92073,22.38422],[113.92076,22.38421],[113.92078,22.38421],[113.92076,22.38408],[113.92072,22.38408],[113.9207,22.38408],[113.92067,22.38408],[113.92064,22.38406],[113.92062,22.38404],[113.92059,22.384],[113.92058,22.38398],[113.92058,22.38396],[113.92056,22.38393],[113.92056,22.38393],[113.92049,22.38376],[113.92049,22.38374],[113.92048,22.38374],[113.92048,22.38373],[113.92047,22.38367],[113.92048,22.38366],[113.92049,22.38363],[113.92048,22.3836],[113.92046,22.38356],[113.92046,22.38355],[113.92044,22.38337],[113.92044,22.38337],[113.92044,22.38334],[113.92044,22.38331],[113.92043,22.38325],[113.92042,22.38317],[113.9204,22.3831],[113.92038,22.38304],[113.92041,22.38297],[113.92042,22.38296],[113.92043,22.38291],[113.92043,22.38286],[113.92043,22.38282],[113.92043,22.38278],[113.92042,22.38278],[113.92042,22.38273],[113.92042,22.38273],[113.92042,22.38272],[113.92042,22.3827],[113.92041,22.38263],[113.9204,22.38261],[113.9209,22.38282],[113.92616,22.38509],[113.92761,22.37872],[113.93029,22.37708],[113.93086,22.37672],[113.93096,22.37666],[113.93251,22.37574],[113.93341,22.37559],[113.93404,22.37548],[113.93978,22.37451],[113.94444,22.37803],[113.9454,22.37875],[113.94859,22.38115],[113.94903,22.38214],[113.95183,22.38857],[113.95367,22.39277],[113.95399,22.39318],[113.95403,22.39405],[113.954,22.3944],[113.95396,22.39505],[113.95386,22.39575],[113.95382,22.39603],[113.95344,22.39765],[113.95299,22.39899],[113.95283,22.39932],[113.9527,22.39961],[113.95222,22.40006],[113.95175,22.40031],[113.95151,22.40039],[113.9511,22.40052],[113.95075,22.40078],[113.95045,22.40124],[113.95042,22.40129],[113.95039,22.4014],[113.9503,22.40181],[113.95033,22.40207],[113.95038,22.40245],[113.95045,22.40283],[113.95049,22.40305],[113.95054,22.40317],[113.95087,22.40386],[113.95101,22.40413],[113.9511,22.40431],[113.9512,22.40445],[113.95155,22.405],[113.95191,22.40541],[113.95208,22.40555],[113.95251,22.4059],[113.95277,22.40604],[113.95321,22.40629],[113.95363,22.40673],[113.95386,22.40731],[113.95394,22.40773],[113.95396,22.40781],[113.95371,22.40879],[113.95372,22.40901],[113.95383,22.40915],[113.95385,22.40918],[113.95413,22.40943],[113.95497,22.41017],[113.956,22.41092],[113.95687,22.41161],[113.95741,22.41161],[113.95807,22.41148],[113.95855,22.41116],[113.95895,22.41085],[113.95906,22.41076],[113.95947,22.41052],[113.95976,22.4104],[113.95995,22.41033],[113.96011,22.4103],[113.96057,22.41023],[113.96124,22.41032],[113.96154,22.41035],[113.96213,22.41042],[113.96297,22.41049],[113.96319,22.4105],[113.96632,22.4158],[113.96697,22.4169],[113.96802,22.41735],[113.96873,22.41762],[113.96972,22.41798],[113.97075,22.41837],[113.97159,22.4186],[113.97235,22.41871],[113.97384,22.41921],[113.97396,22.41911],[113.97418,22.41904],[113.97424,22.41901],[113.97464,22.41915],[113.97484,22.4192],[113.97502,22.41904],[113.97565,22.41847],[113.97614,22.41807],[113.97626,22.41798],[113.97665,22.41763],[113.97721,22.41725],[113.97742,22.41718],[113.97761,22.41732],[113.97796,22.41705],[113.97821,22.4169],[113.97825,22.41673],[113.97838,22.41671],[113.97857,22.41662],[113.97873,22.41661],[113.97886,22.41658],[113.9791,22.41638],[113.97954,22.41604],[113.97974,22.41592],[113.98006,22.41591],[113.98006,22.41591],[113.98013,22.41587],[113.98031,22.41578],[113.98033,22.41577],[113.98034,22.41576],[113.9804,22.41573],[113.98041,22.41573],[113.9805,22.41591],[113.98076,22.41641],[113.98081,22.41651],[113.98085,22.41658],[113.98089,22.41666],[113.981,22.41688],[113.98101,22.41691],[113.98102,22.41692],[113.98103,22.41695],[113.98103,22.41696],[113.98108,22.41694],[113.98111,22.41693],[113.98114,22.41691],[113.98115,22.41691],[113.98118,22.41689],[113.98126,22.41685],[113.98134,22.4168],[113.98144,22.41675],[113.98145,22.41678],[113.98147,22.41685],[113.98147,22.41685],[113.98148,22.41689],[113.98152,22.41698],[113.98155,22.41705],[113.98158,22.41711],[113.98162,22.41718],[113.98163,22.41719],[113.98166,22.41726],[113.9817,22.41732],[113.98177,22.41745],[113.98186,22.41761],[113.9819,22.4177],[113.98195,22.41777],[113.98196,22.41779],[113.98205,22.41796],[113.98214,22.41789],[113.98235,22.41779],[113.98216,22.41732],[113.98247,22.41702],[113.98216,22.41646],[113.98175,22.41627],[113.98176,22.41625],[113.98177,22.41624],[113.98178,22.41622],[113.98179,22.41621],[113.9818,22.41619],[113.98181,22.41617],[113.98182,22.41616],[113.98182,22.41614],[113.98183,22.41613],[113.98184,22.41611],[113.98185,22.4161],[113.98186,22.41608],[113.98187,22.41607],[113.98188,22.41605],[113.9819,22.41603],[113.98191,22.41602],[113.98192,22.416],[113.98193,22.41599],[113.98194,22.41597],[113.98195,22.41596],[113.98196,22.41594],[113.98197,22.41593],[113.98198,22.41592],[113.98199,22.4159],[113.98201,22.41589],[113.98202,22.41587],[113.98203,22.41586],[113.98204,22.41584],[113.98205,22.41583],[113.98207,22.41582],[113.98208,22.4158],[113.98209,22.41579],[113.9821,22.41577],[113.98212,22.41576],[113.98213,22.41575],[113.98219,22.41569],[113.9822,22.41568],[113.9823,22.41563],[113.98241,22.41555],[113.98252,22.4155],[113.9827,22.41541],[113.98287,22.41536],[113.98307,22.4153],[113.98327,22.41523],[113.98346,22.41518],[113.9836,22.41516],[113.98462,22.41485],[113.9863,22.41438],[113.98671,22.41398],[113.98675,22.41383],[113.98678,22.41379],[113.98682,22.41377],[113.98692,22.41376],[113.98701,22.41367],[113.98781,22.41275],[113.9879,22.41269],[113.98849,22.4122],[113.98914,22.41156],[113.98967,22.41156],[113.99067,22.41153],[113.99166,22.41149],[113.9921,22.41146],[113.99311,22.41141],[113.99457,22.41136],[113.99472,22.41137],[113.99473,22.41091],[113.99481,22.41006],[113.99484,22.40942],[113.99485,22.40921],[113.99501,22.40651],[113.99515,22.40389],[113.99528,22.4028],[113.99557,22.40196],[113.99594,22.40156],[113.99657,22.40107],[113.99695,22.40071],[113.99702,22.40042],[113.99695,22.39996],[113.99668,22.39963],[113.99661,22.39927],[113.99657,22.39868],[113.99645,22.39836],[113.996,22.39806],[113.99588,22.39777],[113.99588,22.39737],[113.99613,22.39694],[113.99623,22.39652],[113.99632,22.39589],[113.99629,22.39505],[113.99625,22.39431],[113.99627,22.39392],[113.99648,22.39352],[113.99692,22.39311],[113.99724,22.39252],[113.99765,22.3923],[113.99814,22.39203],[113.99847,22.39159],[113.99873,22.39097],[113.99916,22.39043],[113.99946,22.39014],[113.99998,22.38979],[114.00068,22.39023],[114.00127,22.39043],[114.00188,22.39041],[114.00267,22.39029],[114.00317,22.39024],[114.00357,22.3903],[114.00401,22.39046],[114.00473,22.39096],[114.00524,22.39152],[114.00637,22.39276],[114.00676,22.39322],[114.00699,22.3935],[114.00759,22.39423],[114.00798,22.39488],[114.00833,22.3954],[114.00884,22.39658],[114.00897,22.39708],[114.009,22.39749],[114.00897,22.39812],[114.00891,22.39878],[114.00869,22.3996],[114.00853,22.40038],[114.0085,22.40092],[114.0085,22.40158],[114.00861,22.4022],[114.00872,22.40269],[114.0088,22.40309],[114.00879,22.40354],[114.00869,22.4039],[114.0084,22.40421],[114.00757,22.40483],[114.00688,22.40546],[114.00674,22.40566],[114.00627,22.4063],[114.00573,22.40723],[114.00533,22.40809],[114.00522,22.40875],[114.00529,22.40922],[114.0053,22.40928],[114.00541,22.40995],[114.00539,22.4104],[114.00517,22.41105],[114.00489,22.41182],[114.00481,22.4123],[114.00493,22.41288],[114.00511,22.41368],[114.00543,22.41478],[114.00545,22.41477],[114.00548,22.41475],[114.00551,22.41473],[114.00554,22.4147],[114.00557,22.41467],[114.00559,22.41465],[114.00561,22.41462],[114.00563,22.41459],[114.00565,22.41456],[114.00567,22.41453],[114.00569,22.41449],[114.00577,22.41441],[114.0058,22.41437],[114.00586,22.41432],[114.0059,22.41429],[114.00594,22.41426],[114.00597,22.41424],[114.00601,22.41422],[114.00605,22.4142],[114.00609,22.41417],[114.00613,22.41416],[114.00617,22.41415],[114.00622,22.41413],[114.00623,22.41413],[114.00626,22.41413],[114.0063,22.41413],[114.00633,22.41413],[114.00636,22.41413],[114.00643,22.41414],[114.00647,22.41415],[114.00651,22.41416],[114.00653,22.41416],[114.00654,22.41417],[114.00657,22.41418],[114.00661,22.4142],[114.00671,22.41427],[114.00672,22.41446],[114.00728,22.41446],[114.00757,22.41452],[114.00781,22.41461],[114.00807,22.41473],[114.00823,22.41481],[114.00844,22.41497],[114.00868,22.41514],[114.0088,22.41521],[114.00897,22.41529],[114.00909,22.41532],[114.00919,22.41533],[114.00934,22.41532],[114.00948,22.41527],[114.00961,22.41523],[114.00972,22.41517],[114.00983,22.41511],[114.00993,22.41503],[114.01002,22.41495],[114.01012,22.41484],[114.01022,22.41474],[114.01034,22.4146],[114.01045,22.41444],[114.01056,22.41431],[114.0106,22.41418],[114.01067,22.41403],[114.01072,22.41389],[114.0108,22.41371],[114.01087,22.41358],[114.01089,22.41352],[114.01085,22.41339],[114.01081,22.41325],[114.01075,22.41315],[114.01066,22.41307],[114.01061,22.413],[114.01058,22.4129],[114.01056,22.41283],[114.01053,22.41273],[114.0105,22.41259],[114.0105,22.41237],[114.01052,22.41223],[114.01057,22.41207],[114.01065,22.412],[114.01075,22.41193],[114.01092,22.41183],[114.011,22.41178],[114.01104,22.41171],[114.01102,22.41167],[114.01098,22.41162],[114.01092,22.41157],[114.01061,22.41138],[114.01056,22.41136],[114.01049,22.41139],[114.01042,22.41141],[114.01021,22.41149],[114.01015,22.41147],[114.01011,22.41142],[114.01008,22.41135],[114.01012,22.41106],[114.01013,22.41101],[114.01017,22.41099],[114.01026,22.4109],[114.0103,22.41086],[114.01031,22.4108],[114.01033,22.41057],[114.01033,22.41053],[114.01036,22.41048],[114.01041,22.41045],[114.01055,22.41039],[114.01061,22.41036],[114.01063,22.41029],[114.01062,22.41018],[114.01037,22.40918],[114.01035,22.40912],[114.01028,22.40906],[114.01022,22.40899],[114.01014,22.40876],[114.01016,22.4087],[114.01021,22.40866],[114.01027,22.40865],[114.01046,22.40866],[114.01109,22.40883],[114.0112,22.40885],[114.01131,22.4089],[114.01153,22.40899],[114.01164,22.40902],[114.01175,22.40903],[114.01187,22.40901],[114.01191,22.40892],[114.01195,22.40882],[114.01202,22.40867],[114.01208,22.40861],[114.01216,22.40851],[114.01217,22.4085],[114.01217,22.40457],[114.01362,22.40458],[114.02964,22.40458],[114.04207,22.40458],[114.05122,22.40458],[114.05125,22.40422],[114.05126,22.40402],[114.0514,22.40351],[114.05171,22.4029],[114.05205,22.40244],[114.05236,22.40227],[114.05267,22.40209],[114.05291,22.40203],[114.05328,22.40195],[114.05342,22.40196],[114.0536,22.40197],[114.05379,22.40207],[114.05395,22.40216],[114.05411,22.40243],[114.05426,22.40268],[114.05459,22.40312],[114.05459,22.40312],[114.05461,22.40314],[114.0548,22.40325],[114.0551,22.40324],[114.05527,22.40313],[114.05541,22.40304],[114.05558,22.40288],[114.05581,22.40265],[114.05607,22.40236],[114.05641,22.40197],[114.05677,22.4017],[114.05677,22.4017],[114.05686,22.40164],[114.0572,22.40141],[114.05782,22.4011],[114.05794,22.401],[114.05806,22.4009],[114.05816,22.40067],[114.05816,22.40067],[114.05814,22.40042],[114.05813,22.40031],[114.05803,22.39982],[114.05802,22.39958],[114.05802,22.39957],[114.05801,22.3993],[114.05805,22.39913],[114.05811,22.39877],[114.05816,22.39857],[114.05823,22.39826],[114.05835,22.39803],[114.05848,22.39777],[114.05881,22.39727],[114.05846,22.39699],[114.0582,22.39676],[114.05811,22.39668],[114.05811,22.39668],[114.05774,22.3963],[114.05742,22.39591],[114.05738,22.39587],[114.05729,22.39581],[114.05713,22.3958],[114.05672,22.3959],[114.05599,22.39601],[114.05595,22.396],[114.05589,22.39599],[114.05561,22.3959],[114.05544,22.39585],[114.05466,22.39519],[114.05437,22.39486],[114.05437,22.39486],[114.05408,22.39452],[114.0529,22.39292],[114.05213,22.3919],[114.05148,22.39102],[114.05131,22.39077],[114.05087,22.39012],[114.05084,22.39007],[114.05084,22.39006],[114.05083,22.39005],[114.05081,22.39003],[114.05074,22.38997],[114.05073,22.38996],[114.05069,22.38989],[114.05069,22.38985],[114.0507,22.38982],[114.0507,22.38982],[114.0507,22.38981],[114.0507,22.3898],[114.05071,22.38977],[114.05071,22.38974],[114.05071,22.38972],[114.05071,22.3897],[114.05071,22.38968],[114.05071,22.38968],[114.05069,22.38966],[114.05068,22.38965],[114.05068,22.38965],[114.05067,22.38964],[114.05065,22.3896],[114.05065,22.38959],[114.05064,22.38956],[114.05063,22.38952],[114.05063,22.38951],[114.05063,22.38949],[114.05065,22.38943],[114.05066,22.38942],[114.05067,22.38939],[114.05068,22.38937],[114.05069,22.38937],[114.0507,22.38935],[114.0507,22.38934],[114.0507,22.38934],[114.0507,22.38932],[114.0507,22.38932],[114.05071,22.38928],[114.05072,22.38928],[114.05072,22.38927],[114.05073,22.38923],[114.05077,22.38917],[114.05079,22.38913],[114.05081,22.38912],[114.05084,22.38907],[114.05085,22.38905],[114.05087,22.38901],[114.05088,22.38899],[114.05089,22.38895],[114.0509,22.38893],[114.0509,22.38892],[114.0509,22.38888],[114.0509,22.38886],[114.0509,22.38886],[114.05089,22.38884],[114.05089,22.38884],[114.05088,22.38883],[114.05087,22.38882],[114.05084,22.38879],[114.05078,22.38875],[114.0507,22.3887],[114.05069,22.38869],[114.05069,22.38869],[114.05064,22.38865],[114.05059,22.38862],[114.05057,22.38861],[114.05054,22.38859],[114.05049,22.38855],[114.05048,22.38853],[114.05048,22.38853],[114.05047,22.38849],[114.05046,22.38848],[114.05043,22.38841],[114.05042,22.38835],[114.05041,22.3883],[114.05038,22.38825],[114.05037,22.38823],[114.05036,22.38822],[114.05037,22.38819],[114.05037,22.38813],[114.05037,22.38811],[114.05037,22.3881],[114.05038,22.38809],[114.05039,22.38806],[114.05042,22.38802],[114.05046,22.38797],[114.05047,22.38795],[114.05049,22.38792],[114.05052,22.38785],[114.05053,22.38784],[114.05055,22.38783],[114.05056,22.38782],[114.05056,22.38782],[114.05058,22.38778],[114.05059,22.38775],[114.05059,22.38775],[114.05059,22.38773],[114.05059,22.38772],[114.05058,22.3877],[114.05058,22.38766],[114.05058,22.38765],[114.05058,22.38764],[114.05058,22.38757],[114.05058,22.38756],[114.05058,22.38755],[114.05059,22.38752],[114.0506,22.38749],[114.0506,22.38747],[114.05061,22.38745],[114.05063,22.38744],[114.05065,22.38742],[114.05066,22.38741],[114.05066,22.3874],[114.05066,22.3874],[114.05067,22.38737],[114.05069,22.38733],[114.05069,22.38731],[114.05069,22.38726],[114.05069,22.38722],[114.05069,22.3872],[114.0507,22.38711],[114.0507,22.38711],[114.0507,22.38706],[114.0507,22.38703],[114.05072,22.387],[114.05081,22.38685],[114.05082,22.38684],[114.05083,22.38684],[114.05085,22.38684],[114.05086,22.38683],[114.05086,22.38683],[114.05086,22.38683],[114.05087,22.38682],[114.05087,22.38682],[114.05087,22.38682],[114.05087,22.38679],[114.05086,22.38675],[114.05086,22.38673],[114.05088,22.3867],[114.0509,22.38667],[114.05095,22.38656],[114.05097,22.38654],[114.05102,22.38646],[114.05103,22.38645],[114.05104,22.38644],[114.05106,22.38642],[114.05109,22.38639],[114.05111,22.38638],[114.05111,22.38638],[114.0512,22.38635],[114.05122,22.38634],[114.05125,22.38632],[114.05126,22.38635],[114.05143,22.38653],[114.05185,22.38657],[114.05231,22.38641],[114.05331,22.38541],[114.05364,22.38517],[114.054,22.38503],[114.05475,22.38495],[114.05682,22.38473],[114.05886,22.38473],[114.05979,22.38487],[114.06114,22.38511],[114.0623,22.38528],[114.06374,22.38521],[114.06495,22.38496],[114.06577,22.38454],[114.06603,22.38451],[114.06623,22.38458],[114.06649,22.38496],[114.06696,22.38586],[114.06722,22.38652],[114.06763,22.38711],[114.06806,22.3874],[114.06827,22.38735],[114.06868,22.38719],[114.06907,22.38711],[114.06945,22.38711],[114.07038,22.38731],[114.07084,22.38739],[114.07141,22.38736],[114.07271,22.38734],[114.07465,22.38714],[114.07578,22.38707],[114.07696,22.38702],[114.07772,22.38707],[114.07856,22.3872],[114.07906,22.38728],[114.07959,22.38736],[114.07981,22.38739],[114.08004,22.38742],[114.08039,22.38738],[114.08066,22.38729],[114.08072,22.38722],[114.08089,22.38703],[114.08101,22.38682],[114.08122,22.38648],[114.08148,22.38626],[114.08186,22.38602],[114.08212,22.38589],[114.08235,22.38578],[114.08276,22.3857],[114.08328,22.38564],[114.08382,22.3857],[114.08705,22.38219],[114.08775,22.38143],[114.08831,22.37856],[114.08981,22.37119],[114.08998,22.37123],[114.08999,22.37123],[114.09004,22.37126],[114.09036,22.37157],[114.09043,22.37166],[114.09044,22.3717],[114.09044,22.37171],[114.09045,22.37174],[114.09044,22.37176],[114.09041,22.37182],[114.09029,22.37195],[114.09029,22.37196],[114.09028,22.37198],[114.09027,22.37201],[114.09029,22.37205],[114.0903,22.37207],[114.09032,22.37209],[114.09046,22.37217],[114.09055,22.37219],[114.09074,22.37222],[114.09107,22.37225],[114.09115,22.37228],[114.09128,22.37237],[114.0913,22.37239],[114.09139,22.37242],[114.09149,22.37242],[114.09166,22.37239],[114.09173,22.37238],[114.09174,22.37238],[114.09177,22.37239],[114.09183,22.37243],[114.09185,22.37244],[114.09186,22.37245],[114.09193,22.37255],[114.09201,22.37261],[114.09205,22.37262],[114.09207,22.37263],[114.09208,22.37263],[114.0921,22.37263],[114.09225,22.37263],[114.09232,22.37265],[114.09237,22.37267],[114.09248,22.37276],[114.09253,22.37278],[114.09254,22.37278],[114.09262,22.37277],[114.09263,22.37277],[114.09271,22.37274],[114.09275,22.37273],[114.09278,22.37272],[114.09319,22.37274],[114.09326,22.37272],[114.09327,22.37271],[114.09339,22.37266],[114.09344,22.37264],[114.09345,22.37264],[114.09349,22.37263],[114.09352,22.37264],[114.09353,22.37264],[114.09357,22.37266],[114.09375,22.37278],[114.09379,22.3728],[114.09379,22.3728],[114.09461,22.37318],[114.09489,22.37319],[114.09492,22.3732],[114.09495,22.37321],[114.09497,22.37324],[114.09499,22.37326],[114.09515,22.37354],[114.09518,22.37356],[114.09519,22.37357],[114.09521,22.37358],[114.09527,22.37358],[114.09527,22.37358],[114.09531,22.37358],[114.09532,22.37358],[114.09533,22.37358],[114.0954,22.3736],[114.09601,22.37382],[114.09607,22.37382],[114.09619,22.37379],[114.09626,22.37379],[114.09629,22.37379],[114.09629,22.37379],[114.09666,22.3739],[114.09673,22.37391],[114.09694,22.37389],[114.09695,22.37389],[114.09722,22.37387],[114.09724,22.37387],[114.09724,22.37387],[114.09726,22.37387],[114.09732,22.37388],[114.09783,22.37405],[114.09783,22.37407],[114.09784,22.37407],[114.09789,22.3741],[114.09799,22.37418],[114.09801,22.37417],[114.09801,22.37417],[114.09803,22.37416],[114.09812,22.37418],[114.09815,22.37419],[114.09815,22.3742],[114.09819,22.37422],[114.09827,22.37429],[114.09832,22.37432],[114.09884,22.3745],[114.09885,22.3745],[114.09889,22.37452],[114.09893,22.37456],[114.09895,22.3746],[114.09896,22.37462],[114.09897,22.3748],[114.09897,22.3748],[114.09899,22.37488],[114.09899,22.37488],[114.09901,22.37491],[114.09903,22.37493],[114.09905,22.37494],[114.09905,22.37494],[114.09915,22.37498],[114.09916,22.37498],[114.09918,22.37498],[114.09928,22.37497],[114.09945,22.3749],[114.0995,22.37489],[114.09953,22.3749],[114.09956,22.37491],[114.09966,22.37504],[114.09968,22.37506],[114.09968,22.37506],[114.09968,22.37506],[114.09973,22.3751],[114.09976,22.37512],[114.09977,22.37513],[114.0998,22.37514],[114.09989,22.37515],[114.09989,22.37515],[114.0999,22.37515],[114.10021,22.37507],[114.10029,22.37507],[114.10032,22.37509],[114.10034,22.37511],[114.10054,22.37535],[114.10061,22.37543],[114.10064,22.37546],[114.10068,22.37548],[114.10069,22.37548],[114.10072,22.37549],[114.10078,22.3755],[114.10081,22.3755],[114.10081,22.3755],[114.10083,22.3755],[114.10088,22.37549],[114.10089,22.37549],[114.10092,22.37547],[114.10096,22.37545],[114.10108,22.37535],[114.1011,22.37534],[114.10113,22.37533],[114.1012,22.37533],[114.10135,22.37538],[114.10136,22.37538],[114.10145,22.37542],[114.10152,22.37548],[114.10168,22.37565],[114.10171,22.37572],[114.10171,22.37572],[114.10172,22.37575],[114.10171,22.37579],[114.10171,22.37579],[114.10171,22.37583],[114.10167,22.3759],[114.10164,22.37593],[114.10141,22.37611],[114.10139,22.37613],[114.10138,22.37615],[114.10138,22.37616],[114.10137,22.37619],[114.10143,22.37629],[114.10155,22.37653],[114.10158,22.37658],[114.10159,22.37658],[114.10163,22.37661],[114.10168,22.37661],[114.10168,22.37661],[114.10172,22.37662],[114.10176,22.37662],[114.10179,22.37663],[114.10182,22.37665],[114.10185,22.37666],[114.10192,22.37671],[114.10201,22.37678],[114.10206,22.37684],[114.10208,22.37686],[114.10224,22.37709],[114.10224,22.37709],[114.10225,22.37711],[114.10227,22.37716],[114.10229,22.37726],[114.10229,22.37738],[114.1023,22.37741],[114.10231,22.37778],[114.10233,22.37784],[114.10234,22.37787],[114.10243,22.37793],[114.10246,22.37797],[114.10249,22.37804],[114.10251,22.37811],[114.1025,22.37819],[114.10241,22.37839],[114.10241,22.37843],[114.10242,22.37847],[114.10244,22.37854],[114.10259,22.37875],[114.10261,22.37883],[114.10261,22.37936],[114.1026,22.37947],[114.10255,22.37966],[114.10254,22.37971],[114.10255,22.37975],[114.10257,22.3798],[114.10259,22.37983],[114.10295,22.38017],[114.10298,22.38021],[114.103,22.38026],[114.10301,22.38033],[114.103,22.38055],[114.10295,22.38096],[114.10295,22.38101],[114.10296,22.38107],[114.103,22.38113],[114.10304,22.38119],[114.1031,22.38122],[114.10315,22.38123],[114.10322,22.38123],[114.1033,22.3812],[114.1036,22.38107],[114.10364,22.38107],[114.10369,22.3811],[114.10372,22.38114],[114.10378,22.38126],[114.10379,22.3813],[114.10379,22.3814],[114.10377,22.38158],[114.10377,22.38163],[114.10378,22.38167],[114.10384,22.38176],[114.10409,22.38207],[114.10412,22.38215],[114.10413,22.3822],[114.10407,22.38228],[114.10378,22.3825],[114.10374,22.38252],[114.10368,22.38254],[114.10327,22.38259],[114.10319,22.38262],[114.10311,22.38269],[114.10297,22.38289],[114.10293,22.38292],[114.1029,22.38294],[114.10257,22.38301],[114.1025,22.38302],[114.10244,22.383],[114.10228,22.38291],[114.10192,22.38282],[114.10181,22.38281],[114.10177,22.38282],[114.10172,22.38284],[114.10167,22.38289],[114.10164,22.38295],[114.10164,22.383],[114.10163,22.38327],[114.10162,22.38333],[114.10144,22.38359],[114.1014,22.38364],[114.10133,22.38368],[114.10109,22.38369],[114.10105,22.3837],[114.10098,22.38375],[114.10091,22.38387],[114.10088,22.3839],[114.10085,22.38392],[114.10067,22.38397],[114.10064,22.38398],[114.10061,22.38401],[114.10048,22.38423],[114.10046,22.38428],[114.10043,22.38442],[114.10041,22.38445],[114.10038,22.38448],[114.1001,22.38466],[114.10006,22.38468],[114.10002,22.38469],[114.09987,22.38468],[114.09979,22.38468],[114.09974,22.3847],[114.09968,22.38475],[114.09964,22.38481],[114.09962,22.38485],[114.09962,22.38491],[114.09966,22.38525],[114.09968,22.38529],[114.09971,22.38532],[114.09974,22.38535],[114.09979,22.38537],[114.09985,22.38537],[114.0999,22.38536],[114.10013,22.3853],[114.10019,22.38527],[114.10037,22.38511],[114.10041,22.38508],[114.10046,22.38506],[114.10076,22.38499],[114.10082,22.38497],[114.10085,22.38494],[114.10102,22.38478],[114.1011,22.38475],[114.10117,22.38474],[114.10124,22.38477],[114.10131,22.38484],[114.10143,22.3851],[114.10144,22.38517],[114.10142,22.38549],[114.10144,22.38557],[114.10149,22.38561],[114.10156,22.38565],[114.10162,22.38565],[114.10167,22.38565],[114.10173,22.38562],[114.10177,22.38559],[114.1018,22.38553],[114.10184,22.38538],[114.10195,22.38527],[114.10198,22.38524],[114.10199,22.38521],[114.10199,22.38516],[114.10197,22.385],[114.10198,22.38495],[114.102,22.38492],[114.10209,22.38484],[114.10223,22.38474],[114.10229,22.38471],[114.10234,22.38471],[114.10242,22.38474],[114.10245,22.38477],[114.10248,22.3848],[114.1025,22.38485],[114.10254,22.38512],[114.10257,22.38522],[114.1026,22.38528],[114.10267,22.38535],[114.10273,22.3854],[114.10277,22.38542],[114.10288,22.38544],[114.10303,22.38544],[114.10314,22.38542],[114.10336,22.38534],[114.10342,22.38533],[114.10348,22.38534],[114.10416,22.38566],[114.1042,22.38567],[114.10425,22.38567],[114.10444,22.38565],[114.10449,22.38566],[114.10451,22.38567],[114.10453,22.38571],[114.10453,22.38574],[114.10453,22.38578],[114.10431,22.38612],[114.1043,22.38617],[114.1043,22.38621],[114.10432,22.38629],[114.1044,22.38649],[114.10446,22.38654],[114.10458,22.38662],[114.10461,22.38665],[114.1047,22.38715],[114.10472,22.38717],[114.10475,22.38721],[114.10478,22.38722],[114.10482,22.38722],[114.10483,22.38725],[114.10482,22.38735],[114.10479,22.3874],[114.1048,22.38745],[114.10484,22.38758],[114.10486,22.38764],[114.10484,22.38772],[114.10482,22.38778],[114.1048,22.38784],[114.1048,22.38785],[114.1048,22.38786],[114.1048,22.38787],[114.1048,22.38787],[114.10481,22.38789],[114.10481,22.38789],[114.10481,22.3879],[114.10481,22.3879],[114.10482,22.38791],[114.10481,22.38792],[114.10481,22.38792],[114.10481,22.38793],[114.10481,22.38794],[114.10481,22.38795],[114.10483,22.38795],[114.10484,22.38797],[114.10485,22.38798],[114.10487,22.38801],[114.10489,22.38804],[114.10492,22.38808],[114.10494,22.38811],[114.10499,22.38815],[114.10503,22.38819],[114.10504,22.38822],[114.10505,22.38825],[114.10507,22.38827],[114.10507,22.38828],[114.10508,22.38828],[114.10508,22.38829],[114.10508,22.38829],[114.10508,22.3883],[114.10508,22.3883],[114.10509,22.3883],[114.10509,22.38831],[114.10509,22.38831],[114.10509,22.38832],[114.10509,22.38832],[114.1051,22.38832],[114.1051,22.38833],[114.1051,22.38833],[114.1051,22.38834],[114.10511,22.38834],[114.10511,22.38834],[114.10511,22.38835],[114.10511,22.38835],[114.10512,22.38835],[114.10512,22.38836],[114.10512,22.38836],[114.10513,22.38836],[114.10513,22.38837],[114.10513,22.38837],[114.10514,22.38838],[114.10514,22.38838],[114.10514,22.38838],[114.10514,22.38839],[114.10515,22.38839],[114.10515,22.38839],[114.10515,22.3884],[114.10516,22.3884],[114.10516,22.3884],[114.10517,22.3884],[114.10517,22.38841],[114.10517,22.38841],[114.10518,22.38841],[114.10518,22.38842],[114.10518,22.38842],[114.10519,22.38842],[114.10519,22.38843],[114.10519,22.38843],[114.1052,22.38843],[114.1052,22.38843],[114.1052,22.38844],[114.10521,22.38844],[114.10521,22.38844],[114.10521,22.38844],[114.10522,22.38844],[114.10522,22.38845],[114.10523,22.38845],[114.10523,22.38845],[114.10524,22.38845],[114.10524,22.38846],[114.10524,22.38846],[114.10525,22.38846],[114.10525,22.38846],[114.10526,22.38846],[114.10526,22.38847],[114.10527,22.38847],[114.10527,22.38847],[114.10527,22.38847],[114.10528,22.38847],[114.10528,22.38847],[114.10529,22.38848],[114.10529,22.38848],[114.10529,22.38848],[114.1053,22.38848],[114.1053,22.38848],[114.10531,22.38848],[114.10531,22.38848],[114.10532,22.38848],[114.10532,22.38849],[114.10533,22.38849],[114.10533,22.38849],[114.10533,22.38849],[114.10534,22.38849],[114.10534,22.38849],[114.10535,22.38849],[114.10535,22.38849],[114.10536,22.38849],[114.10538,22.3885],[114.1054,22.38851],[114.10542,22.38851],[114.10545,22.38852],[114.10547,22.38852],[114.10548,22.38852],[114.10549,22.38852],[114.1055,22.38852],[114.10552,22.38852],[114.10554,22.38852],[114.10555,22.38852],[114.10557,22.38852],[114.10558,22.38852],[114.1056,22.38851],[114.10562,22.3885],[114.10563,22.38849],[114.10564,22.38849],[114.10566,22.38848],[114.10567,22.38847],[114.10568,22.38846],[114.10569,22.38845],[114.1057,22.38843],[114.10571,22.38842],[114.10573,22.3884],[114.10574,22.38838],[114.10575,22.38837],[114.10576,22.38836],[114.10578,22.38834],[114.10578,22.38833],[114.10579,22.38833],[114.10579,22.38833],[114.1058,22.38832],[114.10581,22.3883],[114.10584,22.38828],[114.10592,22.38822],[114.10598,22.38818],[114.10603,22.38813],[114.1061,22.38808],[114.10622,22.388],[114.10631,22.38793],[114.10656,22.38773],[114.10666,22.38766],[114.10668,22.38764],[114.1067,22.38762],[114.10676,22.38759],[114.10678,22.38758],[114.10681,22.38756],[114.10748,22.3873],[114.10751,22.38726],[114.10761,22.38722],[114.10765,22.38723],[114.10767,22.38722],[114.10769,22.38722],[114.10771,22.38721],[114.10774,22.38721],[114.10776,22.38721],[114.10779,22.38721],[114.10781,22.3872],[114.10783,22.3872],[114.10786,22.38721],[114.10789,22.38721],[114.10792,22.38721],[114.10793,22.38721],[114.10794,22.38721],[114.10796,22.38721],[114.10797,22.38721],[114.10798,22.38721],[114.108,22.3872],[114.10801,22.3872],[114.10803,22.3872],[114.10805,22.38719],[114.10807,22.38718],[114.10808,22.38718],[114.10809,22.38716],[114.10811,22.38715],[114.10812,22.38714],[114.10813,22.38713],[114.10813,22.38712],[114.10814,22.38711],[114.10815,22.3871],[114.10815,22.38708],[114.10815,22.38707],[114.10816,22.38706],[114.10816,22.38705],[114.10816,22.38701],[114.10816,22.38698],[114.10815,22.38695],[114.10815,22.38692],[114.10814,22.38688],[114.10814,22.38684],[114.10814,22.38681],[114.10815,22.38678],[114.10815,22.38676],[114.10815,22.38674],[114.10816,22.38673],[114.10816,22.38671],[114.10817,22.3867],[114.10818,22.38668],[114.10818,22.38667],[114.10819,22.38666],[114.1082,22.38665],[114.10821,22.38663],[114.10822,22.38663],[114.10824,22.38661],[114.10825,22.38661],[114.10826,22.3866],[114.10827,22.38659],[114.10829,22.38658],[114.1083,22.38658],[114.10832,22.38657],[114.10833,22.38656],[114.10835,22.38656],[114.10837,22.38655],[114.10838,22.38655],[114.1084,22.38655],[114.10842,22.38654],[114.1086,22.38651],[114.10873,22.3865],[114.10891,22.38648],[114.10894,22.38647],[114.10898,22.38646],[114.10899,22.38646],[114.109,22.38645],[114.10901,22.38645],[114.10903,22.38644],[114.10904,22.38643],[114.10905,22.38642],[114.10906,22.38642],[114.10907,22.38641],[114.10937,22.38614],[114.10939,22.38613],[114.10941,22.38612],[114.10943,22.3861],[114.10945,22.38609],[114.10947,22.38608],[114.10949,22.38607],[114.10951,22.38607],[114.10954,22.38606],[114.10956,22.38606],[114.10959,22.38606],[114.10961,22.38606],[114.10963,22.38606],[114.10965,22.38607],[114.10968,22.38607],[114.1097,22.38608],[114.10972,22.38608],[114.10985,22.38613],[114.10986,22.38613],[114.10988,22.38614],[114.1099,22.38614],[114.10991,22.38614],[114.10992,22.38614],[114.11,22.38613],[114.11004,22.38612],[114.11005,22.38611],[114.11007,22.3861],[114.11009,22.38609],[114.1101,22.38608],[114.11012,22.38606],[114.11013,22.38605],[114.11014,22.38604],[114.11019,22.38598],[114.1102,22.38592],[114.1102,22.38591],[114.11025,22.38586],[114.11032,22.38582],[114.11038,22.38574],[114.11047,22.38567],[114.11053,22.38562],[114.1106,22.38556],[114.11063,22.38554],[114.11069,22.38549],[114.11113,22.38515],[114.11115,22.38514],[114.11116,22.38513],[114.11116,22.38512],[114.11118,22.38511],[114.11128,22.38503],[114.1113,22.38502],[114.11132,22.38501],[114.11134,22.38499],[114.11136,22.38498],[114.11139,22.38497],[114.11143,22.38496],[114.11145,22.38495],[114.11147,22.38495],[114.11149,22.38494],[114.11151,22.38494],[114.11152,22.38494],[114.11154,22.38494],[114.11156,22.38494],[114.11157,22.38494],[114.11159,22.38495],[114.11161,22.38495],[114.11163,22.38496],[114.11165,22.38496],[114.1117,22.38499],[114.11176,22.38502],[114.11178,22.38503],[114.1118,22.38505],[114.11182,22.38507],[114.11184,22.38508],[114.11186,22.38509],[114.11187,22.3851],[114.11188,22.38511],[114.11189,22.38512],[114.11191,22.38512],[114.11192,22.38513],[114.11195,22.38514],[114.11197,22.38515],[114.11199,22.38515],[114.11201,22.38515],[114.11202,22.38515],[114.11203,22.38515],[114.11205,22.38515],[114.11206,22.38515],[114.11208,22.38514],[114.11209,22.38514],[114.1121,22.38513],[114.11212,22.38512],[114.11214,22.3851],[114.11216,22.38509],[114.11218,22.38507],[114.1122,22.38505],[114.11221,22.38504],[114.11222,22.38502],[114.11223,22.38501],[114.11223,22.385],[114.11233,22.38482],[114.11234,22.3848],[114.11235,22.38479],[114.11235,22.38478],[114.11237,22.38476],[114.11238,22.38475],[114.11239,22.38474],[114.1124,22.38472],[114.11241,22.38471],[114.11243,22.3847],[114.11245,22.38469],[114.11246,22.38468],[114.11248,22.38467],[114.11251,22.38467],[114.11253,22.38466],[114.11254,22.38466],[114.11256,22.38465],[114.11258,22.38464],[114.11259,22.38463],[114.11261,22.38462],[114.11262,22.38461],[114.11263,22.3846],[114.11283,22.38439],[114.11284,22.38437],[114.11285,22.38436],[114.11286,22.38434],[114.11287,22.38432],[114.11287,22.38431],[114.11288,22.38429],[114.11288,22.38428],[114.11287,22.38427],[114.11287,22.38425],[114.11287,22.38424],[114.11287,22.38422],[114.11286,22.38421],[114.11286,22.3842],[114.11285,22.38418],[114.11284,22.38417],[114.11284,22.38415],[114.11283,22.38414],[114.11282,22.38412],[114.11281,22.3841],[114.11279,22.38408],[114.11279,22.38406],[114.11278,22.38405],[114.11278,22.38404],[114.11278,22.38403],[114.11277,22.38401],[114.11277,22.38399],[114.11277,22.38396],[114.11277,22.38394],[114.11277,22.38392],[114.11278,22.3839],[114.11278,22.38388],[114.11279,22.38385],[114.1128,22.38384],[114.11281,22.38382],[114.11282,22.38381],[114.11283,22.38379],[114.11284,22.38378],[114.11285,22.38377],[114.11287,22.38375],[114.11288,22.38374],[114.11295,22.38371],[114.11298,22.3837],[114.11305,22.38367],[114.11306,22.38366],[114.11308,22.38365],[114.11309,22.38364],[114.1131,22.38364],[114.11311,22.38363],[114.11312,22.38362],[114.11313,22.38361],[114.11314,22.3836],[114.11315,22.38359],[114.11316,22.38356],[114.11317,22.38354],[114.11318,22.38351],[114.11318,22.38348],[114.11319,22.38347],[114.11319,22.38345],[114.1132,22.38343],[114.11321,22.38341],[114.11322,22.38339],[114.11323,22.38338],[114.11324,22.38336],[114.11326,22.38335],[114.11327,22.38334],[114.11328,22.38333],[114.11329,22.38332],[114.1133,22.38331],[114.11332,22.3833],[114.11333,22.3833],[114.11334,22.38329],[114.11336,22.38329],[114.11338,22.38328],[114.11341,22.38327],[114.11347,22.38325],[114.11351,22.38325],[114.11356,22.38324],[114.11361,22.38322],[114.11362,22.38322],[114.11364,22.38321],[114.11366,22.38321],[114.11368,22.3832],[114.11373,22.38316],[114.1138,22.38312],[114.11386,22.3831],[114.1139,22.38307],[114.11394,22.38303],[114.11396,22.38302],[114.11399,22.38299],[114.11417,22.38278],[114.11418,22.38276],[114.11419,22.38275],[114.1142,22.38274],[114.11421,22.38273],[114.11423,22.38272],[114.11424,22.38271],[114.11425,22.3827],[114.11427,22.38269],[114.11428,22.38269],[114.11429,22.38268],[114.11431,22.38268],[114.11433,22.38267],[114.11434,22.38267],[114.11436,22.38266],[114.11437,22.38266],[114.11439,22.38266],[114.11442,22.38266],[114.11445,22.38266],[114.11448,22.38266],[114.1145,22.38266],[114.11453,22.38266],[114.11456,22.38267],[114.11459,22.38267],[114.11461,22.38268],[114.11466,22.38266],[114.11476,22.38263],[114.11483,22.38262],[114.11497,22.38253],[114.11499,22.38251],[114.11501,22.3825],[114.11502,22.38248],[114.11504,22.38247],[114.11505,22.38245],[114.11505,22.38244],[114.11506,22.38242],[114.11507,22.38241],[114.11507,22.3824],[114.11507,22.38238],[114.11508,22.38237],[114.11508,22.38235],[114.11508,22.38233],[114.11507,22.38231],[114.11507,22.3823],[114.11506,22.38227],[114.11505,22.38226],[114.11504,22.38224],[114.11503,22.38222],[114.11502,22.3822],[114.115,22.38217],[114.11466,22.38169],[114.11465,22.38166],[114.11463,22.38163],[114.11461,22.38159],[114.1146,22.38154],[114.11452,22.38119],[114.11452,22.38118],[114.11452,22.38118],[114.11452,22.38116],[114.11452,22.38114],[114.11452,22.38111],[114.11453,22.38108],[114.11453,22.38105],[114.11454,22.38103],[114.11456,22.381],[114.11458,22.38098],[114.11458,22.38097],[114.11461,22.38095],[114.11463,22.38093],[114.11466,22.38091],[114.11469,22.3809],[114.11473,22.38088],[114.11477,22.38087],[114.1148,22.38086],[114.11482,22.38084],[114.11483,22.38083],[114.11484,22.38082],[114.11486,22.38079],[114.11487,22.38077],[114.11488,22.38075],[114.11489,22.38072],[114.1149,22.3807],[114.11491,22.38067],[114.11491,22.38065],[114.11492,22.38062],[114.11492,22.38061],[114.11493,22.38059],[114.11493,22.38058],[114.11495,22.38057],[114.11497,22.38056],[114.115,22.38055],[114.11503,22.38055],[114.11505,22.38055],[114.11507,22.38055],[114.11508,22.38055],[114.11511,22.38055],[114.11514,22.38054],[114.11517,22.38054],[114.1152,22.38054],[114.11524,22.38054],[114.11527,22.38054],[114.1153,22.38055],[114.11533,22.38056],[114.11536,22.38058],[114.11539,22.38059],[114.11541,22.38061],[114.11546,22.38065],[114.11549,22.38068],[114.11552,22.3807],[114.11554,22.38073],[114.11558,22.38077],[114.11561,22.3808],[114.11563,22.38082],[114.11566,22.38084],[114.11568,22.38085],[114.1157,22.38086],[114.11572,22.38087],[114.11574,22.38087],[114.11576,22.38088],[114.11579,22.38088],[114.11582,22.38087],[114.11601,22.38085],[114.11608,22.38083],[114.11618,22.38082],[114.11631,22.3808],[114.11637,22.38079],[114.11641,22.3808],[114.11644,22.3808],[114.11646,22.3808],[114.11651,22.38082],[114.11654,22.38083],[114.11658,22.38085],[114.11661,22.38088],[114.11664,22.38091],[114.1167,22.38097],[114.11681,22.3811],[114.11684,22.38112],[114.11688,22.38115],[114.1169,22.38117],[114.11693,22.38119],[114.11696,22.3812],[114.11699,22.38121],[114.11701,22.38121],[114.11703,22.38121],[114.11707,22.3812],[114.11708,22.3812],[114.11715,22.38117],[114.11733,22.38111],[114.11737,22.3811],[114.11741,22.38109],[114.11745,22.38109],[114.11751,22.3811],[114.11753,22.38111],[114.11758,22.38113],[114.11762,22.38114],[114.11769,22.38118],[114.11772,22.38119],[114.11776,22.3812],[114.1178,22.38121],[114.11783,22.38121],[114.11788,22.3812],[114.11802,22.38118],[114.1181,22.38117],[114.11814,22.38116],[114.1182,22.38116],[114.11822,22.38116],[114.11825,22.38117],[114.11829,22.38119],[114.1183,22.38119],[114.11833,22.38121],[114.11836,22.38124],[114.11838,22.38127],[114.11839,22.38129],[114.1184,22.38132],[114.11841,22.38136],[114.11842,22.38142],[114.11843,22.38154],[114.11843,22.3816],[114.11844,22.38163],[114.11846,22.38166],[114.11847,22.38167],[114.11849,22.38169],[114.11854,22.38172],[114.11865,22.38179],[114.11871,22.38183],[114.11874,22.38185],[114.11875,22.38185],[114.1188,22.38186],[114.11884,22.38187],[114.11888,22.38187],[114.11896,22.38186],[114.11898,22.38185],[114.11901,22.38185],[114.11906,22.38186],[114.11923,22.38189],[114.11941,22.38192],[114.11945,22.38192],[114.11952,22.38193],[114.11959,22.38193],[114.11964,22.38192],[114.11968,22.38191],[114.11972,22.3819],[114.11977,22.38188],[114.11978,22.38188],[114.11978,22.38187],[114.11978,22.38187],[114.11989,22.38183],[114.11998,22.38179],[114.11999,22.38179],[114.12001,22.38178],[114.12005,22.38177],[114.12009,22.38176],[114.12012,22.38176],[114.12018,22.38176],[114.12021,22.38176],[114.12023,22.38177],[114.12028,22.38179],[114.12032,22.38181],[114.12038,22.38185],[114.12043,22.38189],[114.1206,22.38206],[114.12062,22.38209],[114.12065,22.38212],[114.12068,22.38215],[114.12072,22.38221],[114.12074,22.38224],[114.12074,22.38224],[114.12075,22.38225],[114.12075,22.38225],[114.12075,22.38226],[114.12076,22.38227],[114.12076,22.38227],[114.12077,22.38228],[114.12077,22.3823],[114.12078,22.38231],[114.12078,22.38232],[114.12078,22.38233],[114.12079,22.38233],[114.12079,22.38234],[114.12079,22.38234],[114.12079,22.38235],[114.12079,22.38236],[114.12079,22.38237],[114.12079,22.38237],[114.12079,22.38239],[114.12079,22.38239],[114.1208,22.3824],[114.1208,22.38241],[114.12079,22.38243],[114.12079,22.38243],[114.12079,22.38244],[114.12079,22.38244],[114.12079,22.38245],[114.12079,22.38246],[114.12078,22.38248],[114.12078,22.38249],[114.12078,22.38249],[114.12077,22.38252],[114.12076,22.38252],[114.12076,22.38252],[114.12076,22.38253],[114.12076,22.38253],[114.12075,22.38255],[114.12075,22.38255],[114.12074,22.38256],[114.12074,22.38256],[114.12074,22.38257],[114.12071,22.3826],[114.12071,22.38261],[114.12071,22.38261],[114.1207,22.38262],[114.12069,22.38264],[114.12068,22.38265],[114.12067,22.38267],[114.12066,22.38268],[114.12064,22.38271],[114.12063,22.38273],[114.12062,22.38274],[114.12061,22.38275],[114.1206,22.38277],[114.12058,22.38281],[114.12058,22.38281],[114.12056,22.38284],[114.12055,22.38287],[114.12055,22.38287],[114.12054,22.38288],[114.12054,22.38288],[114.12053,22.3829],[114.12053,22.3829],[114.12053,22.38291],[114.12052,22.38293],[114.12052,22.38293],[114.12052,22.38295],[114.12051,22.38297],[114.12051,22.38297],[114.12051,22.38298],[114.12051,22.38299],[114.12051,22.38299],[114.1205,22.383],[114.1205,22.383],[114.12049,22.38306],[114.12049,22.38311],[114.12049,22.38312],[114.12048,22.38313],[114.12048,22.38313],[114.12048,22.38316],[114.12048,22.38321],[114.12048,22.38324],[114.12047,22.38329],[114.12047,22.38334],[114.12047,22.38337],[114.12047,22.38338],[114.12047,22.38339],[114.12047,22.3834],[114.12048,22.3834],[114.12048,22.38341],[114.12048,22.38342],[114.12048,22.38343],[114.1205,22.38346],[114.1205,22.38346],[114.12051,22.38347],[114.12051,22.38347],[114.12051,22.38348],[114.12052,22.38348],[114.12052,22.38349],[114.12052,22.38349],[114.12052,22.38349],[114.12053,22.3835],[114.12054,22.38351],[114.12054,22.38351],[114.12054,22.38351],[114.12055,22.38352],[114.12057,22.38355],[114.12058,22.38355],[114.12058,22.38356],[114.12059,22.38357],[114.12059,22.38357],[114.12061,22.38359],[114.12061,22.38359],[114.12062,22.3836],[114.12062,22.3836],[114.12062,22.38361],[114.12064,22.38363],[114.12065,22.38365],[114.12065,22.38367],[114.12065,22.38367],[114.12066,22.38368],[114.12066,22.38368],[114.12066,22.38369],[114.12066,22.3837],[114.12066,22.38371],[114.12066,22.38371],[114.12067,22.38372],[114.12067,22.38372],[114.12067,22.38374],[114.12067,22.38376],[114.12067,22.38376],[114.12067,22.38377],[114.12066,22.38381],[114.12066,22.38383],[114.12066,22.38387],[114.12066,22.38389],[114.12066,22.38398],[114.12066,22.38399],[114.12066,22.38401],[114.12066,22.38402],[114.12066,22.38402],[114.12066,22.38404],[114.12067,22.38406],[114.12068,22.38407],[114.12068,22.38408],[114.12068,22.38409],[114.12069,22.3841],[114.1207,22.38411],[114.1207,22.38412],[114.12071,22.38412],[114.12071,22.38413],[114.12072,22.38413],[114.12072,22.38414],[114.12072,22.38414],[114.12074,22.38416],[114.12074,22.38416],[114.12075,22.38417],[114.12076,22.38418],[114.12076,22.38418],[114.12076,22.38419],[114.12077,22.38419],[114.12077,22.3842],[114.12078,22.38421],[114.12079,22.38422],[114.1208,22.38424],[114.12081,22.38425],[114.12083,22.38428],[114.12083,22.38429],[114.12083,22.3843],[114.12084,22.3843],[114.12084,22.38431],[114.12084,22.38431],[114.12084,22.38433],[114.12086,22.38437],[114.12086,22.38438],[114.12086,22.38439],[114.12086,22.38439],[114.12087,22.3844],[114.12087,22.38441],[114.12087,22.38441],[114.12087,22.38442],[114.12087,22.38442],[114.12087,22.38443],[114.12087,22.38444],[114.12087,22.38444],[114.12088,22.38446],[114.12088,22.3845],[114.12088,22.38452],[114.12087,22.38455],[114.12087,22.38456],[114.12087,22.38457],[114.12086,22.38457],[114.12086,22.38459],[114.12085,22.38462],[114.12085,22.38463],[114.12084,22.38465],[114.12083,22.38467],[114.12083,22.38468],[114.12082,22.38468],[114.12082,22.38469],[114.12081,22.38471],[114.12081,22.38472],[114.12081,22.38473],[114.12081,22.38474],[114.1208,22.38474],[114.1208,22.38475],[114.1208,22.38476],[114.1208,22.38479],[114.1208,22.3848],[114.1208,22.38481],[114.1208,22.38481],[114.12081,22.38483],[114.12081,22.38484],[114.12081,22.38485],[114.12081,22.38486],[114.12082,22.38487],[114.12083,22.38489],[114.12083,22.38491],[114.12085,22.38495],[114.12085,22.38496],[114.12086,22.38497],[114.12087,22.38501],[114.12088,22.38504],[114.12088,22.38505],[114.12088,22.38505],[114.12088,22.38508],[114.12088,22.38509],[114.12088,22.38509],[114.12088,22.3851],[114.12088,22.38511],[114.12088,22.38513],[114.12088,22.38515],[114.12088,22.38515],[114.12088,22.38516],[114.12087,22.38517],[114.12087,22.38517],[114.12087,22.38518],[114.12087,22.38518],[114.12087,22.38518],[114.12086,22.3852],[114.12086,22.3852],[114.12086,22.38521],[114.12085,22.38522],[114.12084,22.38523],[114.12083,22.38525],[114.12082,22.38526],[114.1208,22.38528],[114.1208,22.38529],[114.12079,22.38529],[114.12079,22.3853],[114.12078,22.38531],[114.12077,22.38531],[114.12076,22.38532],[114.12076,22.38533],[114.12075,22.38533],[114.12075,22.38533],[114.12075,22.38534],[114.12074,22.38535],[114.12072,22.38537],[114.12071,22.38537],[114.1207,22.38538],[114.1207,22.38539],[114.12069,22.38539],[114.12069,22.38539],[114.12068,22.3854],[114.12067,22.38541],[114.12067,22.38541],[114.12066,22.38542],[114.12066,22.38543],[114.12065,22.38543],[114.12065,22.38544],[114.12065,22.38544],[114.12064,22.38546],[114.12063,22.38547],[114.12062,22.3855],[114.12062,22.38551],[114.12062,22.38552],[114.12062,22.38553],[114.12062,22.38554],[114.12063,22.38555],[114.12063,22.38555],[114.12063,22.38555],[114.12063,22.38556],[114.12063,22.38557],[114.12064,22.38557],[114.12064,22.38559],[114.12065,22.3856],[114.12066,22.38561],[114.12067,22.38562],[114.12068,22.38563],[114.12068,22.38564],[114.12068,22.38564],[114.12069,22.38564],[114.12069,22.38565],[114.1207,22.38566],[114.12071,22.38566],[114.12071,22.38567],[114.12072,22.38567],[114.12072,22.38567],[114.12074,22.38569],[114.12074,22.3857],[114.12075,22.38571],[114.12075,22.38571],[114.12075,22.38571],[114.12076,22.38572],[114.12077,22.38573],[114.12077,22.38573],[114.12077,22.38574],[114.12078,22.38574],[114.12078,22.38575],[114.12078,22.38575],[114.12079,22.38576],[114.12081,22.3858],[114.12081,22.3858],[114.12081,22.38581],[114.12082,22.38584],[114.12082,22.38585],[114.12083,22.38586],[114.12083,22.38587],[114.12083,22.38588],[114.12083,22.3859],[114.12083,22.3859],[114.12083,22.38593],[114.12083,22.38598],[114.12082,22.38602],[114.12082,22.38602],[114.12082,22.38603],[114.12082,22.38604],[114.12082,22.38606],[114.12082,22.38609],[114.12082,22.3861],[114.12082,22.38611],[114.12082,22.38615],[114.12082,22.38617],[114.12082,22.38617],[114.12083,22.3862],[114.12083,22.3862],[114.12083,22.38621],[114.12083,22.38621],[114.12084,22.38623],[114.12084,22.38623],[114.12085,22.38625],[114.12085,22.38625],[114.12085,22.38625],[114.12086,22.38626],[114.12086,22.38626],[114.12086,22.38627],[114.12087,22.38627],[114.12087,22.38627],[114.12087,22.38628],[114.12088,22.38628],[114.12088,22.38629],[114.12091,22.38631],[114.12094,22.38634],[114.12094,22.38634],[114.12102,22.38639],[114.12109,22.38645],[114.12109,22.38645],[114.12111,22.38646],[114.12116,22.3865],[114.12117,22.38651],[114.12118,22.38652],[114.12119,22.38653],[114.12122,22.38655],[114.12123,22.38655],[114.12123,22.38656],[114.12124,22.38656],[114.12124,22.38656],[114.12125,22.38657],[114.12126,22.38658],[114.12127,22.38659],[114.12128,22.3866],[114.12129,22.3866],[114.12131,22.38661],[114.12133,22.38663],[114.12133,22.38663],[114.12134,22.38664],[114.12137,22.38666],[114.12138,22.38667],[114.1214,22.38668],[114.12141,22.38669],[114.12143,22.3867],[114.12149,22.38675],[114.12151,22.38677],[114.12152,22.38677],[114.12153,22.38678],[114.12153,22.38679],[114.12155,22.3868],[114.12156,22.3868],[114.12157,22.38681],[114.12158,22.38682],[114.12159,22.38682],[114.12159,22.38683],[114.1216,22.38683],[114.12168,22.38688],[114.12169,22.38688],[114.12171,22.38689],[114.12171,22.3869],[114.12173,22.38691],[114.12175,22.38692],[114.12175,22.38692],[114.12176,22.38693],[114.12177,22.38694],[114.12178,22.38694],[114.12178,22.38694],[114.1218,22.38696],[114.12181,22.38697],[114.12182,22.38697],[114.12182,22.38697],[114.12183,22.38698],[114.12183,22.38698],[114.12184,22.38699],[114.12187,22.38702],[114.12188,22.38703],[114.12189,22.38703],[114.12189,22.38704],[114.1219,22.38705],[114.12191,22.38706],[114.12191,22.38706],[114.12192,22.38707],[114.12192,22.38707],[114.12193,22.38709],[114.12194,22.3871],[114.12195,22.38711],[114.12195,22.38713],[114.12196,22.38713],[114.12196,22.38714],[114.12196,22.38715],[114.12197,22.38716],[114.12198,22.38721],[114.12198,22.38723],[114.12198,22.38725],[114.12198,22.38726],[114.12198,22.38727],[114.12198,22.38728],[114.12197,22.38732],[114.12196,22.38732],[114.12195,22.38735],[114.12195,22.38737],[114.12193,22.38741],[114.12192,22.38742],[114.12192,22.38743],[114.12192,22.38744],[114.12191,22.38745],[114.12191,22.38746],[114.12191,22.38747],[114.12191,22.38748],[114.12191,22.3875],[114.12191,22.38751],[114.12191,22.38751],[114.12191,22.38751],[114.12191,22.38753],[114.12192,22.38755],[114.12193,22.38757],[114.12193,22.38758],[114.12194,22.38759],[114.12195,22.3876],[114.12196,22.38761],[114.12198,22.38763],[114.12203,22.38764],[114.12204,22.38765],[114.12206,22.38766],[114.12207,22.38766],[114.12209,22.38767],[114.12211,22.38768],[114.12213,22.38768],[114.12214,22.38769],[114.12216,22.3877],[114.12217,22.38771],[114.12219,22.38772],[114.1222,22.38773],[114.12221,22.38774],[114.12222,22.38776],[114.12227,22.38785],[114.12232,22.38792],[114.12233,22.38795],[114.12235,22.38797],[114.12236,22.38799],[114.12238,22.388],[114.12239,22.38801],[114.1224,22.38802],[114.12242,22.38803],[114.12243,22.38804],[114.12245,22.38805],[114.12246,22.38805],[114.12247,22.38806],[114.12248,22.38806],[114.12249,22.38806],[114.1225,22.38806],[114.12251,22.38806],[114.12253,22.38806],[114.12254,22.38806],[114.12255,22.38806],[114.12263,22.38806],[114.12269,22.38805],[114.12274,22.38805],[114.12278,22.38805],[114.12282,22.38805],[114.12284,22.38805],[114.12286,22.38805],[114.12289,22.38806],[114.12291,22.38806],[114.12292,22.38807],[114.12294,22.38807],[114.12296,22.38808],[114.12297,22.38809],[114.12299,22.3881],[114.123,22.38811],[114.12301,22.38812],[114.12303,22.38809],[114.12306,22.38811],[114.12311,22.38818],[114.12326,22.38829],[114.12328,22.3883],[114.12329,22.38831],[114.1233,22.38832],[114.12332,22.38832],[114.12334,22.38833],[114.12337,22.38833],[114.12339,22.38833],[114.12341,22.38832],[114.12345,22.38831],[114.12349,22.3883],[114.12359,22.38827],[114.12367,22.38824],[114.1238,22.3882],[114.1239,22.38817],[114.12396,22.38815],[114.12402,22.38813],[114.12406,22.38811],[114.12407,22.38811],[114.12409,22.3881],[114.12411,22.3881],[114.12412,22.38809],[114.12413,22.38809],[114.12414,22.38808],[114.12417,22.38805],[114.12418,22.38804],[114.12419,22.38803],[114.12419,22.38801],[114.1242,22.388],[114.12422,22.38796],[114.12424,22.38791],[114.12426,22.38785],[114.12429,22.38777],[114.12432,22.3877],[114.12433,22.38769],[114.12435,22.38764],[114.12435,22.38763],[114.12438,22.38758],[114.12441,22.38753],[114.12444,22.38748],[114.12447,22.38743],[114.1245,22.38739],[114.12453,22.38736],[114.12456,22.38732],[114.12459,22.38729],[114.12461,22.38726],[114.12462,22.38724],[114.12463,22.38723],[114.12465,22.38721],[114.12465,22.38721],[114.12466,22.3872],[114.12466,22.3872],[114.12467,22.3872],[114.12467,22.3872],[114.12467,22.38719],[114.12468,22.38719],[114.12468,22.38719],[114.12469,22.38719],[114.12469,22.38718],[114.1247,22.38718],[114.12472,22.38718],[114.12474,22.38717],[114.12477,22.38717],[114.12479,22.38718],[114.1248,22.38718],[114.12483,22.38718],[114.12485,22.38718],[114.12487,22.38718],[114.12491,22.38719],[114.12493,22.38719],[114.12495,22.3872],[114.12498,22.38721],[114.125,22.38722],[114.12503,22.38724],[114.12505,22.38726],[114.12508,22.38728],[114.12511,22.3873],[114.12513,22.38732],[114.12514,22.38732],[114.12515,22.38733],[114.12516,22.38733],[114.12516,22.38734],[114.12517,22.38734],[114.12517,22.38734],[114.12518,22.38734],[114.12518,22.38734],[114.12519,22.38734],[114.12519,22.38734],[114.1252,22.38734],[114.1252,22.38734],[114.12522,22.38734],[114.12525,22.38732],[114.12527,22.38731],[114.1253,22.38729],[114.12532,22.38727],[114.12533,22.38725],[114.12535,22.38723],[114.12536,22.38721],[114.12538,22.38719],[114.1254,22.38717],[114.12542,22.38715],[114.12543,22.38713],[114.12545,22.38711],[114.12547,22.3871],[114.12548,22.38709],[114.12549,22.38708],[114.12552,22.38706],[114.12553,22.38705],[114.12554,22.38705],[114.12556,22.38704],[114.12558,22.38703],[114.12559,22.38702],[114.12561,22.387],[114.12563,22.38699],[114.12565,22.38698],[114.12569,22.38697],[114.12571,22.38696],[114.12572,22.38696],[114.12573,22.38696],[114.12574,22.38697],[114.12576,22.38697],[114.12578,22.38697],[114.1258,22.38697],[114.12582,22.38697],[114.12586,22.38697],[114.12591,22.38697],[114.12596,22.38698],[114.126,22.38699],[114.12603,22.387],[114.12606,22.38701],[114.12609,22.38702],[114.12611,22.38703],[114.12613,22.38704],[114.12616,22.38704],[114.12617,22.38704],[114.12618,22.38704],[114.1262,22.38704],[114.1262,22.38704],[114.12621,22.38704],[114.12623,22.38703],[114.12625,22.38703],[114.12626,22.38702],[114.12627,22.38702],[114.12627,22.38702],[114.12627,22.38701],[114.12628,22.38701],[114.12628,22.38701],[114.12628,22.387],[114.12629,22.387],[114.12629,22.387],[114.12629,22.38699],[114.12629,22.38699],[114.12629,22.38698],[114.1263,22.38698],[114.1263,22.38696],[114.1263,22.38694],[114.1263,22.38692],[114.1263,22.3869],[114.12629,22.38686],[114.12627,22.38679],[114.12627,22.38678],[114.12623,22.38667],[114.12618,22.38648],[114.12609,22.38621],[114.12608,22.38617],[114.12608,22.38615],[114.12608,22.38615],[114.12608,22.38614],[114.12608,22.38614],[114.12607,22.38614],[114.12607,22.38613],[114.12607,22.38613],[114.12607,22.38612],[114.12607,22.38612],[114.12607,22.38611],[114.12607,22.38611],[114.12607,22.3861],[114.12607,22.3861],[114.12607,22.38609],[114.12607,22.38609],[114.12607,22.38606],[114.12607,22.38602],[114.12608,22.38598],[114.12609,22.38594],[114.1261,22.38591],[114.12611,22.38588],[114.12612,22.38584],[114.12613,22.38581],[114.12614,22.38577],[114.12616,22.38572],[114.12617,22.38568],[114.12618,22.38563],[114.12619,22.38557],[114.1262,22.38554],[114.12621,22.3855],[114.12621,22.38546],[114.12621,22.38543],[114.12622,22.38539],[114.12622,22.38535],[114.12622,22.38532],[114.12623,22.38529],[114.12624,22.38526],[114.12625,22.38522],[114.12626,22.3852],[114.12629,22.38515],[114.1263,22.38513],[114.12632,22.3851],[114.12634,22.38508],[114.12636,22.38505],[114.12638,22.38503],[114.12641,22.38501],[114.12644,22.38499],[114.12647,22.38497],[114.12649,22.38496],[114.12651,22.38496],[114.12653,22.38495],[114.12656,22.38495],[114.12659,22.38494],[114.12662,22.38494],[114.12667,22.38494],[114.12682,22.38495],[114.12684,22.38494],[114.12687,22.38493],[114.1269,22.38492],[114.12692,22.38491],[114.12693,22.38491],[114.12693,22.38491],[114.12694,22.38491],[114.12694,22.38491],[114.12695,22.38491],[114.12695,22.38491],[114.12696,22.38491],[114.12696,22.38491],[114.12697,22.38491],[114.12697,22.38491],[114.12698,22.38491],[114.12698,22.38491],[114.12699,22.38491],[114.12701,22.38492],[114.12703,22.38493],[114.12706,22.38494],[114.12708,22.38495],[114.12708,22.38495],[114.12709,22.38495],[114.12709,22.38495],[114.1271,22.38495],[114.1271,22.38495],[114.12711,22.38495],[114.12711,22.38495],[114.12712,22.38495],[114.12714,22.38494],[114.12714,22.38494],[114.12715,22.38494],[114.12715,22.38494],[114.12716,22.38494],[114.12716,22.38493],[114.12717,22.38493],[114.12717,22.38493],[114.12717,22.38493],[114.12718,22.38492],[114.12718,22.38492],[114.1272,22.38491],[114.12721,22.3849],[114.12722,22.38488],[114.12723,22.38486],[114.12724,22.38483],[114.12727,22.38475],[114.1273,22.38466],[114.12732,22.3846],[114.12734,22.38455],[114.12735,22.38451],[114.12736,22.38447],[114.12737,22.38442],[114.12738,22.38437],[114.12738,22.38434],[114.12738,22.3843],[114.12738,22.38428],[114.12738,22.38425],[114.12737,22.38421],[114.12736,22.38417],[114.12734,22.38409],[114.12723,22.38362],[114.12721,22.38354],[114.1272,22.38352],[114.12719,22.3835],[114.12719,22.38348],[114.12718,22.38347],[114.12718,22.38346],[114.12717,22.38343],[114.12717,22.38342],[114.12717,22.3834],[114.12717,22.38337],[114.12718,22.38335],[114.12718,22.38334],[114.12718,22.38334],[114.12718,22.38333],[114.12718,22.38333],[114.12718,22.38332],[114.12719,22.38332],[114.12719,22.38331],[114.12719,22.38331],[114.12719,22.38331],[114.12719,22.3833],[114.1272,22.3833],[114.1272,22.3833],[114.1272,22.38329],[114.12721,22.38329],[114.12723,22.38327],[114.12726,22.38325],[114.12728,22.38322],[114.12731,22.3832],[114.12735,22.38317],[114.12738,22.38316],[114.1274,22.38314],[114.12744,22.38313],[114.12747,22.38312],[114.12751,22.38311],[114.12756,22.3831],[114.12759,22.3831],[114.12763,22.3831],[114.12766,22.38311],[114.1277,22.38312],[114.12773,22.38313],[114.12778,22.38315],[114.12783,22.38317],[114.12794,22.38323],[114.12801,22.38327],[114.12806,22.3833],[114.12809,22.38331],[114.12812,22.38333],[114.12815,22.38334],[114.1282,22.38336],[114.12827,22.38338],[114.12835,22.38341],[114.12844,22.38344],[114.12861,22.38349],[114.12871,22.38352],[114.12881,22.38355],[114.12887,22.38357],[114.1289,22.38357],[114.12895,22.38358],[114.12899,22.38359],[114.12902,22.38359],[114.12902,22.38359],[114.12903,22.38359],[114.12903,22.38359],[114.12904,22.38359],[114.12904,22.38359],[114.12905,22.38359],[114.12905,22.38359],[114.12906,22.38359],[114.12906,22.38358],[114.12907,22.38358],[114.12907,22.38358],[114.12907,22.38358],[114.12909,22.38357],[114.12911,22.38355],[114.12913,22.38353],[114.12914,22.38351],[114.12916,22.38349],[114.12917,22.38347],[114.12919,22.38345],[114.1292,22.38343],[114.12923,22.3834],[114.12925,22.38338],[114.12929,22.38336],[114.12933,22.38334],[114.12938,22.38332],[114.12943,22.38331],[114.12949,22.3833],[114.12957,22.38328],[114.12976,22.38324],[114.12983,22.38322],[114.13008,22.38307],[114.13009,22.38305],[114.13012,22.38303],[114.13014,22.38302],[114.13018,22.38301],[114.13021,22.383],[114.13024,22.38299],[114.13025,22.38299],[114.13028,22.383],[114.13031,22.383],[114.13035,22.38301],[114.13037,22.38302],[114.13039,22.38303],[114.1304,22.38304],[114.13044,22.38307],[114.13052,22.38315],[114.13056,22.38319],[114.13058,22.3832],[114.13058,22.38321],[114.13059,22.38322],[114.13061,22.38323],[114.13064,22.38324],[114.13068,22.38325],[114.1307,22.38325],[114.13074,22.38326],[114.13079,22.38325],[114.13084,22.38325],[114.13088,22.38324],[114.13092,22.38323],[114.13096,22.38322],[114.131,22.38321],[114.13104,22.38319],[114.13106,22.38317],[114.13109,22.38315],[114.13111,22.38312],[114.13114,22.3831],[114.13115,22.38308],[114.13117,22.38306],[114.13118,22.38305],[114.13122,22.38302],[114.13125,22.383],[114.13128,22.38299],[114.13131,22.38299],[114.13135,22.38298],[114.13138,22.38298],[114.13142,22.38298],[114.13147,22.38298],[114.13151,22.38299],[114.13156,22.383],[114.1316,22.38301],[114.13162,22.38301],[114.13164,22.38302],[114.13168,22.38303],[114.13171,22.38305],[114.13174,22.38308],[114.13176,22.3831],[114.13178,22.38313],[114.13181,22.38316],[114.13184,22.38322],[114.13186,22.38329],[114.13188,22.38334],[114.13189,22.38334],[114.1319,22.38338],[114.13192,22.38342],[114.13194,22.38345],[114.13197,22.38348],[114.13199,22.38349],[114.13202,22.38351],[114.13205,22.38353],[114.13209,22.38356],[114.13211,22.38357],[114.13214,22.38359],[114.13215,22.3836],[114.13217,22.38362],[114.13219,22.38365],[114.1322,22.38367],[114.13222,22.38371],[114.13223,22.38374],[114.13223,22.38377],[114.13223,22.3838],[114.13223,22.38383],[114.13223,22.38385],[114.13223,22.38388],[114.13224,22.3839],[114.13225,22.38392],[114.13226,22.38394],[114.13226,22.38394],[114.13226,22.38395],[114.13227,22.38395],[114.13227,22.38395],[114.13227,22.38396],[114.13228,22.38396],[114.13228,22.38396],[114.13228,22.38396],[114.13229,22.38397],[114.13229,22.38397],[114.1323,22.38397],[114.1323,22.38397],[114.13231,22.38398],[114.13231,22.38398],[114.13237,22.384],[114.13244,22.38402],[114.1325,22.38403],[114.13255,22.38404],[114.13261,22.38402],[114.1327,22.38405],[114.13275,22.38408],[114.13278,22.38409],[114.13281,22.38409],[114.13284,22.3841],[114.13288,22.38411],[114.13291,22.38413],[114.13294,22.38414],[114.13298,22.38416],[114.133,22.38417],[114.13303,22.38418],[114.13305,22.38419],[114.13308,22.38419],[114.13311,22.38419],[114.13315,22.38419],[114.13324,22.38418],[114.13332,22.38417],[114.13337,22.38416],[114.1334,22.38416],[114.13344,22.38416],[114.13347,22.38417],[114.13351,22.38418],[114.13355,22.3842],[114.13359,22.38421],[114.13363,22.38422],[114.13366,22.38423],[114.13369,22.38424],[114.13372,22.38424],[114.13376,22.38423],[114.1338,22.38422],[114.13389,22.3842],[114.134,22.38417],[114.13419,22.38412],[114.13426,22.3841],[114.13431,22.38409],[114.13434,22.38409],[114.13438,22.38409],[114.13441,22.38409],[114.13445,22.3841],[114.13449,22.38411],[114.13453,22.38413],[114.13456,22.38414],[114.13459,22.38416],[114.13462,22.38418],[114.13464,22.38418],[114.13469,22.38426],[114.1347,22.38431],[114.13471,22.38434],[114.13472,22.38436],[114.13474,22.3844],[114.1348,22.38451],[114.13486,22.38462],[114.1349,22.38469],[114.13493,22.38474],[114.13496,22.38479],[114.135,22.38485],[114.13504,22.38491],[114.13506,22.38494],[114.13508,22.38498],[114.13509,22.38501],[114.1351,22.38503],[114.1351,22.38505],[114.1351,22.38505],[114.1351,22.38508],[114.13509,22.38511],[114.13508,22.38515],[114.13508,22.38517],[114.13507,22.38519],[114.13508,22.3852],[114.13508,22.38521],[114.13508,22.38522],[114.13508,22.38522],[114.13509,22.38523],[114.13509,22.38523],[114.13509,22.38523],[114.13509,22.38524],[114.1351,22.38524],[114.1351,22.38524],[114.13511,22.38525],[114.13511,22.38525],[114.13512,22.38525],[114.13513,22.38525],[114.13515,22.38525],[114.13519,22.38525],[114.13523,22.38525],[114.13531,22.38524],[114.13533,22.38524],[114.13537,22.38523],[114.13541,22.38524],[114.13544,22.38524],[114.13547,22.38525],[114.1355,22.38526],[114.13553,22.38527],[114.13558,22.3853],[114.13563,22.38533],[114.13569,22.38538],[114.13575,22.38543],[114.13579,22.38545],[114.1358,22.38546],[114.13581,22.38546],[114.13581,22.38546],[114.13582,22.38546],[114.13582,22.38546],[114.13583,22.38546],[114.13583,22.38546],[114.13583,22.38546],[114.13584,22.38546],[114.13584,22.38546],[114.13585,22.38546],[114.13586,22.38546],[114.13587,22.38545],[114.13587,22.38545],[114.13589,22.38543],[114.1359,22.3854],[114.13591,22.38538],[114.13593,22.38533],[114.13595,22.38529],[114.13596,22.38526],[114.13597,22.38524],[114.13598,22.38522],[114.13601,22.38519],[114.13603,22.38517],[114.13607,22.38514],[114.13619,22.38505],[114.13636,22.38492],[114.13646,22.38485],[114.13656,22.38477],[114.13661,22.38473],[114.13664,22.38471],[114.13667,22.3847],[114.13671,22.38468],[114.13675,22.38467],[114.13678,22.38466],[114.13683,22.38465],[114.13688,22.38464],[114.13694,22.38464],[114.13697,22.38463],[114.137,22.38462],[114.13703,22.3846],[114.13707,22.38457],[114.13709,22.38453],[114.13711,22.3845],[114.13713,22.38446],[114.13715,22.3844],[114.13717,22.38435],[114.13718,22.38431],[114.1372,22.38428],[114.13722,22.38425],[114.13724,22.38423],[114.13726,22.38421],[114.13728,22.3842],[114.13731,22.38418],[114.13734,22.38417],[114.13737,22.38416],[114.13741,22.38415],[114.13745,22.38414],[114.13748,22.38414],[114.13753,22.38415],[114.13759,22.38416],[114.13763,22.38418],[114.13766,22.3842],[114.1377,22.38422],[114.13776,22.38427],[114.13786,22.38435],[114.13808,22.38453],[114.13815,22.38459],[114.13818,22.38461],[114.13821,22.38463],[114.13823,22.38464],[114.13825,22.38465],[114.13828,22.38466],[114.1383,22.38466],[114.13833,22.38466],[114.13838,22.38466],[114.13845,22.38465],[114.13858,22.38464],[114.13872,22.38463],[114.13886,22.38462],[114.13901,22.38461],[114.13922,22.38459],[114.13935,22.38458],[114.1394,22.38457],[114.13945,22.38458],[114.13949,22.38458],[114.13955,22.38459],[114.13959,22.3846],[114.13963,22.38461],[114.13967,22.38463],[114.13972,22.38466],[114.13976,22.38468],[114.1398,22.38471],[114.13983,22.38474],[114.13987,22.38477],[114.1399,22.3848],[114.13993,22.38484],[114.13999,22.38492],[114.14007,22.38502],[114.14015,22.38513],[114.14039,22.38545],[114.14044,22.38551],[114.14046,22.38554],[114.14048,22.38556],[114.1405,22.38557],[114.14052,22.38558],[114.14055,22.38558],[114.14055,22.38558],[114.14056,22.38558],[114.14056,22.38558],[114.14057,22.38558],[114.14057,22.38558],[114.14058,22.38558],[114.14058,22.38557],[114.14059,22.38557],[114.14059,22.38557],[114.1406,22.38557],[114.1406,22.38557],[114.1406,22.38557],[114.14061,22.38556],[114.14063,22.38555],[114.14066,22.38551],[114.14069,22.38546],[114.14076,22.38536],[114.14084,22.38526],[114.1409,22.38517],[114.14092,22.38514],[114.14093,22.38512],[114.14093,22.38511],[114.14094,22.38508],[114.14094,22.38505],[114.14095,22.38502],[114.14096,22.385],[114.14098,22.38496],[114.14116,22.38489],[114.1412,22.38487],[114.14122,22.38486],[114.14124,22.38484],[114.14125,22.38482],[114.14127,22.3848],[114.14129,22.38477],[114.1413,22.38475],[114.14131,22.38473],[114.14132,22.38472],[114.14133,22.38467],[114.14133,22.38465],[114.14134,22.38462],[114.14137,22.38457],[114.14138,22.38455],[114.14138,22.38453],[114.1414,22.38446],[114.14141,22.38444],[114.14142,22.38443],[114.14143,22.38441],[114.14144,22.38439],[114.14146,22.38437],[114.14147,22.38435],[114.14149,22.38433],[114.14151,22.3843],[114.14153,22.38428],[114.14155,22.38427],[114.14157,22.38425],[114.14159,22.38424],[114.14162,22.38422],[114.14164,22.38421],[114.14168,22.3842],[114.1417,22.38418],[114.14173,22.38417],[114.14175,22.38417],[114.14181,22.38416],[114.14185,22.38415],[114.14189,22.38415],[114.14191,22.38415],[114.14193,22.38415],[114.14195,22.38415],[114.14201,22.38417],[114.1428,22.38449],[114.1428,22.38449],[114.14281,22.38449],[114.14281,22.38449],[114.14283,22.38448],[114.14284,22.38448],[114.14285,22.38448],[114.14287,22.38448],[114.14289,22.38447],[114.14291,22.38447],[114.14292,22.38447],[114.14295,22.38447],[114.14297,22.38447],[114.14299,22.38447],[114.143,22.38448],[114.14302,22.38448],[114.14304,22.38448],[114.14305,22.38449],[114.14308,22.3845],[114.1431,22.3845],[114.14311,22.38451],[114.14313,22.38452],[114.14316,22.38453],[114.14318,22.38454],[114.14321,22.38455],[114.14324,22.38457],[114.14328,22.38458],[114.14331,22.38459],[114.14335,22.3846],[114.14338,22.3846],[114.14342,22.38461],[114.14346,22.38462],[114.14362,22.38464],[114.14363,22.38464],[114.14364,22.38464],[114.14366,22.38464],[114.14367,22.38464],[114.14368,22.38464],[114.1437,22.38464],[114.14371,22.38463],[114.14373,22.38463],[114.14374,22.38463],[114.14375,22.38462],[114.14376,22.38461],[114.14376,22.38461],[114.14378,22.3846],[114.14378,22.38459],[114.14379,22.38458],[114.14379,22.38457],[114.14379,22.38456],[114.1438,22.38454],[114.14379,22.38454],[114.14379,22.38451],[114.1436,22.38452],[114.14357,22.38452],[114.14356,22.38452],[114.14351,22.38449],[114.14348,22.38448],[114.14342,22.38445],[114.14333,22.38441],[114.14334,22.38441],[114.14334,22.3844],[114.14335,22.3844],[114.14335,22.3844],[114.14335,22.3844],[114.14336,22.38439],[114.14336,22.38439],[114.14336,22.38439],[114.14337,22.38438],[114.14337,22.38438],[114.14337,22.38437],[114.14337,22.38437],[114.14337,22.38436],[114.14338,22.38436],[114.14338,22.38436],[114.14338,22.38436],[114.14338,22.38435],[114.14338,22.38435],[114.14338,22.38434],[114.14338,22.38434],[114.14337,22.38433],[114.14337,22.38433],[114.14337,22.38432],[114.14337,22.38432],[114.14337,22.38431],[114.14337,22.38431],[114.14337,22.38431],[114.14337,22.3843],[114.14336,22.3843],[114.14336,22.38429],[114.14336,22.38429],[114.14336,22.38428],[114.14335,22.38428],[114.14335,22.38428],[114.14335,22.38427],[114.14335,22.38427],[114.14334,22.38427],[114.14334,22.38426],[114.14334,22.38426],[114.14334,22.38425],[114.14333,22.38425],[114.14333,22.38424],[114.14332,22.38424],[114.14332,22.38424],[114.14331,22.38424],[114.14331,22.38423],[114.14331,22.38423],[114.1433,22.38423],[114.1433,22.38422],[114.1433,22.38422],[114.14329,22.38422],[114.14329,22.38422],[114.14328,22.38421],[114.14328,22.38421],[114.14319,22.38414],[114.143,22.384],[114.143,22.384],[114.143,22.38399],[114.14299,22.38399],[114.14299,22.38399],[114.14299,22.38398],[114.14298,22.38398],[114.14298,22.38398],[114.14297,22.38398],[114.14297,22.38397],[114.14296,22.38397],[114.14296,22.38396],[114.14296,22.38396],[114.14295,22.38396],[114.14295,22.38395],[114.14295,22.38395],[114.14294,22.38395],[114.14294,22.38395],[114.14293,22.38394],[114.14293,22.38394],[114.14293,22.38394],[114.14292,22.38393],[114.14292,22.38393],[114.14292,22.38393],[114.14291,22.38393],[114.14291,22.38392],[114.14291,22.38392],[114.1429,22.38392],[114.1429,22.38391],[114.14289,22.38391],[114.14289,22.38391],[114.14289,22.38391],[114.14288,22.3839],[114.14288,22.3839],[114.14287,22.3839],[114.14287,22.38389],[114.14287,22.38389],[114.14286,22.38389],[114.14286,22.38389],[114.14286,22.38388],[114.14285,22.38388],[114.14285,22.38388],[114.14284,22.38387],[114.14284,22.38387],[114.14284,22.38387],[114.14283,22.38387],[114.14283,22.38386],[114.14283,22.38386],[114.14282,22.38386],[114.14282,22.38385],[114.14281,22.38385],[114.14281,22.38385],[114.1428,22.38384],[114.1428,22.38384],[114.14279,22.38384],[114.14279,22.38384],[114.14279,22.38383],[114.14278,22.38383],[114.14278,22.38383],[114.14277,22.38382],[114.14277,22.38382],[114.14277,22.38382],[114.14276,22.38382],[114.14276,22.38381],[114.14276,22.38381],[114.14274,22.3838],[114.14274,22.3838],[114.14274,22.3838],[114.14273,22.38379],[114.14273,22.38379],[114.14272,22.38379],[114.14272,22.38379],[114.14272,22.38378],[114.14271,22.38378],[114.1427,22.38378],[114.1427,22.38377],[114.1427,22.38377],[114.14269,22.38377],[114.14269,22.38377],[114.14268,22.38376],[114.14268,22.38376],[114.14267,22.38375],[114.14266,22.38375],[114.14266,22.38374],[114.14265,22.38374],[114.14265,22.38374],[114.14264,22.38373],[114.14264,22.38373],[114.14263,22.38373],[114.14263,22.38373],[114.14263,22.38372],[114.14262,22.38372],[114.14261,22.38371],[114.14261,22.38371],[114.1426,22.38371],[114.1426,22.3837],[114.14259,22.3837],[114.14259,22.3837],[114.14258,22.38369],[114.14258,22.38369],[114.14257,22.38369],[114.14257,22.38369],[114.14257,22.38368],[114.14255,22.38368],[114.14255,22.38367],[114.14255,22.38367],[114.14254,22.38367],[114.14254,22.38367],[114.14253,22.38366],[114.14253,22.38366],[114.14253,22.38366],[114.14252,22.38365],[114.14251,22.38365],[114.14251,22.38365],[114.14251,22.38364],[114.1425,22.38364],[114.14249,22.38364],[114.14249,22.38363],[114.14249,22.38363],[114.14248,22.38363],[114.14248,22.38363],[114.14247,22.38362],[114.14247,22.38362],[114.14247,22.38362],[114.14246,22.38362],[114.14246,22.38361],[114.14245,22.38361],[114.14245,22.38361],[114.14245,22.38361],[114.14244,22.3836],[114.14244,22.3836],[114.14243,22.3836],[114.14243,22.3836],[114.14243,22.38359],[114.14242,22.38359],[114.14242,22.38359],[114.14241,22.38358],[114.14241,22.38358],[114.1424,22.38358],[114.14239,22.38357],[114.14239,22.38357],[114.14238,22.38357],[114.14238,22.38356],[114.14237,22.38356],[114.14237,22.38356],[114.14237,22.38356],[114.14236,22.38355],[114.14236,22.38355],[114.14235,22.38355],[114.14233,22.38353],[114.14232,22.38353],[114.14232,22.38353],[114.14231,22.38352],[114.14231,22.38352],[114.14231,22.38352],[114.1423,22.38352],[114.1423,22.38351],[114.14229,22.38351],[114.14229,22.38351],[114.14229,22.38351],[114.14228,22.3835],[114.14228,22.3835],[114.14227,22.3835],[114.14227,22.3835],[114.14227,22.38349],[114.14226,22.38349],[114.14226,22.38349],[114.14225,22.38349],[114.14225,22.38348],[114.14224,22.38348],[114.14224,22.38348],[114.14224,22.38348],[114.14223,22.38347],[114.14223,22.38347],[114.14222,22.38347],[114.14222,22.38347],[114.14222,22.38346],[114.14221,22.38346],[114.1422,22.38346],[114.1422,22.38345],[114.14219,22.38345],[114.14219,22.38345],[114.14216,22.38343],[114.14216,22.38343],[114.14215,22.38342],[114.14215,22.38342],[114.14214,22.38342],[114.14214,22.38341],[114.14214,22.38341],[114.14213,22.38341],[114.14212,22.3834],[114.14212,22.3834],[114.14211,22.3834],[114.14211,22.38339],[114.1421,22.38339],[114.1421,22.38339],[114.14209,22.38338],[114.14209,22.38338],[114.14208,22.38338],[114.14208,22.38338],[114.14208,22.38337],[114.14207,22.38337],[114.14207,22.38337],[114.14115,22.38282],[114.14105,22.38273],[114.14094,22.38263],[114.1409,22.38259],[114.14085,22.38255],[114.14083,22.38253],[114.14081,22.38251],[114.14077,22.38248],[114.14072,22.38244],[114.14066,22.38239],[114.14063,22.38237],[114.14061,22.38235],[114.14059,22.38233],[114.14057,22.38232],[114.14055,22.38231],[114.14054,22.3823],[114.14052,22.38229],[114.14051,22.38228],[114.1405,22.38227],[114.14048,22.38226],[114.14047,22.38225],[114.14044,22.38224],[114.14043,22.38223],[114.14041,22.38222],[114.14039,22.38221],[114.14037,22.3822],[114.14036,22.3822],[114.14033,22.38219],[114.14031,22.38218],[114.14029,22.38217],[114.14026,22.38216],[114.14024,22.38215],[114.14019,22.38214],[114.14009,22.3821],[114.14006,22.38209],[114.14004,22.38209],[114.14002,22.38208],[114.13999,22.38207],[114.1399,22.38204],[114.13986,22.38203],[114.13983,22.38202],[114.13981,22.38201],[114.13979,22.38201],[114.13977,22.382],[114.13975,22.38199],[114.13974,22.38199],[114.13973,22.38198],[114.13971,22.38197],[114.13969,22.38197],[114.13967,22.38196],[114.13965,22.38195],[114.13963,22.38194],[114.13961,22.38192],[114.13959,22.38191],[114.13957,22.3819],[114.13955,22.38189],[114.13953,22.38188],[114.13952,22.38187],[114.1395,22.38186],[114.13949,22.38185],[114.13948,22.38184],[114.13947,22.38183],[114.13946,22.38183],[114.13945,22.38182],[114.13944,22.38181],[114.13943,22.3818],[114.13943,22.38179],[114.13942,22.38178],[114.13941,22.38176],[114.13941,22.38175],[114.1394,22.38174],[114.13939,22.38173],[114.13939,22.38171],[114.13938,22.3817],[114.13937,22.38168],[114.13936,22.38166],[114.13936,22.38164],[114.13935,22.38163],[114.13935,22.38161],[114.13934,22.38159],[114.13934,22.38157],[114.13933,22.38155],[114.13933,22.38154],[114.13933,22.38152],[114.13932,22.38151],[114.13932,22.3815],[114.13932,22.38149],[114.13932,22.38148],[114.13932,22.38146],[114.13931,22.38145],[114.13931,22.38143],[114.13931,22.38141],[114.13931,22.38139],[114.13931,22.38132],[114.1393,22.3813],[114.1393,22.38127],[114.1393,22.38124],[114.13929,22.38118],[114.13928,22.38116],[114.13928,22.38115],[114.13927,22.38114],[114.13927,22.38114],[114.13927,22.38113],[114.13927,22.38113],[114.13927,22.38112],[114.13927,22.38112],[114.13927,22.38112],[114.13927,22.38111],[114.13927,22.38111],[114.13927,22.3811],[114.13926,22.3811],[114.13926,22.38109],[114.13926,22.38109],[114.13926,22.38108],[114.13926,22.38108],[114.13926,22.38107],[114.13926,22.38107],[114.13926,22.38107],[114.13926,22.38106],[114.13926,22.38106],[114.13926,22.38105],[114.13926,22.38105],[114.13926,22.38104],[114.13926,22.38104],[114.13926,22.38103],[114.13926,22.38103],[114.13926,22.38102],[114.13926,22.38102],[114.13926,22.38101],[114.13926,22.38101],[114.13926,22.38101],[114.13927,22.381],[114.13927,22.381],[114.13927,22.38099],[114.13927,22.38099],[114.13927,22.38098],[114.13927,22.38098],[114.13927,22.38097],[114.13927,22.38097],[114.13927,22.38097],[114.13927,22.38096],[114.13928,22.38096],[114.13928,22.38095],[114.13928,22.38095],[114.13928,22.38094],[114.13928,22.38094],[114.13928,22.38093],[114.13928,22.38093],[114.13928,22.38092],[114.13928,22.38092],[114.13928,22.38091],[114.13928,22.38091],[114.13928,22.3809],[114.13927,22.3809],[114.13927,22.3809],[114.13927,22.38089],[114.13927,22.38089],[114.13926,22.38088],[114.13925,22.38088],[114.13925,22.38088],[114.13925,22.38088],[114.13924,22.38087],[114.13924,22.38087],[114.13923,22.38087],[114.13923,22.38087],[114.13922,22.38087],[114.13922,22.38087],[114.13921,22.38087],[114.13921,22.38087],[114.1392,22.38087],[114.1392,22.38087],[114.13919,22.38086],[114.13919,22.38086],[114.13918,22.38086],[114.13918,22.38086],[114.13917,22.38086],[114.13917,22.38086],[114.13916,22.38086],[114.13916,22.38086],[114.13915,22.38086],[114.13914,22.38085],[114.13912,22.38084],[114.13912,22.38084],[114.13911,22.38084],[114.13911,22.38084],[114.1391,22.38084],[114.1391,22.38084],[114.13909,22.38084],[114.13909,22.38084],[114.13908,22.38084],[114.13908,22.38084],[114.13907,22.38085],[114.13907,22.38085],[114.13877,22.38103],[114.13876,22.38103],[114.13876,22.38103],[114.13876,22.38103],[114.13875,22.38104],[114.13875,22.38104],[114.13874,22.38104],[114.13874,22.38104],[114.13873,22.38105],[114.13873,22.38105],[114.13873,22.38105],[114.13872,22.38105],[114.13872,22.38105],[114.13871,22.38106],[114.13871,22.38106],[114.1387,22.38106],[114.1387,22.38106],[114.13869,22.38106],[114.13869,22.38107],[114.13868,22.38107],[114.13868,22.38107],[114.13868,22.38107],[114.13867,22.38107],[114.13867,22.38108],[114.13866,22.38108],[114.13866,22.38108],[114.13865,22.38108],[114.13865,22.38108],[114.13864,22.38108],[114.13864,22.38109],[114.13863,22.38109],[114.13863,22.38109],[114.13863,22.38109],[114.13862,22.38109],[114.13862,22.38109],[114.13861,22.3811],[114.13861,22.3811],[114.1386,22.3811],[114.1386,22.3811],[114.13859,22.3811],[114.13858,22.38111],[114.13858,22.38111],[114.13858,22.38111],[114.13857,22.38111],[114.13857,22.38111],[114.13856,22.38111],[114.13856,22.38111],[114.13855,22.38111],[114.13855,22.38111],[114.13854,22.38111],[114.13854,22.38111],[114.13853,22.38112],[114.13853,22.38112],[114.13852,22.38112],[114.13852,22.38112],[114.13851,22.38112],[114.1385,22.38112],[114.1385,22.38112],[114.13849,22.38112],[114.13849,22.38112],[114.13848,22.38112],[114.13848,22.38112],[114.13847,22.38112],[114.13847,22.38112],[114.13846,22.38112],[114.13846,22.38112],[114.13845,22.38112],[114.13845,22.38112],[114.13844,22.38111],[114.13844,22.38111],[114.13843,22.38111],[114.13843,22.38111],[114.13842,22.38111],[114.13842,22.38111],[114.13841,22.38111],[114.13841,22.38111],[114.1384,22.38111],[114.1384,22.38111],[114.13839,22.38111],[114.13839,22.38111],[114.13838,22.38111],[114.13838,22.3811],[114.13837,22.3811],[114.13837,22.3811],[114.13836,22.3811],[114.13836,22.3811],[114.13835,22.3811],[114.13835,22.3811],[114.13834,22.3811],[114.13834,22.3811],[114.13833,22.38109],[114.13833,22.38109],[114.13832,22.38109],[114.13832,22.38109],[114.13829,22.38108],[114.13826,22.38107],[114.13823,22.38106],[114.1382,22.38105],[114.13819,22.38105],[114.13817,22.38104],[114.13817,22.38104],[114.13816,22.38103],[114.13815,22.38103],[114.13814,22.38103],[114.13813,22.38102],[114.13812,22.38102],[114.13812,22.38101],[114.13811,22.38101],[114.1381,22.381],[114.1381,22.381],[114.13809,22.38099],[114.13808,22.38099],[114.13808,22.38098],[114.13807,22.38097],[114.13807,22.38097],[114.13806,22.38096],[114.13806,22.38095],[114.13805,22.38094],[114.13805,22.38093],[114.13805,22.38093],[114.13805,22.38092],[114.13804,22.38092],[114.13804,22.38091],[114.13804,22.38091],[114.13804,22.3809],[114.13804,22.3809],[114.13804,22.3809],[114.13805,22.38089],[114.13805,22.38089],[114.13805,22.38088],[114.13805,22.38088],[114.13805,22.38087],[114.13805,22.38087],[114.13806,22.38087],[114.13806,22.38086],[114.13806,22.38086],[114.13806,22.38085],[114.13807,22.38085],[114.13807,22.38084],[114.13808,22.38084],[114.13808,22.38084],[114.13809,22.38083],[114.1381,22.38083],[114.13811,22.38082],[114.13811,22.38082],[114.13812,22.38082],[114.13814,22.38081],[114.13816,22.38081],[114.13817,22.3808],[114.13819,22.38079],[114.1382,22.38079],[114.13821,22.38079],[114.13822,22.38078],[114.13823,22.38077],[114.13824,22.38077],[114.13825,22.38076],[114.13826,22.38075],[114.13827,22.38075],[114.13827,22.38075],[114.13828,22.38074],[114.13829,22.38073],[114.1383,22.38072],[114.13831,22.38071],[114.13833,22.3807],[114.13834,22.38068],[114.13841,22.3806],[114.13841,22.3806],[114.13842,22.38059],[114.13842,22.38059],[114.13843,22.38059],[114.13844,22.38058],[114.13845,22.38057],[114.13845,22.38057],[114.13846,22.38057],[114.13847,22.38056],[114.13848,22.38055],[114.13849,22.38055],[114.13851,22.38054],[114.13852,22.38053],[114.13854,22.38053],[114.13854,22.38052],[114.13855,22.38052],[114.13856,22.38052],[114.13857,22.38052],[114.13858,22.38051],[114.13859,22.38051],[114.1386,22.38051],[114.13861,22.38051],[114.13862,22.38051],[114.13863,22.38051],[114.13864,22.38051],[114.13865,22.38051],[114.13866,22.3805],[114.13867,22.3805],[114.13868,22.3805],[114.13869,22.38049],[114.1387,22.38048],[114.13871,22.38048],[114.13871,22.38047],[114.13872,22.38047],[114.13873,22.38046],[114.13874,22.38045],[114.13875,22.38044],[114.13876,22.38044],[114.13876,22.38043],[114.13877,22.38042],[114.13878,22.38041],[114.13878,22.38041],[114.13881,22.38037],[114.13881,22.38037],[114.13882,22.38036],[114.13883,22.38035],[114.13884,22.38034],[114.13885,22.38033],[114.13885,22.38033],[114.13886,22.38032],[114.13887,22.38032],[114.13888,22.38031],[114.13889,22.3803],[114.13889,22.3803],[114.1389,22.38029],[114.13891,22.38029],[114.13892,22.38028],[114.13893,22.38028],[114.13895,22.38027],[114.13895,22.38027],[114.13896,22.38026],[114.13897,22.38026],[114.13898,22.38026],[114.13899,22.38025],[114.139,22.38025],[114.13902,22.38024],[114.13903,22.38024],[114.13904,22.38024],[114.13905,22.38024],[114.13905,22.38024],[114.13906,22.38024],[114.13906,22.38023],[114.13907,22.38023],[114.13907,22.38023],[114.13908,22.38023],[114.13911,22.3802],[114.13915,22.38017],[114.13915,22.38016],[114.13916,22.38015],[114.13917,22.38014],[114.13917,22.38013],[114.13918,22.38012],[114.13918,22.38012],[114.13919,22.38011],[114.1392,22.38009],[114.13921,22.38007],[114.13923,22.38004],[114.13924,22.38001],[114.13926,22.37998],[114.13926,22.37996],[114.13927,22.37995],[114.13928,22.37991],[114.13929,22.3799],[114.13929,22.37989],[114.13929,22.37988],[114.1393,22.37987],[114.1393,22.37985],[114.1393,22.37985],[114.13932,22.37983],[114.13932,22.37983],[114.13932,22.37982],[114.13932,22.37981],[114.13933,22.3798],[114.13933,22.37979],[114.13933,22.37978],[114.13933,22.37978],[114.13933,22.37978],[114.13933,22.37977],[114.13933,22.37977],[114.13933,22.37976],[114.13933,22.37975],[114.13933,22.37975],[114.13933,22.37975],[114.13932,22.37974],[114.13932,22.37974],[114.13932,22.37974],[114.13931,22.37973],[114.13931,22.37973],[114.1393,22.37973],[114.1393,22.37973],[114.13929,22.37973],[114.13929,22.37973],[114.13928,22.37973],[114.13928,22.37973],[114.13927,22.37973],[114.13927,22.37973],[114.13926,22.37973],[114.13926,22.37973],[114.13924,22.37973],[114.13923,22.37973],[114.13921,22.37974],[114.1392,22.37974],[114.1392,22.37974],[114.13916,22.37975],[114.13913,22.37976],[114.13911,22.37976],[114.1391,22.37977],[114.13908,22.37977],[114.13907,22.37977],[114.13906,22.37977],[114.13905,22.37978],[114.13904,22.37978],[114.13903,22.37978],[114.13902,22.37978],[114.13901,22.37978],[114.139,22.37978],[114.13899,22.37978],[114.13899,22.37978],[114.13898,22.37978],[114.13897,22.37978],[114.13897,22.37978],[114.13896,22.37978],[114.13895,22.37978],[114.13895,22.37978],[114.13894,22.37977],[114.13893,22.37977],[114.13892,22.37977],[114.13891,22.37976],[114.13891,22.37976],[114.1389,22.37976],[114.1389,22.37976],[114.13889,22.37975],[114.13889,22.37975],[114.13888,22.37974],[114.13887,22.37973],[114.13886,22.37972],[114.13886,22.37972],[114.13885,22.37971],[114.13884,22.3797],[114.13884,22.37969],[114.13883,22.37967],[114.13882,22.37966],[114.13881,22.37964],[114.1388,22.37962],[114.1388,22.37961],[114.1388,22.3796],[114.1388,22.3796],[114.13879,22.37959],[114.13879,22.37958],[114.13878,22.37958],[114.13878,22.37957],[114.13877,22.37956],[114.13877,22.37956],[114.13876,22.37955],[114.13876,22.37955],[114.13875,22.37955],[114.13874,22.37954],[114.13855,22.37943],[114.13854,22.37943],[114.13853,22.37942],[114.13852,22.37942],[114.13851,22.37941],[114.1385,22.37941],[114.13849,22.3794],[114.13848,22.37939],[114.13847,22.37938],[114.13847,22.37937],[114.13846,22.37937],[114.13846,22.37936],[114.13845,22.37935],[114.13845,22.37935],[114.13844,22.37933],[114.13844,22.37933],[114.13843,22.37932],[114.13843,22.3793],[114.13843,22.3793],[114.13843,22.3793],[114.13842,22.37929],[114.13842,22.37929],[114.13842,22.37928],[114.13842,22.37928],[114.13842,22.37927],[114.13842,22.37927],[114.13842,22.37926],[114.13842,22.37926],[114.13842,22.37926],[114.13842,22.37925],[114.13842,22.37925],[114.13842,22.37924],[114.13842,22.37924],[114.13842,22.37923],[114.13843,22.37922],[114.13843,22.37921],[114.13844,22.3792],[114.13844,22.37918],[114.13845,22.37917],[114.13846,22.37916],[114.13848,22.37916],[114.13851,22.37917],[114.13853,22.37917],[114.13855,22.37918],[114.13859,22.37919],[114.1386,22.37919],[114.1386,22.37919],[114.13861,22.37919],[114.13861,22.37919],[114.13862,22.37919],[114.13862,22.37919],[114.13863,22.37919],[114.13864,22.37919],[114.13866,22.37919],[114.13867,22.37919],[114.13868,22.37919],[114.13869,22.37918],[114.13871,22.37918],[114.13872,22.37918],[114.13873,22.37918],[114.13875,22.37918],[114.13876,22.37918],[114.13878,22.37918],[114.13879,22.37918],[114.1388,22.37918],[114.13897,22.37918],[114.13899,22.37918],[114.13901,22.37918],[114.13903,22.37918],[114.13905,22.37918],[114.13906,22.37918],[114.13908,22.37919],[114.1391,22.37919],[114.13912,22.37919],[114.13913,22.37919],[114.13914,22.37919],[114.13915,22.3792],[114.13916,22.3792],[114.13918,22.3792],[114.1392,22.37921],[114.1392,22.37921],[114.13922,22.37922],[114.13924,22.37922],[114.13925,22.37923],[114.13926,22.37923],[114.13927,22.37924],[114.13928,22.37924],[114.13929,22.37924],[114.1393,22.37925],[114.13931,22.37925],[114.13932,22.37925],[114.13933,22.37926],[114.13934,22.37926],[114.13934,22.37926],[114.13935,22.37926],[114.13936,22.37926],[114.13937,22.37926],[114.13938,22.37926],[114.13939,22.37926],[114.1394,22.37926],[114.13941,22.37926],[114.13942,22.37926],[114.13944,22.37926],[114.13946,22.37925],[114.13947,22.37925],[114.13948,22.37925],[114.13949,22.37925],[114.13949,22.37925],[114.1395,22.37925],[114.13951,22.37925],[114.13952,22.37925],[114.13953,22.37925],[114.13954,22.37925],[114.13955,22.37925],[114.13956,22.37926],[114.13958,22.37926],[114.13959,22.37926],[114.1396,22.37926],[114.13961,22.37927],[114.13972,22.3793],[114.13969,22.37937],[114.13977,22.37947],[114.13977,22.37948],[114.13978,22.37948],[114.13978,22.37949],[114.13979,22.3795],[114.13979,22.3795],[114.1398,22.37951],[114.1398,22.37952],[114.1398,22.37953],[114.13981,22.37954],[114.13981,22.37954],[114.13981,22.37955],[114.13981,22.37956],[114.13981,22.37956],[114.13982,22.37957],[114.13982,22.37958],[114.13981,22.37959],[114.13981,22.3796],[114.1398,22.37966],[114.1398,22.37967],[114.1398,22.37969],[114.1398,22.3797],[114.1398,22.37971],[114.1398,22.37974],[114.1398,22.37975],[114.1398,22.37976],[114.1398,22.37978],[114.1398,22.3798],[114.13979,22.37981],[114.13979,22.37983],[114.13979,22.37985],[114.13979,22.37986],[114.13979,22.37987],[114.13979,22.37988],[114.13979,22.3799],[114.13979,22.37991],[114.13979,22.37992],[114.13979,22.37993],[114.13979,22.37994],[114.1398,22.37995],[114.1398,22.37997],[114.1398,22.37998],[114.13981,22.37998],[114.13981,22.37999],[114.13981,22.38],[114.13981,22.38001],[114.13981,22.38003],[114.13981,22.38006],[114.13982,22.38011],[114.13982,22.38011],[114.13982,22.38011],[114.13982,22.38012],[114.13982,22.38012],[114.13982,22.38013],[114.13982,22.38013],[114.13982,22.38014],[114.13982,22.38014],[114.13982,22.38015],[114.13982,22.38015],[114.13982,22.38016],[114.13981,22.38017],[114.13981,22.38018],[114.13981,22.38019],[114.13981,22.3802],[114.13981,22.38022],[114.13981,22.38022],[114.13981,22.38024],[114.13981,22.38025],[114.13981,22.38026],[114.13981,22.38027],[114.1398,22.38027],[114.1398,22.38028],[114.1398,22.38028],[114.1398,22.38029],[114.1398,22.38029],[114.1398,22.3803],[114.1398,22.3803],[114.13979,22.38031],[114.13979,22.38032],[114.13979,22.38033],[114.13978,22.38034],[114.13978,22.38035],[114.13978,22.38036],[114.13978,22.38038],[114.13978,22.38039],[114.13978,22.3804],[114.13978,22.38041],[114.13978,22.38043],[114.13978,22.38044],[114.13978,22.38044],[114.13979,22.38045],[114.13979,22.38046],[114.13979,22.38046],[114.1398,22.38047],[114.1398,22.38048],[114.1398,22.38049],[114.13981,22.38049],[114.13981,22.3805],[114.13982,22.38051],[114.13983,22.38052],[114.13983,22.38052],[114.13993,22.38062],[114.13993,22.38063],[114.13994,22.38064],[114.13995,22.38065],[114.13996,22.38066],[114.13997,22.38067],[114.13998,22.38067],[114.13999,22.38068],[114.14,22.38069],[114.14001,22.38069],[114.14001,22.3807],[114.14002,22.38071],[114.14003,22.38071],[114.14003,22.38072],[114.14004,22.38073],[114.14005,22.38073],[114.14006,22.38074],[114.14007,22.38075],[114.14008,22.38076],[114.14009,22.38076],[114.1401,22.38077],[114.14012,22.38078],[114.14013,22.38078],[114.14013,22.38079],[114.14014,22.38079],[114.14014,22.38079],[114.14015,22.38079],[114.14015,22.38079],[114.14015,22.3808],[114.14016,22.3808],[114.14016,22.38081],[114.14017,22.38081],[114.14017,22.38082],[114.14017,22.38083],[114.14017,22.38084],[114.14018,22.38085],[114.14018,22.38086],[114.14019,22.38088],[114.14019,22.38089],[114.1402,22.3809],[114.1402,22.38091],[114.14021,22.38092],[114.14021,22.38093],[114.14022,22.38092],[114.14023,22.3809],[114.14024,22.38088],[114.14024,22.38086],[114.14026,22.38084],[114.14027,22.38082],[114.14028,22.3808],[114.14029,22.38078],[114.1403,22.38077],[114.14032,22.38075],[114.14032,22.38074],[114.14034,22.38072],[114.14035,22.38071],[114.14036,22.38069],[114.14038,22.38067],[114.1404,22.38066],[114.1404,22.38065],[114.14042,22.38066],[114.14044,22.38067],[114.14045,22.38068],[114.14047,22.3807],[114.14048,22.3807],[114.1405,22.38072],[114.14052,22.38073],[114.14054,22.38074],[114.14055,22.38076],[114.14057,22.38077],[114.14077,22.38091],[114.14077,22.38091],[114.14079,22.38092],[114.1408,22.38093],[114.14081,22.38093],[114.14082,22.38094],[114.14083,22.38094],[114.14084,22.38095],[114.14085,22.38096],[114.14086,22.38096],[114.14088,22.38097],[114.14089,22.38097],[114.1409,22.38098],[114.14092,22.38099],[114.14095,22.381],[114.14098,22.38101],[114.141,22.38101],[114.14102,22.38102],[114.14104,22.38103],[114.14107,22.38104],[114.1411,22.38105],[114.14113,22.38106],[114.14115,22.38108],[114.14118,22.38109],[114.1412,22.3811],[114.14122,22.38111],[114.14125,22.38112],[114.14132,22.38116],[114.14136,22.38117],[114.14137,22.38117],[114.14138,22.38116],[114.14139,22.38116],[114.1414,22.38116],[114.14141,22.38116],[114.14142,22.38116],[114.14143,22.38116],[114.14143,22.38114],[114.14143,22.38113],[114.14143,22.38113],[114.14143,22.38112],[114.14143,22.38111],[114.14143,22.3811],[114.14142,22.38109],[114.14142,22.38108],[114.14142,22.38107],[114.14141,22.38105],[114.14141,22.38105],[114.1414,22.38104],[114.1414,22.38103],[114.14139,22.38102],[114.14138,22.38101],[114.14138,22.381],[114.14137,22.38099],[114.14137,22.38098],[114.14137,22.38097],[114.14137,22.38096],[114.14136,22.38094],[114.14136,22.38093],[114.14136,22.38092],[114.14136,22.38092],[114.14137,22.38091],[114.14137,22.38091],[114.14137,22.3809],[114.14137,22.3809],[114.14138,22.3809],[114.14138,22.38089],[114.14139,22.38089],[114.14139,22.38089],[114.14139,22.38088],[114.1414,22.38088],[114.1414,22.38088],[114.14141,22.38088],[114.14143,22.38087],[114.14144,22.38087],[114.14145,22.38086],[114.14146,22.38086],[114.14147,22.38086],[114.14148,22.38085],[114.14149,22.38085],[114.14152,22.38085],[114.14153,22.38085],[114.14155,22.38084],[114.14157,22.38084],[114.1416,22.38084],[114.14161,22.38084],[114.14161,22.38084],[114.14162,22.38084],[114.14162,22.38084],[114.14163,22.38083],[114.14163,22.38083],[114.14164,22.38083],[114.14165,22.38083],[114.14166,22.38082],[114.14167,22.38082],[114.14167,22.38082],[114.14168,22.38081],[114.14169,22.3808],[114.1417,22.3808],[114.1417,22.38079],[114.14171,22.38078],[114.14171,22.38078],[114.14172,22.38077],[114.14172,22.38076],[114.14173,22.38075],[114.14173,22.38073],[114.14174,22.38072],[114.14174,22.38071],[114.14174,22.38069],[114.14175,22.38039],[114.14186,22.38026],[114.14198,22.38028],[114.14209,22.38026],[114.14222,22.38025],[114.14224,22.38024],[114.14224,22.38024],[114.14226,22.38024],[114.14226,22.38023],[114.14227,22.38023],[114.14228,22.38023],[114.1424,22.38017],[114.14249,22.37992],[114.14252,22.37986],[114.14252,22.37986],[114.14252,22.37985],[114.14252,22.37985],[114.14252,22.37985],[114.14253,22.37984],[114.14253,22.37984],[114.14253,22.37983],[114.14254,22.37983],[114.14254,22.37983],[114.14254,22.37982],[114.14255,22.37982],[114.14255,22.37982],[114.14255,22.37981],[114.14256,22.37981],[114.14259,22.37979],[114.1426,22.37978],[114.1426,22.37978],[114.14261,22.37977],[114.14262,22.37977],[114.14262,22.37976],[114.14263,22.37976],[114.14263,22.37975],[114.14264,22.37975],[114.14264,22.37974],[114.14265,22.37973],[114.14265,22.37973],[114.14265,22.37972],[114.14266,22.37971],[114.14269,22.37965],[114.1427,22.37964],[114.1427,22.37963],[114.14271,22.37962],[114.14272,22.37961],[114.14272,22.3796],[114.14273,22.37959],[114.14274,22.37958],[114.14274,22.37958],[114.14275,22.37957],[114.14276,22.37955],[114.14278,22.37954],[114.14279,22.37952],[114.14281,22.37951],[114.14282,22.37949],[114.14284,22.37948],[114.14286,22.37946],[114.14289,22.37943],[114.1429,22.37942],[114.14291,22.37941],[114.14292,22.3794],[114.14292,22.37939],[114.14293,22.37938],[114.14293,22.37938],[114.14294,22.37936],[114.14294,22.37936],[114.14294,22.37935],[114.14295,22.37934],[114.14295,22.37934],[114.14295,22.37933],[114.14295,22.37932],[114.14295,22.37932],[114.14295,22.3793],[114.14295,22.37929],[114.14295,22.37929],[114.14295,22.37928],[114.14295,22.37928],[114.14295,22.37927],[114.14295,22.37927],[114.14295,22.37927],[114.14295,22.37926],[114.14294,22.37926],[114.14294,22.37925],[114.14294,22.37925],[114.14294,22.37925],[114.14293,22.37924],[114.14293,22.37924],[114.14293,22.37923],[114.14293,22.37923],[114.14292,22.37923],[114.14292,22.37922],[114.14291,22.37922],[114.14291,22.37922],[114.14291,22.37921],[114.1429,22.3792],[114.1429,22.37919],[114.14289,22.37918],[114.14289,22.37918],[114.14289,22.37917],[114.14289,22.37916],[114.14288,22.37915],[114.14288,22.37914],[114.14288,22.37914],[114.14289,22.37912],[114.14289,22.37911],[114.14289,22.3791],[114.14289,22.37909],[114.1429,22.37907],[114.1429,22.37906],[114.1429,22.37906],[114.1429,22.37905],[114.1429,22.37904],[114.1429,22.37903],[114.1429,22.37902],[114.1429,22.37902],[114.1429,22.37901],[114.14289,22.379],[114.14289,22.37899],[114.14289,22.37898],[114.14289,22.37898],[114.14288,22.37897],[114.14288,22.37896],[114.14288,22.37895],[114.14287,22.37895],[114.14287,22.37894],[114.14286,22.37892],[114.14285,22.37891],[114.14285,22.3789],[114.14284,22.37889],[114.14283,22.37888],[114.14282,22.37886],[114.14281,22.37885],[114.1428,22.37884],[114.14278,22.3788],[114.14277,22.3788],[114.14277,22.37879],[114.14276,22.37878],[114.14275,22.37878],[114.14275,22.37878],[114.14274,22.37877],[114.14273,22.37877],[114.14272,22.37876],[114.14271,22.37875],[114.1427,22.37875],[114.14269,22.37874],[114.14267,22.37874],[114.14267,22.37874],[114.14265,22.37873],[114.14264,22.37873],[114.14263,22.37873],[114.14261,22.37872],[114.14259,22.37872],[114.14257,22.37871],[114.14256,22.37871],[114.14254,22.37871],[114.14253,22.37871],[114.14251,22.3787],[114.14249,22.3787],[114.14249,22.3787],[114.14226,22.37868],[114.14228,22.37844],[114.14201,22.37844],[114.14192,22.37815],[114.14194,22.37814],[114.14196,22.37812],[114.14198,22.37811],[114.14199,22.3781],[114.14201,22.37809],[114.14203,22.37808],[114.14204,22.37807],[114.14206,22.37806],[114.14207,22.37805],[114.14209,22.37804],[114.14211,22.37803],[114.14212,22.37802],[114.14214,22.37801],[114.14215,22.378],[114.14218,22.37799],[114.1422,22.37798],[114.14221,22.37798],[114.14222,22.37797],[114.14224,22.37796],[114.14226,22.37795],[114.14227,22.37795],[114.14228,22.37795],[114.14229,22.37794],[114.1423,22.37794],[114.14232,22.37793],[114.14233,22.37793],[114.14234,22.37793],[114.14236,22.37792],[114.14239,22.37792],[114.1424,22.37792],[114.14242,22.37791],[114.14244,22.37791],[114.14246,22.37791],[114.14247,22.37791],[114.14249,22.37791],[114.14251,22.37791],[114.14252,22.37791],[114.14253,22.37791],[114.14254,22.3779],[114.14256,22.37791],[114.14257,22.37791],[114.14259,22.37791],[114.1426,22.37791],[114.14261,22.37791],[114.14263,22.37791],[114.14264,22.37791],[114.14265,22.37791],[114.14267,22.37792],[114.14267,22.37792],[114.14269,22.37792],[114.1427,22.37793],[114.14271,22.37793],[114.14272,22.37793],[114.14274,22.37794],[114.14275,22.37794],[114.14278,22.37796],[114.1428,22.37796],[114.14281,22.37797],[114.1429,22.37786],[114.14348,22.3782],[114.14349,22.37819],[114.1435,22.37818],[114.14352,22.37817],[114.14353,22.37816],[114.14355,22.37816],[114.14356,22.37815],[114.14369,22.37807],[114.14407,22.37787],[114.14413,22.37779],[114.14413,22.37778],[114.14414,22.37777],[114.14414,22.37776],[114.14415,22.37776],[114.14416,22.37775],[114.14416,22.37774],[114.14419,22.37772],[114.14422,22.3777],[114.14423,22.37769],[114.14424,22.37769],[114.14425,22.37768],[114.14426,22.37767],[114.14427,22.37766],[114.14428,22.37765],[114.14429,22.37765],[114.14429,22.37764],[114.1443,22.37764],[114.1443,22.37763],[114.14431,22.37763],[114.14431,22.37762],[114.14432,22.37761],[114.14432,22.3776],[114.14432,22.3776],[114.14432,22.37759],[114.14433,22.37758],[114.14433,22.37758],[114.14433,22.37757],[114.14433,22.37757],[114.14433,22.37756],[114.14433,22.37756],[114.14433,22.37755],[114.14432,22.37754],[114.14432,22.37752],[114.14432,22.37751],[114.14431,22.3775],[114.14431,22.37749],[114.14431,22.37749],[114.1443,22.37748],[114.1443,22.37747],[114.14429,22.37746],[114.14428,22.37745],[114.14428,22.37744],[114.14427,22.37744],[114.14427,22.37744],[114.14426,22.37743],[114.14426,22.37743],[114.14425,22.37743],[114.14423,22.37742],[114.14422,22.37742],[114.14421,22.37742],[114.1442,22.37742],[114.14419,22.37742],[114.14418,22.37742],[114.14418,22.37742],[114.14417,22.37742],[114.14415,22.37742],[114.14414,22.37742],[114.14413,22.37742],[114.14411,22.37742],[114.1441,22.37742],[114.14408,22.37742],[114.14408,22.37742],[114.14407,22.37742],[114.14406,22.37742],[114.14405,22.37742],[114.14405,22.37742],[114.14404,22.37742],[114.14403,22.37742],[114.14403,22.37742],[114.14402,22.37742],[114.14402,22.37742],[114.14401,22.37742],[114.14401,22.37742],[114.144,22.37742],[114.144,22.37742],[114.14399,22.37741],[114.14399,22.37741],[114.14399,22.37741],[114.14398,22.37741],[114.14398,22.3774],[114.14398,22.3774],[114.14397,22.37739],[114.14397,22.37739],[114.14396,22.37738],[114.14396,22.37738],[114.14396,22.37737],[114.14396,22.37737],[114.14396,22.37737],[114.14396,22.37736],[114.14395,22.37736],[114.14395,22.37735],[114.14395,22.37735],[114.14395,22.37734],[114.14395,22.37734],[114.14395,22.37733],[114.14395,22.37733],[114.14395,22.37732],[114.14395,22.37732],[114.14395,22.37732],[114.14396,22.37731],[114.14396,22.3773],[114.14396,22.37729],[114.14396,22.37728],[114.14396,22.37727],[114.14396,22.37727],[114.14395,22.37726],[114.14395,22.37725],[114.14395,22.37724],[114.14395,22.37723],[114.14394,22.37722],[114.14394,22.37722],[114.14393,22.37721],[114.14393,22.3772],[114.14392,22.37719],[114.14392,22.37719],[114.14391,22.37718],[114.1439,22.37718],[114.14389,22.37717],[114.14388,22.37716],[114.14387,22.37716],[114.14386,22.37715],[114.14385,22.37714],[114.14385,22.37713],[114.14384,22.37713],[114.14384,22.37712],[114.14384,22.37712],[114.14383,22.37712],[114.14383,22.37711],[114.14383,22.37711],[114.14383,22.3771],[114.14383,22.3771],[114.14383,22.37709],[114.14383,22.37709],[114.14383,22.37709],[114.14383,22.37708],[114.14383,22.37708],[114.14383,22.37707],[114.14383,22.37707],[114.14389,22.3769],[114.14389,22.3769],[114.14389,22.37689],[114.14389,22.37689],[114.14389,22.37688],[114.14389,22.37688],[114.14388,22.37687],[114.14388,22.37687],[114.14388,22.37687],[114.14388,22.37686],[114.14388,22.37686],[114.14388,22.37685],[114.14387,22.37684],[114.14386,22.37683],[114.14386,22.37683],[114.14386,22.37682],[114.14385,22.37682],[114.14385,22.37681],[114.14383,22.37679],[114.14378,22.37675],[114.14375,22.37673],[114.14371,22.3767],[114.14368,22.37667],[114.14367,22.37666],[114.14366,22.37665],[114.14365,22.37664],[114.14363,22.37662],[114.14362,22.37661],[114.14361,22.3766],[114.1436,22.37659],[114.14359,22.37658],[114.14359,22.37657],[114.14359,22.37657],[114.14358,22.37657],[114.14358,22.37656],[114.14358,22.37656],[114.14357,22.37655],[114.14357,22.37655],[114.14357,22.37655],[114.14357,22.37654],[114.14356,22.37654],[114.14356,22.37654],[114.14356,22.37653],[114.14355,22.37653],[114.14355,22.37652],[114.14355,22.37652],[114.14355,22.37652],[114.14354,22.37651],[114.14354,22.37651],[114.14354,22.3765],[114.14354,22.3765],[114.14354,22.3765],[114.14353,22.37649],[114.14353,22.37649],[114.14353,22.37648],[114.14353,22.37648],[114.14352,22.37648],[114.14352,22.37647],[114.14352,22.37646],[114.14352,22.37646],[114.14352,22.37645],[114.14352,22.37645],[114.14352,22.37645],[114.14352,22.37644],[114.14352,22.37644],[114.14352,22.37644],[114.14352,22.37643],[114.14352,22.37643],[114.14352,22.37642],[114.14352,22.37642],[114.14352,22.37641],[114.14353,22.37641],[114.14353,22.37641],[114.14353,22.3764],[114.14353,22.3764],[114.14354,22.3764],[114.14354,22.37639],[114.14354,22.37639],[114.14355,22.37639],[114.14355,22.37638],[114.14356,22.37638],[114.14356,22.37638],[114.14357,22.37638],[114.14357,22.37638],[114.14358,22.37637],[114.14358,22.37637],[114.14358,22.37637],[114.14359,22.37637],[114.14359,22.37637],[114.1436,22.37636],[114.1436,22.37636],[114.14361,22.37636],[114.14361,22.37636],[114.14362,22.37636],[114.14362,22.37636],[114.14363,22.37636],[114.14363,22.37635],[114.14364,22.37635],[114.14364,22.37635],[114.14365,22.37635],[114.14365,22.37635],[114.14366,22.37635],[114.14394,22.37629],[114.14427,22.37619],[114.14481,22.37599],[114.14501,22.37588],[114.14538,22.37575],[114.14587,22.3753],[114.14593,22.3754],[114.14641,22.37583],[114.14687,22.37609],[114.14737,22.37626],[114.14773,22.37632],[114.1478,22.37634],[114.14788,22.3764],[114.14796,22.3764],[114.14803,22.37641],[114.14814,22.37637],[114.14821,22.37635],[114.14831,22.37634],[114.14839,22.37635],[114.14843,22.37639],[114.14845,22.37641],[114.14844,22.37655],[114.14846,22.37662],[114.14851,22.37666],[114.14863,22.37671],[114.14866,22.37675],[114.14864,22.3768],[114.14861,22.37686],[114.14856,22.37692],[114.14849,22.37697],[114.14847,22.37699],[114.14847,22.37702],[114.14848,22.37705],[114.14851,22.37708],[114.14853,22.37711],[114.14853,22.3772],[114.14852,22.37735],[114.14853,22.37737],[114.14857,22.37739],[114.1486,22.37741],[114.14866,22.37753],[114.14864,22.37764],[114.14865,22.37769],[114.14869,22.37775],[114.14869,22.37782],[114.1491,22.3779],[114.14961,22.37784],[114.14988,22.37791],[114.14988,22.37815],[114.14952,22.37884],[114.14984,22.37927],[114.14969,22.37954],[114.1495,22.37966],[114.14932,22.37968],[114.14924,22.37993],[114.14901,22.38028],[114.149,22.38029],[114.14899,22.38029],[114.14897,22.38031],[114.14896,22.38032],[114.14894,22.38032],[114.14893,22.38033],[114.14892,22.38033],[114.14891,22.38033],[114.1489,22.38034],[114.14888,22.38034],[114.14887,22.38034],[114.14887,22.38035],[114.14885,22.38035],[114.14883,22.38035],[114.14882,22.38035],[114.14881,22.38035],[114.14879,22.38035],[114.14878,22.38035],[114.14877,22.38035],[114.14875,22.38035],[114.14875,22.38037],[114.14874,22.38038],[114.14874,22.38038],[114.14873,22.38039],[114.14873,22.3804],[114.14872,22.3804],[114.14872,22.38041],[114.14872,22.38041],[114.14871,22.38041],[114.14871,22.38042],[114.1487,22.38043],[114.14869,22.38043],[114.14868,22.38044],[114.14868,22.38044],[114.14866,22.38045],[114.14865,22.38046],[114.14864,22.38046],[114.14863,22.38046],[114.1486,22.38048],[114.14858,22.38049],[114.14857,22.3805],[114.14856,22.3805],[114.14856,22.3805],[114.14855,22.38051],[114.14854,22.38051],[114.14854,22.38051],[114.14854,22.38051],[114.14854,22.38052],[114.14853,22.38052],[114.14853,22.38052],[114.14853,22.38053],[114.14852,22.38054],[114.14852,22.38054],[114.14852,22.38055],[114.14851,22.38058],[114.1485,22.38059],[114.14849,22.38061],[114.14849,22.38063],[114.14848,22.38064],[114.14847,22.38066],[114.14847,22.38068],[114.14846,22.38069],[114.14846,22.3807],[114.14845,22.38071],[114.14845,22.38071],[114.14845,22.38071],[114.14844,22.38072],[114.14843,22.38073],[114.14842,22.38073],[114.1484,22.3807],[114.14839,22.38068],[114.1484,22.38067],[114.1484,22.38067],[114.14841,22.38066],[114.14842,22.38065],[114.14842,22.38064],[114.14842,22.38064],[114.14843,22.38062],[114.14843,22.38061],[114.14843,22.3806],[114.14843,22.38059],[114.14842,22.38058],[114.14842,22.38057],[114.14841,22.38055],[114.14841,22.38054],[114.14839,22.38053],[114.14839,22.38053],[114.14838,22.38052],[114.14837,22.38052],[114.14836,22.38051],[114.14836,22.38051],[114.14835,22.38051],[114.14835,22.38051],[114.14834,22.38051],[114.14833,22.38051],[114.14832,22.38051],[114.14832,22.38051],[114.14831,22.38051],[114.1483,22.38051],[114.14829,22.38051],[114.14829,22.38051],[114.14827,22.38052],[114.14827,22.38052],[114.14826,22.38052],[114.14826,22.38052],[114.14825,22.38053],[114.14824,22.38053],[114.14824,22.38054],[114.14823,22.38055],[114.14823,22.38056],[114.14822,22.38056],[114.14822,22.38056],[114.14822,22.38057],[114.14822,22.38057],[114.14822,22.38057],[114.14822,22.38058],[114.14822,22.38059],[114.14822,22.3806],[114.14822,22.3806],[114.14822,22.38061],[114.14822,22.38062],[114.14822,22.38062],[114.14822,22.38063],[114.14822,22.38063],[114.14823,22.38064],[114.14823,22.38065],[114.14824,22.38066],[114.14825,22.38067],[114.14825,22.38067],[114.14825,22.38068],[114.14826,22.38068],[114.14827,22.38069],[114.14827,22.38069],[114.14828,22.38069],[114.14828,22.38069],[114.14828,22.38069],[114.14829,22.3807],[114.1483,22.3807],[114.14831,22.3807],[114.14832,22.3807],[114.14833,22.3807],[114.14835,22.3807],[114.14835,22.3807],[114.14836,22.38069],[114.14836,22.38069],[114.14837,22.38069],[114.14839,22.38071],[114.14841,22.38074],[114.1484,22.38075],[114.1484,22.38075],[114.1484,22.38075],[114.14839,22.38076],[114.14838,22.38076],[114.14837,22.38076],[114.14837,22.38076],[114.14836,22.38077],[114.14835,22.38077],[114.14834,22.38077],[114.14833,22.38077],[114.14832,22.38078],[114.14832,22.38078],[114.1483,22.38078],[114.14828,22.38078],[114.14827,22.38078],[114.14826,22.38078],[114.14825,22.38077],[114.14825,22.38077],[114.14824,22.38077],[114.14823,22.38077],[114.1482,22.38077],[114.14819,22.38077],[114.14819,22.38077],[114.14818,22.38077],[114.14817,22.38077],[114.14817,22.38077],[114.14816,22.38077],[114.14815,22.38077],[114.14815,22.38077],[114.14814,22.38078],[114.14813,22.38078],[114.14813,22.38078],[114.14813,22.38078],[114.14813,22.38079],[114.14812,22.38079],[114.14811,22.3808],[114.1481,22.38081],[114.1481,22.38081],[114.14808,22.38083],[114.14802,22.38087],[114.14801,22.38088],[114.148,22.38089],[114.14799,22.3809],[114.14799,22.3809],[114.14799,22.3809],[114.14798,22.3809],[114.14797,22.38091],[114.14796,22.38092],[114.14795,22.38092],[114.14793,22.38094],[114.14791,22.38095],[114.1479,22.38096],[114.1479,22.38096],[114.14789,22.38096],[114.14788,22.38097],[114.14788,22.38097],[114.14787,22.38098],[114.14786,22.38099],[114.14785,22.38099],[114.14784,22.381],[114.14784,22.381],[114.14783,22.38101],[114.14783,22.38101],[114.14782,22.38101],[114.14782,22.38101],[114.14781,22.38102],[114.14781,22.38102],[114.1478,22.38102],[114.1478,22.38103],[114.14779,22.38103],[114.14778,22.38104],[114.14777,22.38104],[114.14775,22.38104],[114.14774,22.38104],[114.14774,22.38104],[114.14773,22.38104],[114.14773,22.38104],[114.14772,22.38103],[114.14772,22.38103],[114.14771,22.38103],[114.1477,22.38102],[114.1477,22.38102],[114.14769,22.38102],[114.14768,22.38101],[114.14768,22.38101],[114.14765,22.38099],[114.14764,22.38099],[114.14763,22.38099],[114.14763,22.38099],[114.14762,22.38099],[114.1476,22.38099],[114.14759,22.381],[114.14757,22.38101],[114.14757,22.38101],[114.14756,22.38101],[114.14755,22.38102],[114.14754,22.38102],[114.14753,22.38102],[114.14751,22.38102],[114.1475,22.38102],[114.14749,22.38102],[114.14748,22.38102],[114.14747,22.38101],[114.14746,22.38101],[114.14744,22.38101],[114.14744,22.38101],[114.14744,22.38101],[114.14743,22.38101],[114.14742,22.38101],[114.1474,22.38101],[114.14739,22.38101],[114.14737,22.38102],[114.14735,22.38102],[114.14734,22.38102],[114.14731,22.38104],[114.1473,22.38104],[114.14729,22.38105],[114.14727,22.38105],[114.14725,22.38106],[114.14724,22.38107],[114.14721,22.38107],[114.14721,22.38107],[114.1472,22.38107],[114.14718,22.38107],[114.14717,22.38107],[114.14716,22.38107],[114.14716,22.38107],[114.14714,22.38108],[114.14713,22.38108],[114.14712,22.38109],[114.14711,22.38109],[114.1471,22.3811],[114.1471,22.38111],[114.14709,22.38112],[114.14708,22.38113],[114.14707,22.38119],[114.14706,22.38119],[114.14706,22.3812],[114.14706,22.38121],[114.14706,22.38122],[114.14706,22.38123],[114.14707,22.38124],[114.14707,22.38126],[114.14708,22.38127],[114.14708,22.38128],[114.14709,22.38129],[114.1471,22.3813],[114.1471,22.3813],[114.1471,22.38131],[114.14711,22.38131],[114.14711,22.38132],[114.14712,22.38133],[114.14714,22.38134],[114.14714,22.38134],[114.14715,22.38134],[114.14715,22.38135],[114.14719,22.38136],[114.14721,22.38136],[114.14722,22.38136],[114.14723,22.38137],[114.14723,22.38137],[114.14726,22.38137],[114.14728,22.38138],[114.14731,22.38138],[114.14733,22.38139],[114.14734,22.38139],[114.14738,22.38141],[114.14739,22.38142],[114.14741,22.38143],[114.14742,22.38144],[114.14742,22.38144],[114.14744,22.38145],[114.14744,22.38146],[114.14745,22.38147],[114.14747,22.38148],[114.14749,22.38149],[114.14751,22.38151],[114.14752,22.38152],[114.14754,22.38153],[114.14756,22.38154],[114.14758,22.38155],[114.1476,22.38155],[114.14762,22.38156],[114.14764,22.38156],[114.14765,22.38157],[114.14766,22.38157],[114.14768,22.38157],[114.14769,22.38158],[114.1477,22.38158],[114.1477,22.38158],[114.14773,22.3816],[114.14773,22.3816],[114.14774,22.38161],[114.14775,22.38162],[114.14776,22.38165],[114.14777,22.38166],[114.14777,22.38166],[114.14777,22.38167],[114.14777,22.38168],[114.14777,22.38168],[114.14776,22.38173],[114.14775,22.38174],[114.14775,22.38175],[114.14775,22.38176],[114.14774,22.38178],[114.14773,22.38181],[114.14773,22.38182],[114.1477,22.38189],[114.1477,22.38191],[114.1477,22.38192],[114.14769,22.38193],[114.1477,22.38193],[114.1477,22.38194],[114.1477,22.38196],[114.1477,22.38196],[114.1477,22.38197],[114.14771,22.38198],[114.14772,22.38199],[114.14778,22.38205],[114.14779,22.38206],[114.1478,22.38207],[114.14781,22.38208],[114.14781,22.38209],[114.14781,22.3821],[114.14781,22.3821],[114.14781,22.3821],[114.14781,22.3821],[114.14781,22.38211],[114.14781,22.38212],[114.1478,22.38213],[114.14778,22.38216],[114.14778,22.38217],[114.14778,22.38218],[114.14778,22.38218],[114.14778,22.38218],[114.14778,22.38219],[114.14777,22.3822],[114.14777,22.38221],[114.14777,22.38221],[114.14777,22.38228],[114.14778,22.38232],[114.14778,22.38233],[114.14779,22.38236],[114.14779,22.38238],[114.14779,22.3824],[114.14778,22.38241],[114.14776,22.38244],[114.14775,22.38244],[114.14775,22.38245],[114.14774,22.38245],[114.14773,22.38245],[114.14748,22.38251],[114.14742,22.38254],[114.14739,22.38256],[114.14737,22.38258],[114.14736,22.38262],[114.14736,22.38273],[114.14736,22.38274],[114.14739,22.38286],[114.14741,22.3829],[114.14745,22.38294],[114.14746,22.38295],[114.14749,22.38296],[114.14751,22.38296],[114.14768,22.38293],[114.14769,22.38293],[114.14777,22.38291],[114.14778,22.38291],[114.1478,22.38291],[114.14785,22.3829],[114.14789,22.3829],[114.14792,22.3829],[114.14795,22.3829],[114.14809,22.38294],[114.14815,22.38297],[114.14817,22.38297],[114.1482,22.38298],[114.14822,22.38298],[114.14825,22.38299],[114.14832,22.38299],[114.14834,22.38299],[114.14835,22.38299],[114.14838,22.38298],[114.14843,22.38297],[114.14852,22.38294],[114.14861,22.38289],[114.14867,22.38284],[114.14869,22.38283],[114.14871,22.38282],[114.14872,22.38282],[114.14872,22.38283],[114.14872,22.38283],[114.14873,22.38284],[114.14873,22.38285],[114.14872,22.38285],[114.14872,22.38287],[114.14872,22.38287],[114.14872,22.38288],[114.1487,22.3829],[114.14869,22.38295],[114.14869,22.38298],[114.14869,22.38306],[114.1487,22.38311],[114.14871,22.38313],[114.14874,22.38315],[114.14874,22.38316],[114.14879,22.38319],[114.14882,22.38321],[114.14883,22.38322],[114.14884,22.38323],[114.14884,22.38325],[114.14884,22.38327],[114.14883,22.38333],[114.14883,22.38336],[114.14884,22.38338],[114.14886,22.38341],[114.14887,22.38343],[114.14892,22.3835],[114.14893,22.38352],[114.14894,22.38355],[114.14894,22.38356],[114.14894,22.38356],[114.14892,22.38357],[114.14888,22.38357],[114.14888,22.38357],[114.14887,22.38357],[114.14885,22.38356],[114.14882,22.38355],[114.14879,22.38354],[114.14877,22.38353],[114.14873,22.38352],[114.14871,22.38351],[114.14868,22.38351],[114.14866,22.38351],[114.14863,22.38351],[114.1486,22.38352],[114.14855,22.38353],[114.14851,22.38354],[114.14848,22.38356],[114.14845,22.38359],[114.14844,22.38359],[114.14843,22.3836],[114.14843,22.38361],[114.14843,22.38363],[114.14843,22.38367],[114.14842,22.38373],[114.14842,22.38377],[114.14843,22.38379],[114.14843,22.38381],[114.14843,22.38384],[114.14843,22.38386],[114.14844,22.38389],[114.14848,22.38398],[114.14849,22.38401],[114.14849,22.38401],[114.14849,22.38402],[114.14849,22.38403],[114.14849,22.38403],[114.14848,22.38404],[114.14842,22.38406],[114.14839,22.38408],[114.14838,22.38408],[114.14833,22.3841],[114.1483,22.38412],[114.14827,22.38414],[114.14823,22.38417],[114.14818,22.38421],[114.14811,22.38431],[114.14802,22.38441],[114.14801,22.38444],[114.14801,22.38445],[114.14801,22.38446],[114.14801,22.38447],[114.14801,22.38448],[114.14803,22.38452],[114.14807,22.38456],[114.14812,22.38459],[114.14819,22.38462],[114.1482,22.38463],[114.14821,22.38464],[114.14826,22.38469],[114.14828,22.38471],[114.14828,22.38471],[114.14832,22.38474],[114.14834,22.38474],[114.14836,22.38475],[114.1484,22.38475],[114.14852,22.38474],[114.1486,22.38473],[114.14864,22.38473],[114.14868,22.38474],[114.14871,22.38475],[114.14871,22.38475],[114.14872,22.38475],[114.14882,22.3848],[114.14885,22.38481],[114.14886,22.38482],[114.14889,22.38484],[114.1489,22.38485],[114.14891,22.38486],[114.14891,22.38487],[114.14891,22.38488],[114.14891,22.38489],[114.14891,22.38491],[114.14882,22.38508],[114.14882,22.38508],[114.14881,22.38509],[114.1488,22.38512],[114.1488,22.38513],[114.14879,22.38514],[114.14879,22.38517],[114.14879,22.3852],[114.14877,22.38525],[114.14877,22.3853],[114.14877,22.38532],[114.14877,22.38533],[114.14879,22.38538],[114.14879,22.38538],[114.14884,22.38545],[114.14886,22.38547],[114.14887,22.38547],[114.1489,22.38548],[114.14893,22.38549],[114.14895,22.3855],[114.14897,22.3855],[114.149,22.3855],[114.14901,22.38549],[114.14903,22.38548],[114.14905,22.38547],[114.14909,22.38544],[114.14914,22.38537],[114.14917,22.38532],[114.14919,22.38529],[114.14921,22.38527],[114.14924,22.38525],[114.14926,22.38524],[114.14933,22.38522],[114.1494,22.38523],[114.14942,22.38524],[114.14946,22.38527],[114.1495,22.38532],[114.14951,22.38534],[114.14952,22.38535],[114.14956,22.38542],[114.14957,22.38542],[114.14959,22.38543],[114.1496,22.38544],[114.14961,22.38543],[114.14963,22.38542],[114.14965,22.3854],[114.14966,22.38538],[114.14969,22.38534],[114.1497,22.38532],[114.14972,22.38527],[114.14975,22.38523],[114.14975,22.38523],[114.14975,22.38523],[114.14976,22.38522],[114.14978,22.38522],[114.14979,22.38522],[114.14981,22.38522],[114.14983,22.38522],[114.14985,22.38522],[114.14986,22.38522],[114.14991,22.38524],[114.14993,22.38524],[114.14997,22.38521],[114.15002,22.38518],[114.15003,22.38517],[114.15004,22.38517],[114.15004,22.38516],[114.15005,22.38515],[114.15007,22.3851],[114.15007,22.38508],[114.15007,22.38506],[114.15008,22.38499],[114.15009,22.38496],[114.1501,22.38495],[114.15011,22.38494],[114.15011,22.38494],[114.15012,22.38494],[114.15014,22.38494],[114.15016,22.38495],[114.1502,22.38496],[114.15023,22.38497],[114.15026,22.38499],[114.15028,22.38499],[114.15029,22.38499],[114.1503,22.38499],[114.15031,22.38499],[114.15033,22.38498],[114.15035,22.38496],[114.15037,22.38493],[114.1504,22.3849],[114.1504,22.38487],[114.1504,22.38486],[114.15042,22.38483],[114.15044,22.38483],[114.15049,22.38487],[114.15053,22.3849],[114.15062,22.38496],[114.15066,22.38498],[114.15068,22.38498],[114.15068,22.38499],[114.15067,22.38499],[114.1506,22.38503],[114.1506,22.38504],[114.15057,22.38508],[114.15053,22.38511],[114.1505,22.38514],[114.15047,22.38517],[114.15045,22.38519],[114.15042,22.38522],[114.15038,22.38525],[114.15037,22.38526],[114.15036,22.38527],[114.15035,22.3853],[114.15034,22.38532],[114.15033,22.38537],[114.15032,22.3854],[114.15031,22.38543],[114.15031,22.38546],[114.1503,22.38549],[114.1503,22.38551],[114.1503,22.38552],[114.15029,22.38554],[114.15023,22.38558],[114.15022,22.38559],[114.15021,22.38561],[114.15019,22.38567],[114.15017,22.38569],[114.15017,22.3857],[114.15015,22.38572],[114.15011,22.38576],[114.15009,22.38578],[114.15005,22.38592],[114.15005,22.38594],[114.15006,22.38594],[114.15006,22.38595],[114.15014,22.38599],[114.15018,22.38604],[114.1502,22.38607],[114.15021,22.38609],[114.15023,22.38612],[114.15024,22.38614],[114.15024,22.38621],[114.15024,22.38621],[114.15024,22.38623],[114.15026,22.38624],[114.15029,22.38626],[114.15032,22.38626],[114.15034,22.38626],[114.15038,22.38625],[114.15041,22.38625],[114.15043,22.38624],[114.15046,22.38624],[114.15049,22.38623],[114.15051,22.38623],[114.15052,22.38623],[114.15054,22.38624],[114.15055,22.38624],[114.15057,22.38625],[114.15058,22.38627],[114.15059,22.38629],[114.15061,22.38634],[114.15061,22.38634],[114.15062,22.38635],[114.15068,22.38641],[114.15071,22.38645],[114.15073,22.38645],[114.15079,22.38644],[114.1508,22.38644],[114.15082,22.38644],[114.15084,22.38645],[114.1509,22.38648],[114.15093,22.3865],[114.15094,22.38651],[114.15095,22.38652],[114.151,22.38656],[114.15106,22.3866],[114.15107,22.3866],[114.15109,22.38661],[114.15111,22.3866],[114.15114,22.38656],[114.15115,22.38655],[114.1512,22.38651],[114.15128,22.38646],[114.15129,22.38647],[114.1513,22.38646],[114.15135,22.38645],[114.15133,22.38647],[114.15133,22.38648],[114.15132,22.38649],[114.15131,22.38649],[114.15131,22.3865],[114.15131,22.38651],[114.15131,22.38652],[114.1513,22.38656],[114.1513,22.38657],[114.1513,22.38659],[114.15131,22.38662],[114.15131,22.38663],[114.15132,22.38667],[114.15132,22.38668],[114.15134,22.3867],[114.15135,22.3867],[114.15137,22.38671],[114.15142,22.38672],[114.15147,22.38673],[114.15149,22.38674],[114.15149,22.38674],[114.1515,22.38674],[114.1515,22.38675],[114.15149,22.38679],[114.15147,22.38684],[114.15145,22.38686],[114.15143,22.38689],[114.15141,22.38691],[114.15137,22.38695],[114.15133,22.38701],[114.15132,22.38703],[114.15132,22.38705],[114.15132,22.38706],[114.15133,22.38708],[114.15135,22.38712],[114.15142,22.38719],[114.15143,22.38719],[114.15144,22.3872],[114.15148,22.38722],[114.1515,22.38723],[114.15156,22.38725],[114.15163,22.38728],[114.15179,22.38735],[114.15182,22.38736],[114.15184,22.38737],[114.15189,22.38738],[114.15196,22.3874],[114.15198,22.38742],[114.15202,22.38744],[114.15206,22.38746],[114.15206,22.38746],[114.15206,22.38746],[114.15207,22.38747],[114.15207,22.38747],[114.15207,22.38748],[114.15207,22.38748],[114.15205,22.38749],[114.15204,22.38749],[114.15204,22.3875],[114.15198,22.3875],[114.15198,22.3875],[114.15197,22.3875],[114.15192,22.38753],[114.15191,22.38753],[114.15189,22.38754],[114.15188,22.38754],[114.15184,22.38754],[114.15179,22.38756],[114.1517,22.3876],[114.15167,22.38762],[114.15166,22.38765],[114.15166,22.38766],[114.15166,22.3877],[114.15166,22.38774],[114.15166,22.38777],[114.15167,22.3878],[114.15168,22.38781],[114.15168,22.38782],[114.15168,22.38783],[114.15166,22.38785],[114.15165,22.38786],[114.15164,22.38786],[114.15157,22.38789],[114.15155,22.3879],[114.15154,22.38791],[114.15154,22.38791],[114.15149,22.38793],[114.15147,22.38795],[114.15146,22.38795],[114.15145,22.38796],[114.15144,22.38796],[114.15144,22.38797],[114.15144,22.38797],[114.15146,22.38799],[114.15146,22.38799],[114.15145,22.38801],[114.15143,22.38803],[114.1514,22.38809],[114.1514,22.3881],[114.1514,22.38811],[114.1514,22.38812],[114.1514,22.38812],[114.15141,22.38813],[114.15142,22.38813],[114.15142,22.38813],[114.1515,22.38812],[114.1515,22.38812],[114.1515,22.38812],[114.15154,22.38812],[114.15159,22.38811],[114.15162,22.3881],[114.15163,22.38809],[114.15165,22.38808],[114.15168,22.38807],[114.15171,22.38805],[114.15172,22.38805],[114.15172,22.38805],[114.15174,22.38805],[114.15177,22.38807],[114.15179,22.38808],[114.15182,22.38807],[114.15183,22.38807],[114.15184,22.38807],[114.15187,22.38805],[114.15188,22.38805],[114.15191,22.38802],[114.15196,22.38798],[114.15197,22.38796],[114.152,22.38795],[114.15204,22.38795],[114.15206,22.38794],[114.15206,22.38794],[114.15209,22.38791],[114.15213,22.38787],[114.15216,22.38783],[114.15218,22.38782],[114.1522,22.3878],[114.15223,22.38779],[114.15224,22.38778],[114.15224,22.38778],[114.15227,22.38778],[114.15228,22.38778],[114.15229,22.38778],[114.1523,22.38779],[114.15231,22.38779],[114.15233,22.38782],[114.15233,22.38784],[114.15234,22.38786],[114.15235,22.38786],[114.15236,22.38788],[114.15237,22.38789],[114.15238,22.3879],[114.15242,22.38792],[114.15246,22.38793],[114.15248,22.38794],[114.15248,22.38795],[114.15249,22.38795],[114.1525,22.38795],[114.15251,22.38796],[114.15252,22.38796],[114.15253,22.38797],[114.15253,22.38798],[114.15255,22.38798],[114.15256,22.38799],[114.15257,22.388],[114.15258,22.38801],[114.1526,22.38801],[114.15261,22.38802],[114.15263,22.38802],[114.15263,22.38803],[114.15264,22.38803],[114.15264,22.38803],[114.15265,22.38804],[114.15267,22.38805],[114.15268,22.38806],[114.1527,22.38807],[114.15271,22.38807],[114.15272,22.38808],[114.15273,22.38809],[114.15274,22.38809],[114.15274,22.3881],[114.15275,22.3881],[114.15276,22.38811],[114.15276,22.38811],[114.15277,22.38811],[114.15277,22.38811],[114.15278,22.38811],[114.15278,22.38812],[114.15279,22.38813],[114.15279,22.38813],[114.15279,22.38813],[114.15279,22.38813],[114.1528,22.38814],[114.15282,22.38813],[114.15283,22.38813],[114.15284,22.38813],[114.15284,22.38813],[114.15284,22.38813],[114.15286,22.38814],[114.15287,22.38814],[114.15287,22.38814],[114.15289,22.38814],[114.1529,22.38815],[114.15292,22.38816],[114.15293,22.38817],[114.15295,22.38818],[114.15297,22.38819],[114.15298,22.3882],[114.15299,22.38821],[114.153,22.38821],[114.15301,22.38822],[114.15301,22.38822],[114.15302,22.38822],[114.15303,22.38822],[114.15303,22.38822],[114.15304,22.38822],[114.15305,22.38822],[114.15305,22.38822],[114.15306,22.38822],[114.15306,22.38822],[114.15306,22.38822],[114.15307,22.38821],[114.15307,22.38821],[114.15308,22.38821],[114.15308,22.38821],[114.15308,22.38821],[114.15309,22.38822],[114.15308,22.38824],[114.15307,22.38825],[114.15307,22.38825],[114.15307,22.38826],[114.15307,22.38826],[114.15307,22.38826],[114.15307,22.38827],[114.15307,22.38827],[114.15307,22.38829],[114.15307,22.3883],[114.15307,22.38831],[114.15307,22.38831],[114.15308,22.38832],[114.15309,22.38833],[114.15309,22.38833],[114.15309,22.38833],[114.1531,22.38834],[114.1531,22.38834],[114.15311,22.38834],[114.15312,22.38834],[114.15312,22.38834],[114.15313,22.38834],[114.15314,22.38835],[114.15314,22.38835],[114.15314,22.38835],[114.15314,22.38835],[114.15314,22.38836],[114.15315,22.38836],[114.15315,22.38837],[114.15314,22.38838],[114.15314,22.38839],[114.15314,22.38839],[114.15314,22.3884],[114.15313,22.38841],[114.15313,22.38842],[114.15313,22.38842],[114.15312,22.38844],[114.15312,22.38844],[114.15312,22.38845],[114.15312,22.38846],[114.15312,22.38846],[114.15313,22.38846],[114.15313,22.38847],[114.15313,22.38847],[114.15313,22.38847],[114.15313,22.38848],[114.15314,22.38848],[114.15315,22.3885],[114.15324,22.38856],[114.15326,22.38858],[114.15328,22.3886],[114.1533,22.38862],[114.15331,22.38862],[114.15332,22.38865],[114.15333,22.38866],[114.15333,22.38866],[114.15334,22.38867],[114.15334,22.38867],[114.15334,22.38868],[114.15335,22.38869],[114.15336,22.38869],[114.15336,22.3887],[114.15337,22.38871],[114.15338,22.38871],[114.15338,22.38872],[114.15339,22.38873],[114.15339,22.38874],[114.1534,22.38874],[114.1534,22.38874],[114.1534,22.38875],[114.15341,22.38875],[114.15342,22.38876],[114.15343,22.38877],[114.15343,22.38878],[114.15345,22.38878],[114.15345,22.38879],[114.15346,22.38879],[114.15347,22.3888],[114.15347,22.38881],[114.15347,22.38881],[114.15348,22.38882],[114.15348,22.38882],[114.15348,22.38882],[114.15348,22.38883],[114.15349,22.38884],[114.15349,22.38884],[114.15349,22.38885],[114.15349,22.38886],[114.15349,22.38887],[114.15349,22.38888],[114.15348,22.38891],[114.15348,22.38893],[114.15348,22.38895],[114.15347,22.38896],[114.15347,22.38897],[114.15347,22.38899],[114.15347,22.38899],[114.15346,22.38903],[114.15346,22.38904],[114.15346,22.38904],[114.15345,22.38905],[114.15345,22.38905],[114.15344,22.38905],[114.15344,22.38906],[114.15344,22.38906],[114.15343,22.38905],[114.15342,22.38905],[114.15342,22.38903],[114.15342,22.38903],[114.15341,22.38903],[114.15341,22.38902],[114.1534,22.38902],[114.1534,22.38902],[114.15339,22.38902],[114.15339,22.38902],[114.15339,22.38902],[114.15338,22.38903],[114.15338,22.38903],[114.15337,22.38904],[114.15337,22.38904],[114.15337,22.38904],[114.15337,22.38905],[114.15338,22.38906],[114.15338,22.38907],[114.15339,22.38908],[114.1534,22.38911],[114.15342,22.38914],[114.15344,22.38917],[114.15352,22.3893],[114.15351,22.3893],[114.15351,22.3893],[114.1535,22.3893],[114.15348,22.3893],[114.15348,22.3893],[114.15347,22.38929],[114.15346,22.38929],[114.15345,22.38929],[114.15345,22.38928],[114.15344,22.38928],[114.15341,22.38926],[114.1534,22.38926],[114.15339,22.38926],[114.15337,22.38924],[114.15336,22.38923],[114.15335,22.38922],[114.15333,22.3892],[114.15333,22.38919],[114.15333,22.38919],[114.15332,22.38916],[114.15331,22.38915],[114.15331,22.38915],[114.15331,22.38912],[114.1533,22.3891],[114.1533,22.38909],[114.1533,22.38906],[114.1533,22.38905],[114.1533,22.38904],[114.1533,22.38903],[114.1533,22.38902],[114.15329,22.38901],[114.15328,22.38899],[114.15327,22.38899],[114.15327,22.38898],[114.15326,22.38897],[114.15325,22.38897],[114.15325,22.38897],[114.15322,22.38895],[114.15321,22.38894],[114.15319,22.38893],[114.15318,22.38893],[114.15318,22.38892],[114.15315,22.38891],[114.15315,22.38891],[114.15314,22.3889],[114.15314,22.3889],[114.15312,22.38889],[114.15311,22.38889],[114.15311,22.38888],[114.1531,22.38888],[114.1531,22.38888],[114.1531,22.38888],[114.15309,22.38888],[114.15307,22.38887],[114.15307,22.38887],[114.15306,22.38886],[114.15306,22.38886],[114.15305,22.38886],[114.15305,22.38887],[114.15304,22.38887],[114.15304,22.38887],[114.15304,22.38887],[114.15303,22.38888],[114.15303,22.38888],[114.15303,22.38889],[114.15303,22.38889],[114.15303,22.38891],[114.15303,22.38891],[114.15303,22.38892],[114.15303,22.38892],[114.15302,22.38894],[114.15302,22.38895],[114.15301,22.38895],[114.15301,22.38895],[114.15301,22.38897],[114.153,22.38899],[114.153,22.389],[114.15299,22.38901],[114.15299,22.38901],[114.15299,22.38902],[114.15298,22.38903],[114.15297,22.38907],[114.15297,22.38907],[114.15296,22.3891],[114.15296,22.3891],[114.15296,22.3891],[114.15295,22.38911],[114.15295,22.38912],[114.15295,22.38912],[114.15294,22.38913],[114.15294,22.38913],[114.15294,22.38913],[114.15294,22.38913],[114.15293,22.38914],[114.15293,22.38914],[114.15292,22.38915],[114.15291,22.38916],[114.15291,22.38916],[114.1529,22.38916],[114.1529,22.38916],[114.15289,22.38916],[114.15288,22.38916],[114.15286,22.38916],[114.15285,22.38916],[114.15285,22.38916],[114.15285,22.38915],[114.15284,22.38915],[114.15284,22.38915],[114.15283,22.38914],[114.15283,22.38914],[114.15283,22.38913],[114.15284,22.38912],[114.15284,22.38911],[114.15284,22.38911],[114.15285,22.3891],[114.15285,22.3891],[114.15285,22.38909],[114.15286,22.38909],[114.15286,22.38909],[114.15287,22.38907],[114.15287,22.38906],[114.15288,22.38905],[114.15288,22.38905],[114.15289,22.38903],[114.15289,22.38902],[114.15289,22.38901],[114.15289,22.389],[114.15289,22.389],[114.15289,22.38899],[114.1529,22.38898],[114.1529,22.38897],[114.1529,22.38897],[114.1529,22.38896],[114.15289,22.38896],[114.15289,22.38894],[114.15289,22.38894],[114.15289,22.38893],[114.15288,22.38891],[114.15288,22.38891],[114.15288,22.3889],[114.15287,22.38888],[114.15286,22.38887],[114.15286,22.38887],[114.15286,22.38886],[114.15285,22.38884],[114.15284,22.38881],[114.15282,22.38878],[114.15282,22.38876],[114.15281,22.38874],[114.15279,22.38871],[114.15278,22.38869],[114.15278,22.38868],[114.15277,22.38866],[114.15277,22.38866],[114.15277,22.38866],[114.15277,22.38865],[114.15277,22.38865],[114.15276,22.38865],[114.15275,22.38862],[114.15274,22.38861],[114.15274,22.3886],[114.15273,22.38859],[114.15273,22.38859],[114.15273,22.38859],[114.15271,22.38858],[114.15271,22.38858],[114.15269,22.38857],[114.15269,22.38857],[114.15268,22.38857],[114.15268,22.38857],[114.15265,22.38856],[114.15264,22.38856],[114.15262,22.38855],[114.15258,22.38854],[114.15257,22.38854],[114.15254,22.38854],[114.1525,22.38853],[114.1525,22.38853],[114.15249,22.38853],[114.15249,22.38852],[114.15248,22.38852],[114.15248,22.38852],[114.15247,22.38852],[114.15245,22.38851],[114.15243,22.38851],[114.15242,22.38851],[114.1524,22.3885],[114.15238,22.38849],[114.15237,22.38848],[114.15233,22.38844],[114.15231,22.38843],[114.1523,22.38842],[114.15229,22.38842],[114.15227,22.38842],[114.15224,22.38841],[114.15221,22.38841],[114.15219,22.38841],[114.15217,22.38842],[114.15214,22.38843],[114.15211,22.38845],[114.1521,22.38845],[114.15209,22.38846],[114.15207,22.38846],[114.15207,22.38846],[114.15201,22.38845],[114.152,22.38845],[114.152,22.38845],[114.15197,22.38845],[114.15196,22.38847],[114.1519,22.38851],[114.15188,22.38854],[114.15186,22.38856],[114.15185,22.38856],[114.15184,22.38857],[114.15184,22.38857],[114.15184,22.38857],[114.15181,22.38855],[114.1518,22.38855],[114.15179,22.38855],[114.15162,22.38856],[114.15158,22.38857],[114.15157,22.38857],[114.15156,22.38858],[114.15154,22.3886],[114.15151,22.38867],[114.1515,22.38869],[114.1515,22.38869],[114.15149,22.38869],[114.15148,22.3887],[114.15148,22.38869],[114.15147,22.38869],[114.15146,22.38869],[114.15144,22.38867],[114.15143,22.38867],[114.15141,22.38867],[114.1514,22.38867],[114.1514,22.38867],[114.15134,22.38868],[114.15132,22.38868],[114.15129,22.38868],[114.15129,22.38868],[114.15124,22.38866],[114.15122,22.38866],[114.1512,22.38866],[114.15119,22.38866],[114.15117,22.38867],[114.15114,22.38869],[114.15112,22.3887],[114.1511,22.38872],[114.15105,22.38876],[114.15104,22.38878],[114.15102,22.38878],[114.15101,22.38879],[114.151,22.38879],[114.15097,22.38879],[114.15094,22.38878],[114.15091,22.38877],[114.15089,22.38876],[114.15087,22.38876],[114.15081,22.38877],[114.1508,22.38877],[114.1508,22.38877],[114.15079,22.38876],[114.15076,22.38875],[114.15074,22.38874],[114.15071,22.38873],[114.15067,22.38873],[114.15067,22.38873],[114.15058,22.38876],[114.15055,22.38876],[114.15055,22.38875],[114.15054,22.38875],[114.1505,22.38872],[114.15049,22.3887],[114.15049,22.38868],[114.15048,22.3886],[114.15048,22.38859],[114.15048,22.38858],[114.15047,22.38857],[114.15044,22.38854],[114.15038,22.38849],[114.15037,22.38848],[114.15037,22.38847],[114.15037,22.38847],[114.15037,22.38846],[114.15037,22.38845],[114.15038,22.38844],[114.1504,22.38842],[114.15044,22.38838],[114.15045,22.38836],[114.15046,22.38834],[114.15047,22.38833],[114.15047,22.38832],[114.15047,22.3883],[114.15047,22.38828],[114.15047,22.38828],[114.15047,22.38827],[114.15047,22.38826],[114.15045,22.38823],[114.15045,22.38822],[114.15045,22.38821],[114.15046,22.38819],[114.15047,22.38816],[114.15048,22.38814],[114.1505,22.38811],[114.1505,22.38809],[114.15051,22.38806],[114.15051,22.38801],[114.15051,22.38797],[114.15051,22.38797],[114.1505,22.38794],[114.15045,22.38786],[114.15042,22.38783],[114.15041,22.38781],[114.1504,22.3878],[114.15038,22.38774],[114.15037,22.38773],[114.15032,22.3877],[114.15028,22.38765],[114.15027,22.38764],[114.15026,22.38764],[114.15025,22.38763],[114.15023,22.38763],[114.15023,22.38764],[114.15023,22.38764],[114.15019,22.38768],[114.15018,22.38769],[114.15017,22.38769],[114.15017,22.3877],[114.15017,22.38771],[114.15018,22.38774],[114.1502,22.38778],[114.15022,22.38781],[114.15023,22.38783],[114.15025,22.38785],[114.15026,22.38788],[114.15026,22.38789],[114.15026,22.38791],[114.15025,22.38793],[114.15022,22.38799],[114.1502,22.38802],[114.15019,22.38805],[114.15016,22.38809],[114.15014,22.38811],[114.15011,22.38813],[114.15005,22.38813],[114.15004,22.38813],[114.15002,22.38812],[114.14999,22.38809],[114.14996,22.38805],[114.14995,22.38805],[114.14994,22.38804],[114.14993,22.38803],[114.14992,22.38803],[114.14988,22.38802],[114.14988,22.38802],[114.14982,22.38801],[114.14981,22.38801],[114.1498,22.38801],[114.14972,22.38801],[114.14971,22.38802],[114.1497,22.38802],[114.14968,22.38801],[114.14958,22.38799],[114.14957,22.38799],[114.14952,22.38797],[114.14952,22.38796],[114.14951,22.38796],[114.1495,22.38795],[114.1495,22.38794],[114.1495,22.38794],[114.14949,22.38793],[114.14949,22.3879],[114.1495,22.38788],[114.1495,22.38787],[114.14953,22.38784],[114.14953,22.3878],[114.14953,22.38777],[114.14954,22.38774],[114.14955,22.38773],[114.14957,22.38771],[114.14959,22.38771],[114.14962,22.3877],[114.14963,22.38769],[114.14965,22.38767],[114.14966,22.38765],[114.14967,22.38763],[114.14967,22.38763],[114.14967,22.38762],[114.14967,22.38761],[114.14964,22.38755],[114.14964,22.38755],[114.14963,22.38753],[114.14965,22.38748],[114.14968,22.38743],[114.1497,22.38738],[114.1497,22.38738],[114.1497,22.38737],[114.14969,22.38735],[114.14969,22.38735],[114.14967,22.38733],[114.14963,22.3873],[114.14961,22.38728],[114.14961,22.38728],[114.14959,22.38727],[114.14958,22.38727],[114.14955,22.38727],[114.14952,22.38728],[114.1495,22.38728],[114.1495,22.38729],[114.14948,22.3873],[114.14946,22.38731],[114.14945,22.38731],[114.14944,22.38731],[114.14941,22.38732],[114.14939,22.38733],[114.14938,22.38734],[114.14938,22.38735],[114.14935,22.38736],[114.14933,22.38736],[114.14932,22.38737],[114.1493,22.38736],[114.14928,22.38735],[114.14921,22.38731],[114.1492,22.3873],[114.14916,22.38729],[114.14912,22.38727],[114.14912,22.38727],[114.14911,22.38727],[114.14906,22.38726],[114.14906,22.38726],[114.14905,22.38725],[114.14903,22.38723],[114.14903,22.38722],[114.14902,22.38719],[114.14902,22.38719],[114.14902,22.38718],[114.149,22.38716],[114.14898,22.38715],[114.14895,22.38714],[114.14893,22.38713],[114.1489,22.38712],[114.14888,22.3871],[114.14886,22.38708],[114.14884,22.38706],[114.14883,22.38705],[114.14879,22.38698],[114.14878,22.38695],[114.14878,22.38695],[114.14878,22.38694],[114.14878,22.38694],[114.14877,22.38693],[114.14876,22.38693],[114.14875,22.38695],[114.14875,22.38696],[114.14874,22.38699],[114.14874,22.38703],[114.14875,22.38705],[114.14872,22.38709],[114.14868,22.38714],[114.14866,22.38715],[114.14866,22.38716],[114.14864,22.38717],[114.14863,22.38717],[114.14862,22.38718],[114.14862,22.38718],[114.14861,22.38718],[114.14861,22.3872],[114.14862,22.38724],[114.14864,22.38729],[114.14864,22.3873],[114.14864,22.3873],[114.14864,22.38732],[114.14864,22.38733],[114.14862,22.38735],[114.14857,22.38744],[114.14856,22.38746],[114.14855,22.38749],[114.14854,22.38752],[114.14855,22.38755],[114.14856,22.38759],[114.14857,22.38761],[114.14858,22.38763],[114.14859,22.38766],[114.14861,22.38768],[114.14861,22.38768],[114.14863,22.38768],[114.1487,22.38765],[114.14877,22.38764],[114.1488,22.38764],[114.14884,22.38764],[114.14888,22.38766],[114.1489,22.38767],[114.14892,22.38768],[114.14893,22.38769],[114.14893,22.3877],[114.14894,22.38771],[114.14895,22.38772],[114.14895,22.38773],[114.14896,22.38774],[114.14896,22.38777],[114.14897,22.38779],[114.14897,22.38779],[114.14897,22.3878],[114.14896,22.38787],[114.14896,22.38791],[114.14898,22.38793],[114.14899,22.38794],[114.14903,22.38797],[114.14905,22.38798],[114.14905,22.38798],[114.14906,22.38799],[114.14906,22.388],[114.14906,22.38803],[114.14906,22.38804],[114.14904,22.3881],[114.14904,22.38811],[114.14904,22.38814],[114.14904,22.38817],[114.14904,22.38817],[114.14904,22.38817],[114.14904,22.38819],[114.14905,22.3882],[114.14906,22.38822],[114.1491,22.38827],[114.14915,22.38835],[114.14915,22.38836],[114.14916,22.38837],[114.14917,22.38838],[114.14918,22.38838],[114.1492,22.38838],[114.14922,22.38838],[114.14923,22.38838],[114.14923,22.38837],[114.14924,22.38836],[114.14927,22.3883],[114.14929,22.38828],[114.1493,22.38826],[114.14934,22.38823],[114.14936,22.38822],[114.14939,22.38821],[114.14942,22.3882],[114.14946,22.38818],[114.14946,22.38818],[114.14948,22.38817],[114.14962,22.38815],[114.14963,22.38815],[114.14965,22.38815],[114.14967,22.38815],[114.14967,22.38816],[114.14968,22.38816],[114.14971,22.38817],[114.14973,22.38819],[114.14974,22.3882],[114.14975,22.38823],[114.14976,22.38827],[114.14976,22.3883],[114.14976,22.38832],[114.14974,22.38837],[114.14972,22.38844],[114.14971,22.38849],[114.14972,22.3885],[114.14972,22.38851],[114.14973,22.38852],[114.14976,22.38856],[114.14978,22.38859],[114.14979,22.38861],[114.14979,22.38862],[114.14978,22.38865],[114.14976,22.3887],[114.14974,22.38877],[114.14972,22.38881],[114.14969,22.38883],[114.14968,22.38884],[114.14965,22.38885],[114.14964,22.38886],[114.14962,22.38887],[114.14957,22.38889],[114.14953,22.38891],[114.14951,22.38893],[114.14946,22.38895],[114.14945,22.38895],[114.14945,22.38896],[114.14943,22.38897],[114.14943,22.38898],[114.14943,22.38899],[114.14943,22.389],[114.14944,22.38904],[114.14945,22.38905],[114.14946,22.38906],[114.14948,22.38907],[114.14948,22.38908],[114.1495,22.38908],[114.14951,22.38908],[114.14952,22.38909],[114.14958,22.38908],[114.14964,22.38908],[114.14965,22.38908],[114.14967,22.38908],[114.14971,22.3891],[114.14978,22.38913],[114.14981,22.38914],[114.14982,22.38916],[114.14984,22.38917],[114.14984,22.38918],[114.14986,22.38922],[114.14987,22.38924],[114.14989,22.38926],[114.14991,22.38927],[114.14994,22.38928],[114.14998,22.38929],[114.15,22.38929],[114.15001,22.3893],[114.15002,22.3893],[114.15003,22.38931],[114.15004,22.38933],[114.15003,22.38934],[114.15003,22.38934],[114.14997,22.38943],[114.14996,22.38946],[114.14995,22.38947],[114.14991,22.38956],[114.1499,22.38961],[114.14989,22.38962],[114.14989,22.38963],[114.1499,22.38965],[114.1499,22.38966],[114.14993,22.38969],[114.14995,22.38973],[114.14995,22.38974],[114.14996,22.38975],[114.14999,22.38977],[114.15001,22.38977],[114.15001,22.38977],[114.15003,22.38977],[114.15005,22.38978],[114.15008,22.38977],[114.15014,22.38975],[114.15021,22.38974],[114.15022,22.38974],[114.15023,22.38975],[114.15023,22.38975],[114.15024,22.38975],[114.15024,22.38977],[114.15025,22.38979],[114.15025,22.38982],[114.15025,22.38985],[114.15024,22.38987],[114.15022,22.38996],[114.15021,22.38998],[114.15021,22.39001],[114.15022,22.39004],[114.15024,22.39008],[114.15025,22.3901],[114.15033,22.3902],[114.15034,22.39022],[114.15035,22.39023],[114.15035,22.39024],[114.15035,22.39025],[114.15035,22.39027],[114.15035,22.39027],[114.15034,22.39028],[114.15033,22.39028],[114.1503,22.39029],[114.15026,22.3903],[114.15025,22.39029],[114.15019,22.39029],[114.15006,22.39026],[114.14995,22.39026],[114.14988,22.39024],[114.14985,22.39023],[114.14982,22.39023],[114.1498,22.39023],[114.14977,22.39024],[114.14976,22.39025],[114.14974,22.39026],[114.14972,22.39027],[114.14971,22.39028],[114.14969,22.3903],[114.14969,22.39031],[114.14969,22.39032],[114.14967,22.39038],[114.14967,22.39043],[114.14966,22.39043],[114.14966,22.39047],[114.14964,22.39052],[114.14964,22.39053],[114.14964,22.39054],[114.14964,22.39056],[114.14964,22.39058],[114.14965,22.3906],[114.14966,22.39061],[114.14968,22.39062],[114.14971,22.39063],[114.14974,22.39063],[114.14982,22.39063],[114.14987,22.39062],[114.14991,22.39061],[114.14993,22.39061],[114.14995,22.39062],[114.14999,22.39063],[114.15005,22.39066],[114.15006,22.39066],[114.15014,22.3907],[114.15015,22.39071],[114.15019,22.39072],[114.1503,22.39075],[114.15034,22.39076],[114.15034,22.39076],[114.15039,22.3908],[114.15043,22.39081],[114.15049,22.39082],[114.15051,22.39083],[114.15051,22.39083],[114.15052,22.39084],[114.15052,22.39085],[114.15053,22.39086],[114.15054,22.39088],[114.15055,22.39091],[114.15057,22.39092],[114.15058,22.39091],[114.15059,22.39089],[114.1506,22.39088],[114.1506,22.39088],[114.15062,22.39088],[114.15063,22.39087],[114.15065,22.39087],[114.15068,22.39087],[114.15072,22.39089],[114.15075,22.3909],[114.15077,22.39091],[114.15078,22.39092],[114.15079,22.39093],[114.1508,22.39096],[114.15081,22.39098],[114.15082,22.39099],[114.15082,22.391],[114.15082,22.39101],[114.15082,22.39101],[114.15082,22.39101],[114.15082,22.39102],[114.15081,22.39104],[114.15082,22.39105],[114.15082,22.39106],[114.15082,22.39107],[114.15083,22.39107],[114.15087,22.39109],[114.15089,22.3911],[114.151,22.39113],[114.15103,22.39113],[114.15105,22.39114],[114.15108,22.39114],[114.15112,22.39113],[114.15114,22.39112],[114.15115,22.39112],[114.15116,22.39112],[114.15119,22.3911],[114.15124,22.39106],[114.15125,22.39106],[114.15126,22.39106],[114.15128,22.39106],[114.15129,22.39106],[114.1513,22.39106],[114.1513,22.39107],[114.15131,22.3911],[114.15132,22.39111],[114.15134,22.39114],[114.15134,22.39115],[114.15134,22.39115],[114.15134,22.39116],[114.15133,22.39116],[114.15128,22.39118],[114.15126,22.39119],[114.15122,22.39125],[114.1512,22.39127],[114.15119,22.39128],[114.15119,22.39128],[114.15115,22.39129],[114.15111,22.3913],[114.15107,22.39131],[114.15104,22.3913],[114.15102,22.3913],[114.15099,22.39131],[114.15096,22.39133],[114.15095,22.39134],[114.15095,22.39134],[114.15094,22.39135],[114.15092,22.39138],[114.15092,22.3914],[114.15092,22.39141],[114.15093,22.39143],[114.15093,22.39143],[114.15093,22.39143],[114.15094,22.39145],[114.15098,22.39149],[114.15101,22.39151],[114.15102,22.39152],[114.15106,22.39155],[114.15108,22.39158],[114.15109,22.39159],[114.15109,22.3916],[114.15109,22.39161],[114.15107,22.39167],[114.15102,22.39175],[114.15102,22.39177],[114.15101,22.39179],[114.15102,22.3918],[114.15102,22.39181],[114.15105,22.39185],[114.15108,22.39188],[114.1511,22.3919],[114.15113,22.39191],[114.15114,22.39191],[114.15114,22.39191],[114.15116,22.39191],[114.15121,22.39191],[114.15123,22.39191],[114.15129,22.39191],[114.1513,22.39191],[114.15134,22.3919],[114.15136,22.3919],[114.15147,22.39192],[114.1515,22.39192],[114.15153,22.39192],[114.15159,22.39192],[114.1516,22.39192],[114.15161,22.39192],[114.15162,22.39193],[114.15163,22.39195],[114.15164,22.39196],[114.15164,22.39196],[114.15166,22.39199],[114.15169,22.39203],[114.15169,22.39205],[114.15169,22.39206],[114.15168,22.39208],[114.15166,22.39211],[114.15165,22.39212],[114.15164,22.39212],[114.15163,22.39213],[114.15161,22.39215],[114.1516,22.39215],[114.15158,22.39215],[114.15148,22.39216],[114.15145,22.39218],[114.15144,22.39218],[114.15142,22.39221],[114.15142,22.39221],[114.15141,22.39222],[114.15141,22.39224],[114.1514,22.39227],[114.15139,22.39229],[114.15139,22.39231],[114.15141,22.3924],[114.15141,22.39241],[114.15143,22.39247],[114.15144,22.39249],[114.15144,22.39249],[114.15146,22.39252],[114.15147,22.39253],[114.15149,22.39255],[114.1515,22.39255],[114.1515,22.39255],[114.15151,22.39255],[114.15152,22.39256],[114.15154,22.39256],[114.15155,22.39256],[114.15155,22.39256],[114.15157,22.39256],[114.15159,22.39255],[114.15161,22.39254],[114.15164,22.39254],[114.15171,22.39254],[114.15173,22.39253],[114.15177,22.39251],[114.15178,22.3925],[114.15182,22.39252],[114.15184,22.39252],[114.15187,22.39252],[114.15187,22.39252],[114.15188,22.39253],[114.15189,22.39254],[114.15189,22.39261],[114.15189,22.39262],[114.15188,22.39263],[114.15188,22.39263],[114.15187,22.39265],[114.15184,22.39267],[114.15177,22.3927],[114.15171,22.39274],[114.15166,22.39276],[114.15162,22.39277],[114.15161,22.39277],[114.1516,22.39278],[114.15158,22.39279],[114.15156,22.39281],[114.15155,22.39282],[114.15155,22.39283],[114.15155,22.39285],[114.15155,22.39286],[114.15156,22.39288],[114.15158,22.39291],[114.1516,22.39293],[114.15166,22.39295],[114.15166,22.39296],[114.15168,22.39297],[114.15174,22.393],[114.15183,22.39302],[114.15184,22.39303],[114.15185,22.39303],[114.1519,22.39306],[114.15193,22.39308],[114.15195,22.3931],[114.15201,22.39317],[114.15201,22.39318],[114.15209,22.39326],[114.1522,22.39336],[114.15225,22.39342],[114.15228,22.39345],[114.1523,22.39345],[114.15232,22.39347],[114.15234,22.39348],[114.15238,22.3935],[114.1524,22.39352],[114.15242,22.39353],[114.15243,22.39354],[114.15243,22.39354],[114.15245,22.39356],[114.15246,22.39357],[114.15246,22.39358],[114.15246,22.39359],[114.15247,22.39359],[114.15247,22.3936],[114.15248,22.3936],[114.15248,22.3936],[114.15249,22.3936],[114.15249,22.39361],[114.1525,22.39361],[114.1525,22.39361],[114.15251,22.39361],[114.15251,22.39361],[114.15252,22.39361],[114.15253,22.39361],[114.15253,22.39361],[114.15255,22.39361],[114.15255,22.3936],[114.15256,22.3936],[114.15258,22.39359],[114.15258,22.39359],[114.15258,22.39358],[114.15259,22.39358],[114.1526,22.39357],[114.15264,22.39353],[114.15264,22.39353],[114.15264,22.39353],[114.15265,22.39353],[114.15266,22.39352],[114.15267,22.39351],[114.15268,22.39351],[114.15269,22.39351],[114.15269,22.39351],[114.1527,22.39351],[114.15271,22.39351],[114.15271,22.39351],[114.15271,22.39351],[114.15272,22.39352],[114.15272,22.39352],[114.15272,22.39353],[114.15272,22.39353],[114.15272,22.39354],[114.15272,22.39355],[114.15272,22.39356],[114.15272,22.39358],[114.15272,22.39358],[114.15272,22.3936],[114.15271,22.39362],[114.15271,22.39362],[114.15271,22.39363],[114.15271,22.39363],[114.15271,22.39365],[114.15271,22.39367],[114.15271,22.39368],[114.15271,22.3937],[114.15272,22.39371],[114.15272,22.39372],[114.15272,22.39373],[114.15273,22.39374],[114.15274,22.39376],[114.15274,22.39376],[114.15275,22.39377],[114.15275,22.39377],[114.15277,22.3938],[114.15278,22.39381],[114.15279,22.39382],[114.15279,22.39382],[114.15283,22.39385],[114.15285,22.39386],[114.15286,22.39387],[114.15288,22.39388],[114.1529,22.39391],[114.1529,22.39391],[114.15291,22.39391],[114.15292,22.39392],[114.15292,22.39392],[114.15292,22.39392],[114.15293,22.39392],[114.15295,22.39392],[114.15299,22.39393],[114.153,22.39394],[114.15303,22.39394],[114.15307,22.39395],[114.15309,22.39396],[114.1531,22.39396],[114.15311,22.39396],[114.15313,22.39396],[114.15314,22.39396],[114.15315,22.39395],[114.15317,22.39395],[114.15319,22.39394],[114.15323,22.39392],[114.15324,22.39392],[114.15325,22.39392],[114.15326,22.39391],[114.15328,22.39391],[114.1533,22.3939],[114.15332,22.39389],[114.15333,22.39388],[114.15334,22.39388],[114.15334,22.39388],[114.15334,22.39388],[114.15335,22.39388],[114.15337,22.39388],[114.15338,22.39388],[114.15339,22.39388],[114.1534,22.39388],[114.15341,22.39388],[114.15341,22.39388],[114.15342,22.39388],[114.15342,22.39388],[114.15343,22.39388],[114.15343,22.39388],[114.15344,22.39388],[114.15345,22.39388],[114.15346,22.39388],[114.15347,22.39388],[114.15348,22.39389],[114.15348,22.39389],[114.15349,22.39391],[114.1535,22.39392],[114.1535,22.39393],[114.15351,22.39394],[114.15351,22.39397],[114.15352,22.39399],[114.15353,22.39402],[114.15353,22.39403],[114.15353,22.39403],[114.15353,22.39403],[114.15354,22.39404],[114.15354,22.39405],[114.15355,22.39406],[114.15355,22.39406],[114.15355,22.39406],[114.15356,22.39407],[114.15357,22.39408],[114.15358,22.39409],[114.15359,22.3941],[114.15359,22.3941],[114.15359,22.3941],[114.1536,22.39411],[114.15361,22.39412],[114.15362,22.39413],[114.15364,22.39415],[114.15365,22.39415],[114.15367,22.39417],[114.15367,22.39417],[114.15368,22.39417],[114.15369,22.39418],[114.1537,22.39418],[114.1537,22.39418],[114.15372,22.39419],[114.15372,22.39419],[114.15376,22.39421],[114.15377,22.39421],[114.15377,22.39421],[114.15378,22.39422],[114.15378,22.39422],[114.1538,22.39424],[114.15381,22.39425],[114.15382,22.39425],[114.15382,22.39425],[114.15382,22.39426],[114.15384,22.39429],[114.15384,22.39429],[114.15385,22.39431],[114.15385,22.39432],[114.15385,22.39433],[114.15385,22.39434],[114.15386,22.39435],[114.15386,22.39436],[114.15386,22.39437],[114.15387,22.39438],[114.15387,22.39439],[114.15387,22.3944],[114.15388,22.39442],[114.15388,22.39442],[114.15388,22.39443],[114.15389,22.39445],[114.1539,22.39447],[114.15391,22.39448],[114.15392,22.39448],[114.15393,22.3945],[114.15394,22.39451],[114.15394,22.39451],[114.15394,22.39452],[114.15395,22.39452],[114.15396,22.39454],[114.15398,22.39455],[114.15399,22.39456],[114.154,22.39458],[114.15401,22.39458],[114.15402,22.3946],[114.15403,22.39462],[114.15404,22.39463],[114.15404,22.39464],[114.15404,22.39465],[114.15406,22.39465],[114.15406,22.39465],[114.15408,22.39466],[114.15409,22.39466],[114.15409,22.39466],[114.15411,22.39467],[114.15412,22.39467],[114.15413,22.39467],[114.15414,22.39467],[114.15415,22.39467],[114.15415,22.39467],[114.15416,22.39467],[114.15417,22.39468],[114.15418,22.39467],[114.15422,22.39467],[114.15422,22.39467],[114.15423,22.39467],[114.15423,22.39467],[114.15424,22.39467],[114.15427,22.39466],[114.15429,22.39465],[114.15429,22.39465],[114.1543,22.39465],[114.15431,22.39465],[114.1543,22.39465],[114.1543,22.39465],[114.15429,22.39465],[114.15426,22.39467],[114.15425,22.39468],[114.15424,22.39468],[114.15422,22.39469],[114.15421,22.3947],[114.1542,22.3947],[114.15419,22.39471],[114.15419,22.39471],[114.15419,22.39471],[114.15418,22.39471],[114.15417,22.39472],[114.15417,22.39472],[114.15416,22.39472],[114.15414,22.39471],[114.1541,22.3947],[114.15409,22.3947],[114.15408,22.3947],[114.15407,22.39469],[114.15406,22.39469],[114.15405,22.39469],[114.15405,22.39469],[114.15404,22.39469],[114.15403,22.39468],[114.15402,22.39467],[114.15401,22.39466],[114.15401,22.39466],[114.154,22.39466],[114.15399,22.39466],[114.15397,22.39464],[114.15397,22.39464],[114.15396,22.39464],[114.15396,22.39464],[114.15396,22.39464],[114.15395,22.39463],[114.15394,22.39462],[114.15393,22.39461],[114.15391,22.3946],[114.1539,22.39459],[114.15389,22.39459],[114.15387,22.39456],[114.15386,22.39455],[114.15386,22.39455],[114.15385,22.39454],[114.15384,22.39453],[114.15383,22.39452],[114.15382,22.39451],[114.15382,22.39451],[114.1538,22.39449],[114.15378,22.39447],[114.15377,22.39446],[114.15375,22.39444],[114.15374,22.39442],[114.15373,22.39442],[114.15373,22.39441],[114.15372,22.39441],[114.15371,22.39441],[114.1537,22.3944],[114.15369,22.39439],[114.15369,22.39439],[114.15367,22.39437],[114.15366,22.39436],[114.15366,22.39436],[114.15366,22.39436],[114.15365,22.39436],[114.15365,22.39435],[114.15362,22.39434],[114.15361,22.39434],[114.15361,22.39434],[114.1536,22.39433],[114.1536,22.39433],[114.15359,22.39433],[114.15358,22.39432],[114.15357,22.39431],[114.15354,22.39429],[114.15353,22.39429],[114.15351,22.39427],[114.15349,22.39425],[114.15347,22.39423],[114.15345,22.39422],[114.15344,22.39421],[114.15344,22.39421],[114.15342,22.39418],[114.15339,22.39415],[114.15338,22.39415],[114.15338,22.39414],[114.15337,22.39414],[114.15337,22.39414],[114.15336,22.39414],[114.15335,22.39414],[114.15335,22.39414],[114.15334,22.39415],[114.15334,22.39415],[114.15333,22.39417],[114.15331,22.39418],[114.1533,22.39418],[114.15328,22.3942],[114.15328,22.3942],[114.15328,22.3942],[114.15326,22.39421],[114.15325,22.39422],[114.15325,22.39422],[114.15324,22.39422],[114.15324,22.39422],[114.15322,22.39423],[114.1532,22.39423],[114.1532,22.39423],[114.15319,22.39423],[114.15319,22.39423],[114.15318,22.39423],[114.15317,22.39423],[114.15317,22.39423],[114.15316,22.39423],[114.15315,22.39423],[114.15315,22.39423],[114.15315,22.39423],[114.15313,22.39423],[114.15313,22.39423],[114.15312,22.39423],[114.1531,22.39423],[114.1531,22.39423],[114.15309,22.39423],[114.15307,22.39423],[114.15304,22.39422],[114.15302,22.39422],[114.15299,22.39422],[114.15297,22.39421],[114.15296,22.39421],[114.15294,22.39421],[114.15292,22.39421],[114.15291,22.39421],[114.15289,22.39421],[114.15287,22.3942],[114.15286,22.3942],[114.15286,22.3942],[114.15285,22.3942],[114.15285,22.3942],[114.15284,22.3942],[114.15282,22.39419],[114.1528,22.39419],[114.15279,22.39419],[114.15279,22.39419],[114.15278,22.39419],[114.15277,22.39418],[114.15277,22.39418],[114.15275,22.39418],[114.15273,22.39416],[114.15273,22.39416],[114.15272,22.39415],[114.15271,22.39415],[114.1527,22.39414],[114.15269,22.39414],[114.15268,22.39413],[114.15264,22.39411],[114.15264,22.39411],[114.15264,22.39411],[114.15264,22.39411],[114.15263,22.39411],[114.15262,22.3941],[114.15261,22.3941],[114.1526,22.39409],[114.15259,22.39409],[114.15259,22.39408],[114.15258,22.39408],[114.15257,22.39407],[114.15256,22.39407],[114.15255,22.39406],[114.15255,22.39406],[114.15255,22.39406],[114.15254,22.39405],[114.15253,22.39404],[114.15252,22.39404],[114.15251,22.39403],[114.1525,22.39402],[114.15249,22.39402],[114.15248,22.39401],[114.15247,22.39401],[114.15246,22.39401],[114.15245,22.39401],[114.15244,22.39401],[114.15244,22.39401],[114.15244,22.39401],[114.15243,22.39401],[114.15243,22.39401],[114.15242,22.39401],[114.15242,22.39402],[114.15242,22.39402],[114.15241,22.39403],[114.15241,22.39404],[114.15241,22.39405],[114.15241,22.39406],[114.1524,22.39407],[114.1524,22.39407],[114.1524,22.39407],[114.15241,22.39408],[114.15241,22.3941],[114.15241,22.3941],[114.15241,22.39411],[114.15242,22.39412],[114.15242,22.39412],[114.15243,22.39413],[114.15243,22.39413],[114.15243,22.39413],[114.15243,22.39414],[114.15243,22.39414],[114.15243,22.39415],[114.15243,22.39415],[114.15243,22.39416],[114.15243,22.39417],[114.15243,22.39417],[114.15243,22.39419],[114.15244,22.3942],[114.15244,22.39421],[114.15244,22.39422],[114.15244,22.39422],[114.15244,22.39423],[114.15245,22.39424],[114.15245,22.39425],[114.15246,22.39426],[114.15246,22.39427],[114.15247,22.39427],[114.15247,22.39427],[114.15247,22.39429],[114.15248,22.3943],[114.15249,22.39431],[114.15252,22.39435],[114.15255,22.39438],[114.15255,22.39438],[114.15255,22.39439],[114.15257,22.39441],[114.15257,22.39442],[114.15257,22.39442],[114.15258,22.39443],[114.15259,22.39444],[114.1526,22.39445],[114.15261,22.39446],[114.15264,22.39451],[114.15265,22.39451],[114.15266,22.39453],[114.15267,22.39453],[114.15268,22.39454],[114.15269,22.39456],[114.15271,22.39458],[114.15272,22.39459],[114.15274,22.39461],[114.15275,22.39462],[114.15277,22.39464],[114.15278,22.39465],[114.15278,22.39465],[114.15282,22.3947],[114.15283,22.3947],[114.15284,22.39472],[114.15285,22.39473],[114.15286,22.39475],[114.15287,22.39475],[114.15287,22.39475],[114.15288,22.39477],[114.1529,22.39479],[114.15291,22.3948],[114.15292,22.39481],[114.15292,22.39481],[114.15292,22.39482],[114.15294,22.39483],[114.15296,22.39486],[114.15298,22.39489],[114.15298,22.39489],[114.15299,22.3949],[114.15301,22.39492],[114.15301,22.39492],[114.15302,22.39493],[114.15302,22.39493],[114.15303,22.39494],[114.15304,22.39496],[114.15304,22.39496],[114.15306,22.395],[114.15308,22.39504],[114.15309,22.39506],[114.15311,22.39507],[114.15313,22.39511],[114.15313,22.39513],[114.15314,22.39515],[114.15314,22.39515],[114.15314,22.39516],[114.15315,22.39517],[114.15315,22.39518],[114.15315,22.39519],[114.15315,22.39519],[114.15316,22.39521],[114.15316,22.39521],[114.15317,22.39521],[114.15318,22.39524],[114.15318,22.39524],[114.15319,22.39525],[114.15319,22.39525],[114.1532,22.39528],[114.1532,22.39529],[114.1532,22.39529],[114.1532,22.3953],[114.15321,22.39531],[114.15321,22.39532],[114.15321,22.39532],[114.15321,22.39534],[114.15321,22.39535],[114.1532,22.39535],[114.1532,22.39537],[114.15319,22.3954],[114.15319,22.3954],[114.15319,22.39541],[114.15319,22.39541],[114.15316,22.39552],[114.15311,22.39566],[114.15275,22.39629],[114.15255,22.39678],[114.15252,22.3973],[114.15256,22.39799],[114.15272,22.39865],[114.15275,22.3988],[114.15278,22.39889],[114.1531,22.39991],[114.15354,22.40086],[114.154,22.40164],[114.1542,22.40212],[114.15421,22.40215],[114.15427,22.40228],[114.15432,22.4024],[114.15438,22.40256],[114.15448,22.40277],[114.15452,22.40286],[114.15457,22.40297],[114.15471,22.4033],[114.15499,22.40395],[114.15516,22.4044],[114.15523,22.40457],[114.15602,22.40594],[114.15656,22.40689],[114.15686,22.40746],[114.15726,22.40872],[114.1574,22.40931],[114.15741,22.40936],[114.15761,22.41034],[114.15778,22.41189],[114.1574,22.41196],[114.15726,22.41198],[114.15695,22.41206],[114.15598,22.41245],[114.15561,22.41267],[114.15541,22.41279],[114.15509,22.41287],[114.15462,22.41275],[114.15449,22.41271],[114.15393,22.41258],[114.15321,22.41238],[114.15311,22.41235],[114.15242,22.41238],[114.15224,22.41239],[114.15179,22.41242],[114.15125,22.41244],[114.15015,22.41244],[114.1495,22.41238],[114.14911,22.41233],[114.14866,22.41221],[114.14829,22.41212],[114.14758,22.41192],[114.14732,22.41196],[114.14725,22.41197],[114.14707,22.41231],[114.14703,22.41267],[114.1471,22.413],[114.14717,22.41337],[114.14718,22.41356],[114.14721,22.4138],[114.14694,22.41435],[114.14693,22.41439],[114.14675,22.41491],[114.14675,22.41546],[114.14681,22.41572],[114.14686,22.41595],[114.14682,22.41634],[114.14646,22.41661],[114.14644,22.41661],[114.14604,22.41658],[114.14565,22.41635],[114.14536,22.41618],[114.14499,22.41601],[114.14465,22.41585],[114.14454,22.4158],[114.14417,22.41562],[114.14349,22.41554],[114.14288,22.4156],[114.14224,22.41587],[114.14189,22.41616],[114.1417,22.41633],[114.14137,22.41659],[114.141,22.41689],[114.14025,22.41741],[114.13954,22.41761],[114.13857,22.41781],[114.13761,22.41795],[114.13687,22.41806],[114.1361,22.41815],[114.13516,22.41816],[114.13449,22.41806],[114.13386,22.4177],[114.13324,22.41737],[114.13288,22.4171],[114.13252,22.41694],[114.13185,22.41682],[114.13081,22.4169],[114.12964,22.41702],[114.12887,22.41707],[114.12836,22.41683],[114.12778,22.41652],[114.12725,22.41632],[114.12658,22.41622],[114.12558,22.41617],[114.12558,22.41621],[114.1256,22.41629],[114.12565,22.41643],[114.12566,22.41655],[114.12564,22.41666],[114.12556,22.41683],[114.12556,22.41694],[114.1256,22.41707],[114.12566,22.41719],[114.12578,22.41761],[114.12585,22.41776],[114.12585,22.41779],[114.12594,22.41818],[114.12603,22.41838],[114.12606,22.41857],[114.12604,22.41873],[114.12602,22.41879],[114.12593,22.41889],[114.1259,22.41897],[114.1259,22.41907],[114.12594,22.41915],[114.12595,22.4194],[114.12593,22.41952],[114.12593,22.41964],[114.12594,22.41975],[114.126,22.41994],[114.126,22.42003],[114.12597,22.4201],[114.12527,22.4209],[114.12518,22.42103],[114.12506,22.42126],[114.12499,22.42135],[114.12492,22.42147],[114.12483,22.42178],[114.12482,22.42178],[114.12471,22.42199],[114.12459,22.42233],[114.12451,22.42252],[114.12444,22.42264],[114.12437,22.42274],[114.12417,22.4229],[114.12383,22.42305],[114.12345,22.42315],[114.12329,22.42318],[114.12312,22.42322],[114.12312,22.42323],[114.12309,22.42325],[114.12308,22.42326],[114.12307,22.42327],[114.12305,22.42328],[114.12305,22.42329],[114.12304,22.4233],[114.12301,22.42332],[114.12299,22.42335],[114.12297,22.42336],[114.12296,22.42337],[114.12295,22.42338],[114.12294,22.42339],[114.12294,22.42339],[114.12292,22.42341],[114.1229,22.42342],[114.12288,22.42346],[114.12287,22.42346],[114.12287,22.42347],[114.12285,22.42349],[114.12282,22.42351],[114.12281,22.42352],[114.1228,22.42352],[114.12279,22.42353],[114.12278,22.42353],[114.12275,22.42354],[114.12275,22.42355],[114.12273,22.42356],[114.12271,22.42357],[114.12271,22.42357],[114.1227,22.42358],[114.12269,22.42359],[114.12269,22.42359],[114.12269,22.4236],[114.12268,22.42361],[114.12267,22.42362],[114.12267,22.42362],[114.12266,22.42363],[114.12265,22.42363],[114.12265,22.42364],[114.12264,22.42364],[114.12263,22.42365],[114.12262,22.42366],[114.12262,22.42366],[114.12261,22.42367],[114.1226,22.42368],[114.12259,22.42369],[114.12258,22.4237],[114.12257,22.42371],[114.12256,22.42372],[114.12254,22.42373],[114.12253,22.42374],[114.12252,22.42375],[114.1225,22.42376],[114.12248,22.42378],[114.12246,22.42379],[114.1223,22.424],[114.1223,22.42401],[114.12227,22.42403],[114.12227,22.42404],[114.12226,22.42405],[114.12225,22.42405],[114.12225,22.42406],[114.12224,22.42407],[114.12223,22.4241],[114.12222,22.4241],[114.12222,22.42411],[114.12221,22.42412],[114.12221,22.42413],[114.12219,22.42416],[114.12218,22.42418],[114.12216,22.4242],[114.12216,22.42421],[114.12215,22.42422],[114.12214,22.42423],[114.12214,22.42424],[114.12214,22.42424],[114.12212,22.42426],[114.12212,22.42427],[114.12211,22.42428],[114.1221,22.42429],[114.1221,22.4243],[114.12209,22.42431],[114.12208,22.42433],[114.12208,22.42434],[114.12207,22.42435],[114.12206,22.42436],[114.12205,22.42438],[114.12205,22.42439],[114.12204,22.42439],[114.12204,22.42441],[114.12202,22.42443],[114.12201,22.42446],[114.122,22.42447],[114.122,22.42449],[114.12199,22.4245],[114.12197,22.42453],[114.12196,22.42454],[114.12195,22.42457],[114.12195,22.42457],[114.12194,22.42458],[114.12193,22.4246],[114.12191,22.42462],[114.1219,22.42463],[114.12189,22.42466],[114.12188,22.42469],[114.12188,22.4247],[114.12187,22.42472],[114.12186,22.42475],[114.12186,22.42475],[114.12185,22.42476],[114.12183,22.42479],[114.12182,22.42481],[114.1218,22.42484],[114.12177,22.42489],[114.12176,22.4249],[114.12174,22.42492],[114.12171,22.42494],[114.12167,22.42497],[114.12165,22.42499],[114.12164,22.425],[114.12164,22.42501],[114.12163,22.42502],[114.12163,22.42503],[114.12162,22.42505],[114.12162,22.42506],[114.12161,22.42507],[114.1216,22.42507],[114.12159,22.42508],[114.12158,22.42509],[114.12157,22.42511],[114.12156,22.42512],[114.12155,22.42514],[114.12153,22.42517],[114.12151,22.42519],[114.12149,22.42521],[114.12147,22.42523],[114.12146,22.42525],[114.12144,22.42527],[114.12142,22.42529],[114.12138,22.42532],[114.12138,22.42532],[114.12132,22.42544],[114.12129,22.42553],[114.12128,22.4256],[114.12128,22.42567],[114.12128,22.42572],[114.1213,22.42577],[114.12132,22.42583],[114.12134,22.42592],[114.12137,22.42601],[114.12137,22.42609],[114.12137,22.42616],[114.12131,22.42651],[114.12124,22.42697],[114.12123,22.42706],[114.12121,22.42721],[114.12113,22.4275],[114.12111,22.42751],[114.12111,22.42753],[114.1211,22.42754],[114.12108,22.42756],[114.12106,22.42757],[114.12105,22.42758],[114.12103,22.42759],[114.12101,22.4276],[114.121,22.42761],[114.12099,22.42761],[114.12098,22.42761],[114.12097,22.42762],[114.12095,22.42762],[114.12094,22.42761],[114.12093,22.42761],[114.12091,22.42761],[114.12088,22.4276],[114.12086,22.4276],[114.12081,22.4276],[114.12079,22.4276],[114.12077,22.4276],[114.12062,22.42762],[114.12041,22.42765],[114.1204,22.42765],[114.12039,22.42766],[114.12037,22.42768],[114.12036,22.42768],[114.12036,22.42769],[114.12035,22.4277],[114.12034,22.42771],[114.12023,22.42776],[114.1202,22.42778],[114.12016,22.4278],[114.12012,22.42782],[114.12009,22.42784],[114.12006,22.42786],[114.12002,22.42788],[114.11999,22.42791],[114.11996,22.42793],[114.11993,22.42795],[114.11987,22.428],[114.11984,22.42802],[114.11981,22.42805],[114.11978,22.42807],[114.11976,22.4281],[114.11973,22.42812],[114.1197,22.42815],[114.11968,22.42817],[114.11966,22.4282],[114.11964,22.42822],[114.11963,22.42823],[114.11961,22.42825],[114.1196,22.42827],[114.11958,22.42829],[114.11957,22.4283],[114.11954,22.42833],[114.11952,22.42835],[114.1195,22.42837],[114.11949,22.42838],[114.11948,22.42839],[114.11945,22.4284],[114.11944,22.4284],[114.11942,22.42841],[114.11941,22.42841],[114.11939,22.42841],[114.11937,22.42842],[114.11936,22.42842],[114.11934,22.42841],[114.11933,22.42841],[114.11931,22.42841],[114.11929,22.42841],[114.11928,22.42841],[114.11926,22.4284],[114.11925,22.4284],[114.11923,22.42839],[114.11922,22.42839],[114.1192,22.42838],[114.11918,22.42837],[114.11917,22.42837],[114.11915,22.42836],[114.11913,22.42835],[114.1191,22.42834],[114.11907,22.42833],[114.11903,22.42833],[114.119,22.42832],[114.11893,22.42832],[114.1189,22.42831],[114.11887,22.42831],[114.11883,22.42832],[114.11878,22.42832],[114.11874,22.42833],[114.1187,22.42834],[114.11865,22.42835],[114.1186,22.42836],[114.11856,22.42838],[114.11852,22.42839],[114.11848,22.42841],[114.11844,22.42843],[114.11843,22.42843],[114.11841,22.42844],[114.1184,22.42845],[114.11838,22.42846],[114.11836,22.42848],[114.11835,22.42849],[114.11833,22.42851],[114.11831,22.42853],[114.1183,22.42855],[114.11828,22.42857],[114.11827,22.4286],[114.11826,22.42862],[114.11825,22.42864],[114.11824,22.42866],[114.11823,22.42868],[114.11822,22.42869],[114.11821,22.42871],[114.1182,22.42872],[114.11819,22.42874],[114.11818,22.42875],[114.11817,22.42877],[114.11815,22.42879],[114.11812,22.42882],[114.1181,22.42884],[114.11807,22.42886],[114.11805,22.42888],[114.11803,22.4289],[114.11801,22.42891],[114.118,22.42893],[114.11799,22.42894],[114.11799,22.42895],[114.11798,22.42895],[114.11798,22.42897],[114.11798,22.42898],[114.11797,22.429],[114.11797,22.42903],[114.11796,22.42905],[114.11795,22.42907],[114.11794,22.42909],[114.11793,22.4291],[114.11792,22.42912],[114.11792,22.42913],[114.11791,22.42914],[114.1179,22.42916],[114.11789,22.42917],[114.11788,22.42919],[114.11783,22.42929],[114.11777,22.42944],[114.11776,22.42946],[114.11773,22.42953],[114.1177,22.42959],[114.1176,22.42975],[114.11757,22.42982],[114.11717,22.43038],[114.1168,22.43097],[114.11644,22.43152],[114.11633,22.43172],[114.11625,22.43186],[114.11621,22.43194],[114.1162,22.43198],[114.11616,22.43207],[114.1161,22.43224],[114.11627,22.43329],[114.1164,22.43331],[114.1164,22.43336],[114.11639,22.43341],[114.11638,22.4335],[114.11617,22.43485],[114.11615,22.43494],[114.11614,22.43497],[114.11599,22.43549],[114.11563,22.43593],[114.11556,22.43605],[114.11541,22.43619],[114.11521,22.43632],[114.11514,22.43639],[114.11506,22.43656],[114.11503,22.43671],[114.11504,22.43702],[114.11497,22.43713],[114.11483,22.43725],[114.11464,22.43738],[114.11459,22.43743],[114.11454,22.43754],[114.11427,22.438],[114.11422,22.43807],[114.11421,22.4381],[114.11413,22.43827],[114.11407,22.4385],[114.11394,22.43879],[114.11385,22.43907],[114.11368,22.43951],[114.11312,22.44035],[114.1126,22.44099],[114.1125,22.44113],[114.11248,22.44125],[114.11251,22.44138],[114.11267,22.44163],[114.11281,22.44179],[114.11286,22.44196],[114.11281,22.4421],[114.11252,22.44254],[114.11222,22.4429],[114.11214,22.44302],[114.11208,22.44311],[114.112,22.44332],[114.11194,22.44352],[114.11195,22.4438],[114.112,22.44388],[114.11321,22.44558],[114.11329,22.44575],[114.11336,22.44584],[114.11366,22.44633],[114.11373,22.44639],[114.11475,22.44781],[114.1151,22.44829],[114.11516,22.44835],[114.11527,22.4485],[114.11535,22.44858],[114.11542,22.44864],[114.11608,22.44906],[114.11617,22.44923],[114.11625,22.44933],[114.11629,22.44937],[114.11646,22.4495],[114.11653,22.44958],[114.11659,22.44974],[114.11676,22.44977],[114.11686,22.44981],[114.11708,22.44994],[114.11717,22.45004],[114.11722,22.45011],[114.11736,22.45042],[114.11747,22.45056],[114.11755,22.45062],[114.11783,22.45074],[114.11791,22.45079],[114.11808,22.45093],[114.11809,22.45097],[114.1181,22.45114],[114.11806,22.45131],[114.11807,22.45141],[114.11809,22.45147],[114.11822,22.45161],[114.11837,22.45175],[114.11842,22.45185],[114.11842,22.45192],[114.11842,22.45203],[114.11836,22.45236],[114.11836,22.45252],[114.1184,22.45265],[114.11851,22.45279],[114.11863,22.45291],[114.11879,22.45304],[114.1189,22.45311],[114.11908,22.45326],[114.11933,22.45362],[114.11952,22.45387],[114.11969,22.45401],[114.12003,22.45425],[114.12058,22.45493],[114.12093,22.45517],[114.12112,22.45526],[114.12145,22.45539],[114.12155,22.45545],[114.12161,22.4555],[114.1217,22.45553],[114.1218,22.45564],[114.12186,22.45579],[114.12194,22.45614],[114.12196,22.45649],[114.12202,22.45681],[114.12206,22.45723],[114.12214,22.45749],[114.12229,22.45783],[114.1223,22.45786],[114.12242,22.458],[114.12259,22.45816],[114.12288,22.45852],[114.12292,22.45859],[114.12302,22.45869],[114.12339,22.45892],[114.1234,22.45892],[114.12357,22.45901],[114.12376,22.45908],[114.12386,22.45915],[114.12386,22.45921],[114.1239,22.45948],[114.12388,22.45977],[114.12393,22.46003],[114.12405,22.46018],[114.12412,22.46024],[114.12438,22.46043],[114.12439,22.46053],[114.12429,22.46073],[114.12414,22.46098],[114.12407,22.46121],[114.12407,22.4614],[114.12427,22.46171],[114.12443,22.46201],[114.12446,22.46211],[114.12493,22.46234],[114.12499,22.46274],[114.12491,22.46288],[114.1248,22.46322],[114.12482,22.46355],[114.12488,22.46364],[114.12509,22.46373],[114.12531,22.46381],[114.12542,22.46383],[114.12556,22.46383],[114.12648,22.46381],[114.12686,22.46383],[114.1269,22.46392],[114.1269,22.46393],[114.12694,22.46398],[114.12712,22.46415],[114.12719,22.46423],[114.12732,22.46436],[114.12742,22.46451],[114.12749,22.46467],[114.1275,22.46487],[114.12747,22.46497],[114.12753,22.46527],[114.12762,22.4655],[114.12763,22.46566],[114.12766,22.46584],[114.12773,22.46604],[114.12791,22.46651],[114.12658,22.46617],[114.12595,22.46569],[114.12578,22.46571],[114.12559,22.46576],[114.12532,22.46593],[114.12503,22.46602],[114.12472,22.46598],[114.12453,22.46596],[114.12426,22.46604],[114.12406,22.46613],[114.12388,22.46622],[114.12367,22.46626],[114.1235,22.46618],[114.12333,22.46591],[114.12311,22.4658],[114.12265,22.46568],[114.12235,22.46573],[114.12177,22.46587],[114.12151,22.46595],[114.12115,22.46624],[114.12092,22.46642],[114.12076,22.46661],[114.12063,22.46698],[114.12061,22.46714],[114.12054,22.46743],[114.1205,22.46751],[114.12043,22.46763],[114.12037,22.46771],[114.1203,22.46776],[114.12021,22.4678],[114.11971,22.46791],[114.11943,22.46799],[114.11929,22.468],[114.11882,22.46802],[114.11731,22.46894],[114.11722,22.4691],[114.11703,22.46926],[114.11686,22.46934],[114.11657,22.46943],[114.1161,22.46942],[114.11608,22.46953],[114.1161,22.46964],[114.11619,22.46971],[114.11622,22.46987],[114.1162,22.47004],[114.11615,22.47014],[114.11609,22.47026],[114.11577,22.47057],[114.11562,22.47081],[114.11545,22.47088],[114.11534,22.47095],[114.11513,22.4713],[114.11499,22.4714],[114.11488,22.47143],[114.11472,22.47138],[114.11457,22.47126],[114.11444,22.47101],[114.11439,22.47095],[114.11425,22.47093],[114.11417,22.47095],[114.11411,22.47099],[114.11403,22.47105],[114.11385,22.47113],[114.11368,22.47125],[114.11341,22.47133],[114.11308,22.47122],[114.11287,22.47121],[114.11271,22.47119],[114.11261,22.4712],[114.11246,22.47121],[114.11234,22.47121],[114.11221,22.47117],[114.11212,22.47114],[114.11203,22.47103],[114.11196,22.47091],[114.11186,22.4708],[114.11176,22.4707],[114.11162,22.47065],[114.11151,22.47062],[114.11126,22.47064],[114.11087,22.47069],[114.11065,22.47058],[114.11035,22.47041],[114.11024,22.47041],[114.11007,22.47038],[114.11004,22.47037],[114.10982,22.47031],[114.10959,22.4702],[114.10938,22.46994],[114.1093,22.46969],[114.10916,22.46935],[114.10909,22.46927],[114.10895,22.4692],[114.10887,22.46917],[114.10876,22.4692],[114.10873,22.4692],[114.10858,22.46923],[114.10764,22.4694],[114.10574,22.46975],[114.10468,22.46994],[114.10425,22.46998],[114.10417,22.46994],[114.10377,22.46975],[114.10339,22.46949],[114.10288,22.46938],[114.10274,22.46938],[114.10259,22.46935],[114.1024,22.46914],[114.10196,22.46875],[114.10169,22.46866],[114.10142,22.46851],[114.1014,22.46848],[114.1013,22.46844],[114.10092,22.46821],[114.10071,22.46788],[114.10004,22.46759],[114.09998,22.46755],[114.09947,22.46739],[114.09908,22.46742],[114.09903,22.4674],[114.09895,22.46741],[114.09835,22.46738],[114.0974,22.46698],[114.09729,22.46692],[114.09722,22.46689],[114.09701,22.46687],[114.09628,22.46675],[114.09524,22.46674],[114.09479,22.46677],[114.09455,22.46682],[114.09423,22.46682],[114.09413,22.46673],[114.09407,22.4667],[114.09403,22.46666],[114.09371,22.46648],[114.09324,22.4664],[114.09301,22.46637],[114.09281,22.46628],[114.09272,22.4662],[114.09269,22.46616],[114.09259,22.46608],[114.09253,22.46605],[114.09244,22.46602],[114.09204,22.46604],[114.09196,22.46607],[114.09193,22.46607],[114.09188,22.46606],[114.09176,22.46604],[114.09126,22.46591],[114.09104,22.46591],[114.09088,22.46595],[114.09057,22.46615],[114.09015,22.46624],[114.0898,22.46618],[114.08943,22.46598],[114.0892,22.46595],[114.08917,22.46593],[114.08893,22.46609],[114.08909,22.46637],[114.0897,22.46729],[114.09,22.46793],[114.09011,22.46826],[114.0901,22.46859],[114.08988,22.46945],[114.08987,22.47029],[114.08967,22.47073],[114.08955,22.47144],[114.08977,22.47313],[114.08974,22.47339],[114.08953,22.47392],[114.08953,22.47407],[114.08956,22.47439],[114.0896,22.47464],[114.08953,22.47488],[114.08951,22.47533],[114.08946,22.47594],[114.08948,22.47612],[114.0895,22.47622],[114.08952,22.47633],[114.0895,22.47646],[114.08948,22.47657],[114.08955,22.47711],[114.08955,22.47724],[114.0895,22.47736],[114.08948,22.47744],[114.08945,22.4776],[114.08944,22.47771],[114.08947,22.47791],[114.08952,22.47807],[114.0895,22.47819],[114.08948,22.47834],[114.08948,22.47839],[114.08948,22.47894],[114.08949,22.47913],[114.0895,22.47931],[114.08951,22.47945],[114.08948,22.48001],[114.08947,22.48028],[114.08944,22.48089],[114.0894,22.48103],[114.08935,22.48114],[114.08931,22.48125],[114.08927,22.48156],[114.08929,22.48166],[114.08939,22.48178],[114.08943,22.48186],[114.08948,22.482],[114.08955,22.48206],[114.08965,22.48212],[114.0898,22.48229],[114.08998,22.48248],[114.09016,22.48269],[114.09033,22.48289],[114.09054,22.48323],[114.09085,22.48373],[114.09097,22.48398],[114.09106,22.48417],[114.09116,22.48431],[114.09129,22.48443],[114.09146,22.48452],[114.09166,22.4846],[114.09196,22.48475],[114.0921,22.48487],[114.09226,22.48501],[114.09235,22.48511],[114.09238,22.48521],[114.09237,22.48533],[114.09233,22.4854],[114.09232,22.48549],[114.0923,22.48553],[114.09221,22.4856],[114.09215,22.48569],[114.09211,22.4858],[114.09213,22.48595],[114.09218,22.48614],[114.09219,22.48622],[114.09218,22.48632],[114.09205,22.48688],[114.09203,22.48701],[114.09206,22.4871],[114.09208,22.48719],[114.09211,22.4873],[114.09211,22.48739],[114.09208,22.4875],[114.09208,22.48759],[114.0921,22.48771],[114.09213,22.48785],[114.09217,22.48797],[114.09223,22.4881],[114.09229,22.4882],[114.09236,22.48829],[114.09239,22.48843],[114.09243,22.48856],[114.09244,22.48865],[114.09244,22.4888],[114.09238,22.48932],[114.09235,22.48989],[114.09237,22.49011],[114.0924,22.49022],[114.09252,22.49035],[114.09259,22.49046],[114.0926,22.49051],[114.09261,22.49055],[114.09246,22.49075],[114.0924,22.49083],[114.09237,22.49086],[114.09238,22.4909],[114.09238,22.4909],[114.09241,22.49106],[114.09242,22.49107],[114.09244,22.49113],[114.09246,22.49121],[114.09246,22.49123],[114.09246,22.49125],[114.09245,22.4913],[114.09245,22.49132],[114.09245,22.49133],[114.09246,22.49134],[114.09248,22.49136],[114.09249,22.49137],[114.09252,22.49139],[114.09255,22.49142],[114.09257,22.49143],[114.0926,22.49146],[114.09262,22.49148],[114.09267,22.4915],[114.09273,22.49153],[114.09276,22.49155],[114.0928,22.49158],[114.09285,22.49163],[114.09285,22.49163],[114.09287,22.49165],[114.09288,22.49167],[114.09289,22.49171],[114.09291,22.49174],[114.09292,22.49175],[114.09295,22.49178],[114.09298,22.49179],[114.09302,22.49181],[114.09307,22.49183],[114.09309,22.49184],[114.09311,22.49184],[114.09313,22.49186],[114.09315,22.49187],[114.09318,22.49189],[114.09321,22.49192],[114.09322,22.49194],[114.09323,22.49196],[114.09323,22.49197],[114.09323,22.49198],[114.09322,22.492],[114.0932,22.49203],[114.09319,22.49204],[114.09311,22.4921],[114.09307,22.49212],[114.09298,22.49217],[114.09287,22.49222],[114.09281,22.49225],[114.09267,22.49228],[114.0926,22.4923],[114.09252,22.4923],[114.0925,22.49231],[114.09248,22.49232],[114.09246,22.49233],[114.0924,22.49235],[114.09239,22.49235],[114.09238,22.49235],[114.09236,22.49234],[114.09235,22.49234],[114.09234,22.49234],[114.09233,22.49235],[114.09232,22.49238],[114.09232,22.49239],[114.09232,22.49244],[114.09233,22.49249],[114.09233,22.49253],[114.09232,22.49259],[114.09232,22.49266],[114.09232,22.49268],[114.09232,22.49269],[114.09234,22.49272],[114.09234,22.49273],[114.09234,22.49277],[114.09236,22.4928],[114.09236,22.49283],[114.09236,22.49285],[114.09236,22.49287],[114.09236,22.49291],[114.09236,22.49292],[114.09234,22.49293],[114.09232,22.49294],[114.09226,22.49296],[114.09218,22.49301],[114.09216,22.49302],[114.09215,22.49304],[114.09213,22.49308],[114.0921,22.49311],[114.09208,22.49313],[114.09205,22.49316],[114.09197,22.49321],[114.09194,22.49324],[114.09193,22.49326],[114.09189,22.49333],[114.09188,22.49335],[114.09186,22.49341],[114.09185,22.49343],[114.09184,22.49345],[114.0918,22.4935],[114.09179,22.49352],[114.09178,22.49354],[114.09177,22.49358],[114.09176,22.4936],[114.09175,22.49363],[114.09174,22.49366],[114.09174,22.49368],[114.09174,22.49369],[114.09171,22.49374],[114.09171,22.49375],[114.09171,22.49376],[114.0917,22.49381],[114.09169,22.49384],[114.09168,22.49388],[114.09164,22.49393],[114.09159,22.49398],[114.09158,22.49399],[114.09157,22.494],[114.09156,22.49401],[114.09153,22.49403],[114.09148,22.49407],[114.09146,22.49409],[114.09145,22.4941],[114.09144,22.49411],[114.09143,22.49413],[114.09135,22.49426],[114.09139,22.49439],[114.0914,22.49441],[114.09141,22.49444],[114.09143,22.49447],[114.09146,22.49454],[114.09148,22.49457],[114.09151,22.49462],[114.09153,22.49465],[114.09154,22.49468],[114.09155,22.49469],[114.09156,22.49473],[114.09158,22.49483],[114.09158,22.49484],[114.09159,22.49488],[114.09168,22.49502],[114.09168,22.49503],[114.09162,22.49503],[114.09156,22.49503],[114.09152,22.49503],[114.09147,22.49502],[114.09142,22.49501],[114.0914,22.49502],[114.09135,22.49501],[114.09133,22.49501],[114.09129,22.49501],[114.09125,22.49501],[114.09123,22.49502],[114.09122,22.49503],[114.09121,22.49504],[114.09117,22.49506],[114.09115,22.49508],[114.09113,22.49509],[114.09109,22.49512],[114.09107,22.49512],[114.09101,22.49516],[114.09101,22.49517],[114.09098,22.4952],[114.09091,22.49526],[114.09087,22.49531],[114.09085,22.49534],[114.09084,22.49536],[114.09082,22.4954],[114.09079,22.49549],[114.09077,22.49554],[114.09076,22.49558],[114.09076,22.4956],[114.09075,22.49561],[114.09074,22.49563],[114.09072,22.49565],[114.0907,22.49568],[114.09067,22.49571],[114.0906,22.49575],[114.09058,22.49576],[114.09054,22.49577],[114.0905,22.4958],[114.09044,22.49584],[114.09042,22.49585],[114.09038,22.49588],[114.09037,22.49589],[114.09033,22.49603],[114.09031,22.49606],[114.09031,22.49607],[114.0903,22.49609],[114.09029,22.4961],[114.09027,22.49611],[114.09025,22.49612],[114.09024,22.49613],[114.09023,22.49613],[114.09021,22.49614],[114.09019,22.49615],[114.09017,22.49615],[114.09016,22.49615],[114.09015,22.49616],[114.09011,22.49616],[114.09007,22.49616],[114.09004,22.49616],[114.09003,22.49617],[114.09,22.49617],[114.08998,22.49618],[114.08993,22.4962],[114.08989,22.49621],[114.08986,22.49621],[114.08984,22.49622],[114.08983,22.49622],[114.0898,22.49624],[114.08977,22.49625],[114.08975,22.49627],[114.08973,22.49628],[114.08971,22.49631],[114.08967,22.49636],[114.08965,22.4964],[114.08962,22.49646],[114.08961,22.49649],[114.08961,22.4965],[114.08961,22.49652],[114.08962,22.49654],[114.08967,22.49661],[114.08968,22.49662],[114.08978,22.49671],[114.0898,22.49673],[114.08982,22.49676],[114.08983,22.49677],[114.0899,22.49684],[114.08991,22.49684],[114.08992,22.49685],[114.08994,22.49688],[114.08997,22.49691],[114.09,22.49695],[114.09003,22.49697],[114.09009,22.49699],[114.09013,22.49702],[114.09022,22.49708],[114.09026,22.49711],[114.09027,22.49713],[114.0903,22.49719],[114.09033,22.49727],[114.09034,22.49732],[114.09034,22.49735],[114.09034,22.49737],[114.09034,22.4974],[114.09033,22.49743],[114.09029,22.49749],[114.09027,22.49755],[114.09027,22.49758],[114.09026,22.49763],[114.09025,22.49766],[114.09024,22.49768],[114.09022,22.4977],[114.09021,22.49772],[114.0902,22.4978],[114.09019,22.49788],[114.09018,22.49791],[114.09018,22.49793],[114.09018,22.49796],[114.09019,22.49801],[114.09019,22.49803],[114.09018,22.49809],[114.09018,22.49812],[114.09018,22.49816],[114.09019,22.49832],[114.09019,22.49838],[114.0902,22.49841],[114.0902,22.49843],[114.09021,22.49845],[114.09022,22.49847],[114.09027,22.49851],[114.09031,22.49854],[114.09038,22.49861],[114.09073,22.49897],[114.09077,22.49902],[114.09079,22.49904],[114.09081,22.49906],[114.09085,22.49909],[114.09089,22.49912],[114.09092,22.49915],[114.09093,22.49916],[114.09093,22.49918],[114.09094,22.4992],[114.09096,22.49928],[114.09098,22.49931],[114.09098,22.49933],[114.091,22.49939],[114.09103,22.49945],[114.09106,22.49951],[114.09106,22.49954],[114.09107,22.49958],[114.09107,22.49968],[114.09108,22.49973],[114.09109,22.49982],[114.09111,22.49994],[114.09114,22.50002],[114.09116,22.50008],[114.09117,22.5001],[114.0912,22.50016],[114.09122,22.5002],[114.09124,22.50022],[114.09124,22.50024],[114.09126,22.50036],[114.09128,22.50042],[114.0913,22.50049],[114.09132,22.50052],[114.09133,22.50055],[114.09143,22.50069],[114.09156,22.50087],[114.09158,22.50091],[114.09159,22.50094],[114.09163,22.50099],[114.09165,22.50103],[114.09168,22.50107],[114.09169,22.50109],[114.09169,22.50111],[114.0917,22.50113],[114.0917,22.50115],[114.09169,22.50116],[114.09168,22.50123],[114.09165,22.50133],[114.09165,22.50137],[114.09164,22.5014],[114.09162,22.50146],[114.09161,22.50152],[114.09159,22.50161],[114.09159,22.50164],[114.09162,22.50174],[114.09163,22.50185],[114.09163,22.5019],[114.09163,22.50194],[114.09163,22.50196],[114.09162,22.50198],[114.09162,22.502],[114.09161,22.50201],[114.09157,22.50203],[114.09155,22.50205],[114.0915,22.50212],[114.09146,22.50217],[114.09137,22.50226],[114.09133,22.50231],[114.09127,22.50238],[114.09125,22.50241],[114.09121,22.50246],[114.09115,22.50257],[114.0911,22.50266],[114.09109,22.50268],[114.09108,22.5027],[114.09103,22.50281],[114.09098,22.50294],[114.09096,22.50301],[114.09096,22.50302],[114.09096,22.50304],[114.09083,22.50346],[114.09065,22.50406],[114.09062,22.50419],[114.09037,22.5042],[114.0902,22.50421],[114.08982,22.50423],[114.08948,22.50423],[114.08947,22.50423],[114.08948,22.50425],[114.08949,22.50451],[114.08949,22.50454],[114.08937,22.50454],[114.08937,22.50456],[114.08936,22.50457],[114.08935,22.50459],[114.08935,22.50461],[114.08934,22.50463],[114.08934,22.50464],[114.08934,22.50466],[114.08935,22.5047],[114.08937,22.50476],[114.08938,22.50479],[114.08939,22.50481],[114.08941,22.50483],[114.0895,22.505],[114.08953,22.50505],[114.08957,22.50511],[114.08959,22.50515],[114.08969,22.50534],[114.08971,22.50537],[114.08974,22.5054],[114.08976,22.50543],[114.08979,22.50545],[114.08988,22.50552],[114.08991,22.50555],[114.08994,22.50557],[114.08996,22.50559],[114.08998,22.50561],[114.09,22.50563],[114.09001,22.50565],[114.09003,22.50567],[114.09004,22.5057],[114.09006,22.50575],[114.0901,22.50588],[114.09013,22.50597],[114.09015,22.50603],[114.09019,22.50615],[114.09041,22.50681],[114.09042,22.50686],[114.09043,22.5069],[114.09044,22.50691],[114.09044,22.50693],[114.09045,22.50696],[114.09046,22.50698],[114.09046,22.50699],[114.09046,22.50701],[114.09046,22.50702],[114.09047,22.50703],[114.09047,22.50705],[114.09047,22.50707],[114.09046,22.50708],[114.09046,22.50712],[114.09045,22.50713],[114.09045,22.50713],[114.09045,22.50714],[114.09045,22.50715],[114.09045,22.50715],[114.09044,22.50716],[114.09044,22.50719],[114.09043,22.5072],[114.09043,22.50721],[114.09042,22.50723],[114.09041,22.50724],[114.0904,22.50725],[114.09038,22.50727],[114.09037,22.50727],[114.09037,22.50727],[114.09036,22.50728],[114.09035,22.50728],[114.09034,22.50729],[114.09033,22.5073],[114.09031,22.50732],[114.0903,22.50733],[114.09029,22.50733],[114.09029,22.50734],[114.09028,22.50736],[114.09027,22.50738],[114.09025,22.5074],[114.09024,22.50742],[114.09022,22.50746],[114.09019,22.50751],[114.09018,22.50754],[114.09016,22.50757],[114.09015,22.5076],[114.09013,22.50762],[114.09013,22.50763],[114.09012,22.50765],[114.09011,22.50766],[114.0901,22.50768],[114.09009,22.5077],[114.09007,22.50772],[114.09007,22.50772],[114.09004,22.50775],[114.09002,22.50776],[114.09001,22.50777],[114.08998,22.50778],[114.08998,22.5078],[114.08998,22.50782],[114.08998,22.50783],[114.08998,22.50784],[114.08998,22.50785],[114.08999,22.50787],[114.08999,22.50788],[114.09,22.50789],[114.09001,22.50791],[114.09003,22.50794],[114.09006,22.50797],[114.09008,22.508],[114.09011,22.50805],[114.09014,22.50809],[114.09016,22.50813],[114.09018,22.50817],[114.0902,22.50822],[114.09023,22.50829],[114.09025,22.50833],[114.09027,22.50836],[114.09028,22.50838],[114.0903,22.50839],[114.09031,22.5084],[114.09033,22.50841],[114.0904,22.50843],[114.09045,22.50845],[114.09048,22.50846],[114.09052,22.50846],[114.09062,22.50848],[114.09073,22.50849],[114.09086,22.50851],[114.0909,22.50852],[114.09096,22.50853],[114.091,22.50854],[114.09105,22.50854],[114.0911,22.50854],[114.09116,22.50854],[114.09119,22.50854],[114.0912,22.50854],[114.09124,22.50854],[114.09129,22.50854],[114.09136,22.50854],[114.09143,22.50856],[114.09148,22.50857],[114.09152,22.50859],[114.09159,22.50864],[114.09161,22.50865],[114.09162,22.50867],[114.09163,22.50868],[114.09164,22.50868],[114.09166,22.5087],[114.09167,22.50872],[114.09168,22.50874],[114.09168,22.50876],[114.09169,22.50878],[114.0917,22.50879],[114.09171,22.5088],[114.09172,22.50881],[114.09173,22.50881],[114.09176,22.50882],[114.09178,22.50882],[114.09179,22.50882],[114.09192,22.50884],[114.09207,22.50885],[114.09216,22.50886],[114.09218,22.50886],[114.09221,22.50887],[114.09224,22.50889],[114.09225,22.50889],[114.09225,22.50889],[114.09227,22.5089],[114.0923,22.50893],[114.09231,22.50894],[114.09233,22.50896],[114.09241,22.50906],[114.09245,22.50911],[114.09252,22.50919],[114.09252,22.5092],[114.09255,22.50923],[114.09257,22.50928],[114.09259,22.50934],[114.0926,22.50937],[114.09261,22.50939],[114.09262,22.50942],[114.09262,22.50943],[114.09263,22.50947],[114.09263,22.50949],[114.09264,22.50952],[114.09265,22.50955],[114.09265,22.50957],[114.09266,22.50959],[114.09267,22.50962],[114.09267,22.50964],[114.09268,22.50966],[114.09269,22.50968],[114.0927,22.5097],[114.0927,22.50972],[114.09272,22.50975],[114.09274,22.50979],[114.09275,22.5098],[114.09275,22.50981],[114.09279,22.50986],[114.0928,22.50988],[114.09282,22.5099],[114.09284,22.50993],[114.09287,22.50996],[114.09288,22.50997],[114.09289,22.50998],[114.09291,22.51],[114.09293,22.51002],[114.09296,22.51006],[114.09299,22.5101],[114.09301,22.51012],[114.09302,22.51014],[114.09302,22.51015],[114.09304,22.51018],[114.09305,22.5102],[114.09306,22.51022],[114.09307,22.51024],[114.09308,22.51025],[114.09309,22.51026],[114.0931,22.51028],[114.0931,22.51029],[114.0931,22.5103],[114.0931,22.51032],[114.0931,22.51036],[114.09309,22.51038],[114.09309,22.51041],[114.09308,22.51044],[114.09306,22.51047],[114.09306,22.51048],[114.09305,22.51051],[114.09305,22.51052],[114.09305,22.51053],[114.09305,22.51054],[114.09305,22.51056],[114.09305,22.51057],[114.09304,22.51059],[114.09303,22.5106],[114.09302,22.51062],[114.093,22.51064],[114.09299,22.51065],[114.09298,22.51066],[114.09298,22.51066],[114.09294,22.51068],[114.09292,22.51069],[114.09291,22.5107],[114.09289,22.51071],[114.09286,22.51073],[114.09281,22.51076],[114.09279,22.51077],[114.09277,22.51078],[114.09275,22.51079],[114.09272,22.51081],[114.0927,22.51083],[114.09266,22.51085],[114.09264,22.51086],[114.09263,22.51087],[114.0926,22.51088],[114.09258,22.5109],[114.09255,22.51091],[114.09252,22.51094],[114.09249,22.51097],[114.09246,22.51099],[114.09227,22.51116],[114.09223,22.51119],[114.0922,22.51123],[114.09217,22.51126],[114.09213,22.5113],[114.0921,22.51133],[114.09208,22.51137],[114.09205,22.51141],[114.09202,22.51145],[114.09199,22.51149],[114.09196,22.51154],[114.09185,22.51172],[114.09182,22.51178],[114.09181,22.5118],[114.09174,22.51193],[114.09173,22.51197],[114.0916,22.51228],[114.09154,22.51251],[114.09148,22.51265],[114.09145,22.51281],[114.09143,22.51291],[114.09142,22.51304],[114.09142,22.51306],[114.09142,22.51311],[114.09143,22.51316],[114.09143,22.51321],[114.09144,22.51326],[114.09145,22.5133],[114.09146,22.51336],[114.09147,22.51341],[114.09149,22.51347],[114.09153,22.5136],[114.09155,22.51372],[114.09156,22.51375],[114.09156,22.51377],[114.09157,22.51382],[114.09157,22.51385],[114.09157,22.51388],[114.09156,22.51391],[114.09156,22.51393],[114.09155,22.51396],[114.09154,22.51399],[114.09149,22.51412],[114.09143,22.51428],[114.0914,22.51435],[114.09139,22.51439],[114.09137,22.51448],[114.09136,22.51452],[114.09135,22.51454],[114.09134,22.51456],[114.09133,22.51457],[114.09132,22.51459],[114.09129,22.51463],[114.09128,22.51464],[114.09126,22.51466],[114.09123,22.51469],[114.09122,22.5147],[114.0912,22.51471],[114.09118,22.51473],[114.09117,22.51473],[114.09115,22.51474],[114.09112,22.51475],[114.09105,22.51477],[114.09098,22.51479],[114.09097,22.51479],[114.09095,22.5148],[114.09091,22.51481],[114.09089,22.51481],[114.09089,22.51482],[114.09086,22.51482],[114.09084,22.51483],[114.09082,22.51483],[114.09081,22.51484],[114.0908,22.51484],[114.09078,22.51485],[114.09076,22.51487],[114.09075,22.51488],[114.09074,22.5149],[114.09073,22.51491],[114.09072,22.51492],[114.09071,22.51494],[114.0907,22.51496],[114.09069,22.51497],[114.09068,22.51498],[114.09068,22.51499],[114.09067,22.515],[114.09067,22.51502],[114.09067,22.51502],[114.09066,22.51508],[114.09066,22.51509],[114.09065,22.51512],[114.09064,22.51513],[114.09063,22.51517],[114.09063,22.51518],[114.09063,22.5152],[114.09062,22.51522],[114.09062,22.51525],[114.09061,22.51525],[114.09062,22.51527],[114.09062,22.51529],[114.09063,22.51532],[114.09065,22.51537],[114.09066,22.51539],[114.09066,22.5154],[114.09067,22.51542],[114.09069,22.51544],[114.0907,22.51547],[114.09072,22.51549],[114.09072,22.5155],[114.09073,22.51551],[114.09075,22.51554],[114.09076,22.51555],[114.09076,22.51555],[114.09077,22.51556],[114.09078,22.51557],[114.09079,22.51559],[114.09082,22.51561],[114.09084,22.51563],[114.09085,22.51564],[114.09086,22.51565],[114.09087,22.51566],[114.09089,22.51567],[114.0909,22.51569],[114.09092,22.51569],[114.09095,22.51571],[114.09096,22.51572],[114.09098,22.51574],[114.09101,22.51576],[114.09102,22.51577],[114.09104,22.51579],[114.09104,22.51579],[114.09105,22.5158],[114.09105,22.51581],[114.09107,22.51583],[114.09108,22.51585],[114.09108,22.51585],[114.09109,22.51586],[114.09109,22.51587],[114.09109,22.51588],[114.09111,22.51592],[114.09112,22.51594],[114.09112,22.51595],[114.09113,22.51595],[114.09113,22.51596],[114.09113,22.51598],[114.09113,22.51601],[114.09113,22.51602],[114.09113,22.51605],[114.09113,22.51607],[114.09112,22.5161],[114.09112,22.51611],[114.09111,22.51615],[114.0911,22.51617],[114.0911,22.51618],[114.0911,22.5162],[114.0911,22.51622],[114.09109,22.51624],[114.09109,22.51624],[114.09109,22.51626],[114.0911,22.51627],[114.0911,22.51628],[114.0911,22.51631],[114.09112,22.51633],[114.09113,22.51635],[114.09113,22.51636],[114.09113,22.51637],[114.09113,22.51637],[114.09113,22.51638],[114.09114,22.51639],[114.09114,22.51641],[114.09115,22.51642],[114.09115,22.51643],[114.09116,22.51645],[114.09118,22.51647],[114.09119,22.51648],[114.09121,22.51649],[114.09122,22.5165],[114.09124,22.51652],[114.09126,22.51653],[114.09127,22.51653],[114.09129,22.51654],[114.09132,22.51654],[114.09133,22.51654],[114.09134,22.51654],[114.09135,22.51654],[114.09134,22.51656],[114.09133,22.51656],[114.09132,22.51658],[114.09132,22.51658],[114.09131,22.51659],[114.0913,22.51662],[114.0913,22.51663],[114.0913,22.51664],[114.0913,22.51667],[114.0913,22.51669],[114.09131,22.51672],[114.09132,22.51676],[114.09132,22.51677],[114.09133,22.51678],[114.09134,22.51682],[114.09135,22.51684],[114.09135,22.51686],[114.09135,22.51688],[114.09135,22.5169],[114.09135,22.51692],[114.09135,22.51693],[114.09136,22.51695],[114.09135,22.51698],[114.09135,22.51701],[114.09134,22.51704],[114.09133,22.51707],[114.09132,22.51711],[114.09132,22.51713],[114.09131,22.51716],[114.09131,22.51719],[114.0913,22.51721],[114.0913,22.51722],[114.09129,22.51725],[114.09127,22.51729],[114.09126,22.51731],[114.09125,22.51734],[114.09125,22.51736],[114.09125,22.51737],[114.09124,22.51739],[114.09123,22.51742],[114.09122,22.51745],[114.09122,22.51746],[114.09121,22.51746],[114.09121,22.51747],[114.0912,22.51748],[114.0912,22.51749],[114.09119,22.5175],[114.09119,22.51751],[114.09119,22.51751],[114.09119,22.51752],[114.09118,22.51755],[114.09118,22.51755],[114.09118,22.51756],[114.09118,22.51758],[114.09118,22.51759],[114.09118,22.5176],[114.09118,22.51762],[114.09118,22.51763],[114.09118,22.51765],[114.09119,22.51767],[114.09119,22.51769],[114.09119,22.51771],[114.09119,22.51772],[114.09119,22.51773],[114.09119,22.51773],[114.09119,22.51774],[114.09123,22.51783],[114.09125,22.5179],[114.09136,22.51823],[114.09145,22.5185],[114.09165,22.51912],[114.09176,22.51946],[114.09174,22.51949],[114.09172,22.51952],[114.0917,22.51957],[114.0917,22.51962],[114.0917,22.51968],[114.0917,22.51975],[114.09171,22.51981],[114.09172,22.51989],[114.09174,22.51996],[114.09176,22.52002],[114.09178,22.52009],[114.09176,22.52017],[114.09176,22.52023],[114.09175,22.52031],[114.09172,22.52038],[114.0917,22.52047],[114.09166,22.52058],[114.09162,22.52066],[114.09158,22.52076],[114.09153,22.52084],[114.09147,22.52094],[114.0914,22.52106],[114.09134,22.52116],[114.09125,22.52129],[114.09116,22.52142],[114.09108,22.52155],[114.09099,22.52167],[114.09088,22.52178],[114.09074,22.52194],[114.09069,22.52199],[114.09058,22.52209],[114.09048,22.52217],[114.09037,22.52223],[114.09024,22.52231],[114.09009,22.52237],[114.08997,22.52241],[114.08986,22.52243],[114.08973,22.52245],[114.08959,22.52246],[114.08948,22.52246],[114.08938,22.52246],[114.08929,22.52246],[114.08915,22.52245],[114.08901,22.52244],[114.08891,22.52243],[114.08891,22.52243],[114.08878,22.52241],[114.08867,22.52238],[114.0886,22.52236],[114.08857,22.52235],[114.08843,22.52229],[114.0883,22.52223],[114.0882,22.52216],[114.08811,22.52209],[114.08789,22.52189],[114.08783,22.52183],[114.08775,22.52175],[114.08765,22.52163],[114.08754,22.52149],[114.08748,22.52143],[114.0874,22.52131],[114.08729,22.52115],[114.08712,22.52097],[114.08679,22.52064],[114.0864,22.52024],[114.0862,22.52004],[114.0861,22.51999],[114.08602,22.51993],[114.08598,22.51989],[114.08588,22.51982],[114.08573,22.51969],[114.08567,22.51963],[114.08554,22.51952],[114.08545,22.51945],[114.08526,22.51931],[114.08519,22.51927],[114.08513,22.51925],[114.08478,22.51922],[114.08469,22.51927]],[[114.05586,22.50327],[114.05586,22.50327],[114.05587,22.50327],[114.05587,22.50326],[114.05586,22.50326],[114.05586,22.50327]]]]},"properties":{"M_NM_Eng":"Non-Metro","SR_Eng":"NWNT","PDD_Cat_En":"Other Areas","PDD_Eng":"NWNT (Other Area)","M_NM_Tc":"非都會區","SR_Tc":"新界西北","PDD_Cat_Tc":"其他地區","PDD_Tc":"新界西北 (其他地區)","M_NM_Sc":"非都会区","SR_Sc_1":"新界西北","PDD_Cat_Sc":"其他地区","PDD_Sc":"新界西北 (其他地区)","Y2019_Popu":105400,"Y2019_Empl":36050,"Y2026_Popu":143050,"Y2026_Empl":38300,"Y2031_Popu":240600,"Y2031_Empl":65550}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[114.2873,22.23798],[114.28729,22.23799],[114.28724,22.23803],[114.28723,22.23803],[114.28722,22.23803],[114.28721,22.23803],[114.2872,22.23802],[114.2872,22.23801],[114.2872,22.238],[114.2872,22.23799],[114.28721,22.23797],[114.28724,22.23796],[114.28725,22.23795],[114.28727,22.23795],[114.2873,22.23794],[114.28732,22.23794],[114.28733,22.23795],[114.28734,22.23796],[114.28734,22.23797],[114.28734,22.23798],[114.28734,22.23798],[114.28731,22.23798],[114.2873,22.23798]]],[[[114.28684,22.23956],[114.28686,22.23958],[114.28686,22.23961],[114.28696,22.23967],[114.28698,22.23973],[114.28698,22.23975],[114.28695,22.23976],[114.28692,22.23973],[114.28681,22.2397],[114.28677,22.23966],[114.28675,22.23961],[114.28676,22.23958],[114.28682,22.23955],[114.28684,22.23956]]],[[[114.28672,22.23977],[114.28675,22.2398],[114.28674,22.23983],[114.28673,22.23984],[114.2867,22.23983],[114.28668,22.23981],[114.28668,22.23974],[114.28672,22.23977]]],[[[114.2909,22.24091],[114.29079,22.24105],[114.29077,22.24112],[114.29066,22.2412],[114.29061,22.24122],[114.2905,22.24123],[114.29039,22.2413],[114.29035,22.24129],[114.29033,22.24126],[114.29036,22.24118],[114.29042,22.2411],[114.29042,22.24104],[114.29046,22.24095],[114.29051,22.24088],[114.29058,22.24084],[114.29062,22.24084],[114.29068,22.24086],[114.29074,22.24085],[114.29084,22.24081],[114.2909,22.24082],[114.29091,22.24084],[114.2909,22.24091]]],[[[114.28065,22.24288],[114.2806,22.24283],[114.28056,22.24282],[114.28043,22.24283],[114.28033,22.2427],[114.28034,22.24263],[114.28047,22.24256],[114.2806,22.24254],[114.28064,22.2425],[114.28077,22.2425],[114.28081,22.24248],[114.28093,22.24247],[114.281,22.24248],[114.2811,22.24253],[114.281,22.24265],[114.28088,22.24271],[114.28089,22.24277],[114.28079,22.24276],[114.28065,22.24288]]],[[[114.29603,22.25319],[114.29603,22.25321],[114.29602,22.25323],[114.29601,22.25324],[114.29598,22.25325],[114.29596,22.25325],[114.29594,22.25324],[114.29594,22.25322],[114.29595,22.2532],[114.29597,22.2532],[114.29599,22.25319],[114.29601,22.25319],[114.29603,22.25319]]],[[[114.34753,22.25391],[114.34734,22.25416],[114.34733,22.2543],[114.34722,22.25465],[114.347,22.25488],[114.34614,22.25532],[114.34596,22.25534],[114.34585,22.2553],[114.34541,22.2551],[114.34539,22.25493],[114.34544,22.25485],[114.34579,22.25469],[114.34568,22.2546],[114.34543,22.25459],[114.34538,22.25454],[114.34539,22.25448],[114.34548,22.2544],[114.34559,22.25438],[114.34559,22.25433],[114.34553,22.25427],[114.34537,22.25423],[114.34534,22.2542],[114.34537,22.25413],[114.34583,22.25396],[114.34606,22.25375],[114.34653,22.25361],[114.3468,22.25361],[114.34714,22.25355],[114.34728,22.25348],[114.34738,22.25347],[114.34753,22.2536],[114.34753,22.25391]]],[[[114.35296,22.25808],[114.35285,22.25807],[114.35279,22.25798],[114.35264,22.25803],[114.35258,22.25801],[114.35264,22.25778],[114.35272,22.25764],[114.35286,22.2575],[114.35295,22.25739],[114.35317,22.25737],[114.35329,22.2575],[114.35322,22.25777],[114.3531,22.25789],[114.35307,22.25798],[114.35296,22.25808]]],[[[114.29578,22.25875],[114.2954,22.25882],[114.29514,22.25874],[114.295,22.25879],[114.29488,22.25876],[114.29481,22.2587],[114.2947,22.25849],[114.29468,22.25838],[114.29471,22.25824],[114.29466,22.25818],[114.29457,22.25823],[114.29457,22.25812],[114.29464,22.25805],[114.29433,22.25781],[114.2941,22.2577],[114.29389,22.25765],[114.29363,22.25767],[114.2935,22.25772],[114.2935,22.25773],[114.29335,22.25783],[114.29336,22.25788],[114.29334,22.25789],[114.29334,22.25784],[114.29316,22.25786],[114.29316,22.25843],[114.29335,22.25843],[114.29335,22.2585],[114.2931,22.2585],[114.29309,22.25787],[114.29303,22.25786],[114.29299,22.25791],[114.29295,22.25792],[114.2927,22.25768],[114.29252,22.25742],[114.29224,22.25721],[114.29205,22.25723],[114.29186,22.25733],[114.29169,22.25729],[114.29163,22.25723],[114.2915,22.25731],[114.29139,22.25719],[114.29148,22.2571],[114.29148,22.25704],[114.29122,22.25687],[114.29107,22.25668],[114.29092,22.25663],[114.29078,22.2565],[114.29065,22.25629],[114.29049,22.25621],[114.29037,22.25607],[114.29022,22.25582],[114.28979,22.25561],[114.28962,22.25552],[114.28947,22.25553],[114.28945,22.25542],[114.28919,22.25517],[114.28919,22.25495],[114.28924,22.25485],[114.28921,22.25476],[114.28926,22.25462],[114.28923,22.2545],[114.28875,22.25482],[114.28876,22.25483],[114.28872,22.25485],[114.28866,22.25478],[114.2887,22.25475],[114.28871,22.25476],[114.28918,22.25445],[114.28912,22.25439],[114.28907,22.25434],[114.28888,22.25422],[114.28869,22.25405],[114.28859,22.25404],[114.28851,22.25407],[114.28822,22.25395],[114.28799,22.25399],[114.28762,22.25382],[114.2874,22.25377],[114.28689,22.25375],[114.28681,22.25368],[114.28666,22.25379],[114.28635,22.2542],[114.28604,22.25446],[114.28589,22.25464],[114.28589,22.25474],[114.28548,22.25488],[114.28542,22.25478],[114.28511,22.25464],[114.28491,22.25474],[114.28471,22.25461],[114.28456,22.25451],[114.28443,22.25439],[114.28428,22.25412],[114.2841,22.25415],[114.28386,22.25415],[114.28383,22.25399],[114.28378,22.25391],[114.28367,22.25385],[114.28357,22.25384],[114.28338,22.2537],[114.28327,22.25352],[114.28314,22.25341],[114.28307,22.25321],[114.28298,22.25314],[114.28289,22.25313],[114.28261,22.25301],[114.28237,22.2527],[114.28243,22.25252],[114.28219,22.25213],[114.28214,22.25207],[114.28202,22.2519],[114.28202,22.25162],[114.28125,22.25121],[114.28126,22.25103],[114.28106,22.25073],[114.28102,22.25057],[114.28072,22.25021],[114.2806,22.25017],[114.2806,22.25002],[114.28052,22.2499],[114.28048,22.2498],[114.28043,22.24969],[114.28039,22.24957],[114.28039,22.24943],[114.28054,22.24897],[114.2807,22.24869],[114.28059,22.24859],[114.28072,22.24814],[114.2808,22.2479],[114.28068,22.2478],[114.28089,22.24757],[114.28088,22.24718],[114.28092,22.247],[114.28079,22.24676],[114.28082,22.24672],[114.28092,22.24654],[114.28082,22.24618],[114.28067,22.24595],[114.28047,22.24585],[114.28038,22.24586],[114.28018,22.24574],[114.28018,22.24544],[114.28035,22.24525],[114.28034,22.24514],[114.28042,22.24506],[114.28053,22.245],[114.28065,22.24493],[114.28082,22.24473],[114.28108,22.24461],[114.28115,22.24451],[114.28126,22.24445],[114.28131,22.24438],[114.28139,22.24436],[114.28148,22.24431],[114.28149,22.24422],[114.28168,22.24415],[114.28181,22.24406],[114.28197,22.24405],[114.28207,22.24395],[114.28202,22.24379],[114.2821,22.24374],[114.28214,22.24368],[114.28225,22.24351],[114.28239,22.24337],[114.28263,22.24332],[114.2826,22.24324],[114.28265,22.2432],[114.2827,22.24325],[114.2827,22.24332],[114.28268,22.24336],[114.28268,22.24346],[114.28271,22.24351],[114.28277,22.24357],[114.28285,22.24354],[114.28284,22.24337],[114.28291,22.24325],[114.28299,22.24319],[114.28319,22.24316],[114.28325,22.24319],[114.28329,22.24325],[114.28346,22.24319],[114.28351,22.24306],[114.28357,22.24299],[114.28399,22.24291],[114.28421,22.24273],[114.28431,22.24294],[114.28445,22.24283],[114.28453,22.24268],[114.28463,22.24263],[114.28477,22.2428],[114.28496,22.24254],[114.28514,22.24243],[114.2852,22.24245],[114.28524,22.24253],[114.28528,22.24269],[114.2854,22.24255],[114.28546,22.24245],[114.28567,22.24247],[114.28565,22.24226],[114.28576,22.24222],[114.28597,22.24229],[114.28614,22.24238],[114.28618,22.24252],[114.28633,22.24245],[114.28658,22.24234],[114.28678,22.24227],[114.28671,22.24213],[114.28672,22.24199],[114.28707,22.24192],[114.28738,22.24205],[114.2875,22.24192],[114.28765,22.24187],[114.28764,22.24174],[114.28776,22.24177],[114.28788,22.24158],[114.288,22.24132],[114.28806,22.24107],[114.28806,22.24097],[114.28798,22.24071],[114.28785,22.24046],[114.28776,22.24041],[114.28765,22.24029],[114.28731,22.24015],[114.28713,22.24],[114.28699,22.23963],[114.28689,22.23956],[114.28683,22.2395],[114.28668,22.23942],[114.28667,22.2394],[114.2867,22.23938],[114.28679,22.23942],[114.28685,22.23938],[114.28672,22.23891],[114.28663,22.23892],[114.28662,22.23876],[114.28667,22.23876],[114.28674,22.23856],[114.28685,22.23846],[114.28685,22.23836],[114.28727,22.23853],[114.28718,22.23828],[114.28728,22.23821],[114.28748,22.23808],[114.28751,22.23803],[114.2877,22.23803],[114.28778,22.23812],[114.28782,22.23816],[114.28797,22.23816],[114.28792,22.23799],[114.28785,22.2379],[114.28783,22.23781],[114.28787,22.23766],[114.2879,22.23756],[114.28794,22.23751],[114.28802,22.23752],[114.28828,22.23768],[114.28856,22.23771],[114.28853,22.23761],[114.28875,22.23764],[114.28897,22.23773],[114.28918,22.23797],[114.28912,22.23803],[114.28921,22.23817],[114.28914,22.23836],[114.28914,22.23851],[114.28913,22.23862],[114.28914,22.23873],[114.2892,22.23879],[114.28927,22.23876],[114.28942,22.23857],[114.28966,22.2386],[114.28975,22.23875],[114.28982,22.23893],[114.28992,22.23941],[114.2899,22.23974],[114.28978,22.23999],[114.28979,22.24025],[114.28965,22.24054],[114.28952,22.2406],[114.28943,22.24068],[114.28934,22.24083],[114.28896,22.2411],[114.28875,22.24109],[114.28886,22.24139],[114.28907,22.24144],[114.28906,22.24148],[114.28914,22.24152],[114.28929,22.24157],[114.28935,22.24145],[114.28948,22.24139],[114.28968,22.24148],[114.28971,22.24156],[114.28967,22.242],[114.2897,22.24203],[114.2898,22.24192],[114.28981,22.24177],[114.28985,22.24169],[114.29002,22.24155],[114.29015,22.2415],[114.29023,22.24156],[114.2903,22.24165],[114.29021,22.24181],[114.29025,22.24183],[114.29039,22.24181],[114.29039,22.24187],[114.29039,22.24191],[114.29025,22.242],[114.2902,22.242],[114.29014,22.24202],[114.29014,22.24209],[114.2901,22.24215],[114.28988,22.24216],[114.28985,22.24228],[114.28995,22.2424],[114.28991,22.24248],[114.28998,22.24255],[114.28999,22.24262],[114.29026,22.2429],[114.29036,22.24289],[114.29059,22.2429],[114.29081,22.2429],[114.29094,22.24301],[114.29107,22.24285],[114.29128,22.24291],[114.29133,22.24287],[114.29135,22.24282],[114.29134,22.24266],[114.2913,22.24241],[114.29129,22.24231],[114.29139,22.24216],[114.29153,22.24204],[114.29158,22.24202],[114.29186,22.24232],[114.29183,22.24241],[114.29168,22.24252],[114.29171,22.24271],[114.29165,22.24286],[114.29184,22.24289],[114.2919,22.24286],[114.29189,22.2428],[114.29191,22.24266],[114.29206,22.24245],[114.29216,22.24238],[114.29225,22.24239],[114.2923,22.24236],[114.29252,22.24207],[114.29265,22.24201],[114.29277,22.24203],[114.29281,22.24209],[114.29285,22.24226],[114.29278,22.24236],[114.29279,22.24245],[114.29288,22.24248],[114.29289,22.24265],[114.29294,22.24273],[114.29323,22.24276],[114.29327,22.2428],[114.29337,22.24248],[114.29341,22.24235],[114.29341,22.24219],[114.29355,22.24212],[114.29371,22.24208],[114.29375,22.24198],[114.29386,22.24197],[114.2939,22.24192],[114.29383,22.24186],[114.29385,22.24176],[114.29432,22.24161],[114.29436,22.24163],[114.29439,22.24179],[114.29444,22.24188],[114.29449,22.24189],[114.29473,22.24161],[114.29493,22.24158],[114.29526,22.24168],[114.29527,22.24163],[114.29518,22.24161],[114.29516,22.24156],[114.29519,22.24149],[114.29515,22.24138],[114.29523,22.24133],[114.29529,22.24136],[114.29537,22.24149],[114.29545,22.24152],[114.29546,22.24149],[114.2955,22.24148],[114.29553,22.24158],[114.29565,22.24157],[114.29581,22.24169],[114.29578,22.24175],[114.29583,22.24187],[114.29581,22.24194],[114.29586,22.242],[114.29598,22.24209],[114.29604,22.24228],[114.29594,22.24237],[114.29589,22.24256],[114.29586,22.24258],[114.29582,22.24258],[114.29581,22.24255],[114.29584,22.24249],[114.29579,22.24237],[114.29577,22.2423],[114.29578,22.24214],[114.29576,22.24206],[114.29568,22.242],[114.2956,22.242],[114.29552,22.24205],[114.29564,22.24235],[114.29558,22.24247],[114.29559,22.24267],[114.29555,22.24289],[114.29557,22.24289],[114.2956,22.2429],[114.29563,22.24294],[114.29565,22.24298],[114.29564,22.24299],[114.2956,22.24299],[114.29561,22.24303],[114.29577,22.24308],[114.29588,22.24319],[114.29595,22.24319],[114.29604,22.24323],[114.29615,22.24338],[114.2962,22.24361],[114.29608,22.24395],[114.29612,22.24415],[114.29619,22.24419],[114.29632,22.24408],[114.29643,22.24411],[114.29645,22.24419],[114.29641,22.24434],[114.29642,22.24443],[114.29647,22.24447],[114.29663,22.24426],[114.29665,22.24444],[114.29652,22.2447],[114.29648,22.24498],[114.29633,22.24536],[114.29639,22.24543],[114.29649,22.2456],[114.29641,22.24587],[114.29631,22.24602],[114.29608,22.24611],[114.29596,22.24627],[114.29586,22.24629],[114.29563,22.24648],[114.2956,22.24657],[114.2956,22.2466],[114.29579,22.2467],[114.2958,22.24671],[114.29587,22.24682],[114.29591,22.24701],[114.29588,22.24711],[114.29604,22.24714],[114.29601,22.24721],[114.29594,22.24721],[114.2959,22.2473],[114.29596,22.24757],[114.29602,22.24764],[114.29615,22.24775],[114.2961,22.24778],[114.29618,22.24782],[114.29611,22.24786],[114.29613,22.2479],[114.29631,22.24793],[114.29648,22.24804],[114.29666,22.24792],[114.29677,22.24789],[114.29676,22.24779],[114.29689,22.24774],[114.29693,22.24775],[114.29694,22.24771],[114.29715,22.24769],[114.29725,22.24778],[114.29746,22.24776],[114.29763,22.24777],[114.2977,22.24774],[114.29784,22.24763],[114.29797,22.24763],[114.29814,22.2476],[114.29818,22.24764],[114.29821,22.24768],[114.2983,22.24781],[114.29827,22.24802],[114.29833,22.24821],[114.29823,22.2484],[114.29831,22.24854],[114.29833,22.24866],[114.29831,22.24875],[114.29814,22.24898],[114.29811,22.24935],[114.29814,22.24939],[114.29814,22.24941],[114.29815,22.24942],[114.29817,22.24943],[114.29819,22.24946],[114.29819,22.24948],[114.29818,22.2495],[114.29819,22.2495],[114.2982,22.24949],[114.29822,22.24948],[114.29822,22.24946],[114.29823,22.24945],[114.29824,22.24944],[114.29827,22.24943],[114.29829,22.24942],[114.29832,22.2494],[114.29836,22.24939],[114.29839,22.24938],[114.29842,22.24938],[114.29843,22.24939],[114.29845,22.24941],[114.29845,22.24943],[114.29841,22.2495],[114.29839,22.24953],[114.2984,22.24955],[114.29841,22.24956],[114.29843,22.24958],[114.29846,22.2496],[114.29847,22.24962],[114.29847,22.24964],[114.29846,22.24965],[114.29828,22.24966],[114.29835,22.24986],[114.29843,22.25004],[114.29818,22.25043],[114.29814,22.25047],[114.29776,22.25058],[114.29768,22.25048],[114.29748,22.25047],[114.29736,22.25059],[114.29729,22.25064],[114.29703,22.25056],[114.29694,22.25056],[114.29688,22.25063],[114.29678,22.25059],[114.29656,22.25074],[114.29622,22.25118],[114.29618,22.25137],[114.29626,22.25144],[114.29632,22.25143],[114.29635,22.25152],[114.29641,22.25141],[114.29645,22.25142],[114.29652,22.25152],[114.29653,22.2516],[114.2966,22.25159],[114.29657,22.25167],[114.29666,22.25171],[114.29652,22.25187],[114.29645,22.25188],[114.29643,22.25195],[114.29645,22.25203],[114.29655,22.25205],[114.29651,22.25215],[114.29646,22.25221],[114.2963,22.25229],[114.29625,22.25242],[114.2962,22.25245],[114.29607,22.25246],[114.29605,22.25238],[114.29611,22.25224],[114.29612,22.25216],[114.29611,22.25216],[114.29606,22.25221],[114.29601,22.2523],[114.29591,22.25237],[114.29581,22.25247],[114.29578,22.25256],[114.29567,22.25266],[114.29564,22.25277],[114.29566,22.25282],[114.29577,22.25272],[114.29579,22.25267],[114.29583,22.25265],[114.29596,22.25273],[114.29597,22.25277],[114.29593,22.25291],[114.29585,22.25294],[114.29582,22.25298],[114.29583,22.25307],[114.29576,22.25317],[114.29581,22.25332],[114.29583,22.25345],[114.29583,22.25353],[114.2958,22.25359],[114.29576,22.25362],[114.29569,22.25364],[114.29568,22.25372],[114.2956,22.25377],[114.29559,22.25385],[114.29566,22.25386],[114.29581,22.25371],[114.29587,22.25369],[114.29597,22.25368],[114.29598,22.2536],[114.29604,22.25357],[114.29613,22.25349],[114.29618,22.25346],[114.29625,22.25347],[114.29628,22.25352],[114.29641,22.2536],[114.29642,22.25364],[114.29634,22.2538],[114.29626,22.25388],[114.29599,22.25403],[114.29598,22.25406],[114.29598,22.2541],[114.296,22.25413],[114.29621,22.2541],[114.29626,22.2541],[114.29628,22.25415],[114.29628,22.25423],[114.29622,22.25438],[114.29614,22.2545],[114.29596,22.2546],[114.29583,22.25469],[114.29562,22.25474],[114.29557,22.25478],[114.2956,22.25489],[114.29589,22.25512],[114.29606,22.25495],[114.29613,22.25486],[114.29625,22.25465],[114.29638,22.25459],[114.29646,22.25457],[114.29663,22.2545],[114.29707,22.25437],[114.29727,22.25435],[114.29735,22.25438],[114.29742,22.25444],[114.29732,22.25462],[114.29748,22.25476],[114.29766,22.25464],[114.29769,22.25478],[114.29775,22.25489],[114.29764,22.25505],[114.29754,22.25527],[114.2974,22.25573],[114.29734,22.25584],[114.29698,22.25596],[114.29681,22.25594],[114.29644,22.25598],[114.29633,22.25601],[114.29619,22.25619],[114.29617,22.25626],[114.29591,22.25658],[114.29575,22.25662],[114.29553,22.25655],[114.29536,22.25656],[114.29534,22.25679],[114.2952,22.2572],[114.29547,22.25739],[114.29551,22.25744],[114.29551,22.25751],[114.29543,22.25756],[114.29537,22.25757],[114.29521,22.2577],[114.29511,22.25771],[114.2951,22.25775],[114.29515,22.2578],[114.29523,22.2578],[114.29528,22.25782],[114.29539,22.25777],[114.29564,22.25772],[114.29576,22.25773],[114.29588,22.25778],[114.29595,22.25787],[114.29601,22.25798],[114.29589,22.25805],[114.29595,22.25813],[114.29611,22.25824],[114.29616,22.2583],[114.29615,22.25844],[114.29609,22.2586],[114.29617,22.25865],[114.29617,22.25867],[114.29614,22.25868],[114.29603,22.25865],[114.29576,22.25862],[114.29578,22.25875]]],[[[114.35318,22.25947],[114.35324,22.2595],[114.35324,22.25961],[114.35321,22.25973],[114.35296,22.25987],[114.35277,22.25977],[114.35278,22.25969],[114.35299,22.25946],[114.35318,22.25947]]],[[[114.3517,22.26019],[114.35164,22.26031],[114.35129,22.26056],[114.35119,22.26056],[114.35114,22.26054],[114.35112,22.26039],[114.35104,22.26035],[114.35104,22.26022],[114.35117,22.26008],[114.35129,22.25999],[114.35139,22.25999],[114.35142,22.25995],[114.35151,22.25996],[114.35151,22.25987],[114.35145,22.25984],[114.3514,22.25969],[114.35142,22.25952],[114.3514,22.2595],[114.35141,22.25945],[114.35148,22.2594],[114.35151,22.25937],[114.35153,22.25932],[114.35155,22.25922],[114.35158,22.25918],[114.35158,22.25911],[114.35155,22.25907],[114.35149,22.25906],[114.35144,22.25906],[114.35138,22.25914],[114.35132,22.25915],[114.3513,22.25913],[114.3513,22.25907],[114.35133,22.25903],[114.35139,22.25898],[114.35142,22.25892],[114.35142,22.25885],[114.35136,22.25868],[114.35136,22.25864],[114.3514,22.25857],[114.35141,22.25844],[114.35138,22.2584],[114.35135,22.25834],[114.35141,22.25812],[114.35136,22.25794],[114.35134,22.2579],[114.35123,22.25792],[114.35104,22.258],[114.35098,22.258],[114.35098,22.25795],[114.35102,22.25788],[114.35098,22.25782],[114.35096,22.25773],[114.35094,22.25771],[114.35086,22.2577],[114.35085,22.25766],[114.35106,22.25732],[114.35123,22.25716],[114.35122,22.25712],[114.35094,22.25717],[114.35075,22.25725],[114.35056,22.2573],[114.35046,22.25738],[114.35032,22.25743],[114.35002,22.2577],[114.34991,22.25778],[114.34964,22.25791],[114.34943,22.25795],[114.34903,22.25814],[114.34865,22.25818],[114.34833,22.25817],[114.34789,22.25797],[114.34796,22.25781],[114.34798,22.2577],[114.34801,22.25764],[114.34825,22.2575],[114.3482,22.25715],[114.34801,22.25711],[114.34798,22.25706],[114.34798,22.25702],[114.34801,22.25697],[114.34799,22.25687],[114.34803,22.25677],[114.34806,22.25673],[114.34808,22.25662],[114.34804,22.25663],[114.34791,22.25673],[114.34788,22.25678],[114.34781,22.25678],[114.3478,22.25674],[114.34782,22.25656],[114.34789,22.25638],[114.34798,22.25627],[114.34798,22.25624],[114.34789,22.2562],[114.34788,22.25613],[114.34796,22.25591],[114.34805,22.25574],[114.34849,22.25522],[114.34853,22.25518],[114.34863,22.25511],[114.34864,22.25508],[114.34862,22.25503],[114.3486,22.25505],[114.34856,22.25506],[114.34854,22.25506],[114.34849,22.25508],[114.34844,22.25509],[114.34836,22.25507],[114.34836,22.25503],[114.34842,22.25499],[114.34848,22.25495],[114.34851,22.25491],[114.34851,22.25484],[114.34848,22.25477],[114.34837,22.25469],[114.34835,22.25463],[114.34836,22.2545],[114.34836,22.25444],[114.34833,22.25433],[114.34827,22.25426],[114.34825,22.25413],[114.34834,22.25397],[114.34841,22.25387],[114.34867,22.25363],[114.34918,22.25333],[114.34937,22.25317],[114.34961,22.25308],[114.3497,22.25308],[114.34971,22.25312],[114.34969,22.25341],[114.34937,22.25371],[114.34937,22.25376],[114.34955,22.25388],[114.34958,22.25391],[114.34948,22.25401],[114.34947,22.25416],[114.34946,22.25424],[114.34946,22.25427],[114.34949,22.2543],[114.34957,22.25431],[114.34975,22.25428],[114.34988,22.25427],[114.34989,22.25429],[114.34976,22.25437],[114.34971,22.2544],[114.34962,22.25441],[114.34957,22.25446],[114.34953,22.25467],[114.3496,22.25474],[114.34967,22.25471],[114.34974,22.25455],[114.35008,22.25441],[114.35041,22.25433],[114.35061,22.25436],[114.35063,22.25415],[114.35077,22.25403],[114.35116,22.25393],[114.35162,22.2537],[114.35181,22.25368],[114.3522,22.2538],[114.35242,22.25376],[114.35249,22.25383],[114.35251,22.25391],[114.35264,22.25405],[114.35269,22.25428],[114.3526,22.25441],[114.3526,22.25459],[114.35242,22.25486],[114.35218,22.25509],[114.35215,22.25514],[114.35218,22.25523],[114.3521,22.25544],[114.3518,22.25592],[114.35162,22.25596],[114.35163,22.25608],[114.35156,22.25622],[114.3516,22.25624],[114.35164,22.25622],[114.35197,22.25593],[114.35208,22.25586],[114.35219,22.25585],[114.35225,22.25596],[114.35215,22.25608],[114.35202,22.25617],[114.352,22.25623],[114.35209,22.25625],[114.35237,22.25615],[114.35242,22.25615],[114.35245,22.25608],[114.35263,22.25608],[114.35264,22.25597],[114.35268,22.25597],[114.35276,22.25599],[114.35288,22.25602],[114.35295,22.25605],[114.35297,22.25609],[114.35299,22.25622],[114.35298,22.2563],[114.35294,22.25636],[114.35286,22.25638],[114.35283,22.25648],[114.35279,22.25663],[114.35258,22.2568],[114.35231,22.25686],[114.35215,22.25695],[114.35196,22.25701],[114.35183,22.25703],[114.3519,22.25708],[114.35218,22.25704],[114.35251,22.25703],[114.35262,22.25704],[114.35265,22.25707],[114.35266,22.25716],[114.35248,22.25769],[114.3523,22.25805],[114.35225,22.25811],[114.35205,22.25822],[114.35185,22.25826],[114.35214,22.25837],[114.35219,22.25841],[114.3522,22.25849],[114.35215,22.25862],[114.35203,22.2587],[114.35199,22.25937],[114.35193,22.25956],[114.35207,22.25951],[114.35211,22.2596],[114.35215,22.25959],[114.35224,22.25943],[114.35229,22.25943],[114.35233,22.2595],[114.35229,22.25973],[114.35219,22.25996],[114.35196,22.26022],[114.35191,22.26025],[114.35173,22.26029],[114.35174,22.26013],[114.35172,22.26005],[114.3517,22.26019]]],[[[114.35183,22.26046],[114.35185,22.26048],[114.35185,22.2605],[114.35181,22.26056],[114.35173,22.26071],[114.35172,22.26076],[114.3517,22.26076],[114.35168,22.26074],[114.35166,22.26065],[114.35167,22.2606],[114.3517,22.26053],[114.35172,22.2605],[114.35177,22.26047],[114.3518,22.26046],[114.35183,22.26046]]],[[[114.35203,22.26082],[114.35198,22.26084],[114.35189,22.26085],[114.35184,22.26083],[114.35183,22.2608],[114.35187,22.2607],[114.35195,22.26059],[114.35207,22.26054],[114.35221,22.26052],[114.35226,22.26052],[114.35234,22.26055],[114.35238,22.26059],[114.3524,22.26068],[114.35239,22.26072],[114.35237,22.26076],[114.3523,22.2608],[114.35223,22.2608],[114.35219,22.26078],[114.35216,22.26072],[114.35212,22.26072],[114.35203,22.26082]]],[[[114.35139,22.26101],[114.35134,22.26101],[114.35127,22.26097],[114.35123,22.26097],[114.35117,22.26101],[114.35114,22.261],[114.35108,22.2609],[114.35107,22.26077],[114.35115,22.26065],[114.35124,22.26063],[114.35148,22.26058],[114.35152,22.26058],[114.35154,22.2606],[114.35154,22.26068],[114.35149,22.26085],[114.35153,22.26092],[114.35152,22.26095],[114.35139,22.26101]]],[[[114.35225,22.26157],[114.35223,22.26165],[114.35215,22.2617],[114.35186,22.26168],[114.35176,22.26158],[114.35171,22.26138],[114.35186,22.26134],[114.35199,22.26141],[114.35219,22.26137],[114.35223,22.26139],[114.35225,22.26157]]],[[[114.35276,22.26164],[114.35276,22.26168],[114.35276,22.26173],[114.35273,22.26177],[114.35267,22.26178],[114.35265,22.26176],[114.35264,22.26171],[114.35265,22.26169],[114.35272,22.26164],[114.35276,22.26164]]],[[[114.34548,22.26255],[114.34554,22.26293],[114.34556,22.26303],[114.34545,22.26315],[114.34489,22.26307],[114.34481,22.26298],[114.3448,22.26272],[114.34507,22.26251],[114.34539,22.26245],[114.34548,22.26255]]],[[[114.36792,22.26431],[114.36792,22.26435],[114.36786,22.26446],[114.36783,22.26455],[114.36776,22.26462],[114.36772,22.26468],[114.36762,22.26475],[114.36756,22.26476],[114.36755,22.26474],[114.36755,22.26471],[114.36759,22.26463],[114.36764,22.26448],[114.36769,22.2644],[114.36774,22.26437],[114.36782,22.26434],[114.36788,22.26431],[114.36792,22.26431]]],[[[114.27954,22.26531],[114.27953,22.26533],[114.27953,22.26537],[114.27953,22.26537],[114.27954,22.26538],[114.27955,22.26539],[114.27956,22.2654],[114.27956,22.2654],[114.27956,22.26542],[114.27955,22.26543],[114.27953,22.26544],[114.27951,22.26544],[114.27946,22.26542],[114.27944,22.26541],[114.27943,22.26541],[114.27943,22.2654],[114.27943,22.2654],[114.27943,22.26539],[114.27944,22.26539],[114.27946,22.26538],[114.27947,22.26537],[114.27947,22.26535],[114.27948,22.26534],[114.27951,22.26529],[114.27952,22.26527],[114.27953,22.26524],[114.27953,22.2652],[114.27951,22.26515],[114.27951,22.26515],[114.27952,22.26514],[114.27953,22.26511],[114.27952,22.26505],[114.27951,22.26502],[114.2795,22.265],[114.27947,22.265],[114.27946,22.265],[114.27943,22.26501],[114.2794,22.26502],[114.27933,22.26502],[114.27931,22.26502],[114.27917,22.26495],[114.27912,22.26491],[114.27911,22.2649],[114.27911,22.26488],[114.27912,22.26486],[114.27912,22.26485],[114.27911,22.26483],[114.2791,22.26482],[114.27912,22.26479],[114.27913,22.26475],[114.27916,22.26471],[114.27919,22.26468],[114.27923,22.26466],[114.27927,22.26465],[114.27934,22.26463],[114.2794,22.26463],[114.27945,22.26463],[114.2795,22.26464],[114.27951,22.26465],[114.27952,22.26466],[114.27953,22.26466],[114.27954,22.26466],[114.27956,22.26467],[114.27957,22.26467],[114.27958,22.26468],[114.27959,22.26471],[114.2796,22.26472],[114.27959,22.26473],[114.27959,22.26474],[114.27959,22.26475],[114.2796,22.26476],[114.27961,22.26476],[114.27965,22.26476],[114.27968,22.26476],[114.27969,22.26477],[114.2797,22.26475],[114.27971,22.26474],[114.27975,22.26474],[114.27977,22.26476],[114.27978,22.26476],[114.2798,22.26477],[114.2798,22.26478],[114.2798,22.26481],[114.27984,22.26482],[114.2799,22.26484],[114.27991,22.26481],[114.27992,22.26479],[114.27994,22.26478],[114.27998,22.26479],[114.28,22.2648],[114.28,22.26481],[114.28,22.26483],[114.27998,22.26484],[114.27997,22.26485],[114.27997,22.26488],[114.27997,22.2649],[114.27997,22.26491],[114.28,22.26491],[114.28001,22.26492],[114.28003,22.26496],[114.28,22.26497],[114.27999,22.26499],[114.27996,22.265],[114.27994,22.26501],[114.27992,22.26501],[114.27991,22.26502],[114.27991,22.26503],[114.27992,22.26505],[114.27995,22.26508],[114.27996,22.26509],[114.27998,22.2651],[114.27999,22.26514],[114.28,22.26516],[114.28001,22.26517],[114.28001,22.26519],[114.28,22.26521],[114.27999,22.26523],[114.27995,22.26523],[114.27991,22.26523],[114.27988,22.26524],[114.27986,22.26525],[114.27982,22.26528],[114.2798,22.2653],[114.27976,22.26531],[114.2797,22.26532],[114.27967,22.26532],[114.27967,22.26531],[114.27967,22.26531],[114.27967,22.2653],[114.27967,22.26529],[114.27964,22.26529],[114.27962,22.26529],[114.27961,22.2653],[114.2796,22.2653],[114.27961,22.26532],[114.2796,22.26532],[114.2796,22.26533],[114.27959,22.26533],[114.27959,22.26533],[114.27959,22.26533],[114.27958,22.26531],[114.27958,22.26531],[114.27957,22.2653],[114.27956,22.2653],[114.27954,22.26531]]],[[[114.34962,22.26583],[114.34948,22.26595],[114.34936,22.26597],[114.34931,22.26591],[114.34935,22.26585],[114.34955,22.26579],[114.34962,22.26583]]],[[[114.37046,22.26455],[114.37055,22.26457],[114.37057,22.26461],[114.37059,22.26466],[114.3706,22.2648],[114.37058,22.26493],[114.37062,22.265],[114.37058,22.26515],[114.37053,22.26521],[114.37044,22.26529],[114.37033,22.26546],[114.37012,22.26564],[114.37004,22.26567],[114.36995,22.26574],[114.36984,22.26588],[114.36966,22.26604],[114.36951,22.26617],[114.36942,22.26617],[114.36934,22.26616],[114.36928,22.2661],[114.36915,22.26594],[114.36913,22.26585],[114.36921,22.26569],[114.36935,22.26554],[114.3696,22.26516],[114.36992,22.26479],[114.37034,22.26456],[114.3704,22.26455],[114.37046,22.26455]]],[[[114.37011,22.26606],[114.36992,22.26622],[114.36978,22.26624],[114.36975,22.26621],[114.36977,22.26616],[114.37006,22.2659],[114.37018,22.26589],[114.37011,22.26606]]],[[[114.36726,22.2664],[114.36733,22.26652],[114.36737,22.26688],[114.3673,22.26708],[114.36721,22.26718],[114.3669,22.26724],[114.36667,22.2672],[114.36661,22.26714],[114.36659,22.26693],[114.36653,22.26687],[114.36652,22.26664],[114.3669,22.26637],[114.36701,22.26634],[114.36711,22.26633],[114.36726,22.2664]]],[[[114.26962,22.26977],[114.26908,22.27065],[114.26879,22.27051],[114.26886,22.27049],[114.26893,22.27047],[114.26904,22.27042],[114.26906,22.27041],[114.26911,22.2704],[114.26915,22.27039],[114.2692,22.27036],[114.26926,22.2703],[114.26933,22.2702],[114.26937,22.27013],[114.26941,22.27008],[114.26945,22.27003],[114.26947,22.26997],[114.2695,22.26991],[114.26953,22.26987],[114.26956,22.26982],[114.26962,22.26973],[114.26969,22.26962],[114.26977,22.2695],[114.26987,22.26933],[114.26996,22.26918],[114.27007,22.269],[114.27014,22.26888],[114.27023,22.26871],[114.27031,22.26856],[114.2704,22.26842],[114.27045,22.26833],[114.27061,22.26807],[114.27073,22.26788],[114.27079,22.26779],[114.27087,22.26767],[114.27092,22.26758],[114.27097,22.26749],[114.27104,22.26738],[114.2711,22.26729],[114.27119,22.26713],[114.27134,22.26689],[114.27142,22.26675],[114.27156,22.26652],[114.27168,22.26631],[114.27177,22.26616],[114.27186,22.26602],[114.27191,22.26591],[114.27198,22.26579],[114.27207,22.26564],[114.27261,22.26476],[114.27331,22.26363],[114.27349,22.26333],[114.27358,22.26315],[114.27364,22.26298],[114.2737,22.26282],[114.27374,22.26269],[114.2738,22.26262],[114.27392,22.26257],[114.2741,22.26256],[114.27424,22.26257],[114.27435,22.26265],[114.2744,22.26276],[114.27446,22.26284],[114.27453,22.26292],[114.27493,22.26313],[114.27497,22.26312],[114.27513,22.26306],[114.27521,22.263],[114.2752,22.26287],[114.27531,22.26281],[114.27551,22.2628],[114.2756,22.26282],[114.27561,22.26286],[114.27572,22.26285],[114.27579,22.26282],[114.27581,22.26274],[114.27589,22.26271],[114.27599,22.26275],[114.276,22.26288],[114.27625,22.26283],[114.27626,22.26274],[114.27628,22.26271],[114.27644,22.2627],[114.27659,22.26263],[114.27671,22.26253],[114.27674,22.26246],[114.27682,22.26247],[114.27686,22.26258],[114.27691,22.26254],[114.27705,22.26262],[114.27733,22.26275],[114.27741,22.26292],[114.27737,22.26304],[114.27745,22.2632],[114.27764,22.26329],[114.27766,22.26334],[114.27755,22.26345],[114.27749,22.26353],[114.27768,22.26355],[114.27771,22.2636],[114.27765,22.26381],[114.27758,22.2639],[114.27754,22.26404],[114.27748,22.26408],[114.27753,22.26412],[114.27771,22.26438],[114.27778,22.26453],[114.27806,22.26437],[114.27835,22.26481],[114.27809,22.26495],[114.27786,22.26478],[114.27773,22.26467],[114.27766,22.26463],[114.27766,22.26463],[114.27765,22.26463],[114.27765,22.26462],[114.27765,22.26462],[114.27764,22.26462],[114.27764,22.26461],[114.27764,22.26461],[114.27763,22.26461],[114.27763,22.26461],[114.27762,22.2646],[114.27762,22.2646],[114.27762,22.2646],[114.27761,22.26459],[114.27761,22.26459],[114.27761,22.26459],[114.2776,22.26459],[114.2776,22.26458],[114.27759,22.26458],[114.27759,22.26458],[114.27759,22.26457],[114.27758,22.26457],[114.27758,22.26457],[114.27758,22.26457],[114.27757,22.26456],[114.27757,22.26456],[114.27756,22.26456],[114.27756,22.26455],[114.27756,22.26455],[114.27755,22.26455],[114.27755,22.26455],[114.27754,22.26454],[114.27754,22.26454],[114.27754,22.26454],[114.27753,22.26454],[114.27753,22.26453],[114.27752,22.26453],[114.27752,22.26453],[114.27752,22.26453],[114.27751,22.26452],[114.27751,22.26452],[114.2775,22.26452],[114.2775,22.26452],[114.2775,22.26451],[114.27749,22.26451],[114.27749,22.26451],[114.27748,22.26451],[114.27748,22.2645],[114.27748,22.2645],[114.27747,22.2645],[114.27747,22.2645],[114.27746,22.26449],[114.27746,22.26449],[114.27746,22.26449],[114.27745,22.26449],[114.27745,22.26448],[114.27744,22.26448],[114.27744,22.26448],[114.27744,22.26448],[114.27743,22.26447],[114.27743,22.26447],[114.27742,22.26447],[114.27742,22.26447],[114.27742,22.26446],[114.27741,22.26446],[114.27741,22.26446],[114.2774,22.26445],[114.2774,22.26445],[114.2774,22.26445],[114.27739,22.26445],[114.27739,22.26444],[114.27739,22.26444],[114.27738,22.26444],[114.27738,22.26444],[114.27737,22.26443],[114.27737,22.26443],[114.27737,22.26443],[114.27736,22.26442],[114.27735,22.26442],[114.27735,22.26442],[114.27735,22.26441],[114.27734,22.26441],[114.27734,22.26441],[114.27734,22.2644],[114.27733,22.2644],[114.27732,22.2644],[114.27732,22.26439],[114.27732,22.26439],[114.27731,22.26439],[114.27731,22.26438],[114.27731,22.26438],[114.2773,22.26438],[114.2773,22.26438],[114.27729,22.26437],[114.27729,22.26437],[114.27729,22.26437],[114.27728,22.26436],[114.27728,22.26436],[114.27728,22.26436],[114.27727,22.26435],[114.27727,22.26435],[114.27727,22.26435],[114.27726,22.26435],[114.27726,22.26434],[114.27725,22.26434],[114.27725,22.26434],[114.27725,22.26433],[114.27724,22.26433],[114.27724,22.26433],[114.27724,22.26433],[114.27723,22.26432],[114.27723,22.26432],[114.27722,22.26432],[114.27722,22.26431],[114.27722,22.26431],[114.27721,22.26431],[114.27721,22.26431],[114.27721,22.2643],[114.2772,22.2643],[114.2772,22.2643],[114.27719,22.26429],[114.27719,22.26429],[114.27719,22.26429],[114.27718,22.26429],[114.27718,22.26428],[114.27717,22.26428],[114.27717,22.26427],[114.27716,22.26427],[114.27716,22.26427],[114.27716,22.26427],[114.27715,22.26426],[114.27715,22.26426],[114.27714,22.26426],[114.27714,22.26426],[114.27714,22.26425],[114.27713,22.26425],[114.27713,22.26425],[114.27712,22.26425],[114.27712,22.26424],[114.27712,22.26424],[114.27711,22.26424],[114.27711,22.26424],[114.2771,22.26423],[114.2771,22.26423],[114.2771,22.26423],[114.27709,22.26423],[114.27709,22.26422],[114.27709,22.26422],[114.27709,22.26422],[114.27708,22.26422],[114.27708,22.26422],[114.27708,22.26422],[114.27707,22.26421],[114.27707,22.26421],[114.27706,22.26421],[114.27706,22.26421],[114.27706,22.2642],[114.27705,22.2642],[114.27705,22.2642],[114.27704,22.2642],[114.27704,22.26419],[114.27704,22.26419],[114.27703,22.26419],[114.27703,22.26419],[114.27702,22.26418],[114.27702,22.26418],[114.27702,22.26418],[114.27701,22.26418],[114.27701,22.26417],[114.277,22.26417],[114.277,22.26417],[114.27699,22.26417],[114.27699,22.26416],[114.27699,22.26416],[114.27698,22.26416],[114.27698,22.26416],[114.27697,22.26416],[114.27697,22.26415],[114.27696,22.26415],[114.27696,22.26415],[114.27696,22.26415],[114.27695,22.26414],[114.27695,22.26414],[114.27694,22.26414],[114.27694,22.26414],[114.27694,22.26414],[114.27693,22.26413],[114.27693,22.26413],[114.27692,22.26413],[114.27692,22.26413],[114.27691,22.26412],[114.27691,22.26412],[114.27691,22.26412],[114.2769,22.26412],[114.2769,22.26412],[114.27689,22.26411],[114.27689,22.26411],[114.27688,22.26411],[114.27688,22.26411],[114.27688,22.26411],[114.27688,22.26411],[114.27687,22.26411],[114.27687,22.2641],[114.27687,22.2641],[114.27686,22.2641],[114.27686,22.2641],[114.27685,22.2641],[114.27685,22.26409],[114.27684,22.26409],[114.27684,22.26409],[114.27684,22.26409],[114.27683,22.26409],[114.27683,22.26408],[114.27682,22.26408],[114.27682,22.26408],[114.27681,22.26408],[114.27681,22.26407],[114.2768,22.26407],[114.2768,22.26407],[114.2768,22.26407],[114.27679,22.26407],[114.27679,22.26406],[114.27678,22.26406],[114.27678,22.26406],[114.27677,22.26406],[114.27677,22.26406],[114.27677,22.26405],[114.27676,22.26405],[114.27676,22.26405],[114.27675,22.26405],[114.27675,22.26405],[114.27674,22.26404],[114.27674,22.26404],[114.27673,22.26404],[114.27673,22.26404],[114.27673,22.26404],[114.27672,22.26403],[114.27672,22.26403],[114.27671,22.26403],[114.27671,22.26403],[114.2767,22.26403],[114.2767,22.26403],[114.27669,22.26402],[114.27669,22.26402],[114.27669,22.26402],[114.27668,22.26402],[114.27668,22.26402],[114.27667,22.26401],[114.27667,22.26401],[114.27666,22.26401],[114.27666,22.26401],[114.27665,22.26401],[114.27665,22.26401],[114.27665,22.264],[114.27664,22.264],[114.27664,22.264],[114.27663,22.264],[114.27663,22.264],[114.27662,22.264],[114.27662,22.26399],[114.27661,22.26399],[114.27661,22.26399],[114.27661,22.26399],[114.2766,22.26399],[114.2766,22.26399],[114.27659,22.26399],[114.27659,22.26398],[114.27658,22.26398],[114.27658,22.26398],[114.27657,22.26398],[114.27657,22.26398],[114.27656,22.26398],[114.27656,22.26398],[114.27655,22.26397],[114.27655,22.26397],[114.27655,22.26397],[114.27654,22.26397],[114.27654,22.26397],[114.27653,22.26397],[114.27653,22.26396],[114.27652,22.26396],[114.27652,22.26396],[114.27651,22.26396],[114.27651,22.26396],[114.2765,22.26396],[114.2765,22.26396],[114.27649,22.26396],[114.27648,22.26395],[114.27648,22.26395],[114.27648,22.26395],[114.27647,22.26395],[114.27647,22.26395],[114.27646,22.26395],[114.27646,22.26395],[114.27645,22.26394],[114.27644,22.26394],[114.27644,22.26394],[114.27643,22.26394],[114.27643,22.26394],[114.27642,22.26394],[114.27642,22.26394],[114.27642,22.26393],[114.27641,22.26393],[114.27641,22.26393],[114.2764,22.26393],[114.2764,22.26393],[114.27639,22.26393],[114.27639,22.26393],[114.27638,22.26393],[114.27638,22.26393],[114.27637,22.26392],[114.27637,22.26392],[114.27636,22.26392],[114.27634,22.26392],[114.27634,22.26392],[114.27634,22.26392],[114.27633,22.26392],[114.27633,22.26391],[114.27632,22.26391],[114.27632,22.26391],[114.27631,22.26391],[114.27631,22.26391],[114.2763,22.26391],[114.2763,22.26391],[114.27629,22.26391],[114.27629,22.26391],[114.27628,22.26391],[114.27628,22.26391],[114.27627,22.2639],[114.27627,22.2639],[114.27626,22.2639],[114.27626,22.2639],[114.27625,22.2639],[114.27625,22.2639],[114.27624,22.2639],[114.27624,22.2639],[114.27623,22.2639],[114.27623,22.2639],[114.27619,22.26389],[114.27615,22.26388],[114.2761,22.26387],[114.2759,22.26385],[114.27576,22.26384],[114.27552,22.26385],[114.27537,22.26385],[114.27524,22.26383],[114.27509,22.26379],[114.27499,22.26373],[114.27481,22.26359],[114.27477,22.26354],[114.27475,22.26352],[114.27475,22.26352],[114.27475,22.26352],[114.27474,22.26351],[114.27474,22.26351],[114.27474,22.2635],[114.27474,22.2635],[114.27474,22.2635],[114.27474,22.26349],[114.27473,22.26349],[114.27473,22.26348],[114.27473,22.26348],[114.27473,22.26347],[114.27473,22.26347],[114.27473,22.26347],[114.27472,22.26346],[114.27472,22.26346],[114.27472,22.26345],[114.27472,22.26344],[114.27472,22.26344],[114.27472,22.26344],[114.27471,22.26343],[114.27471,22.26342],[114.27471,22.26342],[114.27471,22.26341],[114.27471,22.26341],[114.2747,22.26341],[114.2747,22.2634],[114.2747,22.2634],[114.2747,22.2634],[114.2747,22.26339],[114.27469,22.26338],[114.27469,22.26338],[114.27469,22.26337],[114.27469,22.26337],[114.27469,22.26337],[114.27468,22.26336],[114.27468,22.26336],[114.27468,22.26335],[114.27468,22.26335],[114.27468,22.26335],[114.27467,22.26334],[114.27467,22.26334],[114.27467,22.26333],[114.27467,22.26333],[114.27467,22.26333],[114.27466,22.26332],[114.27466,22.26332],[114.27466,22.26332],[114.27385,22.26287],[114.26962,22.26977]]],[[[114.34981,22.27107],[114.34964,22.27104],[114.34948,22.27106],[114.34942,22.27102],[114.34939,22.27092],[114.34934,22.27085],[114.34929,22.27083],[114.34926,22.27084],[114.34916,22.27098],[114.34909,22.27103],[114.34896,22.27103],[114.34891,22.271],[114.3489,22.27095],[114.34893,22.27085],[114.3489,22.27083],[114.34878,22.27076],[114.34874,22.27069],[114.34873,22.27062],[114.34866,22.27054],[114.34866,22.27045],[114.34877,22.27026],[114.34878,22.27001],[114.34885,22.26989],[114.3489,22.26978],[114.34893,22.26956],[114.34899,22.26944],[114.34889,22.26927],[114.34881,22.26922],[114.34867,22.26921],[114.34859,22.26916],[114.34856,22.26908],[114.34851,22.26903],[114.34842,22.269],[114.3483,22.26895],[114.34819,22.26885],[114.34812,22.26877],[114.34798,22.2687],[114.34791,22.26869],[114.34784,22.26866],[114.34779,22.26863],[114.34771,22.26855],[114.34759,22.26849],[114.34753,22.2685],[114.3475,22.26848],[114.34749,22.26843],[114.34743,22.26837],[114.34738,22.26833],[114.34705,22.26814],[114.347,22.26796],[114.34682,22.26795],[114.34656,22.26795],[114.34636,22.2679],[114.3463,22.26781],[114.34628,22.26769],[114.3464,22.26762],[114.34641,22.26752],[114.34607,22.2674],[114.34621,22.26728],[114.34623,22.26705],[114.34648,22.26663],[114.34651,22.26603],[114.34645,22.26595],[114.34628,22.26585],[114.34631,22.26574],[114.34622,22.26555],[114.34615,22.26562],[114.34608,22.2656],[114.34605,22.26551],[114.3461,22.26541],[114.34634,22.26536],[114.34641,22.26531],[114.34641,22.26525],[114.34622,22.26504],[114.34602,22.26504],[114.34596,22.26493],[114.34608,22.26486],[114.34617,22.26456],[114.34614,22.26446],[114.34618,22.26443],[114.34617,22.26424],[114.34602,22.26415],[114.3459,22.26397],[114.34585,22.26406],[114.3458,22.26407],[114.34564,22.26393],[114.34564,22.26387],[114.34571,22.26378],[114.34583,22.2638],[114.34585,22.26371],[114.34594,22.26368],[114.3461,22.2634],[114.34601,22.26324],[114.34604,22.26321],[114.34616,22.26322],[114.34616,22.26308],[114.34661,22.26302],[114.34702,22.26282],[114.3475,22.26288],[114.34755,22.26294],[114.3476,22.26288],[114.34765,22.26288],[114.34766,22.26292],[114.34754,22.2633],[114.3476,22.26343],[114.34767,22.26345],[114.3477,22.26342],[114.34771,22.26328],[114.34784,22.26315],[114.34794,22.26322],[114.34801,22.26317],[114.34805,22.26324],[114.34824,22.26326],[114.34848,22.26343],[114.34891,22.26397],[114.34923,22.26475],[114.34925,22.265],[114.34918,22.26508],[114.34902,22.26514],[114.34884,22.26536],[114.34878,22.26536],[114.34868,22.26533],[114.34863,22.2654],[114.34862,22.26548],[114.34846,22.26557],[114.34845,22.26573],[114.34852,22.26581],[114.34868,22.26579],[114.34894,22.26583],[114.34926,22.26608],[114.34923,22.26611],[114.34898,22.26617],[114.34872,22.26617],[114.34869,22.2662],[114.34872,22.26623],[114.34903,22.2663],[114.34927,22.26627],[114.34935,22.26629],[114.34934,22.26633],[114.34927,22.26638],[114.34928,22.26645],[114.34919,22.26655],[114.34923,22.26665],[114.34914,22.26675],[114.34928,22.2668],[114.34897,22.26691],[114.34909,22.26699],[114.34932,22.26702],[114.34938,22.2671],[114.34957,22.26714],[114.34955,22.26722],[114.34965,22.26728],[114.34974,22.26728],[114.35001,22.26717],[114.35012,22.26716],[114.35027,22.2672],[114.35028,22.26728],[114.35021,22.26734],[114.35027,22.26739],[114.35043,22.26735],[114.35041,22.26752],[114.35032,22.26757],[114.3502,22.26748],[114.34999,22.26753],[114.35,22.26782],[114.35018,22.26789],[114.35031,22.26806],[114.35039,22.26805],[114.3506,22.26792],[114.35069,22.26791],[114.35077,22.26795],[114.35073,22.26806],[114.35065,22.26809],[114.35053,22.26822],[114.35034,22.26826],[114.35021,22.26834],[114.35019,22.2684],[114.35026,22.26849],[114.35027,22.26851],[114.35026,22.26853],[114.35017,22.26862],[114.35013,22.26866],[114.35004,22.26868],[114.34997,22.26868],[114.34994,22.26868],[114.34993,22.26871],[114.34994,22.26876],[114.34994,22.26879],[114.34978,22.26887],[114.34967,22.26902],[114.34947,22.26915],[114.34945,22.2692],[114.34945,22.26924],[114.34947,22.26926],[114.34951,22.26926],[114.34958,22.26925],[114.34983,22.26906],[114.34994,22.26904],[114.35002,22.26903],[114.35023,22.26902],[114.35027,22.26902],[114.35036,22.26904],[114.35049,22.26908],[114.35055,22.26913],[114.35056,22.26919],[114.35084,22.26918],[114.35092,22.26924],[114.35101,22.26957],[114.3511,22.26962],[114.35127,22.26965],[114.35135,22.26973],[114.35141,22.26987],[114.35129,22.27012],[114.35121,22.2702],[114.35109,22.27027],[114.35098,22.27032],[114.35092,22.27041],[114.3506,22.27057],[114.3506,22.27062],[114.35074,22.27066],[114.35075,22.27069],[114.35069,22.27074],[114.35045,22.27081],[114.35047,22.27094],[114.35041,22.27099],[114.35032,22.27101],[114.35002,22.27102],[114.34981,22.27107]]],[[[114.35123,22.27199],[114.35125,22.27201],[114.35126,22.27203],[114.35125,22.27206],[114.35123,22.27208],[114.35121,22.27209],[114.35117,22.27209],[114.35115,22.27206],[114.35116,22.27203],[114.35115,22.27201],[114.35116,22.27199],[114.35118,22.27199],[114.35123,22.27199]]],[[[114.35134,22.27112],[114.35133,22.27128],[114.35134,22.2714],[114.35131,22.27149],[114.35119,22.27158],[114.35087,22.27162],[114.35062,22.27178],[114.35063,22.27186],[114.35088,22.27194],[114.3509,22.27199],[114.35085,22.27204],[114.35073,22.27211],[114.35056,22.27214],[114.35037,22.27211],[114.3503,22.27207],[114.35034,22.2718],[114.35031,22.27172],[114.35043,22.27134],[114.35073,22.27125],[114.35079,22.27116],[114.35106,22.27099],[114.35132,22.27096],[114.35134,22.27112]]],[[[114.2662,22.27375],[114.26619,22.2739],[114.26617,22.27393],[114.26619,22.27387],[114.26618,22.2738],[114.26618,22.27372],[114.26618,22.27371],[114.2662,22.27375]]],[[[114.26645,22.27415],[114.26646,22.27416],[114.26642,22.27416],[114.26638,22.27416],[114.26636,22.27417],[114.26635,22.27417],[114.26635,22.27417],[114.26634,22.27417],[114.26634,22.27417],[114.26631,22.27417],[114.26631,22.27417],[114.26629,22.27417],[114.26628,22.27417],[114.26627,22.27417],[114.26627,22.27417],[114.26625,22.27417],[114.26624,22.27417],[114.26619,22.27417],[114.26618,22.27417],[114.26617,22.27417],[114.2664,22.27414],[114.26645,22.27415]]],[[[114.2663,22.27438],[114.26628,22.27442],[114.26628,22.27442],[114.26628,22.27442],[114.26627,22.27442],[114.26627,22.27442],[114.26626,22.27441],[114.26626,22.27441],[114.26626,22.27441],[114.26626,22.2744],[114.26626,22.2744],[114.26626,22.27439],[114.26626,22.27439],[114.26626,22.27439],[114.26627,22.27438],[114.26627,22.27438],[114.26627,22.27438],[114.26628,22.27438],[114.2663,22.27438],[114.26631,22.27437],[114.2663,22.27438]]],[[[114.26922,22.27495],[114.26902,22.27488],[114.26888,22.27483],[114.26869,22.27476],[114.2682,22.27457],[114.26684,22.27407],[114.26922,22.27495]]],[[[114.26922,22.27495],[114.2701,22.2729],[114.26795,22.2721],[114.26796,22.27208],[114.27012,22.27291],[114.26933,22.2747],[114.26923,22.27493],[114.26922,22.27495]]],[[[114.36031,22.27586],[114.36033,22.27588],[114.36034,22.27591],[114.36033,22.27592],[114.36024,22.27592],[114.36023,22.27591],[114.36022,22.27589],[114.36024,22.27587],[114.36027,22.27586],[114.36028,22.27585],[114.36031,22.27586]]],[[[114.35931,22.27601],[114.35933,22.27604],[114.35933,22.27612],[114.35932,22.27617],[114.35928,22.27622],[114.35922,22.27622],[114.35916,22.27621],[114.35914,22.27616],[114.35913,22.27613],[114.35914,22.27609],[114.35918,22.27606],[114.35921,22.27601],[114.35926,22.276],[114.35931,22.27601]]],[[[114.31474,22.27784],[114.31456,22.27785],[114.31443,22.27771],[114.31437,22.27768],[114.31433,22.27773],[114.31424,22.27773],[114.31412,22.27779],[114.31407,22.27774],[114.31415,22.27761],[114.31423,22.27758],[114.3141,22.2775],[114.31403,22.27751],[114.31378,22.27741],[114.31373,22.27743],[114.31376,22.27748],[114.31375,22.27751],[114.31372,22.27754],[114.31368,22.27755],[114.31365,22.27752],[114.31364,22.27748],[114.31364,22.27743],[114.31357,22.27736],[114.31353,22.27736],[114.31349,22.27738],[114.31347,22.27737],[114.31348,22.27735],[114.31346,22.2773],[114.31302,22.27699],[114.31274,22.27666],[114.31256,22.27655],[114.31257,22.2765],[114.31262,22.27649],[114.31257,22.27636],[114.31252,22.27634],[114.3125,22.27628],[114.31237,22.27625],[114.31233,22.2762],[114.31229,22.27614],[114.3123,22.27609],[114.31212,22.27599],[114.31214,22.27593],[114.31232,22.27586],[114.31224,22.27568],[114.31227,22.27554],[114.31231,22.27549],[114.31234,22.27547],[114.31249,22.27543],[114.31257,22.27535],[114.31272,22.27531],[114.31275,22.27566],[114.31288,22.2757],[114.31292,22.27578],[114.31303,22.27555],[114.313,22.27541],[114.31301,22.27524],[114.31306,22.27515],[114.31316,22.27512],[114.31309,22.27503],[114.3131,22.27495],[114.31316,22.27494],[114.31321,22.27508],[114.31331,22.27514],[114.31341,22.2751],[114.31343,22.27504],[114.31337,22.27482],[114.31352,22.27453],[114.31362,22.27444],[114.31368,22.27444],[114.31375,22.27452],[114.31384,22.27466],[114.31393,22.27462],[114.31397,22.2746],[114.31422,22.27451],[114.31431,22.27418],[114.31441,22.27402],[114.31441,22.27394],[114.31454,22.27402],[114.31459,22.27419],[114.31474,22.27447],[114.31484,22.27449],[114.31491,22.27444],[114.31492,22.2744],[114.31486,22.27437],[114.31481,22.27424],[114.31491,22.27413],[114.315,22.27411],[114.31524,22.27417],[114.3154,22.27426],[114.31548,22.27432],[114.31552,22.27444],[114.31571,22.27464],[114.31578,22.27495],[114.31576,22.27536],[114.31579,22.27563],[114.31569,22.27588],[114.31562,22.27652],[114.31557,22.27663],[114.31558,22.27684],[114.31553,22.27701],[114.3155,22.27711],[114.31535,22.27726],[114.31524,22.27729],[114.31513,22.27756],[114.31474,22.27784]]],[[[114.31873,22.30035],[114.31869,22.30036],[114.3186,22.30037],[114.31852,22.30035],[114.31846,22.30036],[114.3184,22.30036],[114.31833,22.30032],[114.31827,22.30032],[114.31822,22.30029],[114.31806,22.30023],[114.31805,22.30021],[114.31805,22.30014],[114.31802,22.30011],[114.31791,22.30004],[114.31786,22.29997],[114.31783,22.29991],[114.31782,22.29986],[114.31783,22.29982],[114.31785,22.29979],[114.3179,22.29976],[114.31801,22.29975],[114.31803,22.29975],[114.31807,22.29969],[114.31815,22.29965],[114.3182,22.29964],[114.31824,22.29965],[114.31828,22.29968],[114.31829,22.29971],[114.31829,22.29973],[114.3182,22.29972],[114.31816,22.29973],[114.31803,22.29977],[114.31799,22.2998],[114.31796,22.29984],[114.31795,22.29987],[114.31795,22.2999],[114.31802,22.29985],[114.31813,22.29981],[114.31817,22.2998],[114.3182,22.29981],[114.31829,22.29985],[114.31831,22.29987],[114.31832,22.29989],[114.31831,22.29992],[114.31828,22.29995],[114.31829,22.29999],[114.31833,22.30003],[114.31836,22.30011],[114.31849,22.30019],[114.3186,22.30012],[114.31866,22.30012],[114.3187,22.30013],[114.31874,22.30017],[114.31877,22.30023],[114.31877,22.30028],[114.31877,22.30032],[114.31873,22.30035]]],[[[114.31899,22.30048],[114.31907,22.3005],[114.31909,22.3005],[114.31913,22.30053],[114.31916,22.30054],[114.31917,22.30055],[114.31917,22.30056],[114.31917,22.30057],[114.31917,22.30059],[114.31916,22.30059],[114.31903,22.30065],[114.31897,22.30066],[114.31894,22.30066],[114.31893,22.30066],[114.31893,22.30065],[114.31888,22.30053],[114.31887,22.3005],[114.31887,22.3005],[114.31888,22.30049],[114.31889,22.30048],[114.3189,22.30048],[114.31899,22.30048]]],[[[114.31244,22.30086],[114.31246,22.30088],[114.31251,22.30098],[114.31251,22.30112],[114.31239,22.30119],[114.31223,22.30112],[114.31215,22.30105],[114.31209,22.30089],[114.31211,22.30083],[114.31221,22.30079],[114.31244,22.30086]]],[[[114.32113,22.30071],[114.32093,22.30076],[114.32079,22.30088],[114.32062,22.30113],[114.32069,22.30116],[114.3207,22.30124],[114.32064,22.30137],[114.32053,22.30149],[114.32026,22.30163],[114.32,22.30164],[114.31984,22.30161],[114.31958,22.30146],[114.31943,22.30143],[114.31932,22.30118],[114.31918,22.30105],[114.31913,22.30096],[114.31914,22.30088],[114.3193,22.30075],[114.31954,22.3007],[114.31995,22.30053],[114.32065,22.30051],[114.32087,22.30057],[114.32118,22.3005],[114.32128,22.30056],[114.32113,22.30071]]],[[[114.31115,22.30234],[114.31115,22.30247],[114.31112,22.30252],[114.31106,22.30254],[114.31099,22.30251],[114.31091,22.30241],[114.31087,22.30235],[114.31087,22.30227],[114.31091,22.30226],[114.311,22.30228],[114.31112,22.30225],[114.31115,22.30234]]],[[[114.3113,22.30261],[114.31133,22.30266],[114.31134,22.30268],[114.31133,22.30275],[114.31129,22.30279],[114.31125,22.30278],[114.3112,22.30272],[114.31122,22.30263],[114.31116,22.30246],[114.31125,22.3022],[114.31118,22.30213],[114.31117,22.30194],[114.31116,22.3019],[114.31116,22.30184],[114.31118,22.30181],[114.3112,22.30178],[114.31124,22.30177],[114.31134,22.30174],[114.31137,22.30176],[114.31138,22.30181],[114.31138,22.30189],[114.31136,22.30192],[114.31135,22.30195],[114.31136,22.30197],[114.31141,22.30189],[114.31143,22.30182],[114.31148,22.30176],[114.31154,22.30171],[114.31159,22.30166],[114.31163,22.30158],[114.31174,22.3015],[114.31177,22.30148],[114.3118,22.3015],[114.31184,22.30154],[114.31189,22.30164],[114.31199,22.30176],[114.31203,22.30178],[114.3121,22.30179],[114.31212,22.30181],[114.31214,22.30182],[114.31215,22.30187],[114.31215,22.3019],[114.3121,22.30208],[114.31197,22.30218],[114.31193,22.30218],[114.31186,22.30217],[114.3118,22.30217],[114.31174,22.30219],[114.31169,22.30218],[114.31166,22.30216],[114.31164,22.30214],[114.31162,22.30215],[114.31161,22.30221],[114.31146,22.30238],[114.31146,22.30244],[114.31148,22.30248],[114.31151,22.30249],[114.31152,22.30251],[114.31151,22.30255],[114.31146,22.30259],[114.31137,22.30261],[114.31135,22.30259],[114.31133,22.30259],[114.3113,22.30261]]],[[[114.31735,22.30324],[114.31735,22.30327],[114.31733,22.30331],[114.31735,22.30338],[114.31729,22.30357],[114.3173,22.30381],[114.31727,22.30388],[114.31723,22.30391],[114.31711,22.30382],[114.31713,22.30364],[114.31723,22.3035],[114.31722,22.30337],[114.31724,22.30333],[114.31731,22.30329],[114.31732,22.30325],[114.31733,22.30324],[114.31735,22.30324]]],[[[114.31692,22.30344],[114.31696,22.30349],[114.31695,22.30384],[114.31687,22.30397],[114.31678,22.30398],[114.31674,22.30395],[114.31667,22.30388],[114.31662,22.30371],[114.31665,22.30361],[114.31674,22.30354],[114.31681,22.30343],[114.31684,22.30341],[114.31688,22.3034],[114.31692,22.30344]]],[[[114.31157,22.30351],[114.31148,22.30367],[114.31149,22.30369],[114.31156,22.30372],[114.31154,22.30386],[114.31133,22.30418],[114.3111,22.30434],[114.31115,22.30447],[114.31108,22.30455],[114.31089,22.30455],[114.3107,22.3044],[114.31069,22.30418],[114.31081,22.30398],[114.31093,22.3034],[114.31088,22.30336],[114.31085,22.30332],[114.31088,22.30328],[114.31091,22.30326],[114.31095,22.30327],[114.31105,22.3031],[114.31115,22.30305],[114.31134,22.30306],[114.31143,22.30326],[114.3115,22.30328],[114.31139,22.30349],[114.31148,22.30347],[114.31156,22.30349],[114.31157,22.30351]]],[[[114.30874,22.30453],[114.30885,22.30463],[114.30884,22.30469],[114.3087,22.3048],[114.30865,22.30479],[114.30857,22.30465],[114.30871,22.30453],[114.30874,22.30453]]],[[[114.31031,22.30471],[114.31029,22.30485],[114.31022,22.30495],[114.31013,22.30496],[114.31007,22.30485],[114.31009,22.30478],[114.31027,22.30468],[114.3103,22.30466],[114.31031,22.30471]]],[[[114.30616,22.30607],[114.30618,22.3061],[114.30615,22.30613],[114.30611,22.30617],[114.30608,22.30617],[114.30599,22.30607],[114.30598,22.30604],[114.30599,22.30602],[114.30602,22.30601],[114.30616,22.30607]]],[[[114.36821,22.30727],[114.36812,22.30725],[114.36813,22.30718],[114.36801,22.3072],[114.368,22.3071],[114.36809,22.30689],[114.36828,22.30671],[114.36849,22.30664],[114.36859,22.30661],[114.36862,22.30665],[114.36858,22.30667],[114.36857,22.30678],[114.36847,22.30693],[114.36837,22.30703],[114.36839,22.30711],[114.36821,22.30727]]],[[[114.36496,22.30735],[114.36499,22.30752],[114.36494,22.30771],[114.36468,22.30809],[114.36462,22.30806],[114.36454,22.30786],[114.36452,22.3075],[114.36456,22.3074],[114.36468,22.30737],[114.3648,22.30732],[114.36496,22.30735]]],[[[114.37037,22.30919],[114.37035,22.3092],[114.37035,22.30923],[114.37031,22.30925],[114.37028,22.30926],[114.37027,22.30925],[114.37029,22.30923],[114.37033,22.30921],[114.37034,22.30919],[114.37031,22.30917],[114.37027,22.30917],[114.37026,22.30916],[114.37034,22.30913],[114.37036,22.30914],[114.37034,22.30916],[114.3704,22.30917],[114.37037,22.30919]]],[[[114.31013,22.30925],[114.31018,22.30934],[114.31017,22.30943],[114.3101,22.30952],[114.31008,22.30951],[114.30997,22.30946],[114.30999,22.30938],[114.30997,22.3093],[114.31001,22.30921],[114.31008,22.3092],[114.31013,22.30925]]],[[[114.36934,22.31039],[114.36928,22.31045],[114.36908,22.31053],[114.36892,22.31056],[114.36872,22.31069],[114.3687,22.31065],[114.36877,22.31054],[114.3688,22.31052],[114.36884,22.31051],[114.36885,22.31049],[114.36891,22.31045],[114.36896,22.3104],[114.36898,22.31037],[114.36894,22.31038],[114.36891,22.31035],[114.36893,22.31027],[114.36898,22.31022],[114.36904,22.31019],[114.36916,22.31017],[114.36916,22.31019],[114.36912,22.31026],[114.36933,22.31026],[114.36936,22.3103],[114.36935,22.31035],[114.36934,22.31039]]],[[[114.37105,22.31172],[114.37052,22.3117],[114.37035,22.31172],[114.37037,22.31166],[114.37055,22.31158],[114.37052,22.31154],[114.37061,22.31149],[114.37078,22.31145],[114.3709,22.31151],[114.37107,22.31143],[114.3712,22.31142],[114.37129,22.31147],[114.37132,22.31159],[114.37105,22.31172]]],[[[114.37277,22.31145],[114.37279,22.31159],[114.37269,22.31166],[114.3726,22.31175],[114.37248,22.31175],[114.37244,22.31162],[114.37248,22.31145],[114.37268,22.3114],[114.37277,22.31145]]],[[[114.3701,22.31179],[114.37005,22.31183],[114.37003,22.31184],[114.37,22.31183],[114.37,22.31179],[114.37002,22.31175],[114.37003,22.31174],[114.37004,22.31174],[114.37006,22.31176],[114.3701,22.31175],[114.37011,22.31176],[114.3701,22.31179]]],[[[114.37007,22.31224],[114.37014,22.31229],[114.37016,22.31232],[114.37015,22.31233],[114.37012,22.31234],[114.3701,22.31234],[114.37004,22.31226],[114.37004,22.31224],[114.37005,22.31223],[114.37007,22.31224]]],[[[114.31819,22.31235],[114.3182,22.31237],[114.31816,22.3124],[114.31813,22.3124],[114.31813,22.31237],[114.31818,22.31234],[114.31819,22.31235]]],[[[114.37188,22.31232],[114.37178,22.31235],[114.37158,22.31231],[114.37129,22.31234],[114.37114,22.31228],[114.37115,22.31222],[114.37153,22.31191],[114.37166,22.31192],[114.37197,22.31156],[114.37209,22.31156],[114.3721,22.31166],[114.37209,22.31172],[114.37199,22.31183],[114.37197,22.31216],[114.37188,22.31232]]],[[[114.37108,22.31177],[114.3711,22.31189],[114.37096,22.31194],[114.3709,22.31221],[114.37081,22.31229],[114.37057,22.3124],[114.37037,22.31236],[114.37007,22.31218],[114.37004,22.31208],[114.37008,22.31205],[114.37005,22.31202],[114.37025,22.31179],[114.37034,22.31174],[114.37108,22.31177]]],[[[114.31844,22.3126],[114.31834,22.31276],[114.31832,22.31277],[114.31822,22.31264],[114.31823,22.31238],[114.31825,22.31219],[114.3182,22.312],[114.31823,22.31172],[114.31822,22.31169],[114.31823,22.31166],[114.31824,22.31166],[114.31828,22.3117],[114.3183,22.31171],[114.31832,22.31171],[114.31832,22.31168],[114.31831,22.31164],[114.31832,22.3116],[114.31838,22.31154],[114.31835,22.31152],[114.31838,22.31142],[114.31843,22.31137],[114.3185,22.31132],[114.31847,22.31123],[114.31849,22.31118],[114.31861,22.31103],[114.31884,22.31095],[114.3189,22.31096],[114.31907,22.31102],[114.31915,22.31107],[114.31916,22.3113],[114.319,22.31207],[114.31903,22.31219],[114.31893,22.31224],[114.31878,22.3122],[114.31844,22.3126]]],[[[114.3468,22.31459],[114.34689,22.31484],[114.34682,22.31489],[114.34668,22.31486],[114.34657,22.31478],[114.34653,22.31467],[114.34657,22.31455],[114.34655,22.31445],[114.34657,22.3144],[114.34664,22.31439],[114.3468,22.31459]]],[[[114.34674,22.3188],[114.34672,22.3188],[114.34669,22.31877],[114.34666,22.31877],[114.3466,22.31874],[114.34657,22.31876],[114.3465,22.31874],[114.34651,22.31871],[114.34656,22.31868],[114.34654,22.31866],[114.34654,22.31863],[114.34657,22.31862],[114.34663,22.31861],[114.34668,22.31866],[114.34666,22.31871],[114.34667,22.31873],[114.34673,22.31871],[114.34675,22.31872],[114.34674,22.3188]]],[[[114.36532,22.3204],[114.36528,22.32045],[114.36524,22.32047],[114.36523,22.32046],[114.36523,22.32044],[114.36522,22.32041],[114.36524,22.32036],[114.36526,22.32035],[114.36528,22.32038],[114.36532,22.32038],[114.36532,22.3204]]],[[[114.3664,22.32095],[114.36641,22.32101],[114.36621,22.32111],[114.36561,22.32118],[114.36527,22.32111],[114.36518,22.32103],[114.36521,22.32096],[114.3648,22.3208],[114.36399,22.32056],[114.36376,22.32061],[114.3636,22.32076],[114.36316,22.32081],[114.36301,22.32078],[114.36291,22.32071],[114.3629,22.32063],[114.36297,22.32055],[114.36294,22.32049],[114.36269,22.32064],[114.36246,22.32069],[114.36206,22.32058],[114.36203,22.32052],[114.36209,22.32046],[114.36215,22.32046],[114.36217,22.32039],[114.36215,22.32034],[114.36207,22.32024],[114.36202,22.32016],[114.36188,22.32008],[114.36158,22.32],[114.36157,22.32018],[114.36149,22.32019],[114.36115,22.31999],[114.36105,22.31988],[114.36099,22.31957],[114.36088,22.31924],[114.36091,22.31891],[114.3608,22.31873],[114.36087,22.3185],[114.36101,22.31833],[114.36111,22.3181],[114.3611,22.31793],[114.36103,22.31793],[114.361,22.31789],[114.36098,22.31773],[114.36105,22.31756],[114.36117,22.31699],[114.36127,22.31678],[114.36125,22.3167],[114.36124,22.31662],[114.36103,22.31661],[114.36094,22.31655],[114.36088,22.31633],[114.3609,22.31604],[114.36099,22.31579],[114.36107,22.31571],[114.36113,22.3157],[114.36119,22.31578],[114.36136,22.31575],[114.36127,22.31556],[114.36135,22.31543],[114.36146,22.31535],[114.36176,22.3153],[114.36195,22.3151],[114.36189,22.31503],[114.3623,22.31472],[114.36231,22.31467],[114.36221,22.31449],[114.36205,22.31456],[114.36202,22.31446],[114.36188,22.31442],[114.36185,22.31433],[114.36193,22.31407],[114.36191,22.31401],[114.36216,22.31373],[114.36216,22.31352],[114.36222,22.31339],[114.36241,22.31317],[114.36268,22.31276],[114.36271,22.31279],[114.36285,22.31263],[114.36321,22.3123],[114.36337,22.31217],[114.3636,22.31208],[114.36392,22.31209],[114.36423,22.31177],[114.36457,22.31172],[114.36471,22.31175],[114.36476,22.31186],[114.36481,22.31188],[114.3649,22.3119],[114.36524,22.3119],[114.36527,22.31181],[114.36518,22.31161],[114.36504,22.3115],[114.36494,22.3113],[114.36486,22.31127],[114.36478,22.31105],[114.36488,22.31089],[114.36512,22.31087],[114.36531,22.31105],[114.36542,22.31106],[114.36549,22.31086],[114.36532,22.31074],[114.36524,22.31075],[114.36511,22.31068],[114.36509,22.31058],[114.36519,22.31052],[114.36548,22.31052],[114.36525,22.31022],[114.36534,22.31018],[114.36552,22.31037],[114.3656,22.31033],[114.36543,22.30995],[114.36531,22.30968],[114.36536,22.30948],[114.36555,22.30932],[114.36528,22.30927],[114.36515,22.30894],[114.36534,22.30873],[114.36556,22.30864],[114.36562,22.30856],[114.36551,22.3085],[114.36529,22.30849],[114.36515,22.30841],[114.36505,22.30842],[114.36492,22.30839],[114.36489,22.30827],[114.36503,22.30799],[114.36537,22.30761],[114.36586,22.30729],[114.36617,22.30718],[114.36657,22.30688],[114.36744,22.30671],[114.36756,22.30679],[114.36766,22.30679],[114.36774,22.30698],[114.36775,22.30717],[114.36771,22.30727],[114.36768,22.30753],[114.36768,22.30792],[114.36758,22.30803],[114.36726,22.30813],[114.36705,22.30829],[114.36696,22.30841],[114.3666,22.30863],[114.36672,22.30878],[114.36684,22.3088],[114.3669,22.30877],[114.36696,22.3087],[114.36708,22.30865],[114.36727,22.30863],[114.36745,22.30863],[114.36746,22.30866],[114.36741,22.30876],[114.36747,22.30877],[114.36751,22.30876],[114.36759,22.30885],[114.36758,22.30905],[114.3675,22.30914],[114.3675,22.30917],[114.36762,22.30923],[114.36759,22.30932],[114.36758,22.30946],[114.36737,22.30981],[114.36706,22.31],[114.36709,22.31013],[114.36733,22.31026],[114.36755,22.31033],[114.36761,22.31007],[114.36767,22.30997],[114.36777,22.3099],[114.3679,22.30988],[114.36793,22.30991],[114.36788,22.31005],[114.3678,22.31009],[114.36788,22.31018],[114.36785,22.31024],[114.36787,22.31036],[114.368,22.31052],[114.36809,22.31054],[114.36826,22.31043],[114.36842,22.31043],[114.36849,22.31042],[114.36849,22.31046],[114.36841,22.31063],[114.36845,22.31076],[114.3684,22.3108],[114.36839,22.31091],[114.36853,22.31097],[114.36899,22.31066],[114.36921,22.31064],[114.36944,22.31056],[114.36961,22.31055],[114.36967,22.31064],[114.36956,22.31078],[114.3693,22.3109],[114.36919,22.311],[114.36931,22.31104],[114.36933,22.31108],[114.36964,22.3109],[114.36978,22.31087],[114.36985,22.3109],[114.36994,22.31112],[114.37001,22.31114],[114.37005,22.31091],[114.37011,22.31082],[114.37035,22.31075],[114.37041,22.31076],[114.37058,22.3108],[114.37087,22.31076],[114.37101,22.3108],[114.37101,22.31086],[114.37094,22.31093],[114.37081,22.31102],[114.37065,22.31119],[114.37051,22.31128],[114.37025,22.31137],[114.37005,22.31139],[114.36982,22.31163],[114.36962,22.31162],[114.36963,22.31171],[114.36987,22.31198],[114.36971,22.31219],[114.36937,22.31244],[114.36937,22.31246],[114.36937,22.31251],[114.36935,22.31279],[114.3692,22.31287],[114.36883,22.31289],[114.36865,22.31303],[114.36836,22.31348],[114.36831,22.31379],[114.36838,22.31399],[114.36844,22.31399],[114.36849,22.31406],[114.36846,22.31414],[114.36836,22.31431],[114.36832,22.3144],[114.36833,22.31451],[114.36831,22.31463],[114.36835,22.31467],[114.36846,22.31471],[114.36854,22.3147],[114.36855,22.31487],[114.36867,22.31492],[114.36902,22.31463],[114.36922,22.31461],[114.36921,22.31473],[114.36926,22.3149],[114.36938,22.31497],[114.3695,22.31513],[114.36929,22.31539],[114.36921,22.31563],[114.36913,22.31571],[114.36898,22.31576],[114.36905,22.31584],[114.36906,22.31593],[114.36894,22.31593],[114.36883,22.31579],[114.36876,22.31582],[114.3687,22.31591],[114.36873,22.31615],[114.36857,22.31632],[114.36852,22.31636],[114.36846,22.31632],[114.36842,22.31676],[114.36826,22.3171],[114.36806,22.31732],[114.36816,22.3174],[114.36818,22.3175],[114.36819,22.31757],[114.36813,22.3177],[114.36799,22.3178],[114.36801,22.31786],[114.36819,22.31788],[114.36809,22.31809],[114.36816,22.3182],[114.36807,22.31829],[114.36771,22.31837],[114.36756,22.3185],[114.36747,22.31864],[114.36747,22.31873],[114.36753,22.31872],[114.36761,22.31867],[114.36767,22.31861],[114.36774,22.31855],[114.36778,22.31853],[114.3678,22.31853],[114.36781,22.31854],[114.36781,22.31856],[114.36781,22.31858],[114.36779,22.31861],[114.36756,22.3188],[114.36748,22.31884],[114.3674,22.31887],[114.36736,22.3189],[114.36734,22.31894],[114.3674,22.31898],[114.36737,22.31906],[114.36726,22.31909],[114.36691,22.31906],[114.36658,22.31912],[114.36656,22.31942],[114.36638,22.31956],[114.36632,22.31966],[114.36607,22.31979],[114.36583,22.31998],[114.36576,22.32004],[114.36549,22.32009],[114.36534,22.32007],[114.36524,22.32],[114.3651,22.32036],[114.36518,22.32046],[114.36517,22.32059],[114.36523,22.32062],[114.36539,22.32051],[114.36562,22.32045],[114.36577,22.32046],[114.36561,22.32053],[114.36552,22.3206],[114.36535,22.32065],[114.36535,22.32068],[114.36568,22.32069],[114.36569,22.32077],[114.36576,22.3208],[114.36593,22.32063],[114.36593,22.32058],[114.36605,22.32055],[114.3663,22.3204],[114.36639,22.32044],[114.36607,22.32063],[114.36604,22.3208],[114.36606,22.32084],[114.36615,22.3208],[114.36626,22.32082],[114.3664,22.32095]]],[[[114.35383,22.32246],[114.35381,22.32248],[114.35377,22.32249],[114.35375,22.32245],[114.35375,22.3224],[114.35382,22.32236],[114.35388,22.32233],[114.35391,22.32235],[114.35393,22.32238],[114.3539,22.3224],[114.35381,22.32242],[114.35377,22.32241],[114.35383,22.32246]]],[[[114.36639,22.32179],[114.36664,22.3218],[114.36658,22.32194],[114.36643,22.32209],[114.3661,22.32231],[114.36602,22.32246],[114.36594,22.3225],[114.36577,22.32257],[114.36556,22.32249],[114.36552,22.32233],[114.36565,22.32189],[114.36571,22.32186],[114.36598,22.32181],[114.36608,22.32173],[114.36639,22.32179]]],[[[114.30129,22.32243],[114.30126,22.32251],[114.30126,22.32259],[114.30125,22.32263],[114.30119,22.32265],[114.30114,22.32264],[114.3011,22.32257],[114.30112,22.32255],[114.30112,22.32252],[114.30104,22.32246],[114.30102,22.32243],[114.30102,22.32233],[114.30102,22.32226],[114.301,22.32224],[114.301,22.32223],[114.30101,22.32221],[114.30102,22.32217],[114.30104,22.32217],[114.30107,22.32216],[114.30115,22.32211],[114.30121,22.32208],[114.30125,22.32208],[114.3013,22.32203],[114.30133,22.32196],[114.30136,22.32195],[114.30138,22.32195],[114.30139,22.32198],[114.30137,22.32205],[114.30135,22.32209],[114.30135,22.32211],[114.30139,22.32215],[114.30138,22.32217],[114.30135,22.3222],[114.30132,22.32231],[114.30133,22.32233],[114.30136,22.32233],[114.30139,22.32233],[114.30141,22.32233],[114.3014,22.32231],[114.30141,22.32226],[114.30143,22.32224],[114.30146,22.32222],[114.30145,22.3222],[114.30147,22.32218],[114.3015,22.32218],[114.30153,22.32214],[114.30152,22.32209],[114.30153,22.32206],[114.30156,22.32199],[114.30159,22.32198],[114.30161,22.32192],[114.30166,22.32188],[114.30168,22.32182],[114.30175,22.32174],[114.3019,22.32167],[114.30194,22.32162],[114.30199,22.32161],[114.30201,22.32163],[114.30202,22.32166],[114.30203,22.32173],[114.302,22.32177],[114.302,22.32181],[114.30204,22.32187],[114.30207,22.32188],[114.30209,22.32183],[114.3021,22.32182],[114.30212,22.32183],[114.30215,22.32191],[114.30212,22.32197],[114.30206,22.32201],[114.30199,22.32207],[114.30197,22.32212],[114.30194,22.32213],[114.30189,22.32215],[114.30182,22.32223],[114.3018,22.32229],[114.30174,22.32233],[114.30166,22.32243],[114.30162,22.32245],[114.30159,22.32247],[114.30152,22.3225],[114.30145,22.32251],[114.30139,22.32252],[114.30139,22.32258],[114.30143,22.32261],[114.30141,22.32263],[114.30139,22.32264],[114.30132,22.32262],[114.3013,22.3226],[114.30131,22.32257],[114.30133,22.32252],[114.30132,22.32244],[114.30131,22.32242],[114.30129,22.32243]]],[[[114.32744,22.32281],[114.32745,22.32283],[114.32744,22.32284],[114.32739,22.32285],[114.32733,22.32286],[114.327,22.32285],[114.32674,22.32275],[114.32672,22.32271],[114.32673,22.3227],[114.3268,22.32268],[114.32686,22.32268],[114.32706,22.32273],[114.32708,22.32272],[114.32708,22.3227],[114.32704,22.32268],[114.32701,22.32263],[114.32701,22.32259],[114.32704,22.32255],[114.32707,22.32253],[114.32718,22.32253],[114.32734,22.32258],[114.32739,22.32265],[114.32741,22.32268],[114.32744,22.32281]]],[[[114.32716,22.32312],[114.32708,22.32317],[114.32695,22.32322],[114.32689,22.32322],[114.32684,22.32318],[114.32686,22.32313],[114.32687,22.32307],[114.32685,22.32303],[114.32682,22.32301],[114.32682,22.323],[114.32682,22.32298],[114.32685,22.32296],[114.32694,22.32295],[114.32696,22.32295],[114.32708,22.32293],[114.32714,22.32291],[114.32738,22.32289],[114.32745,22.32291],[114.32748,22.32296],[114.32748,22.32302],[114.32745,22.32306],[114.32735,22.32309],[114.32726,22.32308],[114.32716,22.32312]]],[[[114.32641,22.32536],[114.32635,22.32541],[114.32631,22.32543],[114.32628,22.32545],[114.32625,22.32546],[114.32623,22.32546],[114.32619,22.32544],[114.32617,22.32542],[114.32617,22.3254],[114.32619,22.32538],[114.3262,22.32536],[114.32623,22.32532],[114.32625,22.3253],[114.32627,22.3253],[114.32629,22.32531],[114.3263,22.3253],[114.32633,22.32528],[114.32635,22.32528],[114.32638,22.32527],[114.3264,22.32525],[114.32643,22.32525],[114.32645,22.32524],[114.32646,22.32526],[114.32648,22.32527],[114.32648,22.32529],[114.32646,22.32531],[114.32641,22.32536]]],[[[114.32607,22.3255],[114.32608,22.32551],[114.32609,22.32552],[114.3261,22.32553],[114.32612,22.32555],[114.32611,22.32556],[114.32608,22.32557],[114.32605,22.32557],[114.32602,22.32559],[114.32598,22.3256],[114.32597,22.3256],[114.32596,22.32558],[114.32596,22.32557],[114.32599,22.32556],[114.326,22.32554],[114.32601,22.32553],[114.32604,22.32551],[114.32607,22.3255],[114.32607,22.3255]]],[[[114.32665,22.32576],[114.3266,22.32578],[114.3264,22.32579],[114.32638,22.32578],[114.32637,22.32576],[114.32633,22.32575],[114.32627,22.32577],[114.32618,22.32574],[114.32617,22.32571],[114.32616,22.32568],[114.32616,22.32566],[114.3262,22.32563],[114.3263,22.32558],[114.32632,22.32557],[114.32634,22.32557],[114.32636,22.32558],[114.32636,22.32559],[114.32638,22.32559],[114.32641,22.32557],[114.32651,22.32552],[114.32656,22.32552],[114.32659,22.32556],[114.32662,22.32557],[114.3267,22.32558],[114.32678,22.32558],[114.32683,22.32556],[114.3269,22.3255],[114.32697,22.32548],[114.32704,22.32549],[114.32712,22.32551],[114.32713,22.32554],[114.32713,22.32556],[114.32712,22.32557],[114.3271,22.32558],[114.32708,22.32559],[114.3271,22.3256],[114.32711,22.32563],[114.32711,22.32566],[114.3271,22.32568],[114.3271,22.32569],[114.32711,22.32571],[114.3271,22.32573],[114.32706,22.32575],[114.32704,22.32575],[114.32701,22.32576],[114.32698,22.32577],[114.32695,22.32578],[114.32689,22.32577],[114.32684,22.32578],[114.32679,22.32578],[114.32677,22.32577],[114.32676,22.32576],[114.32677,22.32575],[114.32678,22.32573],[114.32679,22.32572],[114.32678,22.32572],[114.32675,22.32572],[114.32671,22.32573],[114.32665,22.32576]]],[[[114.36906,22.32563],[114.369,22.32569],[114.36891,22.32576],[114.36867,22.32586],[114.36849,22.32588],[114.36833,22.32598],[114.36807,22.32602],[114.36792,22.32609],[114.36777,22.32614],[114.36773,22.32617],[114.36751,22.32614],[114.36746,22.32594],[114.36752,22.32584],[114.36754,22.32563],[114.36781,22.32536],[114.36799,22.32527],[114.36845,22.32532],[114.36852,22.32535],[114.36858,22.32543],[114.36877,22.32549],[114.36895,22.32554],[114.36917,22.32554],[114.36906,22.32563]]],[[[114.32048,22.32574],[114.32046,22.32579],[114.32042,22.32583],[114.32021,22.32596],[114.32011,22.32602],[114.32008,22.32607],[114.32007,22.32617],[114.32001,22.32619],[114.31995,22.32624],[114.31988,22.32626],[114.31983,22.32624],[114.31983,22.32614],[114.31981,22.32609],[114.31991,22.32606],[114.31985,22.32597],[114.31983,22.32589],[114.31982,22.32581],[114.31987,22.32573],[114.31994,22.32571],[114.31999,22.32572],[114.32003,22.32569],[114.32008,22.32568],[114.32012,22.32566],[114.3205,22.32561],[114.32052,22.32563],[114.32059,22.32562],[114.32061,22.32564],[114.32058,22.32569],[114.32048,22.32574]]],[[[114.36734,22.32584],[114.36726,22.32617],[114.36715,22.32622],[114.36694,22.32618],[114.36691,22.32606],[114.36674,22.3259],[114.36664,22.32583],[114.3666,22.32589],[114.36656,22.32587],[114.3666,22.32568],[114.36675,22.32554],[114.36666,22.32543],[114.36672,22.32531],[114.36706,22.32528],[114.36712,22.32533],[114.36712,22.32539],[114.3673,22.32563],[114.36734,22.32584]]],[[[114.35678,22.32623],[114.35654,22.32624],[114.35651,22.32632],[114.3564,22.32637],[114.35549,22.32655],[114.35497,22.32646],[114.35495,22.32641],[114.35498,22.3263],[114.35475,22.32624],[114.35478,22.32617],[114.3549,22.32615],[114.35485,22.32595],[114.35475,22.32595],[114.35484,22.32582],[114.35476,22.32576],[114.35473,22.32568],[114.35474,22.32548],[114.35463,22.32546],[114.35458,22.32536],[114.35458,22.32526],[114.35465,22.3252],[114.35457,22.32507],[114.35446,22.32485],[114.35451,22.32474],[114.35445,22.32453],[114.35423,22.32429],[114.35403,22.32418],[114.35393,22.32392],[114.35396,22.32383],[114.35369,22.32367],[114.35319,22.32349],[114.35294,22.32344],[114.35277,22.32347],[114.35254,22.32359],[114.352,22.32424],[114.35145,22.32461],[114.35134,22.32485],[114.35109,22.32483],[114.35114,22.32493],[114.35097,22.32501],[114.3507,22.32506],[114.35073,22.32515],[114.35062,22.32521],[114.35051,22.32519],[114.35042,22.32517],[114.35015,22.32506],[114.35009,22.32495],[114.35021,22.32493],[114.35015,22.32483],[114.35001,22.32479],[114.34999,22.3247],[114.35001,22.32467],[114.35009,22.32467],[114.35013,22.32459],[114.34996,22.32452],[114.34982,22.3245],[114.34993,22.32437],[114.34978,22.32439],[114.34977,22.32435],[114.34983,22.32433],[114.34972,22.32424],[114.3497,22.32433],[114.34953,22.32423],[114.34944,22.32415],[114.34957,22.32405],[114.34947,22.32402],[114.34937,22.32406],[114.34934,22.324],[114.34944,22.32392],[114.34941,22.32387],[114.34931,22.32384],[114.34918,22.32389],[114.34914,22.32387],[114.3491,22.32374],[114.34886,22.32367],[114.34886,22.32364],[114.34895,22.32359],[114.349,22.32349],[114.34892,22.32344],[114.34878,22.32346],[114.34873,22.32335],[114.34878,22.32327],[114.34873,22.32327],[114.34874,22.32311],[114.3486,22.32322],[114.34854,22.32309],[114.34863,22.32297],[114.34845,22.32297],[114.34838,22.32291],[114.34835,22.32276],[114.34853,22.32266],[114.3483,22.32266],[114.34811,22.3224],[114.34803,22.32229],[114.34804,22.32221],[114.348,22.32216],[114.34796,22.32199],[114.34801,22.32196],[114.34809,22.32201],[114.34807,22.32192],[114.34809,22.3219],[114.34818,22.3219],[114.34822,22.32185],[114.34818,22.32182],[114.34818,22.32179],[114.34822,22.32158],[114.34812,22.32132],[114.34783,22.32118],[114.34769,22.32127],[114.34757,22.32128],[114.34746,22.32118],[114.34756,22.32112],[114.34753,22.32097],[114.34757,22.32093],[114.34753,22.32076],[114.34755,22.32053],[114.34765,22.32041],[114.34779,22.3203],[114.34786,22.32028],[114.34785,22.32019],[114.34796,22.31979],[114.34792,22.31968],[114.34781,22.31959],[114.34787,22.31951],[114.34783,22.31936],[114.34771,22.31923],[114.34766,22.31907],[114.34765,22.319],[114.3476,22.31902],[114.34752,22.31896],[114.34755,22.3189],[114.34736,22.3187],[114.3472,22.31869],[114.34691,22.31859],[114.34682,22.31862],[114.34668,22.31853],[114.34676,22.31842],[114.34673,22.31836],[114.34666,22.31835],[114.3467,22.31829],[114.34661,22.3183],[114.34654,22.3182],[114.34657,22.31811],[114.34666,22.31803],[114.34661,22.31789],[114.34643,22.31794],[114.3462,22.31788],[114.34619,22.31724],[114.34625,22.31714],[114.34623,22.31703],[114.34617,22.31701],[114.34616,22.31697],[114.34617,22.31661],[114.34619,22.31651],[114.34621,22.31644],[114.34639,22.31629],[114.34649,22.31628],[114.34666,22.31611],[114.34678,22.31606],[114.34665,22.31595],[114.34658,22.31591],[114.34654,22.31582],[114.34667,22.31571],[114.34659,22.31555],[114.34658,22.3154],[114.34679,22.31525],[114.34683,22.31518],[114.34672,22.31514],[114.34657,22.3152],[114.34641,22.31516],[114.34639,22.31511],[114.34644,22.31503],[114.34662,22.31498],[114.347,22.31501],[114.34686,22.31463],[114.34691,22.31443],[114.34704,22.31447],[114.34703,22.31424],[114.34707,22.31415],[114.34715,22.31409],[114.34714,22.31402],[114.34723,22.31396],[114.34744,22.31394],[114.34757,22.31387],[114.34739,22.31364],[114.34734,22.31348],[114.34742,22.31329],[114.34748,22.31324],[114.34758,22.31306],[114.34758,22.3129],[114.34791,22.31275],[114.34805,22.31262],[114.34825,22.31262],[114.3484,22.31268],[114.34844,22.31275],[114.3486,22.31291],[114.34868,22.31307],[114.34877,22.31339],[114.34883,22.31345],[114.34882,22.31356],[114.34861,22.31396],[114.34841,22.31405],[114.34814,22.31404],[114.34812,22.31411],[114.34823,22.3142],[114.3482,22.31425],[114.34808,22.31437],[114.34799,22.31439],[114.34755,22.31465],[114.34754,22.3147],[114.34786,22.31477],[114.34842,22.31473],[114.34857,22.31479],[114.34862,22.31487],[114.3486,22.31501],[114.34844,22.31509],[114.34848,22.31515],[114.34865,22.3152],[114.34855,22.31547],[114.34864,22.31576],[114.34854,22.31585],[114.34871,22.31605],[114.34882,22.31617],[114.34886,22.31625],[114.34954,22.31667],[114.35,22.31684],[114.35026,22.31688],[114.35039,22.31686],[114.3506,22.31677],[114.35068,22.31635],[114.35082,22.31613],[114.35092,22.31605],[114.35115,22.31597],[114.35129,22.31593],[114.35168,22.31598],[114.35199,22.31603],[114.35223,22.31624],[114.35244,22.31671],[114.35246,22.31681],[114.35243,22.31685],[114.35222,22.31696],[114.35229,22.3171],[114.35282,22.31738],[114.35307,22.3172],[114.3532,22.31717],[114.35327,22.31712],[114.35349,22.31712],[114.35366,22.31726],[114.35375,22.31747],[114.35377,22.31781],[114.35366,22.318],[114.35342,22.31811],[114.35363,22.31815],[114.35344,22.31856],[114.35348,22.3187],[114.35361,22.31877],[114.35361,22.31888],[114.35349,22.31926],[114.35355,22.31932],[114.35365,22.3194],[114.35389,22.31925],[114.35401,22.31927],[114.35406,22.31935],[114.35407,22.31948],[114.35374,22.3197],[114.35371,22.31985],[114.35382,22.31987],[114.35386,22.31993],[114.35371,22.32013],[114.35356,22.32019],[114.35347,22.32012],[114.35344,22.32014],[114.35311,22.32055],[114.3529,22.32055],[114.35287,22.32118],[114.353,22.3213],[114.35308,22.32123],[114.35322,22.32129],[114.35345,22.32137],[114.35347,22.32149],[114.35337,22.32159],[114.35336,22.32163],[114.35315,22.32195],[114.35307,22.32225],[114.35308,22.32236],[114.35327,22.32237],[114.35326,22.32252],[114.35342,22.3227],[114.35357,22.32255],[114.35384,22.32254],[114.35419,22.32246],[114.35466,22.32253],[114.35468,22.32257],[114.35464,22.32278],[114.35462,22.32283],[114.35447,22.323],[114.35407,22.32327],[114.35434,22.32337],[114.35445,22.32315],[114.35461,22.32302],[114.35512,22.32293],[114.35524,22.32294],[114.35538,22.32284],[114.35541,22.32285],[114.3555,22.32302],[114.35539,22.32311],[114.35522,22.32322],[114.35502,22.32334],[114.35481,22.32335],[114.355,22.32341],[114.35532,22.32347],[114.35534,22.3235],[114.35517,22.32359],[114.35529,22.32365],[114.35523,22.32378],[114.35528,22.32388],[114.35538,22.32388],[114.35556,22.32368],[114.35573,22.32363],[114.35575,22.32376],[114.35576,22.32381],[114.3559,22.32384],[114.35614,22.32378],[114.35617,22.32372],[114.35613,22.32367],[114.35627,22.3236],[114.35648,22.32358],[114.35658,22.32367],[114.3566,22.32383],[114.35674,22.32402],[114.35682,22.32427],[114.35686,22.32457],[114.35681,22.32471],[114.35686,22.32485],[114.35677,22.325],[114.35684,22.32505],[114.35671,22.32515],[114.35697,22.3251],[114.35702,22.32514],[114.35711,22.32527],[114.35692,22.32544],[114.35698,22.32548],[114.35707,22.32578],[114.35721,22.32575],[114.35757,22.32581],[114.35758,22.32585],[114.35762,22.32583],[114.35766,22.32604],[114.35741,22.32617],[114.35687,22.32614],[114.35678,22.32623]]],[[[114.35677,22.32645],[114.35678,22.32654],[114.35688,22.32658],[114.35663,22.32664],[114.35655,22.32658],[114.3565,22.32649],[114.35668,22.32641],[114.35677,22.32645]]],[[[114.36797,22.32685],[114.36779,22.32681],[114.36767,22.32673],[114.36758,22.32654],[114.36762,22.32648],[114.36774,22.32637],[114.36784,22.32633],[114.3683,22.32623],[114.36841,22.32623],[114.36851,22.32629],[114.3687,22.32627],[114.36887,22.32615],[114.36908,22.32612],[114.36913,22.32618],[114.36931,22.32618],[114.36938,22.32628],[114.36939,22.32637],[114.36932,22.32653],[114.36921,22.32666],[114.36897,22.32678],[114.36874,22.32683],[114.36827,22.3268],[114.36797,22.32685]]],[[[114.32498,22.32704],[114.325,22.32708],[114.32499,22.32713],[114.32497,22.32716],[114.32489,22.32719],[114.32485,22.32718],[114.32484,22.32716],[114.32487,22.32712],[114.32486,22.32705],[114.32491,22.32703],[114.32498,22.32704]]],[[[114.32845,22.32684],[114.32843,22.32697],[114.32835,22.32714],[114.32826,22.32722],[114.32811,22.32724],[114.32804,22.3272],[114.32802,22.32714],[114.32804,22.3271],[114.32811,22.32702],[114.32837,22.32681],[114.32842,22.3268],[114.32845,22.32684]]],[[[114.31361,22.32723],[114.31364,22.32727],[114.31364,22.3273],[114.31362,22.32731],[114.3136,22.32732],[114.31359,22.32733],[114.31358,22.32734],[114.31356,22.32735],[114.31354,22.32734],[114.31354,22.32734],[114.31353,22.32732],[114.31353,22.32731],[114.31355,22.3273],[114.31356,22.32727],[114.31357,22.32723],[114.31358,22.32722],[114.31361,22.32723]]],[[[114.32286,22.32708],[114.32288,22.32716],[114.32292,22.32736],[114.32291,22.32742],[114.3229,22.32744],[114.32288,22.32745],[114.32285,22.32745],[114.3228,22.32742],[114.32271,22.32733],[114.32252,22.32692],[114.32251,22.32667],[114.32258,22.32662],[114.32262,22.32661],[114.32274,22.32687],[114.32281,22.32694],[114.32291,22.32694],[114.32284,22.32675],[114.32285,22.32665],[114.32301,22.3265],[114.32339,22.3266],[114.32374,22.32676],[114.32372,22.32684],[114.3236,22.32691],[114.32348,22.32692],[114.32347,22.32704],[114.32323,22.32721],[114.32308,22.3272],[114.32294,22.32702],[114.32286,22.32708]]],[[[114.37335,22.32827],[114.37328,22.32832],[114.37313,22.32832],[114.37311,22.32821],[114.37315,22.3281],[114.37326,22.32812],[114.37331,22.32806],[114.37331,22.32798],[114.37342,22.32791],[114.37344,22.32795],[114.3733,22.32819],[114.37338,22.32818],[114.37335,22.32827]]],[[[114.36545,22.32845],[114.36546,22.32846],[114.36545,22.32848],[114.36545,22.32851],[114.36543,22.32851],[114.36541,22.32848],[114.3654,22.32846],[114.36541,22.32844],[114.36543,22.32843],[114.36545,22.32845]]],[[[114.33086,22.32844],[114.33085,22.32846],[114.33071,22.32854],[114.33063,22.3286],[114.33062,22.32853],[114.33066,22.32844],[114.3306,22.32845],[114.33059,22.32833],[114.33062,22.32831],[114.33064,22.32827],[114.33068,22.32824],[114.3307,22.3282],[114.33074,22.3282],[114.33074,22.32828],[114.33071,22.32831],[114.3308,22.32842],[114.33084,22.32842],[114.33086,22.32844]]],[[[114.31881,22.32927],[114.31881,22.32928],[114.31875,22.32929],[114.31873,22.32928],[114.31873,22.32927],[114.31873,22.32927],[114.31876,22.32927],[114.31878,22.32925],[114.31879,22.32925],[114.31881,22.32927]]],[[[114.36519,22.32904],[114.36524,22.32907],[114.36527,22.32911],[114.36526,22.32914],[114.36519,22.32926],[114.36514,22.32927],[114.36509,22.32921],[114.36499,22.32911],[114.3651,22.32904],[114.36519,22.32904]]],[[[114.29726,22.32951],[114.29728,22.32956],[114.29732,22.32961],[114.29726,22.32965],[114.29722,22.32965],[114.29719,22.32964],[114.29714,22.32957],[114.29714,22.32952],[114.2972,22.3295],[114.29726,22.32951]]],[[[114.36204,22.33019],[114.36203,22.33024],[114.36197,22.33031],[114.36197,22.33036],[114.36194,22.33036],[114.36186,22.33031],[114.36186,22.33027],[114.36189,22.33016],[114.362,22.33013],[114.36204,22.33019]]],[[[114.3603,22.33036],[114.3603,22.33037],[114.3603,22.33038],[114.3603,22.33039],[114.36028,22.33039],[114.36027,22.33039],[114.36027,22.33038],[114.36028,22.33036],[114.36029,22.33036],[114.3603,22.33036]]],[[[114.36721,22.33037],[114.3672,22.33041],[114.36719,22.33044],[114.36717,22.33046],[114.3671,22.33048],[114.36709,22.33046],[114.36711,22.33043],[114.36711,22.33038],[114.36715,22.33033],[114.36717,22.33033],[114.36721,22.33037]]],[[[114.3671,22.33017],[114.36699,22.33033],[114.36695,22.33046],[114.36689,22.3305],[114.36684,22.3305],[114.36683,22.33043],[114.36688,22.33034],[114.3669,22.33012],[114.36694,22.33007],[114.36706,22.33004],[114.3671,22.33017]]],[[[114.36156,22.33049],[114.36157,22.33051],[114.36157,22.33052],[114.36156,22.33053],[114.36154,22.33054],[114.36153,22.33053],[114.36153,22.33052],[114.36153,22.33051],[114.36153,22.33049],[114.36154,22.33049],[114.36155,22.33048],[114.36156,22.33049]]],[[[114.29611,22.33064],[114.29614,22.33067],[114.29616,22.33068],[114.29616,22.33069],[114.29612,22.33069],[114.29609,22.3307],[114.29607,22.3307],[114.29605,22.33068],[114.29605,22.33064],[114.29605,22.33063],[114.29607,22.33063],[114.29611,22.33064]]],[[[114.36689,22.33061],[114.36688,22.33066],[114.36684,22.33068],[114.3668,22.33068],[114.36678,22.33066],[114.36679,22.33063],[114.36683,22.33061],[114.36686,22.3306],[114.36689,22.33061]]],[[[114.36023,22.33063],[114.36026,22.33067],[114.36022,22.33074],[114.36019,22.33078],[114.36017,22.33077],[114.36015,22.33069],[114.36016,22.33066],[114.36021,22.33062],[114.36023,22.33063]]],[[[114.36749,22.33078],[114.36732,22.3307],[114.36728,22.33063],[114.36738,22.33058],[114.3675,22.33071],[114.36754,22.33069],[114.36738,22.33055],[114.36744,22.33039],[114.36742,22.33031],[114.36749,22.33021],[114.3676,22.33024],[114.36754,22.33008],[114.36764,22.32998],[114.36769,22.33],[114.36784,22.32994],[114.36793,22.33005],[114.36791,22.33016],[114.36808,22.33026],[114.36809,22.33045],[114.36803,22.3306],[114.36787,22.33072],[114.36776,22.33077],[114.36769,22.33074],[114.36749,22.33078]]],[[[114.36725,22.33045],[114.36724,22.33059],[114.36706,22.33064],[114.36715,22.33074],[114.36706,22.33089],[114.36702,22.33089],[114.36692,22.33078],[114.36694,22.33069],[114.36702,22.33056],[114.36719,22.3305],[114.36721,22.33044],[114.36725,22.33045]]],[[[114.3668,22.33095],[114.36678,22.33097],[114.36673,22.33097],[114.36672,22.33095],[114.36675,22.33088],[114.36677,22.33087],[114.36678,22.33086],[114.3668,22.33095]]],[[[114.3453,22.33117],[114.34531,22.3312],[114.3453,22.33123],[114.34531,22.33126],[114.34529,22.33128],[114.34523,22.33129],[114.34522,22.3313],[114.3452,22.3313],[114.34518,22.33129],[114.34515,22.33127],[114.34515,22.33125],[114.34512,22.33125],[114.3451,22.33123],[114.34511,22.33121],[114.3451,22.33119],[114.34511,22.33117],[114.34518,22.33117],[114.3453,22.33117]]],[[[114.29518,22.33117],[114.29479,22.33142],[114.29425,22.33165],[114.2937,22.33172],[114.2936,22.33169],[114.29354,22.33162],[114.29358,22.33144],[114.29372,22.33128],[114.29384,22.33105],[114.29372,22.33084],[114.29365,22.33061],[114.29336,22.33029],[114.29332,22.32971],[114.29325,22.32953],[114.29318,22.32904],[114.29311,22.32861],[114.29279,22.32794],[114.29276,22.32761],[114.29279,22.32738],[114.29286,22.32733],[114.29308,22.3273],[114.29317,22.32722],[114.29329,22.32673],[114.29343,22.32663],[114.29356,22.32653],[114.29363,22.32608],[114.29369,22.32608],[114.2939,22.32588],[114.2939,22.32561],[114.29394,22.32553],[114.29401,22.32551],[114.29431,22.32539],[114.2945,22.32526],[114.29459,22.32514],[114.29466,22.32478],[114.29465,22.32415],[114.29484,22.32412],[114.29483,22.32407],[114.29489,22.32399],[114.29486,22.32393],[114.29495,22.32392],[114.29504,22.32368],[114.29518,22.32352],[114.29533,22.32329],[114.29535,22.32334],[114.2953,22.32344],[114.29545,22.32348],[114.29554,22.32343],[114.29553,22.32324],[114.29559,22.32322],[114.29568,22.32325],[114.2957,22.32311],[114.29578,22.32303],[114.2959,22.32304],[114.29608,22.32296],[114.29632,22.32292],[114.29634,22.32289],[114.29634,22.32286],[114.29629,22.32284],[114.29626,22.32281],[114.29626,22.32279],[114.29625,22.32278],[114.29621,22.3228],[114.29618,22.3228],[114.29616,22.32277],[114.29624,22.32268],[114.29629,22.32265],[114.29636,22.32266],[114.29641,22.3226],[114.29646,22.32256],[114.29653,22.32255],[114.29657,22.32254],[114.29667,22.32261],[114.29683,22.32261],[114.29687,22.3226],[114.29684,22.32256],[114.29692,22.32259],[114.29694,22.32253],[114.29697,22.32253],[114.29698,22.32256],[114.29697,22.32259],[114.29707,22.32263],[114.29709,22.32259],[114.29714,22.32259],[114.29715,22.32261],[114.29721,22.32257],[114.29728,22.32253],[114.29758,22.32247],[114.29759,22.32243],[114.29771,22.32237],[114.29796,22.32233],[114.29803,22.32241],[114.29798,22.32255],[114.29803,22.32263],[114.29814,22.32272],[114.29825,22.32252],[114.29829,22.32247],[114.29835,22.32243],[114.29843,22.32242],[114.29849,22.32239],[114.2985,22.3224],[114.29849,22.3225],[114.29846,22.32257],[114.29844,22.32261],[114.29843,22.32263],[114.29843,22.32264],[114.29848,22.32263],[114.2986,22.32252],[114.2989,22.32221],[114.29904,22.32216],[114.29911,22.32219],[114.29923,22.32212],[114.29932,22.32201],[114.29937,22.32202],[114.29948,22.32201],[114.29959,22.32214],[114.29972,22.32216],[114.29977,22.32232],[114.29998,22.32236],[114.29989,22.32227],[114.29997,22.32217],[114.30012,22.32212],[114.30057,22.32233],[114.30065,22.32247],[114.30081,22.32254],[114.30086,22.32247],[114.30097,22.32252],[114.30097,22.32256],[114.30102,22.32256],[114.30132,22.32291],[114.30143,22.32317],[114.30136,22.32326],[114.30127,22.32345],[114.30104,22.32344],[114.3009,22.32352],[114.30083,22.32355],[114.30077,22.32368],[114.3008,22.32393],[114.3009,22.32409],[114.30101,22.32404],[114.30109,22.32407],[114.30103,22.32415],[114.3011,22.32418],[114.30117,22.3243],[114.30132,22.32428],[114.30135,22.32435],[114.30137,22.32432],[114.30137,22.32424],[114.30141,22.32418],[114.3015,22.32418],[114.30162,22.3242],[114.30162,22.32429],[114.30165,22.32434],[114.3017,22.32436],[114.30174,22.32445],[114.3017,22.32448],[114.30172,22.32451],[114.30194,22.32449],[114.30206,22.32453],[114.30199,22.32481],[114.30203,22.32486],[114.30212,22.32484],[114.30226,22.32493],[114.30216,22.32509],[114.30203,22.32519],[114.30204,22.32521],[114.30211,22.32517],[114.30214,22.32518],[114.30213,22.32523],[114.30199,22.32534],[114.302,22.32536],[114.30213,22.32531],[114.30216,22.32537],[114.30198,22.32551],[114.30202,22.32556],[114.30194,22.32563],[114.30195,22.32565],[114.30175,22.32577],[114.30159,22.32577],[114.30147,22.32587],[114.30135,22.32576],[114.30126,22.32578],[114.30104,22.32595],[114.30067,22.32598],[114.30062,22.3261],[114.30077,22.32611],[114.30078,22.32618],[114.30065,22.32633],[114.30059,22.32635],[114.30056,22.32638],[114.3004,22.32636],[114.30036,22.32671],[114.30038,22.32681],[114.30044,22.32684],[114.30056,22.3268],[114.30064,22.32682],[114.30072,22.32677],[114.30075,22.32683],[114.30082,22.32682],[114.30079,22.32692],[114.30063,22.32699],[114.30051,22.32697],[114.30012,22.327],[114.30005,22.32705],[114.29985,22.32713],[114.29968,22.32687],[114.29955,22.32689],[114.29958,22.32696],[114.29953,22.32716],[114.29936,22.32748],[114.29934,22.32759],[114.29926,22.32756],[114.29911,22.32753],[114.29889,22.32765],[114.29902,22.32784],[114.29863,22.32786],[114.29858,22.32794],[114.29861,22.32816],[114.29867,22.32821],[114.29899,22.32818],[114.29909,22.32825],[114.29927,22.32823],[114.2993,22.32831],[114.29925,22.32845],[114.29883,22.32852],[114.29852,22.32856],[114.29798,22.32865],[114.29804,22.32872],[114.29819,22.3288],[114.29838,22.32874],[114.29844,22.32877],[114.29845,22.32884],[114.29839,22.329],[114.29827,22.32905],[114.29793,22.32904],[114.29766,22.32895],[114.29756,22.32905],[114.29739,22.32887],[114.29728,22.32903],[114.29726,22.32907],[114.29742,22.32931],[114.2972,22.32942],[114.29699,22.32943],[114.29681,22.32944],[114.29695,22.32963],[114.29692,22.32969],[114.29703,22.32976],[114.29703,22.32978],[114.29701,22.32979],[114.29697,22.3298],[114.29677,22.32972],[114.29667,22.32969],[114.29681,22.32986],[114.29669,22.32988],[114.29665,22.32987],[114.29663,22.32988],[114.29664,22.32991],[114.29668,22.32995],[114.29672,22.32999],[114.29675,22.33003],[114.29674,22.33005],[114.29674,22.33006],[114.29671,22.33007],[114.29665,22.33008],[114.29657,22.33008],[114.29631,22.32995],[114.2962,22.32998],[114.29609,22.33006],[114.29596,22.33031],[114.29595,22.33054],[114.29597,22.33056],[114.29596,22.33058],[114.29585,22.33059],[114.29582,22.33059],[114.29581,22.3306],[114.29581,22.33062],[114.2958,22.33063],[114.29578,22.33063],[114.29575,22.33062],[114.29571,22.33063],[114.29565,22.33063],[114.2956,22.33065],[114.29551,22.33075],[114.29546,22.33079],[114.29545,22.33082],[114.29547,22.33083],[114.29549,22.33085],[114.29549,22.33086],[114.29548,22.33087],[114.29545,22.33086],[114.29544,22.33085],[114.29534,22.3308],[114.29518,22.33117]]],[[[114.36635,22.33175],[114.36639,22.33177],[114.36641,22.33178],[114.36642,22.33181],[114.36642,22.33183],[114.3664,22.33185],[114.3663,22.3319],[114.36634,22.3319],[114.36636,22.33192],[114.36636,22.33195],[114.36635,22.33196],[114.36632,22.33196],[114.36619,22.33195],[114.36618,22.33192],[114.36619,22.33188],[114.36621,22.33184],[114.36623,22.33183],[114.36625,22.33182],[114.36629,22.33175],[114.3663,22.33174],[114.36635,22.33175]]],[[[114.37,22.33196],[114.36997,22.33206],[114.36998,22.33213],[114.36993,22.33226],[114.36994,22.33236],[114.37004,22.33237],[114.37007,22.33238],[114.37005,22.33242],[114.37001,22.33244],[114.36995,22.33243],[114.36989,22.3323],[114.3699,22.33222],[114.3699,22.33215],[114.36987,22.33207],[114.3699,22.33204],[114.36994,22.33202],[114.36996,22.33194],[114.36998,22.33192],[114.37,22.33196]]],[[[114.37204,22.33312],[114.37198,22.33298],[114.37202,22.33266],[114.37206,22.33259],[114.37217,22.33266],[114.3723,22.33286],[114.37225,22.33299],[114.37227,22.33305],[114.37224,22.33308],[114.37216,22.33307],[114.37204,22.33312]]],[[[114.37157,22.3336],[114.37154,22.3336],[114.37152,22.33359],[114.37148,22.33353],[114.37148,22.33351],[114.3715,22.3335],[114.37155,22.3335],[114.37159,22.33349],[114.37162,22.33348],[114.37166,22.3335],[114.37166,22.33353],[114.37165,22.33354],[114.37167,22.33355],[114.37169,22.33355],[114.3717,22.33356],[114.37169,22.33358],[114.37166,22.33359],[114.37164,22.33359],[114.37164,22.33357],[114.37163,22.33356],[114.37157,22.3336]]],[[[114.37115,22.33395],[114.37071,22.33393],[114.37032,22.33379],[114.37027,22.33372],[114.3701,22.33376],[114.37005,22.33372],[114.37009,22.33364],[114.37016,22.33362],[114.37021,22.33351],[114.37025,22.33351],[114.37031,22.33347],[114.37038,22.33331],[114.37048,22.3333],[114.37048,22.33321],[114.37035,22.333],[114.37035,22.33291],[114.37029,22.33287],[114.37027,22.33275],[114.3701,22.33263],[114.37013,22.33234],[114.37002,22.33233],[114.37001,22.33227],[114.37017,22.3321],[114.37022,22.33199],[114.37034,22.33191],[114.37035,22.33204],[114.3706,22.33195],[114.37064,22.33188],[114.37074,22.33185],[114.37075,22.33177],[114.3706,22.33164],[114.37073,22.33149],[114.37084,22.33144],[114.37107,22.33143],[114.37143,22.33158],[114.37109,22.33119],[114.37106,22.33095],[114.37107,22.33064],[114.371,22.33054],[114.37116,22.33014],[114.37122,22.32981],[114.37146,22.32946],[114.37152,22.32945],[114.37163,22.32967],[114.37167,22.32969],[114.37166,22.32952],[114.37173,22.32938],[114.37199,22.32957],[114.37207,22.32961],[114.37211,22.32959],[114.37185,22.32933],[114.37181,22.3292],[114.37165,22.32901],[114.3716,22.32879],[114.37169,22.32855],[114.37193,22.32835],[114.37207,22.32815],[114.37207,22.32807],[114.37223,22.32803],[114.37212,22.32812],[114.37206,22.3283],[114.37217,22.32834],[114.37223,22.32828],[114.37236,22.32824],[114.37235,22.32843],[114.37248,22.32854],[114.37266,22.32856],[114.37279,22.32845],[114.37289,22.32843],[114.37284,22.32824],[114.37292,22.32822],[114.37294,22.32835],[114.37288,22.32859],[114.37298,22.32871],[114.3731,22.3284],[114.37314,22.32836],[114.37343,22.32837],[114.37364,22.32832],[114.37379,22.32819],[114.37393,22.32821],[114.37401,22.32799],[114.37412,22.32785],[114.37427,22.32775],[114.37442,22.32782],[114.37441,22.32789],[114.37449,22.32796],[114.37447,22.3277],[114.37456,22.32766],[114.37462,22.32771],[114.37458,22.32797],[114.37453,22.32803],[114.37443,22.32804],[114.37446,22.32815],[114.37461,22.32819],[114.37485,22.32798],[114.37499,22.32822],[114.37505,22.32823],[114.37521,22.32817],[114.37514,22.32809],[114.37506,22.32778],[114.37521,22.32777],[114.37533,22.32783],[114.37531,22.3279],[114.37527,22.32792],[114.37537,22.32803],[114.37559,22.32803],[114.37571,22.32795],[114.37579,22.32806],[114.37576,22.32826],[114.37587,22.32841],[114.37585,22.3287],[114.37597,22.32873],[114.37603,22.32845],[114.37616,22.32827],[114.37617,22.32819],[114.37625,22.32813],[114.37635,22.3282],[114.37634,22.32848],[114.37639,22.32858],[114.37648,22.32833],[114.3766,22.32823],[114.37664,22.32813],[114.37683,22.32798],[114.37696,22.32796],[114.377,22.32791],[114.37705,22.32788],[114.37712,22.32802],[114.37727,22.32801],[114.37727,22.32786],[114.37752,22.32761],[114.37779,22.32762],[114.37809,22.32796],[114.3781,22.32818],[114.37802,22.32832],[114.37799,22.32849],[114.37785,22.3286],[114.3777,22.32864],[114.37756,22.32862],[114.37757,22.3289],[114.37752,22.32898],[114.37729,22.32903],[114.37708,22.32912],[114.37697,22.32911],[114.37677,22.32925],[114.37667,22.32921],[114.37657,22.32931],[114.37631,22.32936],[114.37612,22.32938],[114.37603,22.32939],[114.37594,22.32938],[114.37587,22.32929],[114.37588,22.32908],[114.37585,22.32909],[114.37577,22.32915],[114.37572,22.32927],[114.37565,22.32967],[114.37545,22.33029],[114.37527,22.33049],[114.37507,22.33054],[114.37501,22.33055],[114.37481,22.33053],[114.37434,22.33034],[114.3742,22.33042],[114.37421,22.33052],[114.37405,22.3305],[114.37399,22.33042],[114.37387,22.33053],[114.37339,22.3306],[114.37304,22.3305],[114.37295,22.33054],[114.3729,22.33071],[114.37298,22.33096],[114.37313,22.33111],[114.37317,22.33123],[114.37317,22.33138],[114.37309,22.33151],[114.37298,22.33158],[114.37291,22.33167],[114.37283,22.33165],[114.37281,22.3316],[114.37269,22.33159],[114.37266,22.33179],[114.37247,22.33186],[114.37206,22.33173],[114.37209,22.33179],[114.37225,22.33186],[114.37232,22.33201],[114.37246,22.33204],[114.37243,22.33216],[114.37236,22.33214],[114.37227,22.33205],[114.37219,22.33204],[114.37212,22.33197],[114.37199,22.33195],[114.37184,22.3318],[114.37174,22.33182],[114.3716,22.33194],[114.37176,22.33207],[114.37176,22.33221],[114.3717,22.33227],[114.37164,22.33218],[114.37157,22.33223],[114.3715,22.33219],[114.37147,22.33228],[114.37165,22.33238],[114.37184,22.3324],[114.37194,22.33248],[114.3719,22.33252],[114.37196,22.33262],[114.37189,22.33299],[114.37176,22.33325],[114.37171,22.33327],[114.37146,22.33326],[114.37143,22.33329],[114.37146,22.33333],[114.37143,22.33347],[114.37129,22.33355],[114.37118,22.33357],[114.3707,22.33341],[114.37061,22.33328],[114.37042,22.33334],[114.37042,22.33346],[114.37053,22.33346],[114.37056,22.33351],[114.37064,22.33347],[114.37084,22.33351],[114.37116,22.33369],[114.37115,22.33395]]],[[[114.37132,22.33385],[114.37127,22.33389],[114.37127,22.33391],[114.37122,22.33395],[114.37119,22.33396],[114.37118,22.33394],[114.3712,22.33387],[114.37122,22.33384],[114.3713,22.33383],[114.37132,22.33385]]],[[[114.3709,22.33449],[114.37084,22.33452],[114.37073,22.33455],[114.37068,22.33455],[114.3705,22.33448],[114.37032,22.33449],[114.37015,22.33443],[114.37002,22.33439],[114.36995,22.33424],[114.36978,22.33434],[114.36974,22.3344],[114.36969,22.33433],[114.36962,22.33436],[114.36963,22.33447],[114.36957,22.33447],[114.36958,22.33434],[114.36952,22.33438],[114.36934,22.33437],[114.36927,22.33432],[114.36926,22.33423],[114.36928,22.3342],[114.36935,22.3342],[114.36945,22.33412],[114.36948,22.33405],[114.36944,22.33397],[114.36951,22.33391],[114.36974,22.33392],[114.36987,22.33396],[114.36999,22.33394],[114.37016,22.3341],[114.37029,22.33408],[114.37034,22.33403],[114.37051,22.33403],[114.37087,22.33416],[114.37089,22.33421],[114.37097,22.33425],[114.3709,22.33449]]],[[[114.37033,22.33459],[114.37037,22.33465],[114.37035,22.33472],[114.37015,22.33475],[114.36998,22.33482],[114.3698,22.3347],[114.36983,22.33451],[114.3699,22.33449],[114.37005,22.33447],[114.37033,22.33459]]],[[[114.36733,22.33476],[114.36733,22.33478],[114.36732,22.3348],[114.36728,22.33483],[114.36725,22.33483],[114.36723,22.33482],[114.36722,22.33481],[114.36723,22.33478],[114.36726,22.33476],[114.36731,22.33475],[114.36733,22.33476]]],[[[114.37052,22.33504],[114.37051,22.33515],[114.37043,22.33517],[114.37041,22.33523],[114.37036,22.33525],[114.37023,22.33522],[114.37023,22.33511],[114.37036,22.33499],[114.37044,22.33496],[114.37052,22.33504]]],[[[114.26994,22.3359],[114.26993,22.33591],[114.26993,22.33588],[114.26995,22.33587],[114.26995,22.33586],[114.26995,22.33584],[114.26997,22.33584],[114.26999,22.33584],[114.27,22.33585],[114.27003,22.33588],[114.27001,22.33589],[114.26999,22.33589],[114.26996,22.33587],[114.26994,22.3359]]],[[[114.27006,22.33672],[114.27003,22.33675],[114.26998,22.33678],[114.27,22.33684],[114.26997,22.33686],[114.26995,22.33686],[114.26993,22.33685],[114.26992,22.33677],[114.26996,22.3366],[114.27004,22.33654],[114.27008,22.33654],[114.2701,22.33659],[114.27009,22.33662],[114.27002,22.33662],[114.27,22.3367],[114.27004,22.33669],[114.27006,22.33672]]],[[[114.36795,22.33649],[114.36792,22.33652],[114.36801,22.33655],[114.36801,22.33658],[114.368,22.3366],[114.36796,22.33661],[114.36801,22.33663],[114.36803,22.33666],[114.36802,22.3367],[114.36798,22.3368],[114.36792,22.33683],[114.36763,22.33671],[114.36759,22.33667],[114.36756,22.33662],[114.36756,22.33658],[114.3676,22.33652],[114.36765,22.33645],[114.36767,22.33634],[114.3677,22.33633],[114.36773,22.33634],[114.36776,22.33647],[114.36777,22.3364],[114.36782,22.33637],[114.36777,22.33622],[114.36777,22.33618],[114.36781,22.33616],[114.36786,22.3362],[114.36785,22.33623],[114.3679,22.33622],[114.36798,22.33627],[114.36797,22.33633],[114.36786,22.33637],[114.36801,22.33635],[114.36802,22.33636],[114.36802,22.33639],[114.36796,22.33644],[114.36795,22.33649]]],[[[114.33476,22.33724],[114.33467,22.3373],[114.33449,22.33733],[114.33444,22.33731],[114.33423,22.3373],[114.3338,22.3372],[114.33368,22.33721],[114.33362,22.33715],[114.33358,22.33711],[114.33354,22.33709],[114.33326,22.33685],[114.33314,22.33657],[114.33309,22.33656],[114.33303,22.33649],[114.33303,22.33646],[114.33309,22.33639],[114.33306,22.33609],[114.33314,22.33603],[114.33325,22.33606],[114.33331,22.33587],[114.33328,22.33582],[114.33316,22.33582],[114.33311,22.33577],[114.33308,22.33581],[114.33305,22.33579],[114.33303,22.33579],[114.33304,22.33573],[114.33306,22.33573],[114.3331,22.33576],[114.3331,22.3357],[114.33301,22.3356],[114.33302,22.3355],[114.33293,22.33549],[114.33283,22.33536],[114.33277,22.33521],[114.33274,22.33495],[114.33292,22.33476],[114.33303,22.33457],[114.3335,22.33427],[114.33379,22.33426],[114.3339,22.33423],[114.33413,22.33418],[114.3343,22.33421],[114.33444,22.33428],[114.33445,22.33429],[114.33461,22.33474],[114.33466,22.33472],[114.33471,22.33458],[114.33485,22.33446],[114.33501,22.33437],[114.33516,22.33437],[114.33532,22.33436],[114.3355,22.33447],[114.33557,22.33489],[114.3356,22.33498],[114.33566,22.335],[114.33573,22.33492],[114.33579,22.33459],[114.33587,22.33455],[114.33594,22.33461],[114.33603,22.33462],[114.33605,22.33483],[114.33604,22.33497],[114.33576,22.335],[114.33569,22.33504],[114.3357,22.33511],[114.33563,22.33518],[114.33539,22.33521],[114.33528,22.33541],[114.33531,22.33554],[114.33525,22.33565],[114.33489,22.33585],[114.33486,22.33592],[114.33495,22.33596],[114.33501,22.33608],[114.3349,22.33618],[114.3351,22.33634],[114.33511,22.33647],[114.33506,22.33653],[114.33501,22.33672],[114.33496,22.33689],[114.33495,22.33697],[114.33495,22.33704],[114.33476,22.33724]]],[[[114.3752,22.33912],[114.37479,22.33915],[114.37454,22.33925],[114.37448,22.3391],[114.3745,22.33893],[114.37445,22.33888],[114.37447,22.3388],[114.37466,22.33867],[114.37483,22.33862],[114.37503,22.33863],[114.37512,22.33869],[114.37529,22.33863],[114.37543,22.33867],[114.3755,22.33867],[114.37557,22.33867],[114.37558,22.33885],[114.37556,22.33897],[114.37552,22.33906],[114.37541,22.33909],[114.37528,22.33906],[114.3752,22.33912]]],[[[114.37458,22.33928],[114.3746,22.33931],[114.37458,22.33936],[114.3746,22.33939],[114.3746,22.33941],[114.37458,22.33941],[114.37455,22.33937],[114.37454,22.33936],[114.37456,22.33928],[114.37457,22.33928],[114.37458,22.33928]]],[[[114.37473,22.3395],[114.37472,22.3395],[114.3747,22.33949],[114.3747,22.33947],[114.3747,22.33944],[114.37475,22.33943],[114.37479,22.33942],[114.37481,22.33942],[114.37483,22.33946],[114.37483,22.33946],[114.3748,22.33947],[114.37478,22.3395],[114.37476,22.3395],[114.37474,22.33949],[114.37473,22.3395]]],[[[114.36695,22.33949],[114.36694,22.33951],[114.36692,22.33952],[114.36692,22.33952],[114.36689,22.33951],[114.36688,22.33949],[114.36689,22.33947],[114.3669,22.33946],[114.36692,22.33946],[114.36695,22.33949]]],[[[114.37505,22.33956],[114.37503,22.33961],[114.37501,22.33962],[114.37497,22.33962],[114.37494,22.3396],[114.3749,22.33954],[114.37487,22.33954],[114.37485,22.33952],[114.37485,22.3395],[114.37488,22.33948],[114.37503,22.33952],[114.37505,22.33956]]],[[[114.36619,22.33962],[114.36609,22.33966],[114.3659,22.33966],[114.36576,22.33959],[114.36571,22.33954],[114.36571,22.33951],[114.36573,22.33946],[114.3658,22.3394],[114.36579,22.33939],[114.36578,22.33939],[114.36567,22.33942],[114.36565,22.33944],[114.36566,22.33954],[114.36562,22.33958],[114.36552,22.33955],[114.36548,22.33949],[114.36547,22.33944],[114.36547,22.33941],[114.36542,22.33934],[114.36544,22.33932],[114.36551,22.33931],[114.36554,22.33928],[114.36538,22.3392],[114.36528,22.33906],[114.36526,22.33876],[114.36517,22.3382],[114.36501,22.33776],[114.36493,22.33769],[114.36443,22.33751],[114.36424,22.33779],[114.36409,22.33786],[114.36413,22.3379],[114.36406,22.33803],[114.3641,22.33809],[114.36407,22.33812],[114.36402,22.33811],[114.364,22.33819],[114.36391,22.33822],[114.36378,22.33819],[114.36381,22.33823],[114.36379,22.33825],[114.36366,22.33815],[114.3634,22.3383],[114.36352,22.33835],[114.36351,22.3384],[114.36271,22.33884],[114.36268,22.33881],[114.36263,22.33884],[114.36258,22.33881],[114.36257,22.33878],[114.36252,22.33878],[114.36249,22.33881],[114.36247,22.33882],[114.36243,22.3388],[114.36241,22.33878],[114.36241,22.33872],[114.36238,22.33862],[114.36241,22.33857],[114.36238,22.33854],[114.36238,22.33852],[114.36232,22.3385],[114.36231,22.33853],[114.36228,22.33854],[114.36224,22.33851],[114.36218,22.33853],[114.36201,22.33853],[114.36193,22.33849],[114.36184,22.33851],[114.36184,22.33864],[114.36182,22.33867],[114.36175,22.33872],[114.36172,22.33872],[114.3617,22.3387],[114.36174,22.33864],[114.36169,22.33867],[114.36167,22.33867],[114.36162,22.33859],[114.36165,22.33869],[114.36164,22.33872],[114.36162,22.33874],[114.36158,22.33874],[114.36155,22.33875],[114.36143,22.33868],[114.36146,22.33875],[114.36142,22.33874],[114.36144,22.33883],[114.36131,22.33876],[114.36131,22.33867],[114.36136,22.33865],[114.36129,22.33856],[114.36125,22.33858],[114.36127,22.33869],[114.36123,22.3388],[114.36117,22.33878],[114.36115,22.33874],[114.36106,22.33875],[114.361,22.33859],[114.36103,22.33843],[114.36106,22.33841],[114.36113,22.33844],[114.36115,22.33841],[114.36099,22.33831],[114.36095,22.33822],[114.36097,22.33814],[114.36092,22.33817],[114.36087,22.33794],[114.361,22.33754],[114.361,22.3374],[114.36092,22.33729],[114.36102,22.33715],[114.36106,22.33684],[114.36104,22.33665],[114.3611,22.33653],[114.36112,22.33634],[114.361,22.33602],[114.36087,22.33588],[114.3608,22.33589],[114.36079,22.33587],[114.36079,22.33584],[114.36081,22.33582],[114.36081,22.33581],[114.36071,22.33585],[114.36068,22.33582],[114.36067,22.33576],[114.36062,22.33576],[114.3606,22.33575],[114.36059,22.33574],[114.36062,22.33572],[114.36064,22.33566],[114.36064,22.33563],[114.36062,22.33559],[114.3606,22.33557],[114.36057,22.33559],[114.36054,22.33558],[114.36054,22.33557],[114.36054,22.33553],[114.36051,22.33555],[114.36049,22.33554],[114.36048,22.33552],[114.36049,22.33536],[114.36037,22.33531],[114.36049,22.33505],[114.36046,22.33493],[114.36058,22.33483],[114.36051,22.33482],[114.36049,22.33477],[114.36058,22.33455],[114.36068,22.33449],[114.36076,22.33449],[114.36079,22.33453],[114.36087,22.3345],[114.36089,22.33437],[114.36073,22.33441],[114.36074,22.33434],[114.36082,22.33427],[114.36085,22.33433],[114.3609,22.3343],[114.36094,22.33421],[114.36091,22.33417],[114.36101,22.33406],[114.36107,22.33402],[114.3611,22.33398],[114.3611,22.33396],[114.36109,22.33393],[114.36106,22.33391],[114.36101,22.33391],[114.36091,22.33395],[114.36082,22.33393],[114.36074,22.33399],[114.36065,22.334],[114.3606,22.33398],[114.36058,22.33389],[114.36087,22.33349],[114.36088,22.33348],[114.36072,22.3334],[114.36077,22.33331],[114.36103,22.33344],[114.36109,22.33335],[114.3612,22.33333],[114.36123,22.33327],[114.36127,22.33324],[114.36134,22.33321],[114.36138,22.3332],[114.36143,22.33322],[114.36148,22.33275],[114.36141,22.33242],[114.3613,22.33224],[114.36103,22.33222],[114.36103,22.33218],[114.36105,22.33211],[114.36097,22.33214],[114.36097,22.3322],[114.36095,22.33222],[114.36089,22.33222],[114.36083,22.3322],[114.36081,22.33217],[114.36081,22.33214],[114.36083,22.33211],[114.36104,22.33205],[114.36097,22.33203],[114.36095,22.33199],[114.36096,22.33195],[114.3609,22.33191],[114.3609,22.33187],[114.36093,22.3318],[114.36066,22.33177],[114.36066,22.33174],[114.36067,22.33173],[114.36082,22.33168],[114.36082,22.33162],[114.3608,22.33152],[114.36055,22.33152],[114.36052,22.33144],[114.36045,22.33146],[114.36042,22.33146],[114.36039,22.33145],[114.36038,22.33139],[114.36039,22.33134],[114.36047,22.33127],[114.36054,22.33127],[114.36058,22.33124],[114.36045,22.33124],[114.36037,22.33126],[114.36034,22.33125],[114.36036,22.33122],[114.36045,22.33119],[114.36035,22.33119],[114.36033,22.33118],[114.36033,22.33117],[114.36049,22.33106],[114.36046,22.33101],[114.36035,22.331],[114.36027,22.33095],[114.36024,22.33093],[114.36024,22.33091],[114.36026,22.33088],[114.36029,22.33085],[114.36034,22.33075],[114.36028,22.33073],[114.36027,22.33069],[114.36028,22.33064],[114.36029,22.33062],[114.36032,22.33062],[114.3604,22.33072],[114.36044,22.3307],[114.36056,22.3306],[114.36062,22.33054],[114.36056,22.33052],[114.36053,22.3305],[114.36051,22.33036],[114.36052,22.33024],[114.36059,22.33],[114.3607,22.3299],[114.36076,22.32988],[114.36083,22.32987],[114.36094,22.3299],[114.36114,22.33],[114.36117,22.33005],[114.3612,22.33014],[114.36118,22.33017],[114.36116,22.33018],[114.36113,22.33018],[114.36109,22.33019],[114.36107,22.33021],[114.36117,22.33021],[114.3612,22.33023],[114.36123,22.33026],[114.3614,22.33074],[114.36142,22.33074],[114.36144,22.33073],[114.36145,22.33071],[114.36145,22.33069],[114.36144,22.33064],[114.36144,22.33061],[114.36141,22.33057],[114.36142,22.33054],[114.36143,22.33052],[114.36144,22.33049],[114.36141,22.33043],[114.36142,22.33041],[114.36146,22.33037],[114.36147,22.33036],[114.3615,22.33038],[114.36153,22.33041],[114.36153,22.33045],[114.36146,22.33057],[114.36147,22.33059],[114.36154,22.33057],[114.36158,22.33058],[114.36162,22.33064],[114.36165,22.33065],[114.3617,22.33064],[114.36173,22.33064],[114.36176,22.33067],[114.36177,22.3307],[114.36186,22.33075],[114.36193,22.33073],[114.36202,22.33077],[114.36206,22.33074],[114.36208,22.33071],[114.36209,22.33068],[114.36211,22.33067],[114.36212,22.33067],[114.36214,22.33068],[114.36214,22.33069],[114.36213,22.33072],[114.36211,22.33075],[114.36212,22.33077],[114.36213,22.33077],[114.36214,22.33074],[114.36216,22.33074],[114.36218,22.33075],[114.36219,22.33078],[114.36219,22.3308],[114.36222,22.33082],[114.36224,22.33082],[114.36225,22.33081],[114.36234,22.33052],[114.36236,22.33049],[114.36243,22.33047],[114.36243,22.33043],[114.36244,22.33042],[114.36247,22.33042],[114.36249,22.33048],[114.36256,22.33053],[114.3626,22.33066],[114.36275,22.33048],[114.36282,22.33051],[114.36285,22.33053],[114.36287,22.33056],[114.36288,22.33053],[114.36288,22.33049],[114.36285,22.33045],[114.36285,22.33043],[114.36289,22.3304],[114.36298,22.3304],[114.36303,22.3306],[114.36309,22.33059],[114.36314,22.33055],[114.36318,22.33057],[114.36319,22.33045],[114.36314,22.33039],[114.36312,22.33031],[114.36312,22.33017],[114.36315,22.33014],[114.36317,22.33014],[114.3632,22.33017],[114.36329,22.33007],[114.36338,22.33007],[114.36355,22.32989],[114.3636,22.32979],[114.36373,22.32969],[114.36379,22.32969],[114.36381,22.32962],[114.3639,22.32955],[114.36392,22.32957],[114.36393,22.32964],[114.36394,22.32966],[114.36394,22.32966],[114.36395,22.32965],[114.36399,22.32937],[114.36403,22.32931],[114.36409,22.32927],[114.36417,22.32927],[114.36421,22.32929],[114.36425,22.32932],[114.36425,22.32946],[114.36414,22.32983],[114.36416,22.32985],[114.3642,22.32986],[114.36427,22.32985],[114.36431,22.32979],[114.36446,22.32976],[114.36454,22.32957],[114.36469,22.32941],[114.36477,22.32937],[114.36491,22.32937],[114.36479,22.32931],[114.36481,22.32928],[114.36485,22.32926],[114.3649,22.32925],[114.36494,22.32927],[114.3651,22.32936],[114.36513,22.32939],[114.36515,22.32938],[114.36528,22.32924],[114.36531,22.32928],[114.36532,22.32915],[114.36535,22.32908],[114.36539,22.32904],[114.36542,22.32903],[114.36545,22.32904],[114.36557,22.32917],[114.3656,22.32912],[114.3656,22.32907],[114.36555,22.32902],[114.36553,22.32906],[114.36551,22.32906],[114.36549,22.32901],[114.36548,22.32898],[114.36553,22.32897],[114.36547,22.32883],[114.36551,22.32868],[114.36556,22.32862],[114.36568,22.32851],[114.36582,22.32843],[114.36619,22.32843],[114.36633,22.3285],[114.36641,22.32857],[114.36644,22.32867],[114.36644,22.32877],[114.36636,22.32911],[114.36627,22.32921],[114.36618,22.3293],[114.36604,22.32937],[114.36574,22.32937],[114.36575,22.32945],[114.36566,22.32953],[114.36559,22.32953],[114.36548,22.3295],[114.36549,22.32961],[114.36547,22.32963],[114.36544,22.32962],[114.36538,22.32956],[114.36534,22.32952],[114.36532,22.32952],[114.36532,22.32953],[114.36546,22.32971],[114.36548,22.32989],[114.36556,22.33006],[114.36568,22.33002],[114.36575,22.33003],[114.36579,22.33006],[114.3658,22.33008],[114.36578,22.3301],[114.36571,22.3301],[114.36566,22.33012],[114.36566,22.33015],[114.36568,22.33018],[114.3657,22.33019],[114.36574,22.33018],[114.36579,22.33014],[114.36583,22.33013],[114.36586,22.33014],[114.36589,22.33017],[114.3659,22.3302],[114.36589,22.33023],[114.36591,22.33026],[114.36593,22.33027],[114.36595,22.33026],[114.36598,22.33026],[114.36613,22.33039],[114.36614,22.3304],[114.36615,22.33039],[114.36615,22.33037],[114.36609,22.33031],[114.36606,22.33027],[114.36605,22.33023],[114.36605,22.33017],[114.36606,22.33013],[114.36609,22.3301],[114.36616,22.33008],[114.36619,22.33008],[114.36627,22.33016],[114.36628,22.3302],[114.36631,22.33018],[114.36638,22.33024],[114.3664,22.33023],[114.36641,22.33021],[114.36632,22.33013],[114.36632,22.33009],[114.36632,22.33005],[114.36634,22.33004],[114.36635,22.33003],[114.36642,22.33003],[114.36646,22.33005],[114.36655,22.33],[114.36657,22.33001],[114.36657,22.33002],[114.36655,22.33009],[114.36656,22.33011],[114.36658,22.33011],[114.36661,22.3301],[114.36662,22.33007],[114.36665,22.33004],[114.36666,22.33003],[114.36669,22.33003],[114.36672,22.33006],[114.36674,22.3301],[114.36675,22.33016],[114.36675,22.33026],[114.36669,22.33038],[114.3667,22.33039],[114.36672,22.3304],[114.36672,22.33041],[114.36671,22.33042],[114.3667,22.33044],[114.36666,22.33045],[114.36666,22.33047],[114.36666,22.3305],[114.36669,22.33053],[114.36672,22.33056],[114.36668,22.33084],[114.36667,22.33085],[114.36663,22.33085],[114.3666,22.33085],[114.36659,22.33086],[114.36662,22.33091],[114.36664,22.33097],[114.36664,22.33104],[114.36664,22.33108],[114.36652,22.33125],[114.36656,22.33137],[114.36656,22.33149],[114.36653,22.33154],[114.36648,22.33159],[114.36639,22.33166],[114.36635,22.33167],[114.36633,22.33162],[114.3663,22.33163],[114.36628,22.33168],[114.36627,22.33171],[114.3662,22.33175],[114.36617,22.33178],[114.36618,22.33179],[114.36621,22.33179],[114.36622,22.33181],[114.36615,22.33192],[114.36615,22.33195],[114.36619,22.33197],[114.36639,22.33199],[114.36641,22.332],[114.36642,22.33203],[114.36642,22.33205],[114.36637,22.33221],[114.36621,22.33215],[114.36613,22.33218],[114.3661,22.33223],[114.36619,22.33226],[114.3662,22.33229],[114.36618,22.33231],[114.36614,22.33233],[114.36612,22.33236],[114.36611,22.33239],[114.36616,22.33242],[114.36621,22.33242],[114.36625,22.33243],[114.36627,22.33254],[114.36625,22.3326],[114.3661,22.33281],[114.36611,22.33282],[114.36612,22.33281],[114.36623,22.3327],[114.36625,22.33269],[114.36627,22.33269],[114.36627,22.33269],[114.36627,22.3327],[114.36624,22.33283],[114.36616,22.3329],[114.36617,22.33292],[114.36616,22.33294],[114.36606,22.33302],[114.36608,22.33307],[114.3661,22.33309],[114.36609,22.33314],[114.36606,22.33327],[114.36583,22.33353],[114.36583,22.33359],[114.36585,22.33361],[114.36591,22.33366],[114.36594,22.33369],[114.36597,22.33374],[114.36601,22.33376],[114.36603,22.33378],[114.36605,22.33379],[114.36608,22.33378],[114.36608,22.33379],[114.36608,22.3338],[114.36608,22.33381],[114.36607,22.33384],[114.36603,22.33388],[114.36602,22.33389],[114.36601,22.33391],[114.36601,22.33391],[114.36601,22.33392],[114.36602,22.33396],[114.36612,22.33412],[114.36617,22.33417],[114.3662,22.33419],[114.36622,22.3342],[114.36623,22.33421],[114.36624,22.33422],[114.36625,22.33424],[114.36626,22.33427],[114.36628,22.33429],[114.36629,22.3343],[114.3663,22.33431],[114.36633,22.33432],[114.36636,22.33432],[114.36637,22.33433],[114.3664,22.33435],[114.36643,22.33436],[114.36644,22.33436],[114.36653,22.33434],[114.36654,22.33431],[114.36651,22.33429],[114.36651,22.33427],[114.36652,22.33426],[114.36656,22.33426],[114.36662,22.33426],[114.36666,22.33427],[114.36672,22.33427],[114.36676,22.33431],[114.36676,22.33433],[114.36676,22.33438],[114.36686,22.33439],[114.36688,22.33441],[114.3669,22.33433],[114.36696,22.3343],[114.36699,22.33431],[114.36707,22.33436],[114.36701,22.33448],[114.36705,22.33459],[114.36696,22.3346],[114.36688,22.33489],[114.36693,22.33498],[114.36694,22.33514],[114.36696,22.33519],[114.36703,22.33521],[114.36701,22.33526],[114.36709,22.3354],[114.36716,22.33546],[114.36719,22.33549],[114.36724,22.3355],[114.36728,22.33549],[114.36742,22.33533],[114.36744,22.33533],[114.36745,22.33535],[114.36745,22.33537],[114.36743,22.33538],[114.36742,22.33538],[114.36744,22.3354],[114.36745,22.33541],[114.36746,22.3354],[114.36751,22.33544],[114.36752,22.33543],[114.36752,22.33537],[114.36752,22.33532],[114.36753,22.33531],[114.36755,22.3353],[114.36757,22.33531],[114.36758,22.33534],[114.3676,22.33535],[114.36762,22.33536],[114.36766,22.33534],[114.36767,22.33534],[114.36768,22.33534],[114.36769,22.33536],[114.36768,22.33537],[114.36767,22.33537],[114.36767,22.33539],[114.36768,22.33542],[114.36771,22.33546],[114.36775,22.33563],[114.36772,22.33585],[114.36774,22.33589],[114.36776,22.33594],[114.36777,22.33598],[114.36776,22.33602],[114.36775,22.33607],[114.36766,22.33618],[114.36763,22.33626],[114.36756,22.33641],[114.36736,22.33666],[114.36731,22.33677],[114.36732,22.33678],[114.36738,22.33674],[114.36742,22.33675],[114.3675,22.33682],[114.36758,22.33693],[114.36763,22.33695],[114.3677,22.33695],[114.36773,22.33697],[114.36779,22.33709],[114.36781,22.3372],[114.36781,22.3375],[114.36793,22.33758],[114.36793,22.3376],[114.3679,22.33761],[114.36785,22.3376],[114.36783,22.33765],[114.36783,22.33771],[114.36791,22.33776],[114.36788,22.33779],[114.36792,22.3378],[114.36794,22.33781],[114.36794,22.33784],[114.36792,22.33792],[114.36777,22.338],[114.36769,22.33816],[114.3677,22.33836],[114.36765,22.33857],[114.36769,22.33861],[114.36764,22.33873],[114.36753,22.33879],[114.36754,22.33881],[114.36752,22.33884],[114.36749,22.33886],[114.36746,22.33887],[114.36749,22.33895],[114.36747,22.33898],[114.3674,22.33902],[114.36712,22.33911],[114.36704,22.33916],[114.36696,22.33924],[114.36693,22.33923],[114.36689,22.33921],[114.36677,22.33924],[114.36674,22.33931],[114.36672,22.33933],[114.36659,22.33934],[114.36651,22.33933],[114.36645,22.33931],[114.3664,22.33924],[114.36631,22.33931],[114.36629,22.33936],[114.36628,22.3394],[114.36629,22.33942],[114.36634,22.33938],[114.36638,22.33937],[114.36648,22.33939],[114.36666,22.33946],[114.36678,22.33947],[114.36682,22.33943],[114.36685,22.33943],[114.36687,22.33943],[114.36687,22.33944],[114.36682,22.3395],[114.36682,22.33951],[114.36682,22.33953],[114.36677,22.33955],[114.3667,22.33952],[114.36664,22.33956],[114.36654,22.33956],[114.36648,22.33959],[114.36647,22.33964],[114.36644,22.33965],[114.36628,22.33962],[114.36627,22.33961],[114.36629,22.33957],[114.36627,22.33956],[114.36619,22.33962]]],[[[114.34704,22.34167],[114.347,22.34164],[114.34695,22.34165],[114.34694,22.34163],[114.34693,22.3416],[114.34692,22.3416],[114.34691,22.3416],[114.3469,22.34157],[114.3469,22.34156],[114.34691,22.34156],[114.34695,22.34152],[114.34696,22.34152],[114.34699,22.34153],[114.34701,22.34154],[114.34703,22.34151],[114.34704,22.34151],[114.34705,22.34154],[114.34708,22.34157],[114.34707,22.34158],[114.34709,22.3416],[114.34704,22.34167]]],[[[114.3239,22.34119],[114.32374,22.34138],[114.32353,22.34147],[114.32306,22.34157],[114.32301,22.34162],[114.32291,22.34166],[114.32226,22.34176],[114.32164,22.34165],[114.32085,22.34131],[114.32056,22.34127],[114.32037,22.34119],[114.32002,22.34098],[114.31981,22.34078],[114.31974,22.34065],[114.31966,22.34062],[114.3194,22.34051],[114.319,22.34039],[114.31886,22.34038],[114.31857,22.34045],[114.31842,22.34049],[114.31835,22.34061],[114.31814,22.34067],[114.31801,22.34067],[114.31792,22.34066],[114.31785,22.34065],[114.31778,22.34066],[114.31772,22.34054],[114.31766,22.3404],[114.31738,22.34046],[114.3173,22.34055],[114.31716,22.34058],[114.31714,22.34054],[114.31716,22.34042],[114.31706,22.34038],[114.31691,22.34026],[114.31683,22.34009],[114.3168,22.34001],[114.3168,22.33972],[114.31667,22.33949],[114.31668,22.33917],[114.31651,22.33902],[114.31641,22.33906],[114.31611,22.33898],[114.31592,22.33871],[114.31589,22.3385],[114.31576,22.33852],[114.31573,22.33858],[114.31564,22.33851],[114.31562,22.33845],[114.31557,22.33812],[114.3157,22.33793],[114.31589,22.33788],[114.31577,22.33783],[114.31568,22.33774],[114.31571,22.33758],[114.31587,22.33741],[114.31594,22.33732],[114.31618,22.33714],[114.31615,22.33707],[114.31622,22.33694],[114.31617,22.33689],[114.31618,22.33685],[114.3163,22.33675],[114.31631,22.33676],[114.31631,22.33686],[114.31651,22.33652],[114.31678,22.336],[114.31702,22.33562],[114.31729,22.3353],[114.31756,22.33504],[114.31756,22.33498],[114.31764,22.33486],[114.31781,22.33469],[114.31785,22.33452],[114.31789,22.33443],[114.31796,22.33416],[114.31796,22.33401],[114.31779,22.33402],[114.31774,22.33399],[114.31744,22.33398],[114.31737,22.33376],[114.31742,22.33371],[114.31754,22.33373],[114.31768,22.33362],[114.31741,22.33356],[114.31743,22.33339],[114.31749,22.33303],[114.31765,22.33287],[114.3176,22.33275],[114.31763,22.33261],[114.3177,22.33254],[114.31783,22.3325],[114.3177,22.33243],[114.31773,22.33223],[114.31779,22.33208],[114.31823,22.33186],[114.31839,22.33166],[114.31842,22.3317],[114.31859,22.33151],[114.31873,22.33143],[114.31909,22.33136],[114.31928,22.33136],[114.31958,22.33135],[114.31957,22.33093],[114.31943,22.33087],[114.31935,22.33075],[114.31917,22.33074],[114.31924,22.33066],[114.31923,22.3306],[114.31886,22.33065],[114.3185,22.3305],[114.31843,22.33041],[114.31842,22.33035],[114.31844,22.33012],[114.31863,22.32983],[114.31894,22.32966],[114.31913,22.3296],[114.31912,22.32953],[114.31902,22.32954],[114.31896,22.32959],[114.31877,22.3296],[114.31867,22.32949],[114.31885,22.32939],[114.31896,22.32947],[114.31904,22.32898],[114.31927,22.32879],[114.31912,22.32879],[114.31914,22.32866],[114.31925,22.32848],[114.31944,22.3283],[114.31943,22.32826],[114.3195,22.32812],[114.31968,22.32809],[114.31966,22.32797],[114.31973,22.32785],[114.32002,22.32783],[114.3198,22.32769],[114.31976,22.32749],[114.31992,22.3273],[114.32011,22.3273],[114.32012,22.32727],[114.32001,22.3272],[114.32013,22.32713],[114.32014,22.32709],[114.31996,22.32705],[114.3199,22.32693],[114.31994,22.32663],[114.32006,22.32652],[114.32046,22.32629],[114.32079,22.32618],[114.32132,22.32617],[114.32159,22.32621],[114.3219,22.32652],[114.32189,22.3266],[114.32178,22.32677],[114.32198,22.32679],[114.32236,22.32706],[114.32271,22.32751],[114.32277,22.32755],[114.32285,22.32753],[114.32291,22.32746],[114.32319,22.32727],[114.32339,22.32719],[114.3235,22.3271],[114.32392,22.32694],[114.3241,22.32705],[114.32418,22.327],[114.32413,22.32693],[114.32415,22.32691],[114.32428,22.32687],[114.32446,22.32691],[114.32457,22.32701],[114.32451,22.32714],[114.32439,22.3272],[114.32446,22.32724],[114.32449,22.32735],[114.32463,22.32738],[114.32478,22.32724],[114.32486,22.32723],[114.32501,22.32722],[114.32507,22.32718],[114.32509,22.32707],[114.32524,22.32682],[114.32546,22.32652],[114.32567,22.32641],[114.32578,22.3262],[114.32577,22.32611],[114.32604,22.326],[114.32615,22.3259],[114.32631,22.32582],[114.32668,22.32583],[114.32685,22.32589],[114.32684,22.32593],[114.32669,22.32602],[114.32671,22.32605],[114.32696,22.32617],[114.32736,22.32606],[114.32743,22.32605],[114.32748,22.3261],[114.32742,22.32637],[114.32745,22.32655],[114.32729,22.32713],[114.32747,22.32717],[114.32755,22.32718],[114.32761,22.32706],[114.32759,22.32689],[114.32767,22.32672],[114.32768,22.32666],[114.32768,22.32655],[114.32777,22.32642],[114.32788,22.3262],[114.32799,22.32611],[114.32818,22.32612],[114.32819,22.32618],[114.32802,22.32624],[114.32799,22.3263],[114.32803,22.32636],[114.32806,22.32638],[114.32827,22.32642],[114.32833,22.3266],[114.32795,22.3271],[114.32779,22.32724],[114.32761,22.32746],[114.32785,22.32731],[114.32802,22.32726],[114.32818,22.3273],[114.32824,22.32772],[114.32832,22.32754],[114.32841,22.32751],[114.32852,22.32758],[114.3285,22.32766],[114.32848,22.32779],[114.32844,22.32792],[114.32853,22.32798],[114.32865,22.32796],[114.32875,22.32781],[114.32882,22.32778],[114.32916,22.32781],[114.32921,22.32797],[114.32947,22.32787],[114.32968,22.32785],[114.32988,22.32781],[114.33005,22.32776],[114.33018,22.32781],[114.33024,22.32784],[114.33036,22.32786],[114.33059,22.32873],[114.33074,22.32864],[114.33075,22.32888],[114.33073,22.32897],[114.33059,22.32902],[114.33046,22.32919],[114.33034,22.32925],[114.33031,22.32934],[114.33036,22.32937],[114.33045,22.32952],[114.33044,22.32941],[114.33045,22.32936],[114.33046,22.3293],[114.3305,22.3293],[114.33051,22.32934],[114.33055,22.32933],[114.33057,22.32938],[114.33057,22.3294],[114.33052,22.3294],[114.3305,22.32945],[114.33052,22.32949],[114.33049,22.32956],[114.33052,22.32971],[114.33053,22.32996],[114.33044,22.33013],[114.33043,22.33017],[114.33045,22.33019],[114.33051,22.33037],[114.33053,22.33048],[114.33052,22.33069],[114.33063,22.33073],[114.33073,22.33106],[114.3308,22.33135],[114.33081,22.33153],[114.33077,22.33174],[114.33068,22.33185],[114.33064,22.33188],[114.33063,22.33209],[114.33053,22.33212],[114.33054,22.33217],[114.33056,22.33232],[114.33059,22.33258],[114.33072,22.33274],[114.33071,22.33282],[114.33054,22.33297],[114.33048,22.33319],[114.33041,22.33321],[114.33033,22.33326],[114.33022,22.33332],[114.33023,22.33338],[114.33028,22.33358],[114.33052,22.33342],[114.33058,22.3335],[114.33048,22.33381],[114.33036,22.33393],[114.33031,22.33409],[114.33027,22.33415],[114.3302,22.3341],[114.33013,22.3342],[114.33015,22.33425],[114.32998,22.33438],[114.32969,22.33435],[114.32955,22.33453],[114.32944,22.33472],[114.32918,22.3349],[114.32863,22.33497],[114.32859,22.33502],[114.32866,22.33503],[114.32864,22.3351],[114.32858,22.33519],[114.32848,22.33526],[114.32839,22.33522],[114.32833,22.33524],[114.3284,22.33536],[114.32811,22.33557],[114.32807,22.33563],[114.32795,22.33578],[114.32789,22.33579],[114.32784,22.33578],[114.32775,22.33582],[114.32775,22.33584],[114.32778,22.33583],[114.32782,22.33583],[114.32783,22.33583],[114.32782,22.33585],[114.32781,22.33586],[114.3278,22.33588],[114.32779,22.33589],[114.32775,22.33589],[114.32774,22.33588],[114.32772,22.33585],[114.32757,22.33599],[114.32745,22.33627],[114.32744,22.33645],[114.32748,22.33648],[114.3275,22.3367],[114.32756,22.3368],[114.32759,22.33692],[114.32754,22.33691],[114.32751,22.33698],[114.32755,22.33701],[114.32754,22.33705],[114.32744,22.33707],[114.32759,22.33715],[114.32756,22.33722],[114.3275,22.33725],[114.32748,22.33741],[114.3274,22.33757],[114.32743,22.33767],[114.32741,22.33771],[114.32731,22.33774],[114.32723,22.3377],[114.32719,22.33777],[114.32711,22.33782],[114.32704,22.33779],[114.32683,22.33783],[114.32679,22.33779],[114.32674,22.33785],[114.3266,22.33848],[114.32661,22.33868],[114.32649,22.33893],[114.32647,22.33913],[114.32641,22.33918],[114.3265,22.33968],[114.32644,22.33977],[114.32639,22.33989],[114.32621,22.34017],[114.32622,22.34029],[114.32612,22.34058],[114.32596,22.34062],[114.3255,22.34071],[114.32516,22.34071],[114.32499,22.34069],[114.32488,22.34088],[114.32465,22.34103],[114.32444,22.3412],[114.32424,22.34122],[114.32398,22.34116],[114.3239,22.34119]]],[[[114.29357,22.34205],[114.29356,22.34205],[114.29354,22.34201],[114.2935,22.34202],[114.29349,22.34201],[114.29348,22.34196],[114.29348,22.34195],[114.2935,22.34194],[114.2935,22.34192],[114.29351,22.34191],[114.29355,22.3419],[114.29358,22.34188],[114.29361,22.34193],[114.29365,22.34194],[114.29366,22.34196],[114.29364,22.34199],[114.29366,22.342],[114.29365,22.34203],[114.29364,22.34204],[114.29364,22.34204],[114.29363,22.34204],[114.29357,22.34205]]],[[[114.3537,22.34207],[114.3537,22.34208],[114.35366,22.34211],[114.3536,22.34216],[114.35356,22.34217],[114.35354,22.34217],[114.35354,22.34217],[114.3536,22.3421],[114.35361,22.34209],[114.35368,22.34207],[114.35369,22.34207],[114.3537,22.34207]]],[[[114.35204,22.34201],[114.35217,22.3421],[114.35218,22.34216],[114.35217,22.34236],[114.3521,22.34248],[114.3521,22.34262],[114.35215,22.34264],[114.35212,22.34271],[114.35203,22.34275],[114.35182,22.34275],[114.35165,22.34264],[114.35153,22.34246],[114.35146,22.34221],[114.35146,22.34211],[114.35151,22.34203],[114.35166,22.34194],[114.35177,22.34192],[114.35204,22.34201]]],[[[114.36962,22.34386],[114.36962,22.34389],[114.36963,22.34391],[114.36963,22.34393],[114.36958,22.34396],[114.36957,22.34396],[114.36957,22.34395],[114.36957,22.34391],[114.36957,22.3439],[114.36958,22.34387],[114.3696,22.34386],[114.36961,22.34385],[114.36962,22.34386]]],[[[114.36929,22.34404],[114.36927,22.34402],[114.36929,22.344],[114.36938,22.34395],[114.3694,22.34401],[114.36944,22.34393],[114.36947,22.3439],[114.36949,22.34391],[114.36955,22.34396],[114.3695,22.34399],[114.36945,22.34402],[114.3694,22.34403],[114.36937,22.34402],[114.36929,22.34404]]],[[[114.37004,22.34498],[114.37015,22.34534],[114.37007,22.34539],[114.37006,22.34555],[114.36998,22.34562],[114.36988,22.34565],[114.36957,22.34558],[114.3694,22.34538],[114.36932,22.34536],[114.3692,22.34534],[114.36914,22.34531],[114.36905,22.34531],[114.36889,22.34517],[114.36883,22.34494],[114.36874,22.34478],[114.3688,22.3447],[114.36886,22.34473],[114.36903,22.34448],[114.36912,22.34438],[114.36919,22.34437],[114.36927,22.34429],[114.36963,22.3442],[114.36969,22.34421],[114.3698,22.34422],[114.36991,22.34425],[114.36997,22.34428],[114.37005,22.34435],[114.37016,22.34445],[114.3702,22.34459],[114.37012,22.34482],[114.37016,22.34492],[114.37013,22.34497],[114.37008,22.34491],[114.37004,22.34498]]],[[[114.30688,22.34611],[114.30689,22.34612],[114.30688,22.34615],[114.30686,22.34618],[114.30686,22.34623],[114.30686,22.34626],[114.30685,22.34628],[114.30681,22.34628],[114.30678,22.34627],[114.30676,22.34626],[114.30676,22.34624],[114.30677,22.34623],[114.30675,22.3462],[114.30676,22.34618],[114.30677,22.34617],[114.3068,22.34617],[114.30682,22.34613],[114.30685,22.34611],[114.30687,22.3461],[114.30688,22.34611]]],[[[114.35991,22.34652],[114.35996,22.34662],[114.35998,22.34676],[114.35995,22.34686],[114.35979,22.34677],[114.35979,22.34651],[114.35983,22.34649],[114.35991,22.34652]]],[[[114.27437,22.34754],[114.27435,22.34757],[114.27433,22.34758],[114.27432,22.34759],[114.27431,22.34758],[114.27431,22.34755],[114.27429,22.34753],[114.27429,22.34751],[114.27427,22.34749],[114.27426,22.34748],[114.27426,22.34747],[114.27427,22.34745],[114.2743,22.34745],[114.27431,22.34744],[114.27433,22.34744],[114.27437,22.34745],[114.27442,22.34747],[114.27443,22.34748],[114.27443,22.34749],[114.27442,22.3475],[114.27442,22.34751],[114.27441,22.34753],[114.2744,22.34754],[114.27438,22.34755],[114.27437,22.34754],[114.27437,22.34754]]],[[[114.36562,22.34887],[114.36563,22.34891],[114.36538,22.349],[114.36535,22.34906],[114.36511,22.34903],[114.36513,22.34893],[114.36542,22.34878],[114.36562,22.34887]]],[[[114.36574,22.34933],[114.36571,22.3494],[114.36576,22.34946],[114.36568,22.34954],[114.36553,22.34958],[114.36558,22.3494],[114.36572,22.34927],[114.36574,22.34933]]],[[[114.35945,22.34961],[114.35943,22.3497],[114.35943,22.3497],[114.35941,22.3497],[114.35941,22.34962],[114.35944,22.34958],[114.35945,22.34952],[114.35948,22.34948],[114.3595,22.34946],[114.35951,22.34948],[114.3595,22.34957],[114.3595,22.34963],[114.35951,22.34968],[114.3595,22.34968],[114.35949,22.34967],[114.35949,22.34962],[114.35947,22.34961],[114.35945,22.34961]]],[[[114.34851,22.35046],[114.34848,22.35044],[114.34845,22.35045],[114.34843,22.3504],[114.3484,22.35041],[114.34834,22.35031],[114.34828,22.35015],[114.34828,22.3501],[114.34823,22.34999],[114.34824,22.34987],[114.34822,22.34981],[114.34824,22.34975],[114.34826,22.34971],[114.34825,22.34966],[114.34826,22.3496],[114.34822,22.34961],[114.34821,22.3496],[114.34819,22.34954],[114.34821,22.34944],[114.34826,22.34939],[114.34834,22.34938],[114.34844,22.34945],[114.34847,22.34949],[114.34858,22.34973],[114.34859,22.34978],[114.34857,22.34997],[114.34858,22.34996],[114.34861,22.34988],[114.34865,22.34984],[114.34867,22.34983],[114.34869,22.34984],[114.34874,22.34986],[114.3488,22.34992],[114.34883,22.34995],[114.34883,22.34997],[114.34876,22.35003],[114.34869,22.34999],[114.34871,22.35008],[114.3487,22.3501],[114.34868,22.3501],[114.34869,22.35016],[114.34866,22.35023],[114.34862,22.35024],[114.34858,22.35028],[114.34856,22.35034],[114.34853,22.35042],[114.34854,22.35044],[114.34851,22.35046]]],[[[114.32901,22.35062],[114.32909,22.35067],[114.3292,22.35086],[114.32917,22.35093],[114.32911,22.35097],[114.32907,22.35099],[114.32903,22.35105],[114.32892,22.35109],[114.32879,22.35108],[114.32871,22.35106],[114.32864,22.35097],[114.32852,22.35091],[114.32849,22.35086],[114.3285,22.35082],[114.32854,22.35079],[114.32867,22.35076],[114.32861,22.35073],[114.3286,22.3507],[114.32867,22.35065],[114.32897,22.3506],[114.32901,22.35062]]],[[[114.29543,22.3533],[114.29544,22.3533],[114.29545,22.35331],[114.29546,22.35332],[114.29546,22.35333],[114.29545,22.35334],[114.29545,22.35334],[114.29543,22.35333],[114.29541,22.35331],[114.29541,22.3533],[114.29542,22.35329],[114.29543,22.3533]]],[[[114.29525,22.35327],[114.29525,22.35328],[114.29524,22.35329],[114.29522,22.35332],[114.29516,22.35335],[114.29514,22.35336],[114.29512,22.35338],[114.29511,22.35341],[114.29509,22.35342],[114.29507,22.35342],[114.29502,22.3534],[114.29502,22.35339],[114.29502,22.35338],[114.29505,22.35335],[114.29508,22.35333],[114.29513,22.35332],[114.29517,22.35331],[114.29519,22.35331],[114.2952,22.3533],[114.2952,22.35327],[114.2952,22.35326],[114.29522,22.35326],[114.29525,22.35327]]],[[[114.29506,22.35347],[114.29506,22.35348],[114.29506,22.35349],[114.29504,22.3535],[114.29502,22.35351],[114.295,22.35351],[114.29499,22.3535],[114.29499,22.35349],[114.295,22.35348],[114.29502,22.35348],[114.29503,22.35346],[114.29505,22.35346],[114.29506,22.35347]]],[[[114.33826,22.35375],[114.33826,22.35379],[114.33823,22.3538],[114.3382,22.35376],[114.33821,22.35374],[114.33826,22.35375]]],[[[114.35086,22.35347],[114.35075,22.35357],[114.35072,22.35372],[114.35057,22.35401],[114.35049,22.35405],[114.35027,22.35398],[114.35019,22.35382],[114.35017,22.35364],[114.35008,22.35357],[114.35012,22.35342],[114.35018,22.35338],[114.35021,22.35342],[114.35026,22.35344],[114.35032,22.35341],[114.35035,22.3534],[114.35041,22.35329],[114.35037,22.35316],[114.35046,22.35311],[114.35046,22.35297],[114.35068,22.3529],[114.35089,22.3529],[114.35089,22.35285],[114.35119,22.35277],[114.35124,22.35277],[114.35131,22.35283],[114.35136,22.35292],[114.35132,22.35307],[114.35099,22.35322],[114.35097,22.35327],[114.35095,22.35333],[114.35087,22.35337],[114.35086,22.35347]]],[[[114.29738,22.3542],[114.29743,22.35421],[114.29743,22.35427],[114.29738,22.35427],[114.29736,22.35427],[114.29735,22.35422],[114.29731,22.35421],[114.29732,22.3542],[114.29738,22.3542]]],[[[114.33801,22.35452],[114.33799,22.35453],[114.33798,22.3545],[114.33799,22.35447],[114.33802,22.35439],[114.33801,22.35433],[114.33804,22.35429],[114.33806,22.35429],[114.33807,22.35434],[114.33805,22.35437],[114.33805,22.35447],[114.33803,22.3545],[114.33801,22.35449],[114.33801,22.35452]]],[[[114.30402,22.35512],[114.30402,22.35514],[114.30395,22.3552],[114.30393,22.3552],[114.30391,22.35518],[114.30391,22.35516],[114.30396,22.35513],[114.30397,22.35509],[114.30402,22.35512]]],[[[114.30379,22.35523],[114.30378,22.35522],[114.30379,22.3552],[114.30383,22.35515],[114.30386,22.35514],[114.30388,22.35515],[114.30387,22.35517],[114.30385,22.35522],[114.30382,22.35522],[114.30379,22.35523]]],[[[114.25532,22.35498],[114.25533,22.35499],[114.25538,22.35508],[114.25539,22.35511],[114.25542,22.35524],[114.25541,22.35532],[114.25543,22.35544],[114.25542,22.35544],[114.25539,22.35532],[114.25537,22.35517],[114.25535,22.35511],[114.25531,22.35498],[114.25531,22.35498],[114.25532,22.35498]]],[[[114.37472,22.35563],[114.3747,22.35564],[114.37463,22.35564],[114.37462,22.35562],[114.37462,22.3556],[114.37468,22.35558],[114.37473,22.35557],[114.37472,22.35563]]],[[[114.3738,22.35567],[114.37379,22.35568],[114.37375,22.35569],[114.37373,22.35569],[114.37373,22.35567],[114.37375,22.35565],[114.37378,22.35565],[114.3738,22.35567]]],[[[114.25555,22.35562],[114.25558,22.35568],[114.25564,22.3558],[114.25559,22.35578],[114.25554,22.35575],[114.25548,22.35563],[114.25547,22.35558],[114.25549,22.35556],[114.25555,22.35562]]],[[[114.29609,22.35601],[114.2961,22.35601],[114.2961,22.35603],[114.29611,22.35604],[114.29611,22.35605],[114.29611,22.35605],[114.2961,22.35606],[114.29609,22.35606],[114.29606,22.35607],[114.29605,22.35606],[114.29603,22.35602],[114.29604,22.35601],[114.29606,22.356],[114.29608,22.356],[114.29609,22.35601]]],[[[114.37517,22.35676],[114.37514,22.35678],[114.37505,22.3568],[114.37503,22.35678],[114.37505,22.35674],[114.37509,22.35673],[114.37517,22.35676]]],[[[114.29311,22.35756],[114.29311,22.35755],[114.29311,22.35754],[114.29314,22.3575],[114.29315,22.35751],[114.29318,22.35754],[114.29318,22.35755],[114.29317,22.35756],[114.29314,22.35755],[114.29311,22.35756]]],[[[114.29374,22.35757],[114.29375,22.35758],[114.29375,22.3576],[114.29376,22.35762],[114.29375,22.35762],[114.29374,22.35763],[114.29374,22.35763],[114.29373,22.35763],[114.29371,22.35758],[114.29371,22.35757],[114.29374,22.35757],[114.29374,22.35757]]],[[[114.37723,22.35744],[114.37722,22.35746],[114.37714,22.35748],[114.37711,22.35754],[114.37709,22.35755],[114.37706,22.35755],[114.37704,22.35755],[114.37703,22.35754],[114.37702,22.35753],[114.37708,22.35748],[114.37718,22.35744],[114.37723,22.35744]]],[[[114.29367,22.3576],[114.2937,22.35761],[114.29371,22.35761],[114.29371,22.35762],[114.29371,22.35763],[114.2937,22.35764],[114.29369,22.35764],[114.29367,22.35763],[114.29366,22.35762],[114.29365,22.35761],[114.29364,22.35761],[114.29364,22.3576],[114.29364,22.35759],[114.29366,22.35759],[114.29367,22.3576]]],[[[114.37943,22.35784],[114.3794,22.35802],[114.37929,22.35811],[114.37913,22.35837],[114.37884,22.35854],[114.37865,22.35873],[114.37816,22.35897],[114.37797,22.35901],[114.37758,22.35921],[114.37735,22.3592],[114.37728,22.3591],[114.37728,22.359],[114.37766,22.35857],[114.3781,22.35818],[114.37815,22.35807],[114.37842,22.35788],[114.37863,22.3578],[114.3789,22.35784],[114.37891,22.35777],[114.379,22.35766],[114.37903,22.3576],[114.37914,22.35751],[114.37934,22.35754],[114.37947,22.35762],[114.37949,22.35775],[114.37943,22.35784]]],[[[114.32552,22.36294],[114.32552,22.36297],[114.32548,22.363],[114.32546,22.36303],[114.32547,22.36306],[114.3255,22.36308],[114.32551,22.3631],[114.32545,22.36313],[114.32525,22.3632],[114.32519,22.36318],[114.32516,22.36315],[114.32515,22.36311],[114.32519,22.36306],[114.32527,22.363],[114.32548,22.36294],[114.32552,22.36294]]],[[[114.2869,22.36441],[114.28679,22.36436],[114.28653,22.36399],[114.28646,22.36375],[114.28628,22.36355],[114.28614,22.36346],[114.28588,22.36313],[114.28592,22.36303],[114.28604,22.36297],[114.28664,22.36249],[114.28667,22.36239],[114.2868,22.36227],[114.28681,22.36221],[114.28699,22.3623],[114.2871,22.36243],[114.28708,22.36248],[114.28708,22.36258],[114.28718,22.36271],[114.28717,22.36279],[114.2871,22.36282],[114.28717,22.36284],[114.28719,22.36289],[114.28724,22.3629],[114.28727,22.36304],[114.28723,22.36321],[114.28714,22.36329],[114.28706,22.3635],[114.28711,22.36359],[114.28734,22.36372],[114.28736,22.36377],[114.28739,22.3639],[114.28731,22.36404],[114.28735,22.3643],[114.28731,22.36437],[114.28724,22.36439],[114.28714,22.3644],[114.28707,22.36437],[114.2869,22.36441]]],[[[114.29978,22.36442],[114.29979,22.36443],[114.2998,22.36445],[114.29977,22.36445],[114.29975,22.36446],[114.29973,22.36446],[114.29972,22.36446],[114.2997,22.36446],[114.29969,22.36444],[114.29969,22.36443],[114.29972,22.36441],[114.29973,22.3644],[114.29978,22.36442]]],[[[114.2985,22.36446],[114.29851,22.36449],[114.29849,22.36451],[114.29843,22.36456],[114.2984,22.36457],[114.29839,22.36455],[114.29839,22.36448],[114.29841,22.36446],[114.29844,22.36446],[114.2985,22.36446]]],[[[114.39218,22.36266],[114.39224,22.36278],[114.39223,22.36294],[114.39198,22.36326],[114.392,22.36339],[114.3921,22.36347],[114.392,22.36359],[114.39204,22.3638],[114.39188,22.36402],[114.39181,22.36432],[114.39198,22.36455],[114.39178,22.36456],[114.39171,22.3646],[114.39154,22.36476],[114.39124,22.36481],[114.39077,22.36469],[114.39069,22.36455],[114.3907,22.36445],[114.39083,22.36418],[114.39093,22.36383],[114.3911,22.36352],[114.39131,22.36326],[114.39134,22.36319],[114.39165,22.36281],[114.39201,22.36259],[114.39218,22.36266]]],[[[114.38988,22.36558],[114.38987,22.36563],[114.38983,22.36565],[114.38976,22.36565],[114.38973,22.36563],[114.38974,22.36559],[114.38975,22.36557],[114.38981,22.36555],[114.38985,22.36555],[114.38988,22.36558]]],[[[114.30282,22.36701],[114.3028,22.36704],[114.30277,22.36705],[114.30275,22.36705],[114.30274,22.36705],[114.30271,22.367],[114.30272,22.36698],[114.30274,22.36697],[114.30274,22.36698],[114.30274,22.36699],[114.30276,22.367],[114.30278,22.36699],[114.30281,22.36698],[114.30282,22.36697],[114.30282,22.36695],[114.30284,22.36694],[114.30286,22.36693],[114.30288,22.36694],[114.30289,22.36696],[114.30289,22.36698],[114.30288,22.36698],[114.30284,22.36698],[114.30283,22.36698],[114.30282,22.36701]]],[[[114.32488,22.36745],[114.32475,22.3675],[114.32444,22.3674],[114.32418,22.3674],[114.32404,22.36736],[114.32383,22.36733],[114.32364,22.36727],[114.32355,22.36726],[114.32353,22.36718],[114.32354,22.36703],[114.32362,22.36686],[114.32361,22.36679],[114.32377,22.36676],[114.32386,22.36683],[114.32398,22.36683],[114.324,22.3667],[114.32407,22.36665],[114.3243,22.36654],[114.32457,22.36644],[114.32486,22.36637],[114.32499,22.36638],[114.32509,22.3664],[114.32529,22.36652],[114.32532,22.36684],[114.32536,22.3669],[114.32533,22.36696],[114.32526,22.367],[114.32522,22.36708],[114.32525,22.36718],[114.32515,22.36731],[114.32507,22.36731],[114.32488,22.36745]]],[[[114.32483,22.36797],[114.3248,22.36807],[114.32477,22.36812],[114.32475,22.36809],[114.32475,22.36805],[114.32477,22.36792],[114.32469,22.36793],[114.32468,22.36791],[114.32467,22.36787],[114.32472,22.36783],[114.32478,22.36782],[114.32481,22.36781],[114.32484,22.36777],[114.3249,22.36779],[114.3249,22.36784],[114.32487,22.36791],[114.32483,22.36797]]],[[[114.32455,22.36899],[114.32455,22.36901],[114.32458,22.36902],[114.32458,22.36902],[114.32457,22.36906],[114.32456,22.36907],[114.32455,22.36906],[114.32454,22.36904],[114.32452,22.36902],[114.32452,22.369],[114.32452,22.36899],[114.32453,22.36899],[114.32455,22.36899]]],[[[114.32468,22.3694],[114.3247,22.36942],[114.3247,22.36948],[114.3247,22.3695],[114.32469,22.36953],[114.32469,22.36962],[114.32468,22.36964],[114.32467,22.36964],[114.32466,22.36963],[114.32466,22.36952],[114.32467,22.36944],[114.32464,22.36941],[114.32466,22.3694],[114.32468,22.3694]]],[[[114.32191,22.36971],[114.32189,22.36977],[114.32186,22.36979],[114.32182,22.36979],[114.32181,22.36977],[114.3218,22.36972],[114.32177,22.36971],[114.32176,22.36969],[114.32177,22.36967],[114.32179,22.36967],[114.32179,22.36969],[114.32181,22.36969],[114.32185,22.36968],[114.32187,22.36968],[114.32191,22.36971]]],[[[114.32453,22.36993],[114.32454,22.36996],[114.32452,22.36999],[114.32448,22.37],[114.32444,22.36998],[114.32444,22.36995],[114.32445,22.36993],[114.3245,22.36991],[114.32453,22.36993]]],[[[114.3214,22.37046],[114.32143,22.37049],[114.32141,22.37054],[114.32136,22.37057],[114.32132,22.37057],[114.32131,22.37055],[114.32134,22.37047],[114.32137,22.37046],[114.3214,22.37046]]],[[[114.26385,22.37159],[114.26375,22.37161],[114.26365,22.37157],[114.26362,22.37151],[114.26366,22.37142],[114.26394,22.37137],[114.264,22.3713],[114.26399,22.37124],[114.26403,22.3712],[114.26409,22.37125],[114.26404,22.37136],[114.26416,22.3714],[114.26416,22.37146],[114.26409,22.37151],[114.26402,22.37152],[114.26398,22.37142],[114.26385,22.37159]]],[[[114.30176,22.37101],[114.30185,22.37119],[114.30177,22.37133],[114.30156,22.3717],[114.30128,22.37186],[114.30118,22.37183],[114.301,22.37163],[114.30076,22.37148],[114.30074,22.37141],[114.30082,22.37118],[114.30103,22.37098],[114.30111,22.37093],[114.30122,22.37096],[114.30157,22.37093],[114.30159,22.37087],[114.30161,22.37087],[114.30167,22.37089],[114.30167,22.37094],[114.30176,22.37101]]],[[[114.29589,22.37017],[114.29628,22.37067],[114.29639,22.37073],[114.29649,22.37087],[114.29649,22.37106],[114.29638,22.37113],[114.29568,22.3713],[114.29551,22.37142],[114.29519,22.37174],[114.2947,22.37194],[114.29463,22.37179],[114.29464,22.37167],[114.29459,22.37161],[114.29465,22.3712],[114.29482,22.37105],[114.29506,22.37095],[114.29504,22.37086],[114.29527,22.37031],[114.29544,22.37016],[114.29561,22.3701],[114.29589,22.37017]]],[[[114.28469,22.37389],[114.28472,22.37391],[114.28472,22.37393],[114.28471,22.37396],[114.2847,22.37397],[114.28465,22.37393],[114.28464,22.3739],[114.28466,22.37389],[114.28469,22.37389]]],[[[114.2846,22.37397],[114.28462,22.37399],[114.28462,22.37401],[114.28461,22.37402],[114.28459,22.37403],[114.28455,22.37404],[114.28453,22.37403],[114.28451,22.374],[114.28452,22.37397],[114.28455,22.37396],[114.2846,22.37397]]],[[[114.29564,22.37428],[114.29533,22.3741],[114.29529,22.37401],[114.29511,22.37403],[114.29496,22.37398],[114.29483,22.3738],[114.29481,22.37366],[114.29492,22.37335],[114.295,22.3733],[114.29499,22.37325],[114.29484,22.37322],[114.29493,22.37307],[114.29497,22.37305],[114.29507,22.37312],[114.29513,22.37324],[114.29534,22.37339],[114.29542,22.37352],[114.29552,22.37358],[114.29567,22.37344],[114.29572,22.3732],[114.29587,22.37302],[114.29595,22.373],[114.29613,22.37309],[114.29632,22.37335],[114.29638,22.37365],[114.29635,22.37385],[114.29626,22.37396],[114.29564,22.37428]]],[[[114.31954,22.37482],[114.31956,22.37483],[114.31959,22.37487],[114.31959,22.37488],[114.31957,22.3749],[114.31952,22.37491],[114.31947,22.3749],[114.31945,22.37489],[114.31949,22.37484],[114.31952,22.37481],[114.31954,22.37482]]],[[[114.30597,22.37503],[114.30597,22.37503],[114.30598,22.37506],[114.30599,22.37508],[114.30598,22.37508],[114.30598,22.37509],[114.30597,22.37509],[114.30594,22.37508],[114.30594,22.37508],[114.30594,22.37503],[114.30595,22.37502],[114.30596,22.37502],[114.30597,22.37503]]],[[[114.28937,22.37523],[114.28937,22.37524],[114.28937,22.37525],[114.28935,22.37525],[114.28934,22.37523],[114.28935,22.37522],[114.28937,22.37522],[114.28937,22.37523]]],[[[114.28923,22.37524],[114.28923,22.37526],[114.28921,22.37527],[114.28921,22.37529],[114.2892,22.37529],[114.28918,22.37528],[114.28918,22.37527],[114.28919,22.37526],[114.28921,22.37524],[114.28923,22.37524]]],[[[114.28946,22.37528],[114.28944,22.37531],[114.28943,22.37531],[114.28942,22.37524],[114.28942,22.37522],[114.28943,22.37521],[114.28944,22.37525],[114.28947,22.37524],[114.28946,22.3752],[114.28946,22.37518],[114.28947,22.37517],[114.28948,22.37519],[114.28948,22.37525],[114.28946,22.37528]]],[[[114.28937,22.37528],[114.28938,22.3753],[114.28937,22.37531],[114.28936,22.37532],[114.28934,22.37532],[114.28933,22.3753],[114.28934,22.37529],[114.28936,22.37528],[114.28937,22.37528]]],[[[114.28926,22.37532],[114.28926,22.37534],[114.28925,22.37538],[114.28924,22.37539],[114.28922,22.37538],[114.28922,22.37537],[114.28923,22.37533],[114.28924,22.37532],[114.28925,22.37532],[114.28926,22.37532]]],[[[114.31752,22.37536],[114.31752,22.37541],[114.31755,22.37542],[114.31756,22.37544],[114.31756,22.37545],[114.31753,22.3755],[114.31749,22.37554],[114.31747,22.37554],[114.31745,22.3755],[114.31746,22.37539],[114.31751,22.37535],[114.31752,22.37536]]],[[[114.2943,22.37548],[114.29403,22.37563],[114.29387,22.37565],[114.29369,22.3756],[114.29353,22.37549],[114.29334,22.37537],[114.29317,22.37525],[114.29306,22.37518],[114.29302,22.375],[114.29294,22.37495],[114.29279,22.37471],[114.29253,22.37447],[114.29241,22.37441],[114.29199,22.37433],[114.29179,22.37431],[114.29179,22.37442],[114.29169,22.37437],[114.29144,22.3741],[114.29137,22.37388],[114.29135,22.37365],[114.29115,22.37322],[114.29098,22.37309],[114.29083,22.3729],[114.29075,22.37288],[114.29063,22.37293],[114.29053,22.37292],[114.29062,22.37285],[114.29053,22.37282],[114.29055,22.37275],[114.29045,22.37272],[114.29048,22.37265],[114.29063,22.37253],[114.29065,22.37252],[114.2904,22.37234],[114.29042,22.3723],[114.29069,22.37248],[114.2907,22.37246],[114.29082,22.37232],[114.29086,22.37226],[114.29093,22.3722],[114.29115,22.37205],[114.29117,22.37172],[114.29111,22.37158],[114.29101,22.3715],[114.29095,22.3715],[114.29075,22.37128],[114.29075,22.37123],[114.29062,22.37099],[114.29048,22.37095],[114.29043,22.37081],[114.29023,22.3705],[114.28985,22.3693],[114.28961,22.36907],[114.28932,22.3686],[114.28911,22.36844],[114.2886,22.36815],[114.28828,22.3679],[114.2879,22.36771],[114.28771,22.36765],[114.28757,22.36778],[114.28754,22.36776],[114.2875,22.36786],[114.28748,22.36785],[114.28752,22.36776],[114.28749,22.36773],[114.28749,22.36766],[114.28754,22.36757],[114.28755,22.36756],[114.28747,22.36749],[114.28738,22.36752],[114.28733,22.36749],[114.28723,22.36767],[114.28721,22.36766],[114.28731,22.36748],[114.28719,22.36741],[114.2872,22.36728],[114.28711,22.36726],[114.2871,22.36718],[114.28729,22.36712],[114.28738,22.36719],[114.28756,22.36721],[114.28771,22.36716],[114.28755,22.36687],[114.28747,22.36678],[114.28751,22.36676],[114.28757,22.36685],[114.28774,22.36714],[114.28777,22.36713],[114.288,22.367],[114.28842,22.36652],[114.28814,22.36645],[114.28817,22.36637],[114.28853,22.36647],[114.28891,22.36589],[114.28918,22.36551],[114.28993,22.36477],[114.2905,22.3645],[114.29076,22.36446],[114.2911,22.36435],[114.29123,22.36418],[114.29139,22.36396],[114.29147,22.36379],[114.29169,22.36355],[114.29187,22.36342],[114.29216,22.36322],[114.29233,22.36293],[114.29237,22.36286],[114.29235,22.36276],[114.29231,22.36262],[114.29228,22.36253],[114.29227,22.36215],[114.29235,22.36166],[114.2925,22.36122],[114.2925,22.36109],[114.2924,22.36088],[114.29251,22.36059],[114.2925,22.36019],[114.29261,22.36002],[114.29262,22.35988],[114.29274,22.35967],[114.29285,22.35962],[114.29301,22.35945],[114.29326,22.359],[114.29316,22.35892],[114.29314,22.35884],[114.2932,22.35874],[114.29319,22.35861],[114.29314,22.35858],[114.29307,22.35863],[114.29304,22.35861],[114.293,22.35856],[114.29302,22.35853],[114.29293,22.35849],[114.29287,22.35823],[114.29281,22.35819],[114.29283,22.35813],[114.29278,22.35809],[114.29276,22.35808],[114.29273,22.35802],[114.29271,22.35795],[114.29281,22.35788],[114.29279,22.35754],[114.29286,22.35745],[114.29292,22.35746],[114.29299,22.35755],[114.29307,22.35751],[114.29308,22.35757],[114.29302,22.35759],[114.29309,22.3577],[114.2932,22.35775],[114.29333,22.35765],[114.29338,22.35752],[114.29342,22.3575],[114.29352,22.35753],[114.29359,22.35764],[114.29357,22.3577],[114.29367,22.3577],[114.29364,22.35779],[114.29379,22.35766],[114.29382,22.35767],[114.29379,22.35776],[114.29381,22.35778],[114.29386,22.35774],[114.29389,22.35778],[114.29392,22.35773],[114.29395,22.35778],[114.29404,22.35778],[114.29445,22.3576],[114.29447,22.35744],[114.29443,22.3574],[114.29443,22.35732],[114.29439,22.35732],[114.29431,22.35726],[114.29427,22.3572],[114.2943,22.35718],[114.29434,22.35724],[114.29442,22.35729],[114.29447,22.3573],[114.29452,22.35728],[114.29452,22.35728],[114.29461,22.35729],[114.29471,22.3573],[114.29479,22.35735],[114.29512,22.35717],[114.29506,22.35712],[114.29511,22.35705],[114.29526,22.35703],[114.29539,22.3572],[114.29551,22.35715],[114.29541,22.35707],[114.29561,22.35709],[114.29561,22.35712],[114.29566,22.35712],[114.29582,22.35697],[114.29605,22.35661],[114.29619,22.35618],[114.29597,22.35547],[114.29591,22.35544],[114.29568,22.35536],[114.29543,22.3553],[114.29524,22.35521],[114.29517,22.35512],[114.29517,22.35508],[114.29513,22.35492],[114.29516,22.35461],[114.29512,22.35453],[114.29501,22.35453],[114.29486,22.35441],[114.29486,22.3542],[114.29487,22.35411],[114.295,22.35382],[114.29503,22.35365],[114.2951,22.35359],[114.29511,22.35352],[114.29522,22.35337],[114.29528,22.35335],[114.29534,22.35333],[114.29538,22.35334],[114.29547,22.3534],[114.29556,22.3535],[114.29559,22.35353],[114.29563,22.35355],[114.29567,22.35355],[114.29578,22.35352],[114.29585,22.35351],[114.29587,22.3535],[114.29587,22.35348],[114.29585,22.35344],[114.29583,22.35336],[114.29584,22.35334],[114.29586,22.35332],[114.29587,22.35331],[114.29588,22.3533],[114.29587,22.3533],[114.29584,22.35329],[114.29583,22.35328],[114.29587,22.35314],[114.29606,22.35301],[114.2962,22.35298],[114.29636,22.35298],[114.29644,22.35305],[114.29645,22.35308],[114.29643,22.35311],[114.29638,22.35319],[114.29641,22.35318],[114.29645,22.35318],[114.29647,22.35321],[114.29647,22.35323],[114.29644,22.35324],[114.29641,22.35327],[114.29641,22.35329],[114.29657,22.35342],[114.29682,22.35349],[114.29682,22.35358],[114.29695,22.35373],[114.29697,22.35384],[114.29689,22.35405],[114.29695,22.35408],[114.29726,22.3541],[114.29728,22.35411],[114.29729,22.35414],[114.29728,22.35416],[114.29728,22.35421],[114.29726,22.35425],[114.29724,22.35429],[114.29726,22.35431],[114.29727,22.35429],[114.29728,22.35427],[114.29729,22.35426],[114.2973,22.35425],[114.29732,22.35426],[114.29743,22.3544],[114.29743,22.35449],[114.29742,22.35458],[114.29739,22.35466],[114.29733,22.35477],[114.29726,22.3548],[114.29728,22.35491],[114.29752,22.35508],[114.29755,22.3551],[114.29755,22.35508],[114.29757,22.35497],[114.29765,22.35496],[114.29772,22.35495],[114.29776,22.355],[114.29769,22.35508],[114.29768,22.35509],[114.29775,22.35529],[114.29773,22.35539],[114.29762,22.35537],[114.29758,22.35522],[114.29755,22.35553],[114.2974,22.35562],[114.29732,22.35562],[114.29731,22.35566],[114.2973,22.35572],[114.29732,22.35576],[114.29744,22.35575],[114.29742,22.35582],[114.29732,22.35588],[114.29728,22.35599],[114.29739,22.35605],[114.29742,22.35616],[114.29738,22.35622],[114.29732,22.35629],[114.29714,22.35632],[114.29697,22.35672],[114.29678,22.35692],[114.2968,22.3573],[114.2969,22.35734],[114.29683,22.35744],[114.29684,22.35751],[114.2967,22.35769],[114.29668,22.35782],[114.29659,22.3578],[114.29655,22.35796],[114.29639,22.35811],[114.29639,22.35834],[114.29643,22.35849],[114.29652,22.35865],[114.29652,22.35868],[114.29647,22.35887],[114.29652,22.35916],[114.29655,22.35935],[114.29653,22.35951],[114.2964,22.35983],[114.2964,22.36],[114.29643,22.36011],[114.29641,22.36031],[114.29641,22.36058],[114.29631,22.36084],[114.2963,22.36109],[114.29634,22.36138],[114.29632,22.36175],[114.29625,22.36206],[114.29615,22.36227],[114.29588,22.36265],[114.29584,22.36276],[114.296,22.36306],[114.29612,22.36315],[114.29618,22.36312],[114.29617,22.36309],[114.29628,22.36304],[114.2963,22.36309],[114.29633,22.36318],[114.29625,22.36327],[114.29614,22.36342],[114.29623,22.36358],[114.29646,22.36373],[114.29666,22.36373],[114.29672,22.36365],[114.29684,22.36366],[114.29694,22.36374],[114.29697,22.36395],[114.29713,22.36407],[114.2973,22.36406],[114.29743,22.36408],[114.29748,22.36409],[114.29763,22.36421],[114.29764,22.36437],[114.29758,22.36445],[114.29772,22.36455],[114.29776,22.36468],[114.29759,22.36507],[114.29761,22.36551],[114.29769,22.36557],[114.29769,22.36566],[114.29768,22.36577],[114.29767,22.36584],[114.29756,22.36594],[114.29745,22.36594],[114.29736,22.36596],[114.29704,22.36616],[114.29671,22.36637],[114.29656,22.36651],[114.296,22.36646],[114.29565,22.36656],[114.29544,22.36697],[114.29542,22.36734],[114.29548,22.36752],[114.29578,22.36766],[114.2958,22.36782],[114.29571,22.36791],[114.29549,22.36786],[114.29532,22.36792],[114.2952,22.36803],[114.29508,22.36792],[114.2947,22.36818],[114.29455,22.36841],[114.29433,22.36878],[114.29425,22.36891],[114.29411,22.36929],[114.29402,22.36938],[114.29391,22.36971],[114.29372,22.37003],[114.29367,22.37022],[114.29376,22.37056],[114.29398,22.37075],[114.29426,22.37083],[114.29427,22.37108],[114.29419,22.3712],[114.29409,22.37133],[114.2935,22.37179],[114.29339,22.37194],[114.29319,22.37207],[114.29298,22.37214],[114.29287,22.37222],[114.2928,22.37228],[114.29269,22.37231],[114.29287,22.37264],[114.29308,22.37272],[114.29326,22.37265],[114.2933,22.37284],[114.29323,22.37289],[114.29293,22.37294],[114.29291,22.37313],[114.29273,22.37332],[114.29264,22.37355],[114.29268,22.37362],[114.29283,22.37369],[114.29298,22.37346],[114.29318,22.37345],[114.29333,22.37335],[114.2936,22.37365],[114.29377,22.37374],[114.29382,22.3737],[114.29394,22.3737],[114.29405,22.37351],[114.29427,22.37344],[114.29442,22.37354],[114.29456,22.37375],[114.29468,22.37378],[114.29479,22.37395],[114.29485,22.37455],[114.29498,22.37468],[114.29502,22.37521],[114.29492,22.37537],[114.29473,22.37542],[114.29464,22.37541],[114.29443,22.37527],[114.2943,22.37548]]],[[[114.30057,22.37495],[114.30036,22.37528],[114.3003,22.37545],[114.30004,22.37571],[114.29989,22.37558],[114.29989,22.37549],[114.29983,22.37541],[114.29973,22.37534],[114.29963,22.37533],[114.2995,22.37529],[114.29944,22.37512],[114.29967,22.37493],[114.29991,22.37487],[114.29997,22.3747],[114.30021,22.3745],[114.30031,22.37446],[114.30041,22.37429],[114.30043,22.37397],[114.30024,22.37371],[114.30017,22.37354],[114.3002,22.3734],[114.30045,22.37316],[114.30058,22.37287],[114.30082,22.37286],[114.3011,22.37272],[114.3015,22.37274],[114.3019,22.3728],[114.30209,22.37313],[114.30216,22.37336],[114.30221,22.37341],[114.30236,22.37345],[114.30241,22.37356],[114.30237,22.37372],[114.30225,22.37388],[114.30211,22.37448],[114.302,22.37466],[114.30176,22.37487],[114.30139,22.37493],[114.30137,22.37509],[114.30132,22.37513],[114.30122,22.37512],[114.30119,22.37507],[114.30121,22.37499],[114.30135,22.37491],[114.30126,22.37478],[114.30119,22.37478],[114.3009,22.37489],[114.30065,22.37487],[114.30057,22.37495]]],[[[114.31289,22.37558],[114.3129,22.37565],[114.31282,22.37576],[114.31278,22.37585],[114.31279,22.37594],[114.31277,22.37596],[114.31274,22.37595],[114.31272,22.37591],[114.3126,22.37574],[114.31246,22.37568],[114.31244,22.3756],[114.31252,22.37553],[114.31272,22.37557],[114.31283,22.37555],[114.31289,22.37558]]],[[[114.28672,22.3756],[114.28682,22.37589],[114.28694,22.37604],[114.28683,22.37606],[114.28662,22.37603],[114.28618,22.3759],[114.28608,22.3758],[114.28604,22.37566],[114.28584,22.37531],[114.28549,22.3751],[114.28539,22.37507],[114.28497,22.37516],[114.2847,22.3751],[114.28463,22.37513],[114.28456,22.37506],[114.2846,22.37486],[114.28456,22.37473],[114.28453,22.37458],[114.2846,22.37456],[114.28461,22.37453],[114.28452,22.37443],[114.28445,22.37427],[114.28455,22.37408],[114.28473,22.37397],[114.2848,22.37384],[114.28496,22.37383],[114.28501,22.37388],[114.28512,22.37385],[114.28514,22.37378],[114.28522,22.37375],[114.28531,22.37379],[114.2854,22.37373],[114.28539,22.37365],[114.28547,22.37367],[114.2855,22.37373],[114.28558,22.37373],[114.2856,22.37354],[114.28565,22.37354],[114.28571,22.37362],[114.28568,22.3737],[114.28571,22.37373],[114.28584,22.37376],[114.28599,22.37378],[114.28606,22.37378],[114.28626,22.37387],[114.2864,22.37403],[114.2864,22.37408],[114.28644,22.37438],[114.28644,22.37458],[114.28662,22.37458],[114.28673,22.37457],[114.28696,22.37451],[114.28697,22.37455],[114.28674,22.37461],[114.28662,22.37463],[114.28643,22.37462],[114.28642,22.37501],[114.28672,22.3756]]],[[[114.31338,22.37605],[114.3134,22.3761],[114.31338,22.37612],[114.31335,22.37611],[114.31335,22.37605],[114.31334,22.37601],[114.31328,22.37594],[114.31331,22.3758],[114.31328,22.37569],[114.31324,22.37565],[114.31332,22.37559],[114.31338,22.37605]]],[[[114.28978,22.37607],[114.28978,22.37617],[114.28963,22.37618],[114.28949,22.37613],[114.2895,22.37599],[114.28954,22.37592],[114.28959,22.376],[114.28966,22.37594],[114.28967,22.37578],[114.28956,22.37569],[114.28943,22.37571],[114.28932,22.37576],[114.28929,22.3757],[114.28933,22.37566],[114.28934,22.3756],[114.28928,22.37551],[114.2893,22.37538],[114.28941,22.37543],[114.28955,22.37555],[114.28971,22.37555],[114.28978,22.37553],[114.28984,22.37542],[114.28991,22.37539],[114.29005,22.37523],[114.29013,22.37521],[114.29023,22.37526],[114.2903,22.37523],[114.29034,22.37524],[114.29037,22.37527],[114.29042,22.37526],[114.29048,22.37528],[114.29052,22.37525],[114.29052,22.37519],[114.29055,22.37515],[114.29056,22.37516],[114.29054,22.37522],[114.29055,22.37523],[114.29058,22.37523],[114.2906,22.37524],[114.29056,22.37529],[114.29058,22.37534],[114.29061,22.37534],[114.29068,22.37529],[114.29075,22.37527],[114.29081,22.37526],[114.29086,22.37526],[114.29094,22.37526],[114.29099,22.37527],[114.29104,22.37528],[114.29103,22.37529],[114.29099,22.37528],[114.29093,22.37527],[114.29085,22.37527],[114.29075,22.37529],[114.2907,22.3753],[114.29069,22.37532],[114.29065,22.37536],[114.2907,22.37552],[114.29065,22.37563],[114.29065,22.37565],[114.29069,22.37567],[114.29075,22.37569],[114.29074,22.3757],[114.2907,22.37568],[114.29067,22.37567],[114.29068,22.3757],[114.29066,22.37573],[114.2906,22.37573],[114.29056,22.37572],[114.29056,22.37569],[114.2906,22.37565],[114.29054,22.37562],[114.29044,22.3756],[114.29023,22.37582],[114.29023,22.37586],[114.2903,22.37587],[114.29025,22.37595],[114.28978,22.37607]]],[[[114.31854,22.37608],[114.31851,22.37623],[114.31842,22.37631],[114.31835,22.3763],[114.31833,22.37612],[114.31839,22.37599],[114.31854,22.37608]]],[[[114.31285,22.37606],[114.31285,22.37609],[114.31283,22.37612],[114.31284,22.37614],[114.31285,22.37619],[114.31286,22.37631],[114.31283,22.37636],[114.31285,22.37639],[114.31287,22.37641],[114.31293,22.37641],[114.31292,22.37645],[114.31286,22.37646],[114.31277,22.37647],[114.31274,22.37645],[114.31274,22.37644],[114.31278,22.37641],[114.31281,22.37636],[114.3128,22.37623],[114.31277,22.37609],[114.31277,22.37605],[114.31279,22.37604],[114.31282,22.37603],[114.31285,22.37606]]],[[[114.3188,22.3765],[114.3187,22.37648],[114.31863,22.37634],[114.31861,22.37598],[114.31857,22.37596],[114.31848,22.37598],[114.31836,22.3759],[114.31836,22.37579],[114.3184,22.3757],[114.3182,22.37555],[114.31823,22.37541],[114.31828,22.37538],[114.31837,22.37545],[114.31844,22.3754],[114.31862,22.3754],[114.31867,22.37543],[114.3187,22.37563],[114.31885,22.37583],[114.31891,22.37594],[114.31889,22.37607],[114.31905,22.37615],[114.31914,22.37629],[114.31905,22.37641],[114.31895,22.3764],[114.3188,22.3765]]],[[[114.38932,22.3766],[114.38923,22.37665],[114.38921,22.37665],[114.3892,22.37664],[114.3892,22.37663],[114.38928,22.37659],[114.38928,22.37654],[114.38929,22.37651],[114.38934,22.37648],[114.38946,22.37649],[114.38945,22.37652],[114.38942,22.37655],[114.38943,22.37657],[114.38943,22.37659],[114.38941,22.37659],[114.38938,22.37658],[114.38932,22.3766]]],[[[114.28829,22.37622],[114.28828,22.37624],[114.28828,22.37625],[114.28827,22.37625],[114.28827,22.37627],[114.28828,22.37628],[114.28833,22.37634],[114.28834,22.37635],[114.28834,22.37635],[114.28835,22.37635],[114.28836,22.37635],[114.28838,22.37636],[114.28839,22.37636],[114.2884,22.37637],[114.2884,22.37638],[114.28842,22.3764],[114.28843,22.3764],[114.28844,22.37641],[114.28845,22.37641],[114.28845,22.37642],[114.28844,22.37643],[114.28842,22.37644],[114.28841,22.37645],[114.2884,22.37647],[114.2884,22.37648],[114.28839,22.37649],[114.28838,22.37651],[114.28837,22.37652],[114.28836,22.37653],[114.28834,22.37655],[114.28833,22.37656],[114.28831,22.37659],[114.28831,22.37661],[114.28831,22.37663],[114.2883,22.37665],[114.2883,22.37666],[114.28829,22.37667],[114.28828,22.37668],[114.28827,22.37669],[114.28825,22.37672],[114.28823,22.37673],[114.28822,22.37674],[114.28818,22.37675],[114.28817,22.37676],[114.28815,22.37676],[114.28815,22.37676],[114.28805,22.37676],[114.28805,22.37676],[114.28804,22.37676],[114.28802,22.37675],[114.288,22.37674],[114.28797,22.37672],[114.28794,22.37671],[114.28792,22.3767],[114.28791,22.3767],[114.2879,22.37669],[114.28789,22.37668],[114.28787,22.37667],[114.28787,22.37667],[114.28786,22.37666],[114.28785,22.37666],[114.28784,22.37666],[114.2878,22.37665],[114.28778,22.37665],[114.28778,22.37664],[114.28776,22.37663],[114.28774,22.37662],[114.28772,22.37661],[114.28772,22.37661],[114.28771,22.3766],[114.28771,22.3766],[114.28771,22.37659],[114.28771,22.37658],[114.28772,22.37658],[114.28772,22.37657],[114.28773,22.37655],[114.28773,22.37654],[114.28772,22.37653],[114.28772,22.37653],[114.28771,22.37652],[114.28771,22.37651],[114.28771,22.3765],[114.28772,22.37647],[114.28775,22.37641],[114.28777,22.37637],[114.28778,22.37636],[114.28778,22.37635],[114.28779,22.37633],[114.28779,22.37632],[114.28781,22.37631],[114.28783,22.37631],[114.28784,22.3763],[114.28787,22.37629],[114.28789,22.37628],[114.28792,22.37626],[114.28793,22.37626],[114.28793,22.37624],[114.28793,22.37623],[114.28793,22.37623],[114.28794,22.37622],[114.28797,22.37622],[114.28798,22.37621],[114.288,22.37621],[114.28801,22.37621],[114.28803,22.3762],[114.28804,22.3762],[114.28805,22.37621],[114.28806,22.37621],[114.28807,22.37622],[114.28808,22.37622],[114.28809,22.37622],[114.2881,22.37621],[114.2881,22.37621],[114.28811,22.3762],[114.28811,22.37619],[114.28811,22.37617],[114.2881,22.37616],[114.28809,22.37615],[114.28808,22.37615],[114.28808,22.37614],[114.28808,22.37613],[114.28809,22.37612],[114.28809,22.37611],[114.28809,22.37608],[114.28809,22.37607],[114.28809,22.37607],[114.28811,22.37607],[114.28813,22.37607],[114.28815,22.37607],[114.28816,22.37608],[114.28816,22.37608],[114.28817,22.37609],[114.28818,22.3761],[114.2882,22.3761],[114.28821,22.37609],[114.28822,22.37609],[114.28823,22.3761],[114.28825,22.37611],[114.28826,22.37611],[114.28827,22.3761],[114.28828,22.3761],[114.28828,22.37611],[114.28829,22.37612],[114.28829,22.37613],[114.2883,22.37614],[114.28829,22.37615],[114.28829,22.37616],[114.28828,22.37617],[114.28828,22.37618],[114.28828,22.37619],[114.28828,22.3762],[114.28828,22.37621],[114.28829,22.37622]]],[[[114.38958,22.37662],[114.38958,22.37665],[114.38956,22.37666],[114.38953,22.37667],[114.3895,22.37665],[114.38952,22.37663],[114.38957,22.37662],[114.38958,22.37662]]],[[[114.38912,22.3767],[114.38911,22.37672],[114.38903,22.37675],[114.38902,22.37674],[114.38906,22.37671],[114.3891,22.37669],[114.38912,22.3767]]],[[[114.30848,22.37685],[114.30851,22.37688],[114.30851,22.37689],[114.30851,22.37691],[114.30848,22.37692],[114.30846,22.37692],[114.30843,22.3769],[114.30842,22.37688],[114.30843,22.37684],[114.30845,22.37684],[114.30848,22.37685]]],[[[114.32372,22.37629],[114.32333,22.37639],[114.32332,22.37651],[114.32307,22.3767],[114.32297,22.37694],[114.32266,22.37702],[114.32242,22.37717],[114.32234,22.37718],[114.32216,22.37704],[114.32222,22.37655],[114.32212,22.37647],[114.32204,22.37637],[114.32195,22.37626],[114.32184,22.37627],[114.32155,22.37644],[114.32139,22.37646],[114.32126,22.37643],[114.32121,22.37647],[114.32105,22.37649],[114.32107,22.37684],[114.32122,22.37684],[114.32122,22.37689],[114.32103,22.3769],[114.32101,22.3765],[114.32098,22.37649],[114.32097,22.37646],[114.32086,22.37648],[114.32085,22.37643],[114.32097,22.3764],[114.32096,22.37636],[114.32104,22.37623],[114.32103,22.37612],[114.3209,22.37594],[114.32072,22.37584],[114.3206,22.3757],[114.32076,22.37562],[114.32079,22.37543],[114.3209,22.37503],[114.32095,22.37488],[114.32091,22.37477],[114.32081,22.37473],[114.32078,22.37462],[114.32065,22.37453],[114.32078,22.37454],[114.32084,22.37443],[114.32085,22.37434],[114.3207,22.37428],[114.32075,22.374],[114.32083,22.37389],[114.32101,22.37367],[114.32118,22.37352],[114.32098,22.37345],[114.32083,22.37343],[114.32069,22.37343],[114.32067,22.37334],[114.32058,22.37333],[114.32056,22.37332],[114.32061,22.37321],[114.32047,22.37314],[114.32055,22.37301],[114.32043,22.37292],[114.32054,22.37274],[114.32076,22.37262],[114.32116,22.37255],[114.32131,22.37248],[114.32143,22.3723],[114.3217,22.37208],[114.32181,22.37187],[114.32183,22.37167],[114.32195,22.37156],[114.32202,22.37152],[114.32213,22.37154],[114.32233,22.37151],[114.32268,22.37125],[114.32273,22.37115],[114.32269,22.37107],[114.32271,22.37091],[114.32263,22.37085],[114.32246,22.3709],[114.32235,22.37092],[114.32234,22.37092],[114.32221,22.37099],[114.32213,22.37103],[114.32211,22.37105],[114.32211,22.37103],[114.3222,22.37098],[114.32221,22.37095],[114.32231,22.37091],[114.3223,22.37089],[114.32237,22.37082],[114.32259,22.3707],[114.32271,22.37071],[114.32293,22.37069],[114.32318,22.37085],[114.32322,22.37091],[114.32323,22.37102],[114.32327,22.37105],[114.32326,22.37117],[114.32335,22.37153],[114.32371,22.37177],[114.32388,22.37192],[114.32415,22.37216],[114.32423,22.37247],[114.32429,22.37252],[114.32437,22.37278],[114.3243,22.37289],[114.32436,22.37329],[114.32429,22.37355],[114.32423,22.37365],[114.32424,22.37391],[114.32425,22.37425],[114.3243,22.37441],[114.3244,22.37447],[114.32446,22.3744],[114.32479,22.37422],[114.32493,22.37401],[114.32528,22.37365],[114.32547,22.37365],[114.32568,22.37355],[114.32582,22.37333],[114.32612,22.37312],[114.32619,22.37299],[114.32619,22.37267],[114.32607,22.3726],[114.32584,22.37264],[114.32578,22.37258],[114.32587,22.37248],[114.32579,22.37243],[114.3258,22.37228],[114.32585,22.37225],[114.32581,22.37208],[114.32589,22.372],[114.32583,22.37164],[114.32606,22.37125],[114.32608,22.37109],[114.32582,22.37111],[114.32559,22.37089],[114.32556,22.37082],[114.32571,22.37044],[114.32575,22.37034],[114.32576,22.37002],[114.32573,22.37],[114.32567,22.36989],[114.32577,22.36966],[114.32578,22.36943],[114.32594,22.36915],[114.32618,22.3689],[114.3264,22.36875],[114.32648,22.36874],[114.32657,22.36848],[114.32652,22.36828],[114.32653,22.3681],[114.32679,22.36781],[114.32685,22.36763],[114.32695,22.36741],[114.32703,22.36722],[114.32706,22.36697],[114.32727,22.36668],[114.32729,22.36659],[114.32721,22.36645],[114.32718,22.36626],[114.3272,22.36601],[114.32713,22.3659],[114.32701,22.36587],[114.32702,22.36576],[114.32711,22.36578],[114.3272,22.36553],[114.3273,22.36554],[114.32742,22.36541],[114.32751,22.36541],[114.32759,22.36558],[114.32751,22.3657],[114.32766,22.36574],[114.32773,22.36569],[114.32782,22.36574],[114.32782,22.36579],[114.32816,22.36586],[114.32823,22.36584],[114.32825,22.36573],[114.3283,22.3657],[114.32839,22.36579],[114.3285,22.36575],[114.32859,22.3658],[114.32862,22.36626],[114.3287,22.36633],[114.32874,22.36639],[114.32882,22.36649],[114.32883,22.36692],[114.32881,22.36705],[114.32875,22.36749],[114.32877,22.36784],[114.32871,22.36802],[114.32854,22.3682],[114.32851,22.36829],[114.32854,22.36849],[114.3286,22.3686],[114.32873,22.36864],[114.32887,22.36852],[114.32896,22.36859],[114.32896,22.36867],[114.32893,22.36872],[114.32888,22.36869],[114.32872,22.36872],[114.32869,22.36876],[114.32873,22.36889],[114.32866,22.36907],[114.32868,22.36916],[114.32876,22.3692],[114.32878,22.3693],[114.32869,22.36943],[114.32849,22.36948],[114.32831,22.36968],[114.32834,22.37008],[114.32851,22.37024],[114.32891,22.37035],[114.32904,22.37056],[114.32938,22.37058],[114.32951,22.37074],[114.32958,22.37089],[114.3296,22.37107],[114.3296,22.37118],[114.32952,22.37137],[114.32956,22.37205],[114.32946,22.37235],[114.32938,22.37298],[114.32939,22.37312],[114.32945,22.37318],[114.32943,22.37341],[114.32937,22.37358],[114.32923,22.37375],[114.32907,22.37387],[114.32879,22.374],[114.32855,22.37403],[114.32819,22.37423],[114.32768,22.37476],[114.32757,22.37479],[114.32733,22.375],[114.32705,22.37518],[114.32689,22.3754],[114.32657,22.37552],[114.32635,22.37565],[114.32607,22.37578],[114.32597,22.37577],[114.32525,22.37613],[114.32502,22.37622],[114.32465,22.37635],[114.32437,22.37634],[114.32422,22.37619],[114.32411,22.37583],[114.324,22.37581],[114.32386,22.37594],[114.32375,22.3761],[114.32376,22.37624],[114.32372,22.37629]]],[[[114.31944,22.37776],[114.31943,22.37776],[114.31941,22.37776],[114.31941,22.37775],[114.31942,22.37775],[114.31943,22.37775],[114.31944,22.37776]]],[[[114.31935,22.37785],[114.31933,22.37787],[114.31932,22.37785],[114.31933,22.37784],[114.31936,22.37783],[114.31937,22.37782],[114.31939,22.37781],[114.3194,22.37783],[114.31939,22.37785],[114.31938,22.37786],[114.31936,22.37785],[114.31935,22.37785]]],[[[114.31949,22.37782],[114.31949,22.37783],[114.3195,22.37787],[114.3195,22.37788],[114.31949,22.37789],[114.31947,22.37789],[114.31946,22.37789],[114.31946,22.37785],[114.31946,22.37783],[114.31948,22.37782],[114.31949,22.37782]]],[[[114.30827,22.37927],[114.30798,22.3793],[114.3077,22.37925],[114.30747,22.37925],[114.30743,22.37921],[114.30742,22.37914],[114.30748,22.37908],[114.30747,22.37891],[114.30751,22.37872],[114.3076,22.37853],[114.30774,22.37842],[114.3078,22.37845],[114.30803,22.37844],[114.30829,22.3786],[114.30836,22.37874],[114.3084,22.37887],[114.30839,22.37912],[114.30845,22.37919],[114.30827,22.37927]]],[[[114.39108,22.37935],[114.39107,22.37936],[114.39106,22.37938],[114.39103,22.3794],[114.391,22.3794],[114.391,22.37938],[114.39103,22.37934],[114.39107,22.37933],[114.39108,22.37935]]],[[[114.31398,22.37955],[114.31397,22.37955],[114.31394,22.37953],[114.31392,22.37953],[114.31391,22.37953],[114.31391,22.37951],[114.31392,22.3795],[114.31392,22.37945],[114.31391,22.37944],[114.31395,22.37941],[114.31396,22.37941],[114.31399,22.37941],[114.31399,22.37941],[114.314,22.37942],[114.31398,22.37945],[114.31399,22.37947],[114.31399,22.3795],[114.314,22.37951],[114.31398,22.37955]]],[[[114.2994,22.37959],[114.29936,22.37974],[114.29934,22.37954],[114.29937,22.37951],[114.2994,22.37959]]],[[[114.30328,22.37984],[114.30328,22.37995],[114.30314,22.37989],[114.30323,22.37981],[114.30328,22.37984]]],[[[114.29921,22.38007],[114.29924,22.37993],[114.29935,22.37984],[114.29944,22.37995],[114.29944,22.38003],[114.29938,22.38003],[114.2993,22.38002],[114.29921,22.38007]]],[[[114.28908,22.37817],[114.28922,22.37826],[114.28958,22.37888],[114.28961,22.37897],[114.28957,22.37912],[114.28948,22.37927],[114.28917,22.3796],[114.28854,22.37979],[114.28823,22.3801],[114.28784,22.38033],[114.28772,22.38033],[114.28755,22.38005],[114.28751,22.37988],[114.28752,22.37974],[114.28834,22.37906],[114.28859,22.37866],[114.28866,22.3786],[114.28868,22.37839],[114.28872,22.37828],[114.28881,22.37822],[114.28894,22.37816],[114.28908,22.37817]]],[[[114.29561,22.38033],[114.2955,22.38034],[114.29544,22.38029],[114.29546,22.38021],[114.29555,22.38019],[114.29561,22.38033]]],[[[114.30912,22.38047],[114.30913,22.38049],[114.30914,22.38052],[114.30915,22.38055],[114.30914,22.38056],[114.30913,22.38056],[114.30912,22.38055],[114.30913,22.38052],[114.30908,22.3805],[114.30908,22.3805],[114.30908,22.38048],[114.30909,22.38047],[114.30912,22.38047]]],[[[114.30768,22.38085],[114.30761,22.38097],[114.30741,22.38103],[114.30737,22.38101],[114.30739,22.38092],[114.30664,22.38086],[114.3066,22.38082],[114.30668,22.38077],[114.30739,22.38081],[114.30738,22.38074],[114.30743,22.38069],[114.30759,22.38067],[114.30775,22.38056],[114.30801,22.38022],[114.30813,22.3802],[114.30826,22.38026],[114.30841,22.38026],[114.30884,22.37996],[114.30886,22.37986],[114.30881,22.37981],[114.30883,22.37976],[114.309,22.37971],[114.30919,22.3797],[114.30978,22.37926],[114.30977,22.37917],[114.30965,22.37907],[114.30965,22.37885],[114.30944,22.37867],[114.30935,22.37845],[114.30943,22.37804],[114.30927,22.37798],[114.30925,22.37785],[114.30918,22.37787],[114.30906,22.37753],[114.30894,22.37737],[114.30884,22.37734],[114.30881,22.37728],[114.30881,22.37724],[114.30898,22.3771],[114.30895,22.37689],[114.30859,22.37669],[114.30848,22.37681],[114.30827,22.37674],[114.30816,22.37658],[114.30813,22.37638],[114.30829,22.37634],[114.30819,22.37622],[114.30826,22.37618],[114.30838,22.37629],[114.30842,22.37596],[114.30856,22.37584],[114.30867,22.37582],[114.30874,22.37571],[114.30866,22.37563],[114.3084,22.3757],[114.30834,22.37563],[114.30842,22.37554],[114.30856,22.37559],[114.30862,22.37553],[114.30856,22.37547],[114.30852,22.37543],[114.30835,22.37541],[114.30825,22.37544],[114.30824,22.37571],[114.30818,22.37579],[114.30818,22.37599],[114.30806,22.37607],[114.30793,22.37605],[114.30784,22.37592],[114.30775,22.3758],[114.30773,22.37572],[114.30775,22.37564],[114.30787,22.37547],[114.30785,22.37539],[114.30758,22.37514],[114.30744,22.37498],[114.30736,22.3748],[114.30735,22.37462],[114.30734,22.37451],[114.30731,22.37433],[114.30743,22.37389],[114.30739,22.37366],[114.30733,22.37357],[114.30725,22.37359],[114.30707,22.37377],[114.30707,22.37389],[114.30699,22.37388],[114.30693,22.37362],[114.30683,22.37355],[114.30683,22.37299],[114.30653,22.37285],[114.30648,22.37277],[114.30634,22.37288],[114.30641,22.37303],[114.30629,22.37314],[114.30647,22.37334],[114.30642,22.37355],[114.30664,22.37368],[114.30653,22.37384],[114.30655,22.37401],[114.30652,22.37415],[114.30647,22.37426],[114.30659,22.37443],[114.30657,22.37459],[114.30652,22.37486],[114.30638,22.37496],[114.30628,22.37504],[114.30622,22.37508],[114.3061,22.37503],[114.30606,22.37498],[114.30597,22.3749],[114.30617,22.37482],[114.30609,22.37472],[114.30611,22.37458],[114.30575,22.37437],[114.30561,22.37438],[114.30555,22.37434],[114.30555,22.37418],[114.30559,22.37401],[114.30575,22.37392],[114.30577,22.37387],[114.3054,22.37327],[114.30529,22.37322],[114.30506,22.37326],[114.30481,22.37328],[114.30474,22.37318],[114.3047,22.37321],[114.3046,22.37329],[114.30436,22.37355],[114.30432,22.37359],[114.30422,22.37372],[114.30419,22.37375],[114.30417,22.3738],[114.30416,22.37386],[114.30415,22.37392],[114.30428,22.37397],[114.30435,22.37404],[114.30437,22.37426],[114.3045,22.37445],[114.30484,22.37466],[114.30478,22.37479],[114.30492,22.37503],[114.30498,22.37532],[114.30504,22.3754],[114.30523,22.37549],[114.30529,22.37538],[114.30542,22.37537],[114.30564,22.37556],[114.30564,22.37581],[114.30548,22.376],[114.30558,22.3763],[114.30576,22.37663],[114.30591,22.37671],[114.30611,22.37673],[114.30612,22.37686],[114.30632,22.377],[114.30623,22.37718],[114.30628,22.37742],[114.30621,22.37781],[114.30622,22.37801],[114.30607,22.37815],[114.30599,22.37834],[114.30607,22.3786],[114.30599,22.37873],[114.30576,22.37876],[114.30566,22.37867],[114.30555,22.37866],[114.30549,22.3787],[114.30527,22.3791],[114.3055,22.37943],[114.30564,22.37957],[114.30568,22.37976],[114.30558,22.37989],[114.30532,22.38003],[114.30509,22.38006],[114.30487,22.37998],[114.30462,22.37974],[114.30416,22.37948],[114.30382,22.3794],[114.30333,22.37939],[114.30311,22.37947],[114.30302,22.37961],[114.30306,22.37981],[114.30318,22.37999],[114.30331,22.38001],[114.30337,22.38011],[114.30327,22.38033],[114.30305,22.38039],[114.30275,22.38057],[114.30249,22.38056],[114.30226,22.38051],[114.30195,22.38056],[114.30177,22.38056],[114.30167,22.3806],[114.30139,22.38053],[114.30111,22.38034],[114.30085,22.38036],[114.30068,22.38029],[114.30057,22.3801],[114.30057,22.37995],[114.30051,22.37984],[114.30056,22.37975],[114.30092,22.37945],[114.30103,22.37925],[114.30105,22.37909],[114.30099,22.37879],[114.30084,22.37843],[114.30075,22.3783],[114.30061,22.37827],[114.30058,22.37821],[114.30061,22.37793],[114.3009,22.3775],[114.30053,22.3773],[114.3005,22.37734],[114.30045,22.37732],[114.30053,22.37719],[114.30058,22.37721],[114.30055,22.37725],[114.30086,22.37742],[114.30089,22.3774],[114.30095,22.37744],[114.30099,22.37739],[114.30098,22.37738],[114.30107,22.37728],[114.30109,22.3773],[114.3011,22.37727],[114.30112,22.37721],[114.30111,22.37714],[114.30112,22.37713],[114.30098,22.3769],[114.30085,22.37679],[114.3008,22.37677],[114.30076,22.37678],[114.30073,22.3768],[114.30071,22.37679],[114.3007,22.37664],[114.30077,22.37653],[114.3008,22.37647],[114.3008,22.37645],[114.30078,22.3764],[114.30071,22.37628],[114.30063,22.37599],[114.30054,22.37587],[114.30055,22.37581],[114.30085,22.37554],[114.30092,22.37556],[114.30107,22.37562],[114.30122,22.37564],[114.30131,22.37568],[114.30142,22.37577],[114.30145,22.37584],[114.30152,22.37588],[114.30178,22.37616],[114.30208,22.37591],[114.30204,22.37581],[114.30208,22.37557],[114.30205,22.37528],[114.3021,22.37516],[114.3022,22.37507],[114.30252,22.37505],[114.30277,22.37498],[114.30292,22.37511],[114.30294,22.37527],[114.30304,22.37539],[114.30318,22.37543],[114.3033,22.37517],[114.30332,22.37509],[114.30328,22.37497],[114.30314,22.37485],[114.30311,22.37462],[114.30315,22.37455],[114.30332,22.37443],[114.30341,22.37428],[114.30335,22.37412],[114.30338,22.37397],[114.30346,22.37384],[114.30354,22.37378],[114.30362,22.37378],[114.3039,22.3739],[114.30407,22.37389],[114.30408,22.37384],[114.3041,22.37378],[114.30413,22.37372],[114.30415,22.37368],[114.30426,22.37355],[114.3043,22.3735],[114.30455,22.37324],[114.30465,22.37315],[114.30472,22.37309],[114.30474,22.37298],[114.30492,22.37291],[114.30486,22.37262],[114.30489,22.37233],[114.305,22.37225],[114.30516,22.37225],[114.30536,22.37217],[114.30559,22.37206],[114.30567,22.37198],[114.30564,22.37184],[114.30546,22.37179],[114.30521,22.37181],[114.30516,22.37187],[114.30521,22.37191],[114.3052,22.37197],[114.3049,22.37215],[114.3048,22.37218],[114.30466,22.37213],[114.30452,22.37214],[114.30446,22.3721],[114.30446,22.37205],[114.30463,22.37196],[114.30466,22.3718],[114.30455,22.37175],[114.30451,22.37135],[114.30429,22.3714],[114.30426,22.37133],[114.30425,22.37124],[114.30416,22.37112],[114.30424,22.37101],[114.30434,22.37096],[114.30446,22.371],[114.30457,22.37094],[114.30464,22.37078],[114.3048,22.37064],[114.30494,22.3706],[114.30506,22.37062],[114.30524,22.37053],[114.30517,22.3705],[114.30509,22.3704],[114.3049,22.37032],[114.30482,22.37022],[114.30459,22.37008],[114.30432,22.37006],[114.30384,22.3703],[114.30365,22.37032],[114.30328,22.3705],[114.30306,22.37053],[114.30278,22.37063],[114.30261,22.37042],[114.3024,22.37034],[114.30232,22.37015],[114.30231,22.36984],[114.30248,22.3695],[114.30226,22.36924],[114.30222,22.36915],[114.30218,22.36905],[114.30215,22.36885],[114.30214,22.36867],[114.30215,22.36856],[114.30211,22.36848],[114.30217,22.36815],[114.30202,22.36786],[114.30207,22.36782],[114.30235,22.36777],[114.30263,22.36758],[114.30281,22.36726],[114.30276,22.36722],[114.30277,22.36708],[114.30291,22.36704],[114.303,22.36706],[114.30325,22.36689],[114.30354,22.36681],[114.30352,22.36673],[114.30358,22.36669],[114.30374,22.3667],[114.30392,22.36677],[114.30414,22.36684],[114.30421,22.36697],[114.30421,22.36704],[114.30408,22.36712],[114.30421,22.3673],[114.3042,22.36734],[114.30396,22.36747],[114.30382,22.36771],[114.30385,22.36816],[114.30403,22.36834],[114.3044,22.36843],[114.3045,22.36839],[114.30464,22.36822],[114.30491,22.36811],[114.30497,22.36814],[114.30507,22.36812],[114.30526,22.36804],[114.30543,22.36789],[114.30551,22.3679],[114.30567,22.36785],[114.3057,22.36772],[114.30557,22.36758],[114.30558,22.36746],[114.30551,22.36728],[114.30557,22.36704],[114.30573,22.36684],[114.30577,22.36662],[114.30575,22.36651],[114.30567,22.36638],[114.30569,22.3662],[114.30582,22.36609],[114.30557,22.36601],[114.30521,22.366],[114.30512,22.36587],[114.30499,22.3658],[114.30493,22.36574],[114.30485,22.36558],[114.30471,22.3655],[114.30421,22.36551],[114.30421,22.36529],[114.30479,22.36527],[114.30508,22.36516],[114.30557,22.36523],[114.30559,22.3652],[114.30556,22.36496],[114.3056,22.36469],[114.30552,22.36445],[114.3056,22.36421],[114.30575,22.36416],[114.30577,22.36416],[114.30583,22.36405],[114.30589,22.36399],[114.30593,22.36398],[114.30602,22.36403],[114.30606,22.3641],[114.30606,22.36416],[114.30614,22.36418],[114.30618,22.36417],[114.3062,22.36414],[114.3062,22.36411],[114.30619,22.36405],[114.30611,22.36403],[114.30578,22.36382],[114.30573,22.36374],[114.30576,22.36366],[114.30571,22.36342],[114.30564,22.36335],[114.30574,22.36327],[114.30586,22.36318],[114.30595,22.36305],[114.30586,22.36297],[114.30616,22.36227],[114.30623,22.36219],[114.30662,22.36183],[114.30679,22.36158],[114.30701,22.36143],[114.30728,22.36097],[114.30747,22.36103],[114.30768,22.3609],[114.3079,22.36092],[114.30795,22.36078],[114.30807,22.36076],[114.30818,22.3608],[114.30834,22.36073],[114.30834,22.3607],[114.3081,22.36058],[114.30812,22.36019],[114.30825,22.3601],[114.30839,22.35995],[114.3086,22.35962],[114.30861,22.35954],[114.30883,22.35927],[114.3088,22.35926],[114.30872,22.35938],[114.30848,22.35952],[114.30832,22.35951],[114.30822,22.35956],[114.30804,22.35957],[114.30771,22.35967],[114.30749,22.35977],[114.30689,22.35989],[114.30668,22.36009],[114.30666,22.36025],[114.3065,22.36021],[114.30629,22.3603],[114.30619,22.3604],[114.30619,22.36049],[114.30632,22.36064],[114.30628,22.36074],[114.30599,22.36082],[114.30586,22.3609],[114.30539,22.36073],[114.30542,22.3606],[114.3054,22.36052],[114.30528,22.36046],[114.30529,22.36013],[114.30525,22.35988],[114.30521,22.35981],[114.3051,22.35981],[114.30518,22.35966],[114.30524,22.35965],[114.30534,22.3597],[114.30549,22.35952],[114.30545,22.35938],[114.30556,22.35915],[114.30548,22.35893],[114.30539,22.35886],[114.30537,22.35878],[114.30544,22.35872],[114.30551,22.35872],[114.30567,22.35855],[114.30576,22.3582],[114.30582,22.35816],[114.30595,22.3582],[114.30607,22.35805],[114.30627,22.35809],[114.30639,22.35806],[114.30665,22.3578],[114.3069,22.35764],[114.30669,22.35724],[114.30644,22.35696],[114.30631,22.35673],[114.30614,22.35671],[114.30601,22.35686],[114.30598,22.35665],[114.30543,22.35621],[114.30524,22.35609],[114.30525,22.35601],[114.30519,22.35595],[114.30516,22.35572],[114.30509,22.35565],[114.30507,22.35551],[114.30489,22.35527],[114.30481,22.35525],[114.30476,22.35507],[114.30471,22.35502],[114.30458,22.35489],[114.30424,22.35487],[114.30404,22.35499],[114.30399,22.355],[114.30394,22.35499],[114.30382,22.3549],[114.30363,22.35463],[114.30355,22.35461],[114.30354,22.35455],[114.30357,22.35449],[114.30364,22.35446],[114.30376,22.35449],[114.30385,22.35441],[114.30413,22.35382],[114.30415,22.35364],[114.3041,22.35349],[114.30409,22.35328],[114.30401,22.35307],[114.30392,22.35292],[114.30383,22.3529],[114.30365,22.35273],[114.30364,22.35277],[114.30361,22.35275],[114.30358,22.35272],[114.30359,22.35265],[114.30353,22.35253],[114.30349,22.35254],[114.30348,22.35247],[114.30348,22.35223],[114.30344,22.35219],[114.30342,22.35222],[114.30339,22.35222],[114.30333,22.35217],[114.3033,22.35213],[114.30331,22.35201],[114.30326,22.35198],[114.30324,22.35192],[114.30325,22.35189],[114.30333,22.35188],[114.30336,22.35191],[114.30339,22.35201],[114.30341,22.352],[114.30343,22.35192],[114.30343,22.35186],[114.30346,22.35177],[114.30345,22.3517],[114.30352,22.35169],[114.30363,22.35172],[114.30376,22.35164],[114.30372,22.35157],[114.30364,22.35143],[114.30363,22.35134],[114.30369,22.35126],[114.30379,22.35102],[114.30389,22.35081],[114.304,22.3507],[114.30405,22.3507],[114.30411,22.35074],[114.30418,22.35055],[114.30421,22.3506],[114.30425,22.35061],[114.3043,22.35055],[114.30427,22.35052],[114.30428,22.35041],[114.30432,22.35037],[114.30436,22.35041],[114.30439,22.35056],[114.30442,22.35058],[114.30442,22.35041],[114.30442,22.35036],[114.30445,22.35031],[114.30453,22.35031],[114.30456,22.35039],[114.30471,22.35035],[114.30479,22.35027],[114.30478,22.35011],[114.30484,22.35004],[114.30483,22.34994],[114.3049,22.34945],[114.30502,22.34911],[114.30505,22.34906],[114.30511,22.34899],[114.3051,22.34893],[114.30505,22.34897],[114.30501,22.34894],[114.30504,22.34877],[114.30507,22.34864],[114.30501,22.34845],[114.3051,22.34832],[114.30518,22.34836],[114.30523,22.34851],[114.30528,22.34851],[114.30533,22.34843],[114.30542,22.34837],[114.30539,22.34817],[114.30546,22.34798],[114.3056,22.34753],[114.30576,22.3473],[114.30593,22.34725],[114.30606,22.34728],[114.30613,22.34728],[114.30619,22.34727],[114.3062,22.3472],[114.30645,22.34704],[114.30649,22.34696],[114.30664,22.34694],[114.30684,22.34668],[114.30693,22.34644],[114.30703,22.34638],[114.30719,22.34625],[114.30719,22.34618],[114.30709,22.34614],[114.3074,22.34571],[114.30757,22.34565],[114.30756,22.34577],[114.30767,22.34578],[114.30769,22.34568],[114.30786,22.34548],[114.30812,22.34539],[114.30822,22.3454],[114.3082,22.34552],[114.30833,22.34555],[114.30842,22.34571],[114.30849,22.34565],[114.30861,22.34563],[114.30862,22.34552],[114.30874,22.34541],[114.30878,22.34542],[114.30883,22.34548],[114.30894,22.34553],[114.30905,22.34546],[114.30908,22.34545],[114.30896,22.34533],[114.30907,22.34524],[114.30916,22.34528],[114.30925,22.34541],[114.30938,22.34544],[114.30925,22.3451],[114.30947,22.34484],[114.30959,22.345],[114.30962,22.345],[114.30964,22.34488],[114.30974,22.3448],[114.30972,22.34473],[114.30977,22.34452],[114.30991,22.34438],[114.3099,22.34426],[114.31009,22.34415],[114.31038,22.34368],[114.31052,22.34358],[114.31066,22.34358],[114.31088,22.34349],[114.31097,22.34357],[114.31114,22.34345],[114.31124,22.34332],[114.3116,22.34314],[114.31207,22.34318],[114.31202,22.34331],[114.31184,22.34339],[114.31187,22.34345],[114.31199,22.34348],[114.31226,22.34347],[114.31252,22.34356],[114.31262,22.34365],[114.31272,22.34367],[114.31276,22.34376],[114.31283,22.34381],[114.31287,22.34394],[114.31277,22.34407],[114.31295,22.3441],[114.31311,22.34433],[114.3132,22.34464],[114.3132,22.34484],[114.31314,22.34508],[114.31325,22.34527],[114.31322,22.34558],[114.31327,22.34602],[114.31332,22.34611],[114.31356,22.3462],[114.31397,22.34626],[114.31399,22.34639],[114.31407,22.34629],[114.31441,22.34623],[114.31444,22.34609],[114.31461,22.34615],[114.31466,22.34612],[114.31466,22.34585],[114.31473,22.34576],[114.31471,22.34555],[114.31473,22.34552],[114.31481,22.3456],[114.31479,22.34543],[114.31481,22.34538],[114.31486,22.34535],[114.31501,22.34536],[114.31496,22.3452],[114.31497,22.34514],[114.31518,22.34499],[114.31525,22.34491],[114.31528,22.34491],[114.31532,22.34494],[114.31535,22.34499],[114.31539,22.34501],[114.31541,22.345],[114.31541,22.34499],[114.31536,22.34493],[114.31534,22.34488],[114.31536,22.34479],[114.31541,22.34474],[114.31551,22.34472],[114.31557,22.34467],[114.31561,22.34461],[114.31561,22.34448],[114.31572,22.34431],[114.31579,22.34427],[114.31587,22.34427],[114.31586,22.34422],[114.31595,22.34414],[114.31601,22.34418],[114.31603,22.34416],[114.31611,22.3442],[114.31626,22.34409],[114.31623,22.34399],[114.31631,22.34391],[114.31638,22.34404],[114.31642,22.34383],[114.31647,22.3438],[114.31656,22.34378],[114.31656,22.34376],[114.31652,22.34374],[114.31649,22.34366],[114.31648,22.34357],[114.31666,22.34343],[114.31675,22.34338],[114.31693,22.34335],[114.31701,22.34341],[114.31719,22.34344],[114.31727,22.34348],[114.31739,22.34363],[114.31736,22.34355],[114.31737,22.34349],[114.3174,22.34345],[114.31759,22.34331],[114.31775,22.34327],[114.31782,22.34331],[114.31797,22.34329],[114.31806,22.34339],[114.31814,22.34337],[114.3182,22.34337],[114.31836,22.34339],[114.31837,22.34343],[114.31845,22.3434],[114.31853,22.34334],[114.31862,22.3433],[114.31882,22.34316],[114.31898,22.34311],[114.31919,22.34296],[114.31941,22.34294],[114.31973,22.34271],[114.31989,22.34263],[114.31992,22.34262],[114.31996,22.34263],[114.32,22.34267],[114.32001,22.34266],[114.32002,22.34262],[114.31996,22.34261],[114.31996,22.34259],[114.32004,22.34261],[114.32004,22.34262],[114.32003,22.34262],[114.32002,22.34268],[114.32001,22.34273],[114.32002,22.34274],[114.32003,22.34274],[114.32011,22.34275],[114.32016,22.34275],[114.32016,22.34273],[114.32022,22.34273],[114.32027,22.34272],[114.32027,22.34266],[114.32027,22.34266],[114.32028,22.34273],[114.32035,22.34271],[114.3204,22.34269],[114.3204,22.34268],[114.32043,22.34267],[114.32041,22.34264],[114.3204,22.34264],[114.32039,22.34262],[114.32042,22.34261],[114.32044,22.34267],[114.32047,22.34266],[114.32049,22.34271],[114.32054,22.34269],[114.32058,22.34267],[114.32062,22.34265],[114.32063,22.34264],[114.32067,22.34261],[114.32063,22.34256],[114.32068,22.34252],[114.32061,22.34242],[114.32056,22.34245],[114.32054,22.34244],[114.32063,22.34238],[114.32072,22.34251],[114.32084,22.34243],[114.32087,22.34246],[114.32093,22.34242],[114.32089,22.34236],[114.32092,22.34234],[114.32095,22.34239],[114.32099,22.34236],[114.32101,22.34238],[114.32106,22.34234],[114.3211,22.34233],[114.32108,22.34228],[114.32111,22.34228],[114.3211,22.34226],[114.32115,22.34219],[114.32113,22.34214],[114.32144,22.34202],[114.32154,22.34213],[114.32175,22.34215],[114.32178,22.34217],[114.32188,22.34215],[114.3219,22.34214],[114.32191,22.34215],[114.322,22.34214],[114.32228,22.34216],[114.32245,22.34216],[114.32255,22.34215],[114.32265,22.34213],[114.32264,22.3421],[114.32269,22.34209],[114.32276,22.34208],[114.32314,22.34235],[114.32346,22.34232],[114.32353,22.34235],[114.32352,22.34244],[114.32364,22.34252],[114.32366,22.34268],[114.32374,22.34283],[114.32387,22.34298],[114.32401,22.34309],[114.32402,22.34314],[114.32412,22.34324],[114.32436,22.34358],[114.32442,22.34373],[114.32457,22.34379],[114.32475,22.34401],[114.32466,22.34422],[114.32458,22.3443],[114.32465,22.34437],[114.32455,22.34449],[114.3246,22.34457],[114.32455,22.34486],[114.32434,22.34527],[114.32437,22.34536],[114.32436,22.34566],[114.3245,22.34569],[114.32444,22.34584],[114.3242,22.34618],[114.3235,22.34661],[114.32323,22.34686],[114.32309,22.34715],[114.32321,22.34744],[114.32338,22.34753],[114.32354,22.34778],[114.3237,22.34785],[114.32399,22.34777],[114.32449,22.34779],[114.32452,22.34771],[114.32458,22.34775],[114.32488,22.34764],[114.32506,22.34778],[114.32519,22.34785],[114.32531,22.34794],[114.32548,22.34791],[114.32569,22.34777],[114.32564,22.34803],[114.32557,22.34809],[114.32561,22.34821],[114.3258,22.34814],[114.32595,22.34814],[114.32615,22.34828],[114.32629,22.34847],[114.32629,22.34855],[114.32615,22.34867],[114.32611,22.3489],[114.32603,22.34899],[114.32596,22.34909],[114.3258,22.34922],[114.32568,22.34939],[114.32563,22.34963],[114.32556,22.34993],[114.32539,22.3502],[114.3253,22.35056],[114.32561,22.35077],[114.32582,22.35084],[114.32598,22.35083],[114.32598,22.35078],[114.32604,22.35081],[114.32607,22.35081],[114.32606,22.35085],[114.32607,22.35087],[114.32638,22.35096],[114.32659,22.3507],[114.32689,22.35067],[114.32698,22.35081],[114.32706,22.35065],[114.32718,22.35057],[114.3272,22.35062],[114.32712,22.35091],[114.32723,22.3509],[114.32728,22.35095],[114.32728,22.35126],[114.32721,22.35137],[114.32722,22.35166],[114.32718,22.35173],[114.32714,22.35176],[114.32715,22.35181],[114.32709,22.35198],[114.32685,22.35236],[114.3268,22.35257],[114.32666,22.35278],[114.32666,22.35287],[114.32662,22.353],[114.32664,22.35323],[114.32648,22.35334],[114.32633,22.35335],[114.32623,22.3536],[114.32601,22.35372],[114.32599,22.35386],[114.326,22.35396],[114.32611,22.35416],[114.32618,22.35423],[114.32628,22.35423],[114.3264,22.35433],[114.32642,22.35446],[114.32637,22.35458],[114.32661,22.3545],[114.32669,22.3546],[114.32693,22.3546],[114.32702,22.35472],[114.32713,22.35471],[114.32725,22.35479],[114.32724,22.35506],[114.32699,22.35537],[114.32706,22.35548],[114.32712,22.35546],[114.32714,22.35548],[114.32713,22.35563],[114.3272,22.35566],[114.3273,22.3558],[114.3273,22.35589],[114.32744,22.35601],[114.32751,22.356],[114.32754,22.35591],[114.32763,22.35596],[114.32763,22.35591],[114.3277,22.35588],[114.32779,22.35593],[114.32785,22.35611],[114.32782,22.3562],[114.32773,22.35619],[114.32762,22.35632],[114.32752,22.3562],[114.32743,22.35621],[114.32734,22.35626],[114.32718,22.35643],[114.32714,22.35661],[114.32707,22.35668],[114.32707,22.35681],[114.32703,22.35684],[114.32705,22.35698],[114.32685,22.3573],[114.32656,22.35752],[114.32639,22.35757],[114.32619,22.35758],[114.32599,22.35766],[114.32567,22.35783],[114.3255,22.35763],[114.32483,22.35762],[114.32476,22.35759],[114.32465,22.35745],[114.32466,22.3574],[114.3246,22.35737],[114.32453,22.35752],[114.32453,22.35763],[114.32457,22.35788],[114.32469,22.35799],[114.3247,22.35814],[114.32467,22.3583],[114.32453,22.35849],[114.32451,22.35857],[114.32444,22.35858],[114.32441,22.35864],[114.32425,22.3587],[114.32406,22.35866],[114.3239,22.35886],[114.32389,22.35896],[114.32365,22.35907],[114.32345,22.35909],[114.3234,22.35913],[114.32315,22.3592],[114.32301,22.35913],[114.32281,22.35918],[114.32251,22.35954],[114.32237,22.35965],[114.32231,22.35979],[114.32234,22.35983],[114.3223,22.35987],[114.32205,22.35991],[114.32172,22.35978],[114.32163,22.35976],[114.32161,22.35981],[114.3215,22.3598],[114.32113,22.35994],[114.3208,22.36015],[114.32067,22.36029],[114.32053,22.36029],[114.32046,22.36036],[114.32036,22.36026],[114.3203,22.3601],[114.32036,22.35992],[114.32029,22.35959],[114.32036,22.3591],[114.32044,22.35903],[114.32059,22.35864],[114.32073,22.35849],[114.32094,22.35812],[114.32116,22.35788],[114.32121,22.35743],[114.32092,22.35786],[114.32067,22.35812],[114.32057,22.35814],[114.3205,22.35821],[114.32052,22.35835],[114.31989,22.35962],[114.31967,22.35981],[114.31954,22.36001],[114.31933,22.36003],[114.31918,22.3599],[114.31897,22.3598],[114.31884,22.35965],[114.31899,22.35992],[114.31904,22.36018],[114.31913,22.36031],[114.31915,22.36046],[114.31874,22.36103],[114.31801,22.36164],[114.318,22.36179],[114.31811,22.36194],[114.3183,22.36198],[114.3184,22.36186],[114.31868,22.36166],[114.31887,22.36159],[114.31895,22.36147],[114.31935,22.36112],[114.31943,22.36107],[114.3195,22.36109],[114.31952,22.36123],[114.3195,22.36155],[114.31963,22.36162],[114.31955,22.3617],[114.31959,22.36191],[114.31954,22.36209],[114.31955,22.36234],[114.31963,22.36262],[114.31955,22.36274],[114.3197,22.36292],[114.31996,22.36309],[114.32004,22.36325],[114.32001,22.36337],[114.31988,22.36354],[114.3198,22.36371],[114.31972,22.36379],[114.31971,22.3638],[114.3195,22.3639],[114.3191,22.36396],[114.31898,22.36403],[114.3189,22.36415],[114.31887,22.36444],[114.31906,22.36468],[114.31921,22.36477],[114.31975,22.36474],[114.31999,22.36468],[114.32005,22.36462],[114.32009,22.36464],[114.32045,22.36444],[114.32047,22.36433],[114.32052,22.36422],[114.32061,22.36415],[114.32072,22.36413],[114.32074,22.36415],[114.32071,22.3642],[114.32074,22.36421],[114.32077,22.36417],[114.3208,22.36416],[114.32081,22.36415],[114.32083,22.36416],[114.32085,22.36417],[114.32084,22.36421],[114.32082,22.36424],[114.32086,22.36423],[114.32089,22.36424],[114.32088,22.36426],[114.32082,22.36425],[114.3208,22.36426],[114.32076,22.36432],[114.32078,22.36434],[114.32078,22.36437],[114.32068,22.36449],[114.32058,22.36456],[114.32045,22.36472],[114.32046,22.36476],[114.32059,22.36478],[114.32055,22.36494],[114.32068,22.365],[114.32069,22.36532],[114.32056,22.36571],[114.32044,22.36597],[114.32032,22.36639],[114.32044,22.36653],[114.32033,22.3666],[114.32034,22.36691],[114.32013,22.36721],[114.32,22.36725],[114.32002,22.36756],[114.31972,22.36768],[114.31955,22.3677],[114.31941,22.36777],[114.31933,22.3679],[114.31934,22.3681],[114.31938,22.36811],[114.31943,22.36852],[114.31944,22.36866],[114.31956,22.36892],[114.31955,22.36903],[114.31942,22.36917],[114.31952,22.36938],[114.31949,22.36956],[114.31934,22.36974],[114.31919,22.36986],[114.31913,22.36984],[114.31899,22.36991],[114.31883,22.3699],[114.31861,22.36997],[114.3185,22.36989],[114.31843,22.36976],[114.31827,22.36968],[114.31824,22.36954],[114.31811,22.36948],[114.31798,22.37005],[114.3178,22.37056],[114.31758,22.37081],[114.31727,22.37105],[114.31728,22.37132],[114.31721,22.37137],[114.31727,22.37149],[114.3172,22.3715],[114.31701,22.37146],[114.31683,22.37151],[114.31668,22.37165],[114.3166,22.37167],[114.31662,22.37171],[114.31663,22.37174],[114.31689,22.37188],[114.31696,22.37197],[114.31704,22.37198],[114.31723,22.37213],[114.31735,22.37217],[114.31742,22.37225],[114.31739,22.37239],[114.31745,22.37244],[114.31734,22.37251],[114.3173,22.37262],[114.31736,22.37296],[114.31722,22.37307],[114.3172,22.37312],[114.31722,22.37318],[114.31727,22.37326],[114.31731,22.37336],[114.31731,22.3734],[114.31728,22.37346],[114.31726,22.37348],[114.31722,22.3735],[114.31716,22.37353],[114.31712,22.37355],[114.31708,22.37356],[114.31705,22.37357],[114.31709,22.37364],[114.31706,22.37365],[114.31702,22.37358],[114.31702,22.37358],[114.317,22.37358],[114.31699,22.37359],[114.31697,22.37359],[114.31694,22.37359],[114.31691,22.3736],[114.31687,22.37361],[114.31682,22.37363],[114.3168,22.37364],[114.31677,22.37364],[114.31671,22.37364],[114.31669,22.37364],[114.31666,22.37363],[114.31664,22.37362],[114.31663,22.37363],[114.31662,22.37363],[114.31658,22.37365],[114.31657,22.37366],[114.31655,22.37366],[114.31654,22.37366],[114.31653,22.37365],[114.31651,22.37361],[114.31649,22.37356],[114.31648,22.37355],[114.31645,22.37354],[114.31643,22.37354],[114.31642,22.37354],[114.3164,22.37354],[114.31633,22.37354],[114.3163,22.37353],[114.31626,22.37353],[114.31622,22.37352],[114.31617,22.37352],[114.31613,22.37354],[114.31611,22.37356],[114.31608,22.37362],[114.31607,22.37365],[114.31608,22.37367],[114.3161,22.37369],[114.31613,22.37369],[114.31617,22.37369],[114.31626,22.37374],[114.31631,22.37378],[114.31632,22.37379],[114.31632,22.37381],[114.31631,22.37384],[114.31629,22.37388],[114.3163,22.37395],[114.31632,22.37399],[114.31635,22.37402],[114.3164,22.37403],[114.31648,22.37404],[114.31657,22.37405],[114.31662,22.37406],[114.31663,22.37407],[114.31665,22.37408],[114.31666,22.37409],[114.31666,22.37411],[114.31667,22.37413],[114.31669,22.37415],[114.31672,22.37418],[114.31676,22.37421],[114.31679,22.37423],[114.3168,22.37424],[114.31682,22.37428],[114.31683,22.3743],[114.31687,22.37428],[114.3169,22.37426],[114.31694,22.37423],[114.31696,22.37422],[114.31698,22.3742],[114.317,22.37418],[114.31701,22.37416],[114.31706,22.37409],[114.31708,22.37406],[114.31712,22.37402],[114.31713,22.374],[114.31714,22.37398],[114.31715,22.37396],[114.31717,22.37392],[114.31717,22.3739],[114.31717,22.37385],[114.31716,22.37381],[114.31716,22.3738],[114.31716,22.37379],[114.31715,22.37377],[114.31713,22.37373],[114.31712,22.37372],[114.31714,22.37371],[114.31715,22.37372],[114.31717,22.37375],[114.31718,22.37377],[114.31719,22.37378],[114.31719,22.37379],[114.31719,22.37381],[114.31719,22.37385],[114.3172,22.3739],[114.3172,22.37391],[114.31719,22.37393],[114.31718,22.37396],[114.31718,22.37398],[114.31717,22.374],[114.31715,22.37402],[114.31714,22.37404],[114.31711,22.37407],[114.31709,22.3741],[114.31706,22.37415],[114.31703,22.37418],[114.31702,22.3742],[114.317,22.37422],[114.31698,22.37424],[114.31696,22.37425],[114.31691,22.37429],[114.31688,22.37431],[114.31686,22.37432],[114.31689,22.37438],[114.31681,22.37464],[114.31656,22.37487],[114.31655,22.37508],[114.31668,22.37528],[114.3168,22.37534],[114.3168,22.3754],[114.31688,22.37545],[114.31687,22.37559],[114.31691,22.3757],[114.31712,22.37563],[114.31734,22.37567],[114.31738,22.3756],[114.31752,22.37558],[114.31757,22.37568],[114.31775,22.37568],[114.31775,22.37559],[114.31791,22.37546],[114.31796,22.37556],[114.31792,22.37571],[114.31786,22.37575],[114.31778,22.37575],[114.31781,22.37603],[114.31775,22.3763],[114.31769,22.37636],[114.31755,22.37638],[114.31726,22.37631],[114.31718,22.37646],[114.31714,22.37667],[114.31716,22.37674],[114.31718,22.37705],[114.31736,22.37728],[114.31753,22.37739],[114.31775,22.3774],[114.31785,22.37755],[114.31779,22.37771],[114.31761,22.37782],[114.3176,22.37797],[114.31754,22.37806],[114.31741,22.37799],[114.31712,22.37808],[114.31707,22.378],[114.31696,22.37797],[114.3169,22.37791],[114.31677,22.37791],[114.31663,22.37795],[114.3164,22.3782],[114.31629,22.37841],[114.31581,22.37868],[114.31575,22.37868],[114.31542,22.37836],[114.31524,22.37838],[114.31521,22.37833],[114.31525,22.37818],[114.31514,22.37812],[114.31513,22.37807],[114.31503,22.37799],[114.31474,22.37796],[114.3147,22.37789],[114.31448,22.37776],[114.31437,22.37759],[114.31435,22.3775],[114.31426,22.37747],[114.31431,22.37736],[114.31412,22.37728],[114.31405,22.37719],[114.31402,22.37692],[114.31395,22.37686],[114.31383,22.3766],[114.3138,22.37634],[114.31367,22.37614],[114.31352,22.37602],[114.31347,22.37593],[114.31352,22.37574],[114.31352,22.37538],[114.31348,22.37521],[114.31352,22.37504],[114.31341,22.37496],[114.31333,22.37482],[114.31332,22.37464],[114.31319,22.3743],[114.31314,22.37428],[114.31312,22.37434],[114.3132,22.37459],[114.31319,22.37497],[114.31332,22.3752],[114.31332,22.37552],[114.31327,22.37557],[114.31323,22.37557],[114.31321,22.37551],[114.31314,22.37547],[114.31308,22.3755],[114.31301,22.37557],[114.31292,22.37553],[114.31288,22.37543],[114.31301,22.37528],[114.31301,22.37523],[114.3128,22.37506],[114.31241,22.37508],[114.31207,22.37539],[114.31213,22.37549],[114.31235,22.37557],[114.31237,22.37564],[114.31232,22.37569],[114.31212,22.37574],[114.31183,22.37543],[114.3117,22.3754],[114.31158,22.37547],[114.31147,22.37573],[114.31132,22.37582],[114.31137,22.37593],[114.31164,22.37599],[114.31178,22.37612],[114.31198,22.37616],[114.31205,22.37613],[114.31216,22.37588],[114.31225,22.37586],[114.31233,22.37575],[114.31248,22.37574],[114.31262,22.37583],[114.31264,22.3759],[114.31256,22.37601],[114.31259,22.37608],[114.31246,22.37622],[114.31243,22.37643],[114.31233,22.37647],[114.31213,22.37678],[114.31216,22.37694],[114.31227,22.37699],[114.31236,22.37712],[114.31235,22.37747],[114.31242,22.37758],[114.31234,22.37765],[114.31242,22.37771],[114.31251,22.37765],[114.31268,22.37764],[114.3128,22.37755],[114.31285,22.37755],[114.31286,22.37762],[114.31294,22.37771],[114.31321,22.37791],[114.31328,22.37821],[114.3134,22.37841],[114.31345,22.37864],[114.31366,22.37895],[114.3136,22.37922],[114.31364,22.37941],[114.31371,22.37949],[114.31365,22.37961],[114.31363,22.37978],[114.31339,22.38016],[114.3132,22.3802],[114.3129,22.38035],[114.31267,22.38038],[114.31264,22.38042],[114.31237,22.3803],[114.31219,22.38038],[114.31189,22.38035],[114.31186,22.3804],[114.3118,22.38036],[114.31167,22.38019],[114.31139,22.38004],[114.31091,22.3799],[114.31072,22.37974],[114.31038,22.37974],[114.31016,22.37962],[114.30997,22.37945],[114.30995,22.37939],[114.30991,22.37938],[114.30858,22.38032],[114.30857,22.38039],[114.30867,22.38047],[114.30867,22.38053],[114.30861,22.38069],[114.30845,22.38077],[114.30829,22.38081],[114.30778,22.38068],[114.30768,22.38076],[114.30768,22.38085]]],[[[114.28061,22.3815],[114.28032,22.38161],[114.2797,22.3819],[114.27961,22.3819],[114.27947,22.38181],[114.27942,22.38173],[114.27941,22.38163],[114.27929,22.38132],[114.2794,22.38134],[114.27952,22.38131],[114.27966,22.38116],[114.27972,22.38103],[114.27977,22.38059],[114.2797,22.37995],[114.27976,22.37991],[114.27976,22.37997],[114.27993,22.38014],[114.27999,22.38023],[114.27998,22.38037],[114.27993,22.38045],[114.27998,22.3805],[114.28029,22.38052],[114.28064,22.38041],[114.28075,22.38029],[114.28068,22.38008],[114.28078,22.37968],[114.28113,22.37923],[114.2812,22.37892],[114.2813,22.37885],[114.28151,22.3788],[114.28171,22.3788],[114.2819,22.37869],[114.28215,22.37867],[114.28228,22.3787],[114.28253,22.37886],[114.28268,22.37905],[114.28269,22.37925],[114.28258,22.37949],[114.28287,22.38003],[114.28292,22.38011],[114.2829,22.38021],[114.28269,22.38034],[114.28261,22.38044],[114.28257,22.38052],[114.28254,22.38056],[114.2825,22.3806],[114.28235,22.38061],[114.28218,22.38068],[114.28208,22.3809],[114.28198,22.38097],[114.2819,22.381],[114.28182,22.38099],[114.28175,22.38092],[114.28155,22.38093],[114.28123,22.38122],[114.2811,22.38148],[114.28099,22.38151],[114.28085,22.38145],[114.28061,22.3815]]],[[[114.28181,22.38214],[114.28177,22.38216],[114.28172,22.38223],[114.28169,22.38227],[114.28165,22.38227],[114.28157,22.38232],[114.28153,22.38225],[114.28152,22.38221],[114.28155,22.38214],[114.28162,22.38212],[114.28167,22.38212],[114.28172,22.38206],[114.28179,22.38202],[114.28182,22.382],[114.28186,22.38203],[114.28186,22.38205],[114.28185,22.3821],[114.28181,22.38214]]],[[[114.39069,22.38264],[114.39051,22.38271],[114.39044,22.3827],[114.39038,22.3826],[114.39032,22.38266],[114.39028,22.38255],[114.39029,22.38246],[114.39046,22.38236],[114.39051,22.38224],[114.39062,22.38215],[114.39074,22.38211],[114.39085,22.38213],[114.39091,22.38219],[114.39108,22.38216],[114.39112,22.3822],[114.3911,22.38229],[114.39089,22.38239],[114.39069,22.38264]]],[[[114.27712,22.38292],[114.2772,22.38295],[114.27721,22.38297],[114.27719,22.38301],[114.27723,22.38301],[114.27724,22.38302],[114.27725,22.38304],[114.27723,22.38308],[114.27715,22.38315],[114.27713,22.38315],[114.27711,22.38314],[114.27708,22.38309],[114.27707,22.38304],[114.27704,22.38294],[114.27708,22.38292],[114.27712,22.38292]]],[[[114.39083,22.38306],[114.39066,22.38303],[114.39062,22.38301],[114.39062,22.38298],[114.39072,22.3829],[114.39088,22.38283],[114.39119,22.38285],[114.39116,22.38301],[114.39096,22.383],[114.39083,22.38306]]],[[[114.39027,22.38371],[114.39028,22.38372],[114.39027,22.38373],[114.39024,22.38377],[114.39023,22.38377],[114.39022,22.38377],[114.39017,22.38376],[114.39017,22.38375],[114.39018,22.38374],[114.3902,22.38373],[114.39023,22.38372],[114.39026,22.38371],[114.39027,22.38371]]],[[[114.39053,22.3838],[114.39052,22.3838],[114.3905,22.3838],[114.3905,22.38376],[114.39048,22.38376],[114.39047,22.38376],[114.39046,22.38376],[114.39044,22.38376],[114.39046,22.38373],[114.39049,22.38372],[114.39054,22.38369],[114.39056,22.3837],[114.3906,22.38371],[114.3906,22.38372],[114.3906,22.38373],[114.39057,22.38375],[114.39053,22.3838]]],[[[114.31474,22.38383],[114.31486,22.3839],[114.31481,22.38408],[114.3147,22.38456],[114.31456,22.38476],[114.31446,22.38481],[114.31437,22.38472],[114.31428,22.38448],[114.31428,22.38411],[114.31446,22.38384],[114.31466,22.38374],[114.31474,22.38383]]],[[[114.28184,22.38529],[114.28185,22.38533],[114.28184,22.3854],[114.2818,22.3854],[114.28175,22.38539],[114.28175,22.38537],[114.28177,22.38529],[114.2818,22.38528],[114.28184,22.38529]]],[[[114.28243,22.38593],[114.2825,22.38594],[114.28254,22.38595],[114.28258,22.38606],[114.28257,22.38616],[114.28254,22.38622],[114.28244,22.38632],[114.28231,22.38637],[114.28219,22.38635],[114.28206,22.38625],[114.28198,22.38616],[114.28199,22.38608],[114.282,22.38601],[114.28214,22.38588],[114.28227,22.38586],[114.28243,22.38593]]],[[[114.28237,22.38656],[114.28239,22.38662],[114.28234,22.38668],[114.2823,22.38668],[114.28228,22.38666],[114.28231,22.38656],[114.28234,22.38655],[114.28237,22.38656]]],[[[114.31843,22.38757],[114.31836,22.38773],[114.31831,22.38783],[114.31823,22.38792],[114.31815,22.38798],[114.31809,22.388],[114.31807,22.38804],[114.31807,22.38809],[114.31808,22.38812],[114.31808,22.38813],[114.31806,22.38814],[114.31799,22.38811],[114.31792,22.38796],[114.3176,22.3877],[114.31736,22.38755],[114.31718,22.38751],[114.31707,22.38741],[114.3169,22.38735],[114.31668,22.38738],[114.31665,22.38754],[114.3167,22.38768],[114.31697,22.38785],[114.31687,22.38797],[114.31672,22.38797],[114.31629,22.38785],[114.31604,22.38763],[114.31591,22.38741],[114.31566,22.38714],[114.31542,22.38673],[114.31552,22.38651],[114.31554,22.38621],[114.31503,22.38559],[114.3152,22.3852],[114.31523,22.38482],[114.31538,22.38448],[114.31539,22.38418],[114.31544,22.3841],[114.31564,22.38406],[114.31577,22.3841],[114.31582,22.3843],[114.316,22.38436],[114.31625,22.38433],[114.31632,22.38402],[114.31639,22.38404],[114.31632,22.38434],[114.31642,22.38437],[114.31668,22.3844],[114.31676,22.38446],[114.31698,22.38474],[114.31699,22.38494],[114.31705,22.38504],[114.3172,22.38514],[114.31731,22.38521],[114.31736,22.38524],[114.31738,22.38528],[114.31739,22.38532],[114.3174,22.38547],[114.3175,22.38564],[114.31753,22.38571],[114.31763,22.3858],[114.31776,22.38586],[114.31779,22.3859],[114.31782,22.38594],[114.31787,22.38603],[114.31787,22.38604],[114.31788,22.38607],[114.31787,22.38626],[114.31782,22.3864],[114.3179,22.38654],[114.31805,22.38654],[114.31813,22.38658],[114.31837,22.38696],[114.31846,22.38722],[114.31843,22.38757]]],[[[114.31599,22.38875],[114.31602,22.38877],[114.31605,22.38883],[114.31605,22.38887],[114.31604,22.3889],[114.31602,22.38892],[114.316,22.38893],[114.31596,22.38894],[114.31589,22.38895],[114.31585,22.38894],[114.31583,22.38893],[114.31582,22.38891],[114.31581,22.38888],[114.31582,22.38885],[114.31584,22.38881],[114.31588,22.38877],[114.31592,22.38875],[114.31595,22.38873],[114.31599,22.38875]]],[[[114.38788,22.38927],[114.38789,22.38928],[114.38789,22.38929],[114.38787,22.38929],[114.38785,22.38929],[114.38783,22.38928],[114.38782,22.38925],[114.38783,22.38925],[114.38788,22.38927]]],[[[114.3881,22.3892],[114.38812,22.38922],[114.38813,22.38924],[114.38806,22.38934],[114.38796,22.38933],[114.38795,22.38932],[114.38795,22.38927],[114.38791,22.38925],[114.38791,22.38923],[114.38794,22.38922],[114.38797,22.38921],[114.388,22.3892],[114.38805,22.38919],[114.3881,22.3892]]],[[[114.38501,22.38934],[114.385,22.38937],[114.38498,22.38936],[114.38497,22.38935],[114.38496,22.38934],[114.38494,22.38934],[114.38494,22.38933],[114.38496,22.38932],[114.38498,22.38932],[114.385,22.38933],[114.38501,22.38933],[114.38501,22.38931],[114.38502,22.38931],[114.38503,22.38932],[114.38502,22.38933],[114.38501,22.38934]]],[[[114.38472,22.38937],[114.38472,22.3894],[114.38469,22.38941],[114.38465,22.38939],[114.38465,22.38936],[114.38466,22.38934],[114.38471,22.38934],[114.38472,22.38937]]],[[[114.31349,22.3901],[114.31338,22.39013],[114.31327,22.39007],[114.31315,22.39009],[114.31302,22.39003],[114.31295,22.38989],[114.31298,22.38979],[114.31307,22.38971],[114.31316,22.38928],[114.31378,22.38891],[114.3139,22.38905],[114.31385,22.38935],[114.31362,22.38971],[114.31356,22.38997],[114.31349,22.3901]]],[[[114.28432,22.39015],[114.28417,22.39022],[114.28403,22.39023],[114.2839,22.39022],[114.28378,22.39016],[114.28369,22.39005],[114.28368,22.38993],[114.28374,22.38983],[114.28393,22.38968],[114.28411,22.3896],[114.28438,22.38951],[114.28447,22.38949],[114.28456,22.38949],[114.28454,22.38962],[114.28443,22.38963],[114.28441,22.38965],[114.28441,22.38972],[114.28452,22.38987],[114.28462,22.38984],[114.28472,22.38988],[114.28476,22.38995],[114.28474,22.39004],[114.28465,22.39008],[114.28455,22.39006],[114.28432,22.39015]]],[[[114.28713,22.39204],[114.2872,22.39207],[114.2872,22.39209],[114.28719,22.39211],[114.28716,22.39213],[114.28714,22.39214],[114.28703,22.39211],[114.28702,22.39208],[114.28703,22.39205],[114.28705,22.39203],[114.28713,22.39204]]],[[[114.287,22.39218],[114.28697,22.39226],[114.2869,22.3923],[114.28689,22.3923],[114.28688,22.39219],[114.28691,22.39216],[114.28697,22.39216],[114.287,22.39218]]],[[[114.2872,22.39224],[114.28717,22.39227],[114.28717,22.39232],[114.28713,22.3924],[114.28708,22.39243],[114.28704,22.39242],[114.28701,22.39237],[114.28701,22.39232],[114.28709,22.39226],[114.28715,22.39225],[114.28718,22.39222],[114.28719,22.39222],[114.2872,22.39224]]],[[[114.28242,22.39248],[114.28243,22.39249],[114.28243,22.39251],[114.2824,22.39255],[114.2824,22.39256],[114.28239,22.39255],[114.28238,22.39251],[114.28233,22.3925],[114.2823,22.3925],[114.28229,22.39249],[114.28231,22.39247],[114.28242,22.39248]]],[[[114.28097,22.3925],[114.28091,22.39262],[114.28086,22.39268],[114.28078,22.39271],[114.28073,22.39269],[114.2807,22.39264],[114.28067,22.39257],[114.28067,22.39252],[114.28074,22.3925],[114.28093,22.39248],[114.28097,22.3925]]],[[[114.28222,22.39276],[114.28225,22.39278],[114.28226,22.39282],[114.28221,22.39287],[114.28216,22.3929],[114.28213,22.39289],[114.28211,22.39285],[114.28216,22.39276],[114.28218,22.39276],[114.28222,22.39276]]],[[[114.28592,22.39285],[114.28601,22.39289],[114.28606,22.39294],[114.28611,22.39301],[114.28611,22.39303],[114.28611,22.39305],[114.28609,22.39307],[114.28606,22.39308],[114.28602,22.39308],[114.28597,22.39307],[114.28592,22.39303],[114.28586,22.39299],[114.28584,22.39297],[114.28581,22.39292],[114.2858,22.39289],[114.2858,22.39287],[114.28581,22.39285],[114.28586,22.39284],[114.28592,22.39285]]],[[[114.28646,22.39263],[114.2865,22.39266],[114.28656,22.3927],[114.28662,22.39276],[114.28663,22.39278],[114.28665,22.39284],[114.28665,22.39294],[114.28663,22.39299],[114.28661,22.39303],[114.28659,22.39306],[114.28656,22.39308],[114.28649,22.3931],[114.28647,22.3931],[114.28645,22.39309],[114.28641,22.39306],[114.28636,22.39299],[114.28636,22.39296],[114.28633,22.3929],[114.2863,22.39287],[114.28629,22.39285],[114.28629,22.39277],[114.2863,22.39272],[114.28632,22.39269],[114.28634,22.39266],[114.28639,22.39263],[114.28642,22.39263],[114.28646,22.39263]]],[[[114.2839,22.39369],[114.28394,22.39375],[114.28394,22.3938],[114.28392,22.39391],[114.28391,22.39393],[114.28388,22.39396],[114.28384,22.39397],[114.28378,22.39396],[114.28373,22.39394],[114.28371,22.39392],[114.28369,22.39388],[114.2837,22.39377],[114.28381,22.39364],[114.2839,22.39369]]],[[[114.28545,22.39393],[114.28552,22.39393],[114.28557,22.39397],[114.28559,22.39405],[114.28557,22.39408],[114.28551,22.39409],[114.28534,22.39402],[114.28533,22.39391],[114.28535,22.39389],[114.28545,22.39393]]],[[[114.37357,22.40147],[114.37358,22.40148],[114.37358,22.40149],[114.37356,22.40151],[114.37344,22.40152],[114.37342,22.40152],[114.37341,22.40151],[114.37341,22.4015],[114.37351,22.40146],[114.37353,22.40145],[114.37357,22.40147]]],[[[114.38676,22.4021],[114.38666,22.40217],[114.38641,22.4022],[114.38611,22.40212],[114.38607,22.40207],[114.38594,22.40212],[114.38574,22.40213],[114.38565,22.40205],[114.38562,22.40191],[114.38572,22.40167],[114.38569,22.4016],[114.3859,22.40135],[114.386,22.40129],[114.38617,22.40124],[114.38631,22.4012],[114.38647,22.40123],[114.38664,22.40113],[114.3867,22.40116],[114.38672,22.40125],[114.38681,22.4012],[114.38695,22.4012],[114.38698,22.40128],[114.38687,22.40145],[114.38697,22.40155],[114.38696,22.40162],[114.38692,22.40187],[114.38684,22.40194],[114.38676,22.4021]]],[[[114.38494,22.40383],[114.38495,22.40384],[114.38496,22.40385],[114.38496,22.40386],[114.38495,22.40387],[114.38492,22.40387],[114.3849,22.40385],[114.38489,22.40384],[114.3849,22.40383],[114.38491,22.40382],[114.38492,22.40382],[114.38494,22.40383]]],[[[114.38604,22.40395],[114.38604,22.40403],[114.38593,22.4041],[114.3857,22.40403],[114.38552,22.40401],[114.38538,22.40389],[114.38526,22.40376],[114.38512,22.4035],[114.38516,22.4034],[114.3851,22.40325],[114.3851,22.40308],[114.38505,22.40301],[114.38504,22.40283],[114.3851,22.40271],[114.38517,22.40267],[114.38542,22.40262],[114.38554,22.40262],[114.38573,22.40253],[114.38608,22.40249],[114.38636,22.40251],[114.38653,22.40257],[114.3866,22.40262],[114.38671,22.4029],[114.38672,22.40292],[114.38672,22.40296],[114.38647,22.4031],[114.38615,22.40318],[114.38611,22.40323],[114.38613,22.40329],[114.38632,22.40331],[114.38656,22.40345],[114.38654,22.40349],[114.38653,22.40354],[114.38654,22.40359],[114.38644,22.40377],[114.38603,22.4039],[114.38579,22.40389],[114.38604,22.40395]]],[[[114.38783,22.40559],[114.38793,22.40572],[114.38788,22.40587],[114.3878,22.40593],[114.38766,22.40592],[114.38753,22.40586],[114.38748,22.40567],[114.38755,22.40555],[114.38765,22.40551],[114.38783,22.40559]]],[[[114.38689,22.40607],[114.38684,22.4061],[114.3867,22.40611],[114.38668,22.4061],[114.38666,22.40608],[114.38667,22.40606],[114.38668,22.40605],[114.38679,22.40606],[114.38685,22.40606],[114.38688,22.40606],[114.38689,22.40607]]],[[[114.3875,22.4061],[114.38751,22.40611],[114.38752,22.40613],[114.38752,22.40616],[114.38751,22.40618],[114.38749,22.40618],[114.38747,22.40617],[114.38746,22.40614],[114.38746,22.40611],[114.38748,22.4061],[114.3875,22.4061]]],[[[114.40344,22.41156],[114.40348,22.41169],[114.40343,22.41186],[114.4032,22.412],[114.40303,22.41216],[114.40287,22.41215],[114.40281,22.41208],[114.4029,22.4118],[114.40311,22.41162],[114.40329,22.41154],[114.40344,22.41156]]],[[[114.40626,22.41276],[114.40628,22.41276],[114.40631,22.41276],[114.40633,22.41277],[114.40634,22.41277],[114.40636,22.41277],[114.40637,22.41278],[114.40638,22.41278],[114.40639,22.41279],[114.4064,22.41281],[114.40642,22.41284],[114.40643,22.41285],[114.40644,22.41287],[114.40644,22.41288],[114.40645,22.4129],[114.40645,22.41293],[114.40644,22.41296],[114.40643,22.41298],[114.40643,22.41301],[114.40642,22.41303],[114.40642,22.41304],[114.40642,22.41305],[114.4064,22.41308],[114.40638,22.41311],[114.40638,22.41313],[114.40636,22.41315],[114.40635,22.41317],[114.40633,22.41322],[114.40633,22.41323],[114.40632,22.41324],[114.40631,22.41325],[114.40629,22.41328],[114.40627,22.4133],[114.40626,22.4133],[114.40624,22.41331],[114.40623,22.41332],[114.40621,22.41333],[114.4062,22.41333],[114.40618,22.41334],[114.40616,22.41334],[114.40613,22.41335],[114.40612,22.41335],[114.40606,22.41337],[114.40602,22.41338],[114.40601,22.41338],[114.406,22.41339],[114.406,22.41339],[114.40599,22.4134],[114.40597,22.41342],[114.40597,22.41343],[114.40596,22.41343],[114.40595,22.41344],[114.40594,22.41344],[114.40593,22.41343],[114.40592,22.41343],[114.40591,22.41342],[114.4059,22.41341],[114.40589,22.4134],[114.40586,22.41335],[114.40584,22.41332],[114.40583,22.41329],[114.40583,22.41328],[114.40582,22.41326],[114.40582,22.41325],[114.40583,22.41324],[114.40583,22.41321],[114.40584,22.4132],[114.40584,22.41319],[114.40584,22.41314],[114.40584,22.41313],[114.40585,22.41311],[114.40585,22.41309],[114.40586,22.41308],[114.40589,22.41302],[114.4059,22.413],[114.40593,22.41297],[114.40594,22.41295],[114.40595,22.41294],[114.40599,22.4129],[114.40602,22.41288],[114.40604,22.41287],[114.40605,22.41286],[114.40607,22.41285],[114.40608,22.41284],[114.40612,22.41282],[114.40613,22.41281],[114.40614,22.41281],[114.40616,22.41279],[114.40617,22.41278],[114.40618,22.41277],[114.4062,22.41277],[114.40621,22.41277],[114.40622,22.41276],[114.40623,22.41276],[114.40625,22.41276],[114.40626,22.41276]]],[[[114.40424,22.41738],[114.40418,22.41734],[114.40418,22.41709],[114.40411,22.41705],[114.40414,22.41689],[114.40429,22.41686],[114.40448,22.41657],[114.40463,22.41648],[114.40474,22.4166],[114.40486,22.41646],[114.40495,22.41648],[114.40499,22.41655],[114.4049,22.41665],[114.40499,22.41669],[114.40494,22.41682],[114.40482,22.41686],[114.40469,22.41699],[114.40458,22.41713],[114.40444,22.41726],[114.40433,22.41723],[114.40424,22.41738]]],[[[114.2732,22.42464],[114.27327,22.42481],[114.27353,22.42507],[114.27363,22.42528],[114.27365,22.42553],[114.27364,22.42574],[114.2736,22.42582],[114.27362,22.42593],[114.27353,22.42615],[114.27329,22.42648],[114.2732,22.42654],[114.27302,22.42656],[114.27277,22.42625],[114.27256,22.4261],[114.27248,22.42562],[114.27238,22.42537],[114.27258,22.42502],[114.27264,22.42483],[114.27277,22.42477],[114.27294,22.42455],[114.27301,22.42453],[114.2732,22.42464]]],[[[114.40205,22.43346],[114.4021,22.43351],[114.40216,22.4336],[114.40211,22.43373],[114.40206,22.43378],[114.40199,22.43382],[114.40188,22.43387],[114.40164,22.43376],[114.40157,22.43366],[114.40161,22.43357],[114.40154,22.43346],[114.4016,22.4334],[114.40181,22.43338],[114.40205,22.43346]]],[[[114.40216,22.4355],[114.40221,22.43565],[114.4023,22.43575],[114.40231,22.43588],[114.40221,22.43603],[114.40208,22.43603],[114.40204,22.43611],[114.40197,22.43614],[114.40182,22.4361],[114.40178,22.43608],[114.40162,22.4358],[114.40156,22.43571],[114.40158,22.4356],[114.40158,22.43549],[114.40169,22.43529],[114.40179,22.4353],[114.40184,22.4352],[114.40189,22.43522],[114.40191,22.43527],[114.40216,22.4355]]],[[[114.37664,22.43868],[114.37652,22.43884],[114.37646,22.43875],[114.37647,22.43864],[114.37664,22.43868]]],[[[114.39231,22.44071],[114.39236,22.44077],[114.39238,22.44086],[114.39239,22.4409],[114.3923,22.44108],[114.39215,22.44119],[114.39205,22.44121],[114.39184,22.44109],[114.39186,22.44081],[114.39196,22.44067],[114.39215,22.44066],[114.39231,22.44071]]],[[[114.35347,22.44492],[114.35351,22.44492],[114.35354,22.44494],[114.35357,22.44496],[114.35359,22.445],[114.35361,22.44502],[114.35363,22.44504],[114.35363,22.44507],[114.35362,22.44509],[114.3536,22.4451],[114.3536,22.44512],[114.3536,22.44513],[114.35361,22.44515],[114.3536,22.44517],[114.35358,22.44517],[114.35355,22.44516],[114.35352,22.44515],[114.35347,22.44512],[114.35343,22.44509],[114.35342,22.44508],[114.3534,22.44505],[114.35338,22.44502],[114.35338,22.44499],[114.35339,22.44496],[114.3534,22.44494],[114.35344,22.44492],[114.35347,22.44492]]],[[[114.39508,22.44859],[114.39507,22.44861],[114.39507,22.44863],[114.39507,22.44864],[114.39505,22.44866],[114.39505,22.44867],[114.39505,22.44868],[114.39504,22.44869],[114.39504,22.44874],[114.39504,22.44875],[114.39503,22.44877],[114.39503,22.44878],[114.39501,22.44881],[114.39501,22.44882],[114.395,22.44883],[114.395,22.44884],[114.395,22.44884],[114.395,22.44885],[114.39502,22.44888],[114.39502,22.4489],[114.39503,22.44892],[114.39503,22.44893],[114.39503,22.44896],[114.39503,22.44897],[114.39502,22.449],[114.39501,22.44904],[114.39501,22.44907],[114.39501,22.44908],[114.39501,22.44911],[114.39501,22.44911],[114.39501,22.44912],[114.39501,22.44914],[114.395,22.44915],[114.395,22.44916],[114.39499,22.44917],[114.39497,22.44918],[114.39497,22.44919],[114.39496,22.4492],[114.39496,22.4492],[114.39496,22.44922],[114.39495,22.44923],[114.39494,22.44925],[114.39493,22.44926],[114.39493,22.44927],[114.39491,22.44928],[114.3949,22.44928],[114.39487,22.44929],[114.39485,22.44929],[114.39484,22.4493],[114.39483,22.44931],[114.39481,22.44932],[114.3948,22.44932],[114.39479,22.44933],[114.39478,22.44933],[114.39477,22.44933],[114.39475,22.44933],[114.39474,22.44932],[114.39473,22.44932],[114.39471,22.44931],[114.39469,22.44931],[114.39469,22.4493],[114.39468,22.44929],[114.39468,22.44928],[114.39468,22.44927],[114.39469,22.44926],[114.39468,22.44926],[114.39467,22.44925],[114.39467,22.44925],[114.39466,22.44923],[114.39466,22.44922],[114.39466,22.44921],[114.39466,22.4492],[114.39467,22.44916],[114.39468,22.44913],[114.39469,22.44911],[114.39469,22.4491],[114.3947,22.44909],[114.3947,22.44909],[114.39471,22.44908],[114.39472,22.44908],[114.39472,22.44907],[114.39473,22.44906],[114.39473,22.44905],[114.39474,22.44903],[114.39474,22.44901],[114.39475,22.44899],[114.39475,22.44898],[114.39474,22.44896],[114.39474,22.44895],[114.39473,22.44893],[114.39471,22.44891],[114.3947,22.4489],[114.39467,22.44888],[114.39466,22.44887],[114.39465,22.44886],[114.39462,22.44884],[114.39461,22.44883],[114.39458,22.44881],[114.39455,22.44878],[114.39451,22.44876],[114.3945,22.44875],[114.39449,22.44875],[114.39448,22.44875],[114.39448,22.44875],[114.39447,22.44874],[114.39446,22.44873],[114.39446,22.44872],[114.39445,22.44872],[114.39444,22.44871],[114.39442,22.44869],[114.39441,22.44868],[114.3944,22.44866],[114.3944,22.44865],[114.39439,22.44862],[114.39438,22.44861],[114.39437,22.4486],[114.39437,22.44859],[114.39435,22.44859],[114.39434,22.44858],[114.39433,22.44858],[114.39432,22.44858],[114.3943,22.44859],[114.39429,22.44859],[114.39428,22.44859],[114.39428,22.44859],[114.39427,22.44859],[114.39426,22.44858],[114.39426,22.44857],[114.39426,22.44857],[114.39425,22.44857],[114.39425,22.44858],[114.39424,22.44859],[114.39423,22.44859],[114.39422,22.4486],[114.39421,22.44859],[114.39421,22.44859],[114.3942,22.44859],[114.3942,22.44858],[114.39419,22.44857],[114.39419,22.44856],[114.39419,22.44855],[114.39419,22.44855],[114.3942,22.44854],[114.39421,22.44853],[114.39422,22.44852],[114.39422,22.44851],[114.39423,22.44848],[114.39423,22.44847],[114.39424,22.44846],[114.39425,22.44845],[114.39426,22.44844],[114.39426,22.44843],[114.39427,22.44841],[114.39428,22.44837],[114.39429,22.44835],[114.39429,22.44834],[114.39429,22.44832],[114.3943,22.4483],[114.3943,22.44829],[114.39431,22.44828],[114.39433,22.44826],[114.39434,22.44825],[114.39435,22.44823],[114.39436,22.44822],[114.39437,22.44821],[114.39439,22.4482],[114.39441,22.44818],[114.39442,22.44817],[114.39443,22.44816],[114.39446,22.44813],[114.39447,22.44812],[114.3945,22.44809],[114.39453,22.44807],[114.39455,22.44806],[114.39456,22.44806],[114.39459,22.44805],[114.3946,22.44805],[114.39461,22.44805],[114.39462,22.44805],[114.39464,22.44805],[114.39465,22.44806],[114.39466,22.44806],[114.39467,22.44807],[114.39468,22.44808],[114.39469,22.44809],[114.39471,22.44811],[114.39472,22.44812],[114.39474,22.44814],[114.39475,22.44815],[114.39477,22.44816],[114.39477,22.44817],[114.39478,22.44818],[114.39478,22.44819],[114.39478,22.4482],[114.39478,22.44821],[114.39478,22.44823],[114.39478,22.44824],[114.39479,22.44825],[114.39479,22.44826],[114.3948,22.44827],[114.3948,22.44828],[114.39481,22.44828],[114.39482,22.44829],[114.39484,22.44829],[114.39485,22.44829],[114.39486,22.44829],[114.39487,22.44829],[114.39489,22.44829],[114.3949,22.44829],[114.39491,22.44829],[114.39492,22.44829],[114.39492,22.44828],[114.39492,22.44827],[114.39493,22.44825],[114.39494,22.44824],[114.39494,22.44823],[114.39495,22.44821],[114.39495,22.4482],[114.39496,22.44818],[114.39497,22.44816],[114.39498,22.44815],[114.39499,22.44815],[114.395,22.44814],[114.39501,22.44814],[114.39502,22.44814],[114.39503,22.44814],[114.39505,22.44815],[114.39507,22.44816],[114.39508,22.44817],[114.39509,22.44818],[114.3951,22.4482],[114.39511,22.44822],[114.39512,22.44824],[114.39513,22.44825],[114.39513,22.44827],[114.39514,22.44829],[114.39514,22.4483],[114.39514,22.44832],[114.39514,22.44833],[114.39514,22.44835],[114.39515,22.44836],[114.39516,22.44837],[114.39516,22.44838],[114.39518,22.44839],[114.39518,22.4484],[114.39519,22.44842],[114.39519,22.44843],[114.39519,22.44844],[114.39519,22.44845],[114.39517,22.44848],[114.39516,22.4485],[114.39516,22.44851],[114.39515,22.44852],[114.39514,22.44853],[114.39513,22.44854],[114.3951,22.44856],[114.39509,22.44857],[114.39509,22.44858],[114.39508,22.44859]]],[[[114.29092,22.46339],[114.29092,22.46339],[114.29091,22.4634],[114.29089,22.46345],[114.29089,22.46345],[114.29087,22.46346],[114.29086,22.46345],[114.29085,22.46345],[114.29084,22.46343],[114.29081,22.46337],[114.2908,22.46333],[114.2908,22.46332],[114.2908,22.46332],[114.29082,22.46331],[114.29086,22.46327],[114.29087,22.46327],[114.29087,22.46327],[114.29087,22.46326],[114.29087,22.46326],[114.29087,22.46326],[114.29087,22.46326],[114.29087,22.46326],[114.29087,22.46326],[114.29088,22.46326],[114.29088,22.46327],[114.29088,22.46327],[114.29088,22.46327],[114.29089,22.46327],[114.29092,22.46328],[114.29094,22.46328],[114.29095,22.46328],[114.29095,22.46328],[114.29096,22.46329],[114.29096,22.46329],[114.29096,22.46329],[114.29096,22.46329],[114.29097,22.46331],[114.29097,22.46334],[114.29096,22.46338],[114.29096,22.46339],[114.29096,22.46339],[114.29096,22.46339],[114.29095,22.46339],[114.29093,22.46339],[114.29093,22.46339],[114.29092,22.46339],[114.29092,22.46339]]],[[[114.33354,22.46311],[114.33354,22.46315],[114.33357,22.46315],[114.33352,22.46341],[114.33351,22.46346],[114.33331,22.46343],[114.33331,22.46342],[114.33337,22.46308],[114.33354,22.46311]]],[[[114.29073,22.46385],[114.29074,22.46386],[114.29076,22.46389],[114.29076,22.46389],[114.29076,22.4639],[114.29076,22.46391],[114.29076,22.46391],[114.29076,22.46392],[114.29075,22.46392],[114.29075,22.46392],[114.29074,22.46392],[114.29074,22.46392],[114.29074,22.46392],[114.29074,22.46394],[114.29073,22.46397],[114.29073,22.46399],[114.29072,22.46399],[114.29071,22.46399],[114.2907,22.46394],[114.29069,22.46392],[114.29069,22.46391],[114.29068,22.46391],[114.29068,22.46391],[114.29069,22.46391],[114.29069,22.4639],[114.29069,22.4639],[114.29069,22.4639],[114.29069,22.4639],[114.29069,22.46389],[114.29069,22.46389],[114.29069,22.46387],[114.29069,22.46387],[114.29069,22.46386],[114.29069,22.46386],[114.2907,22.46385],[114.29072,22.46384],[114.29073,22.46384],[114.29073,22.46385]]],[[[114.42869,22.4648],[114.42867,22.46483],[114.42865,22.46485],[114.42864,22.46485],[114.42863,22.46485],[114.42862,22.46488],[114.42862,22.46489],[114.4286,22.4649],[114.42859,22.4649],[114.42859,22.46488],[114.42859,22.46487],[114.42861,22.46487],[114.42861,22.46484],[114.42863,22.46482],[114.42865,22.4648],[114.42866,22.4648],[114.42868,22.46479],[114.42869,22.4648]]],[[[114.42856,22.46494],[114.42857,22.46495],[114.42853,22.46497],[114.42853,22.46496],[114.42853,22.46495],[114.42855,22.46494],[114.42856,22.46494]]],[[[114.4285,22.46496],[114.42851,22.46497],[114.4285,22.46497],[114.42849,22.46498],[114.42848,22.46498],[114.42849,22.46501],[114.42849,22.46502],[114.42848,22.46503],[114.42845,22.46503],[114.42844,22.46504],[114.42843,22.46504],[114.42842,22.46503],[114.42842,22.46502],[114.42846,22.465],[114.42844,22.46499],[114.42845,22.46498],[114.42847,22.46496],[114.4285,22.46496]]],[[[114.42804,22.46558],[114.42802,22.46558],[114.42801,22.46558],[114.42796,22.46561],[114.42785,22.46562],[114.42785,22.46562],[114.4278,22.46563],[114.42776,22.46564],[114.42771,22.46561],[114.42772,22.46559],[114.42773,22.46557],[114.42771,22.46554],[114.42771,22.46554],[114.42771,22.46553],[114.42771,22.46552],[114.42772,22.46551],[114.42772,22.46551],[114.42773,22.46549],[114.42774,22.46549],[114.42776,22.46547],[114.42777,22.46545],[114.4278,22.46543],[114.42782,22.46541],[114.42782,22.46541],[114.42784,22.4654],[114.42784,22.4654],[114.42788,22.46537],[114.42788,22.46537],[114.4279,22.46536],[114.42792,22.46534],[114.42796,22.46532],[114.42797,22.46532],[114.42799,22.46533],[114.42807,22.46535],[114.42807,22.46545],[114.42808,22.46548],[114.42808,22.46549],[114.4281,22.46543],[114.42809,22.4654],[114.42811,22.46531],[114.42823,22.46525],[114.42826,22.46524],[114.42828,22.46523],[114.42828,22.46522],[114.42829,22.4652],[114.42833,22.46516],[114.4285,22.46512],[114.4285,22.46512],[114.42862,22.46508],[114.42864,22.46509],[114.42864,22.46509],[114.42863,22.4651],[114.42863,22.46511],[114.42858,22.46514],[114.42859,22.46527],[114.42857,22.46532],[114.42855,22.46534],[114.42855,22.46534],[114.42852,22.46538],[114.42852,22.46538],[114.42848,22.46542],[114.42848,22.46542],[114.42842,22.46545],[114.42842,22.46545],[114.42834,22.46548],[114.42834,22.46548],[114.42831,22.4655],[114.42826,22.46552],[114.42826,22.46552],[114.4282,22.46555],[114.4281,22.46557],[114.42809,22.46556],[114.42804,22.46558]]],[[[114.36256,22.46581],[114.36256,22.46584],[114.36254,22.46585],[114.36252,22.46584],[114.3625,22.46581],[114.3625,22.4658],[114.36255,22.4658],[114.36256,22.46581]]],[[[114.3625,22.4659],[114.36251,22.46594],[114.36247,22.46602],[114.36242,22.466],[114.3624,22.46597],[114.36241,22.46596],[114.36246,22.46594],[114.36246,22.46591],[114.36246,22.46587],[114.36247,22.46586],[114.3625,22.4659]]],[[[114.42758,22.46597],[114.42758,22.46598],[114.42758,22.46599],[114.42755,22.466],[114.42754,22.46599],[114.42754,22.46598],[114.42755,22.46596],[114.42757,22.46596],[114.42758,22.46597]]],[[[114.42764,22.46655],[114.42763,22.46657],[114.42763,22.46661],[114.42761,22.46667],[114.42761,22.46667],[114.4276,22.4667],[114.4276,22.4667],[114.42758,22.46673],[114.42758,22.46673],[114.42757,22.46675],[114.42757,22.46675],[114.42756,22.46678],[114.42756,22.46678],[114.42754,22.46679],[114.42752,22.46681],[114.4275,22.46682],[114.42746,22.46684],[114.42746,22.46684],[114.42743,22.46684],[114.42742,22.46685],[114.42742,22.46686],[114.42743,22.46688],[114.42743,22.46688],[114.42744,22.46689],[114.42744,22.46689],[114.42745,22.46693],[114.42745,22.46694],[114.42744,22.46696],[114.42742,22.46698],[114.42739,22.46699],[114.42739,22.46699],[114.42738,22.467],[114.42736,22.46701],[114.42735,22.46702],[114.42734,22.46703],[114.42733,22.46703],[114.42732,22.46703],[114.42731,22.46703],[114.4273,22.46703],[114.42728,22.46702],[114.42728,22.46702],[114.42727,22.46698],[114.42727,22.46698],[114.42726,22.46696],[114.42726,22.46696],[114.42725,22.46694],[114.42725,22.46694],[114.42726,22.46692],[114.42726,22.46689],[114.42726,22.46689],[114.42727,22.46687],[114.42727,22.46687],[114.42728,22.46686],[114.42728,22.46686],[114.42728,22.46685],[114.42728,22.46685],[114.42727,22.46683],[114.42726,22.46682],[114.42727,22.46679],[114.42727,22.46678],[114.42728,22.46675],[114.42728,22.46675],[114.42729,22.46673],[114.42733,22.46669],[114.42735,22.46664],[114.42735,22.46663],[114.42736,22.46662],[114.42734,22.46658],[114.42729,22.46658],[114.42728,22.46657],[114.42728,22.46656],[114.42728,22.46653],[114.42731,22.4665],[114.42736,22.46643],[114.42738,22.46634],[114.42738,22.46634],[114.42739,22.46632],[114.42739,22.46632],[114.4274,22.4663],[114.42741,22.46628],[114.42741,22.46627],[114.42741,22.46627],[114.42742,22.46626],[114.42742,22.46626],[114.42743,22.46624],[114.42743,22.46623],[114.4274,22.46625],[114.4274,22.46625],[114.42739,22.46623],[114.42741,22.46622],[114.42742,22.4662],[114.42744,22.46619],[114.42746,22.46617],[114.42746,22.46617],[114.42747,22.46615],[114.42748,22.46614],[114.4275,22.46611],[114.4275,22.46611],[114.42751,22.4661],[114.42752,22.46609],[114.42753,22.46608],[114.42754,22.46607],[114.42756,22.46604],[114.42756,22.46604],[114.42757,22.46602],[114.42757,22.46602],[114.42758,22.46602],[114.42758,22.46602],[114.4276,22.46598],[114.4276,22.46598],[114.42761,22.46597],[114.42761,22.46597],[114.42762,22.46595],[114.42765,22.46591],[114.42765,22.46591],[114.42765,22.46591],[114.42767,22.46588],[114.42767,22.46588],[114.42768,22.46587],[114.42768,22.46587],[114.42769,22.46584],[114.4277,22.46584],[114.42771,22.46582],[114.42771,22.46582],[114.42773,22.4658],[114.42773,22.4658],[114.42775,22.46578],[114.42775,22.46578],[114.42778,22.46576],[114.42778,22.46576],[114.4278,22.46574],[114.4278,22.46574],[114.42783,22.46573],[114.42783,22.46573],[114.42784,22.46572],[114.42788,22.46569],[114.42792,22.46568],[114.42792,22.46567],[114.42796,22.46566],[114.42798,22.46564],[114.42804,22.46563],[114.42804,22.46563],[114.42808,22.46563],[114.42812,22.4657],[114.42813,22.46578],[114.42814,22.46579],[114.42814,22.46578],[114.42814,22.46572],[114.42816,22.46569],[114.4282,22.46567],[114.42826,22.46567],[114.42829,22.46567],[114.42831,22.46567],[114.42832,22.46568],[114.42831,22.46569],[114.42831,22.4657],[114.42832,22.4657],[114.42834,22.46568],[114.42835,22.46568],[114.42836,22.46569],[114.42836,22.4657],[114.42836,22.4657],[114.42838,22.46572],[114.42839,22.46573],[114.42841,22.46572],[114.42841,22.46573],[114.42837,22.46576],[114.42835,22.46576],[114.42835,22.46577],[114.42836,22.46578],[114.42837,22.46581],[114.42834,22.46585],[114.42831,22.46588],[114.42829,22.46591],[114.42829,22.46592],[114.42829,22.46594],[114.42828,22.46596],[114.42826,22.46596],[114.42821,22.46599],[114.42817,22.46598],[114.42817,22.46594],[114.42815,22.46591],[114.42816,22.46587],[114.42815,22.46582],[114.42812,22.46601],[114.42811,22.46607],[114.42804,22.46614],[114.42802,22.46618],[114.42794,22.46624],[114.42792,22.46628],[114.42789,22.46631],[114.42788,22.46633],[114.42784,22.46639],[114.42784,22.4664],[114.42786,22.4664],[114.42785,22.46642],[114.42774,22.4665],[114.42768,22.46651],[114.42766,22.4665],[114.42764,22.46648],[114.42764,22.46655]]],[[[114.36443,22.46884],[114.36441,22.46884],[114.36437,22.46879],[114.36437,22.46878],[114.36441,22.46875],[114.36442,22.46875],[114.36444,22.46877],[114.36447,22.46875],[114.36449,22.46874],[114.36451,22.46875],[114.36452,22.46873],[114.36454,22.46873],[114.36456,22.46874],[114.36452,22.46877],[114.36448,22.46877],[114.36443,22.46884]]],[[[114.33172,22.47005],[114.33176,22.47009],[114.33177,22.47016],[114.33176,22.47021],[114.33173,22.47024],[114.3317,22.47024],[114.33163,22.47014],[114.33162,22.47008],[114.33164,22.47005],[114.33168,22.47004],[114.33172,22.47005]]],[[[114.35755,22.47163],[114.35756,22.47165],[114.35755,22.47168],[114.35751,22.47174],[114.35742,22.47181],[114.3574,22.47182],[114.35735,22.47183],[114.35724,22.47183],[114.35718,22.47182],[114.35715,22.47181],[114.35712,22.47175],[114.35713,22.4717],[114.35717,22.47166],[114.35719,22.47163],[114.35723,22.47161],[114.35724,22.4716],[114.35726,22.47157],[114.35725,22.47153],[114.35728,22.47151],[114.35732,22.47151],[114.35734,22.47152],[114.3574,22.4716],[114.35743,22.47161],[114.35747,22.47159],[114.3575,22.4716],[114.35755,22.47163]]],[[[114.35751,22.47187],[114.35752,22.47188],[114.35751,22.47191],[114.3575,22.47192],[114.35748,22.47191],[114.35747,22.4719],[114.35747,22.47188],[114.35748,22.47186],[114.35749,22.47186],[114.35751,22.47187]]],[[[114.36568,22.47192],[114.36569,22.47193],[114.36566,22.47194],[114.36561,22.47194],[114.3656,22.47193],[114.36561,22.47191],[114.36565,22.47191],[114.36568,22.47192]]],[[[114.32823,22.47226],[114.32823,22.47228],[114.32823,22.4723],[114.3282,22.47231],[114.32819,22.4723],[114.32819,22.47226],[114.32823,22.4722],[114.32822,22.47211],[114.32824,22.47209],[114.32829,22.47207],[114.32831,22.47207],[114.32834,22.4721],[114.32834,22.47216],[114.32832,22.47222],[114.3283,22.47225],[114.32828,22.47225],[114.32825,22.47225],[114.32823,22.47226]]],[[[114.36674,22.4738],[114.36676,22.47381],[114.36676,22.47383],[114.36676,22.47383],[114.36673,22.47383],[114.36672,22.47382],[114.36673,22.4738],[114.36674,22.4738]]],[[[114.36661,22.47389],[114.36661,22.4739],[114.3666,22.47391],[114.36659,22.47391],[114.36658,22.47391],[114.36658,22.4739],[114.3666,22.47388],[114.36661,22.47388],[114.36661,22.47389]]],[[[114.36655,22.47403],[114.36653,22.47403],[114.36651,22.47403],[114.36651,22.47402],[114.36652,22.474],[114.36655,22.47398],[114.36656,22.47398],[114.36666,22.47388],[114.36667,22.47388],[114.36667,22.47389],[114.36668,22.47391],[114.3667,22.47392],[114.36669,22.47393],[114.36667,22.47395],[114.36665,22.47395],[114.36661,22.47396],[114.3666,22.47396],[114.3666,22.474],[114.36657,22.47402],[114.36655,22.47403]]],[[[114.36679,22.47398],[114.36679,22.47401],[114.36677,22.47404],[114.36674,22.47405],[114.36669,22.47404],[114.36667,22.47403],[114.36667,22.47401],[114.36679,22.47393],[114.36679,22.47398]]],[[[114.36672,22.47411],[114.36674,22.47411],[114.36675,22.47412],[114.36675,22.47413],[114.36671,22.47416],[114.36669,22.4742],[114.36668,22.47422],[114.36666,22.47422],[114.36661,22.47422],[114.36659,22.47424],[114.36655,22.47424],[114.36653,22.47424],[114.36651,22.47422],[114.36648,22.4742],[114.36649,22.47418],[114.3665,22.47418],[114.36649,22.47417],[114.3665,22.47415],[114.36648,22.47414],[114.36648,22.47413],[114.36651,22.47409],[114.36654,22.47408],[114.36658,22.47408],[114.36665,22.47405],[114.36666,22.47405],[114.36668,22.47409],[114.3667,22.47409],[114.36672,22.47411]]],[[[114.36645,22.47424],[114.36647,22.47427],[114.36647,22.47429],[114.36647,22.4743],[114.36645,22.47431],[114.36643,22.47431],[114.3664,22.4743],[114.36637,22.47427],[114.36637,22.47425],[114.36638,22.47424],[114.36643,22.47423],[114.36645,22.47424]]],[[[114.36668,22.47491],[114.36667,22.4749],[114.36666,22.47489],[114.36667,22.47487],[114.36671,22.47483],[114.36673,22.47483],[114.36674,22.47483],[114.36674,22.47485],[114.36674,22.47486],[114.36673,22.47487],[114.36674,22.4749],[114.36673,22.47491],[114.36672,22.4749],[114.36668,22.47491]]],[[[114.33797,22.47498],[114.33797,22.47505],[114.33795,22.47505],[114.33793,22.47504],[114.33793,22.47501],[114.33794,22.47497],[114.33796,22.47496],[114.33797,22.47498]]],[[[114.36677,22.47518],[114.36678,22.47519],[114.36677,22.4752],[114.36677,22.47521],[114.36676,22.47521],[114.3667,22.47521],[114.36669,22.47521],[114.36669,22.4752],[114.36669,22.47519],[114.3667,22.47518],[114.36676,22.47518],[114.36677,22.47518]]],[[[114.3666,22.47523],[114.36661,22.47523],[114.36661,22.47524],[114.36659,22.47526],[114.36658,22.47526],[114.36658,22.47525],[114.36658,22.47524],[114.36658,22.47523],[114.3666,22.47523],[114.3666,22.47523]]],[[[114.36687,22.47523],[114.36688,22.47524],[114.36686,22.47525],[114.36685,22.47527],[114.36684,22.47528],[114.36682,22.47528],[114.36681,22.47527],[114.3668,22.47525],[114.3668,22.47524],[114.36682,22.47524],[114.36683,22.47522],[114.36687,22.47523]]],[[[114.36679,22.47535],[114.3668,22.47536],[114.36679,22.47536],[114.36678,22.47537],[114.36676,22.47537],[114.36674,22.47539],[114.36674,22.47539],[114.36673,22.47538],[114.36673,22.47537],[114.36674,22.47537],[114.36676,22.47536],[114.36678,22.47535],[114.36679,22.47535]]],[[[114.36681,22.47545],[114.3668,22.47547],[114.36677,22.47547],[114.36673,22.47545],[114.36675,22.47543],[114.36678,22.47542],[114.36681,22.47545]]],[[[114.36689,22.47547],[114.36689,22.47548],[114.36688,22.47548],[114.36687,22.47547],[114.36687,22.47547],[114.36688,22.47545],[114.36688,22.47542],[114.36688,22.47542],[114.36689,22.47542],[114.3669,22.47544],[114.36691,22.47543],[114.36692,22.47542],[114.36693,22.47541],[114.36695,22.47541],[114.36695,22.47542],[114.36695,22.47543],[114.36694,22.47545],[114.36693,22.47545],[114.3669,22.47545],[114.36689,22.47547]]],[[[114.3316,22.47564],[114.33148,22.47563],[114.3314,22.47558],[114.33119,22.47516],[114.33125,22.47476],[114.33134,22.47466],[114.33148,22.47462],[114.33166,22.47465],[114.33196,22.47463],[114.33216,22.47472],[114.33222,22.47483],[114.33224,22.47509],[114.33218,22.47527],[114.33202,22.47557],[114.33196,22.47559],[114.33187,22.47554],[114.3316,22.47564]]],[[[114.33028,22.47723],[114.3303,22.4773],[114.3303,22.47736],[114.33026,22.47742],[114.3302,22.47746],[114.33016,22.47748],[114.33011,22.47749],[114.33002,22.4775],[114.32994,22.47747],[114.32992,22.47745],[114.32992,22.47741],[114.33003,22.4773],[114.33009,22.47724],[114.33016,22.47721],[114.33024,22.4772],[114.33028,22.47723]]],[[[114.32341,22.47773],[114.32318,22.47817],[114.32295,22.47855],[114.3225,22.47907],[114.32245,22.4792],[114.32222,22.47948],[114.32214,22.47981],[114.32218,22.48001],[114.32209,22.48019],[114.32176,22.48044],[114.3216,22.4805],[114.32148,22.48049],[114.32118,22.48026],[114.32114,22.48014],[114.32116,22.48001],[114.32112,22.47981],[114.3211,22.47973],[114.32087,22.47958],[114.32083,22.47952],[114.32081,22.47949],[114.32081,22.47908],[114.32074,22.4789],[114.32069,22.47877],[114.32057,22.47825],[114.32053,22.47811],[114.32046,22.47737],[114.32038,22.47694],[114.32035,22.47679],[114.32026,22.47669],[114.32012,22.47665],[114.31962,22.47673],[114.31924,22.47682],[114.31899,22.47694],[114.31835,22.47706],[114.318,22.47722],[114.31783,22.47728],[114.31727,22.47725],[114.31692,22.47719],[114.31651,22.47708],[114.31621,22.47691],[114.31552,22.47617],[114.31527,22.47603],[114.31504,22.47588],[114.31482,22.47578],[114.31474,22.47562],[114.31475,22.4754],[114.31453,22.47512],[114.31436,22.47509],[114.31425,22.47493],[114.31421,22.47449],[114.31421,22.47401],[114.31407,22.47381],[114.31389,22.47337],[114.31366,22.47328],[114.31335,22.47315],[114.31319,22.47309],[114.31311,22.47294],[114.3132,22.47277],[114.31318,22.47265],[114.31269,22.47221],[114.31265,22.47206],[114.31251,22.4719],[114.31235,22.47194],[114.31223,22.472],[114.3122,22.4721],[114.3121,22.47216],[114.31206,22.47212],[114.31205,22.472],[114.31218,22.47167],[114.31221,22.47162],[114.31219,22.4716],[114.31188,22.47166],[114.3117,22.47163],[114.31124,22.47143],[114.31083,22.47148],[114.3105,22.47158],[114.31021,22.47162],[114.30992,22.47157],[114.3096,22.47142],[114.3095,22.47137],[114.30924,22.47131],[114.30914,22.47125],[114.30902,22.47117],[114.3087,22.47097],[114.30856,22.47092],[114.30851,22.47088],[114.30837,22.4708],[114.30819,22.47057],[114.30816,22.47032],[114.30798,22.47],[114.30794,22.46974],[114.30771,22.46919],[114.30739,22.46912],[114.30734,22.46907],[114.30725,22.46903],[114.3069,22.46888],[114.30665,22.46868],[114.30658,22.46848],[114.30636,22.46824],[114.30581,22.46794],[114.30553,22.4677],[114.30545,22.46739],[114.30546,22.46705],[114.30538,22.46692],[114.30527,22.46669],[114.30515,22.46627],[114.30511,22.46618],[114.30532,22.46576],[114.3053,22.46538],[114.30519,22.46523],[114.30506,22.46516],[114.30492,22.46519],[114.30471,22.46512],[114.30457,22.4649],[114.30448,22.46466],[114.30452,22.46444],[114.30466,22.46409],[114.30479,22.46401],[114.30485,22.46392],[114.30489,22.46364],[114.30484,22.46359],[114.30485,22.46351],[114.30475,22.46344],[114.30437,22.46329],[114.30428,22.46315],[114.30419,22.46304],[114.30407,22.46297],[114.30403,22.4629],[114.30405,22.46284],[114.30403,22.46277],[114.30392,22.46271],[114.3038,22.46271],[114.30377,22.46269],[114.30376,22.46261],[114.30373,22.46257],[114.30367,22.46254],[114.30355,22.46256],[114.30349,22.46255],[114.30344,22.46252],[114.3034,22.46252],[114.30321,22.4627],[114.30297,22.46272],[114.3029,22.46276],[114.30285,22.46281],[114.30282,22.46282],[114.30276,22.4628],[114.30253,22.46289],[114.30237,22.46302],[114.30229,22.46318],[114.30224,22.46322],[114.30214,22.46321],[114.30208,22.4631],[114.30202,22.46308],[114.30199,22.46297],[114.302,22.46288],[114.3021,22.46268],[114.3022,22.4626],[114.30228,22.4626],[114.30233,22.46257],[114.3024,22.46247],[114.30253,22.46244],[114.3026,22.4624],[114.30265,22.46233],[114.30268,22.4623],[114.30279,22.46227],[114.30288,22.46214],[114.30294,22.46191],[114.30307,22.46166],[114.30304,22.46161],[114.30278,22.46156],[114.30268,22.46143],[114.30263,22.46114],[114.30271,22.46077],[114.30279,22.46065],[114.30293,22.4606],[114.30297,22.46053],[114.30303,22.46049],[114.30307,22.46045],[114.30315,22.46041],[114.30318,22.46034],[114.3032,22.46021],[114.30321,22.46017],[114.30323,22.46015],[114.30324,22.46015],[114.30327,22.46016],[114.30329,22.46017],[114.30331,22.46017],[114.30334,22.46017],[114.30335,22.46016],[114.30336,22.46013],[114.30337,22.46011],[114.30342,22.46005],[114.30346,22.46001],[114.3035,22.45994],[114.30352,22.45984],[114.30354,22.45978],[114.3037,22.45968],[114.3038,22.45956],[114.30389,22.4593],[114.30387,22.45923],[114.30379,22.45917],[114.30376,22.45906],[114.30389,22.45886],[114.304,22.45879],[114.30397,22.45867],[114.3038,22.45848],[114.30379,22.45834],[114.30375,22.45828],[114.30365,22.45819],[114.30369,22.45811],[114.30358,22.4577],[114.30318,22.45779],[114.30315,22.4577],[114.30343,22.45763],[114.30295,22.45746],[114.30298,22.45736],[114.30353,22.45756],[114.30352,22.45753],[114.3037,22.4573],[114.30368,22.4572],[114.30352,22.45705],[114.30337,22.45676],[114.30338,22.45665],[114.30354,22.45647],[114.3035,22.45616],[114.30327,22.45545],[114.3032,22.45539],[114.3028,22.45536],[114.30247,22.45524],[114.30233,22.45504],[114.30202,22.45478],[114.3017,22.45469],[114.30157,22.45457],[114.30146,22.45442],[114.30066,22.45427],[114.30049,22.45419],[114.30029,22.45422],[114.30035,22.45434],[114.3003,22.45437],[114.30023,22.45435],[114.30003,22.45416],[114.29991,22.45414],[114.29978,22.45447],[114.29977,22.45448],[114.29975,22.45447],[114.29974,22.45439],[114.29972,22.4544],[114.29972,22.45444],[114.29969,22.45451],[114.29969,22.45463],[114.29971,22.45472],[114.29971,22.45475],[114.2997,22.45475],[114.29969,22.45474],[114.29969,22.45469],[114.29968,22.45468],[114.29965,22.45467],[114.29963,22.45467],[114.2996,22.45464],[114.29957,22.45455],[114.29951,22.45451],[114.2995,22.45451],[114.29949,22.4546],[114.29951,22.45506],[114.29965,22.4552],[114.29979,22.45528],[114.29991,22.45545],[114.29995,22.45562],[114.29994,22.45583],[114.29967,22.45634],[114.29963,22.45654],[114.29982,22.45692],[114.30002,22.45685],[114.30005,22.45692],[114.29984,22.45702],[114.29959,22.45654],[114.29941,22.45664],[114.29929,22.45664],[114.2992,22.45659],[114.29899,22.45662],[114.29812,22.45615],[114.29786,22.45613],[114.29751,22.45623],[114.29741,22.45623],[114.29729,22.45616],[114.2971,22.45615],[114.29651,22.45582],[114.29615,22.45583],[114.29586,22.45596],[114.29563,22.45591],[114.29524,22.45602],[114.29502,22.45615],[114.29491,22.45614],[114.29483,22.45604],[114.29485,22.45581],[114.29481,22.45571],[114.29473,22.45562],[114.29465,22.4556],[114.2946,22.45562],[114.29467,22.45574],[114.29466,22.45596],[114.29463,22.45607],[114.29443,22.45621],[114.29435,22.45655],[114.29399,22.45704],[114.29385,22.45734],[114.29361,22.45743],[114.29343,22.45778],[114.29341,22.45785],[114.29322,22.45819],[114.2931,22.45822],[114.29291,22.45814],[114.29284,22.45814],[114.29249,22.45842],[114.29211,22.45842],[114.29175,22.45826],[114.29172,22.45812],[114.2919,22.45777],[114.29192,22.45758],[114.29236,22.45691],[114.29243,22.4567],[114.29239,22.45664],[114.29218,22.45658],[114.29205,22.45648],[114.2918,22.45612],[114.29186,22.45599],[114.29183,22.45572],[114.29153,22.45504],[114.29159,22.45476],[114.2918,22.45447],[114.292,22.45388],[114.29192,22.45367],[114.29175,22.45365],[114.29162,22.45355],[114.29162,22.45341],[114.29155,22.45328],[114.29133,22.45282],[114.29132,22.45278],[114.29136,22.4526],[114.29157,22.45229],[114.29159,22.45192],[114.29183,22.45151],[114.29202,22.45139],[114.29208,22.45128],[114.29219,22.45087],[114.2921,22.45059],[114.29206,22.45055],[114.29188,22.45056],[114.29175,22.45052],[114.29169,22.45045],[114.29164,22.45021],[114.29145,22.45],[114.29097,22.44984],[114.29031,22.4497],[114.29028,22.44957],[114.29016,22.44952],[114.29016,22.44942],[114.29001,22.44944],[114.28983,22.44965],[114.28975,22.4499],[114.28978,22.45008],[114.28952,22.45022],[114.28937,22.45095],[114.28919,22.45106],[114.28916,22.45158],[114.28905,22.45223],[114.2889,22.45245],[114.28889,22.45254],[114.28881,22.45262],[114.2886,22.45274],[114.28805,22.45291],[114.28724,22.45334],[114.28712,22.45349],[114.28709,22.45361],[114.28693,22.4538],[114.28677,22.45387],[114.28652,22.45384],[114.28632,22.4539],[114.28603,22.45378],[114.28589,22.45362],[114.28587,22.45349],[114.28581,22.45342],[114.28568,22.45272],[114.28547,22.45229],[114.28533,22.45218],[114.28519,22.45217],[114.28486,22.45215],[114.28475,22.45221],[114.28474,22.45205],[114.28455,22.45193],[114.28433,22.45183],[114.28419,22.45181],[114.28398,22.45163],[114.28384,22.45158],[114.28363,22.45156],[114.28341,22.45144],[114.28327,22.4514],[114.28259,22.451],[114.2825,22.45082],[114.28236,22.45066],[114.28196,22.45034],[114.28177,22.45012],[114.28171,22.44991],[114.28151,22.44955],[114.28103,22.44907],[114.28091,22.44844],[114.28052,22.44788],[114.28043,22.44747],[114.28025,22.44724],[114.27984,22.44696],[114.27963,22.44671],[114.27934,22.44658],[114.27925,22.44638],[114.27924,22.44619],[114.27915,22.44607],[114.2791,22.44596],[114.27883,22.44582],[114.27873,22.4458],[114.27867,22.44576],[114.27864,22.44572],[114.27864,22.4456],[114.27857,22.44551],[114.27852,22.44548],[114.2784,22.44542],[114.27832,22.44535],[114.27819,22.44514],[114.27775,22.44493],[114.27746,22.44499],[114.27739,22.44492],[114.27731,22.44472],[114.27732,22.44462],[114.27717,22.44433],[114.27723,22.44406],[114.27736,22.44396],[114.27767,22.44355],[114.27779,22.44327],[114.27788,22.44307],[114.27814,22.44292],[114.27837,22.44291],[114.27846,22.44297],[114.27852,22.44308],[114.27851,22.44327],[114.2785,22.44327],[114.2784,22.44359],[114.27845,22.44413],[114.27858,22.44437],[114.27927,22.44413],[114.27943,22.44404],[114.27945,22.44395],[114.27957,22.44397],[114.27961,22.44409],[114.28025,22.44403],[114.2805,22.44376],[114.28096,22.44361],[114.28106,22.44339],[114.28113,22.44343],[114.28122,22.44343],[114.28126,22.44341],[114.28128,22.44341],[114.28135,22.44344],[114.28144,22.44343],[114.28152,22.44348],[114.28156,22.44349],[114.28158,22.44349],[114.28163,22.44346],[114.28174,22.44348],[114.28179,22.44348],[114.2818,22.44349],[114.28177,22.44359],[114.28189,22.44375],[114.2821,22.44392],[114.28239,22.44379],[114.28261,22.4439],[114.28279,22.44388],[114.28333,22.44367],[114.28356,22.44361],[114.2837,22.44361],[114.28379,22.4436],[114.28372,22.44357],[114.28378,22.44327],[114.28391,22.44196],[114.28399,22.44192],[114.28326,22.44172],[114.28304,22.44153],[114.28289,22.44131],[114.28258,22.44101],[114.28234,22.44087],[114.28211,22.44082],[114.28181,22.44054],[114.28173,22.44054],[114.2816,22.44057],[114.28151,22.44058],[114.28136,22.44071],[114.28149,22.44084],[114.28143,22.4409],[114.28126,22.44074],[114.28149,22.44054],[114.28147,22.44046],[114.28139,22.44042],[114.2814,22.44032],[114.28131,22.44008],[114.28133,22.43991],[114.28121,22.43949],[114.28125,22.43905],[114.28143,22.43872],[114.28156,22.43858],[114.28177,22.43847],[114.28193,22.43824],[114.2821,22.43764],[114.2821,22.43693],[114.2823,22.43652],[114.28237,22.43613],[114.28253,22.43595],[114.28275,22.43586],[114.28297,22.43584],[114.28312,22.43573],[114.28339,22.43551],[114.28348,22.43537],[114.28357,22.43531],[114.2834,22.43405],[114.28338,22.43344],[114.2834,22.4331],[114.28341,22.433],[114.2835,22.43289],[114.28351,22.43277],[114.28369,22.43236],[114.28378,22.43227],[114.28403,22.43183],[114.28467,22.43139],[114.28505,22.43107],[114.2851,22.43097],[114.28513,22.43079],[114.28519,22.4307],[114.28523,22.43065],[114.28526,22.43063],[114.28529,22.43062],[114.28534,22.43062],[114.28536,22.43063],[114.28538,22.43065],[114.28539,22.43067],[114.28538,22.43068],[114.28538,22.43069],[114.28541,22.4307],[114.28541,22.43068],[114.28544,22.43065],[114.28546,22.43058],[114.28543,22.43047],[114.28544,22.43025],[114.28542,22.43003],[114.2857,22.42953],[114.28581,22.42944],[114.28598,22.42942],[114.28642,22.4295],[114.28657,22.4296],[114.28667,22.42956],[114.28684,22.42941],[114.28694,22.42939],[114.28725,22.42933],[114.28726,22.42932],[114.28752,22.42919],[114.28786,22.42916],[114.28824,22.42931],[114.28839,22.42934],[114.28855,22.42933],[114.28862,22.42922],[114.28868,22.42908],[114.28922,22.42878],[114.2893,22.42877],[114.28939,22.42878],[114.28959,22.42861],[114.28963,22.42857],[114.28976,22.42852],[114.28982,22.42843],[114.28976,22.42844],[114.28969,22.42847],[114.28949,22.4286],[114.28938,22.42856],[114.28933,22.42833],[114.28888,22.42799],[114.28885,22.42795],[114.28878,22.42792],[114.28873,22.42793],[114.28869,22.42796],[114.28865,22.42802],[114.28864,22.42804],[114.28862,22.42803],[114.28855,22.42785],[114.28853,22.42783],[114.28846,22.42782],[114.28841,22.4278],[114.28838,22.42778],[114.28837,22.42775],[114.2884,22.42754],[114.28842,22.42753],[114.2885,22.42751],[114.28856,22.42748],[114.28859,22.42744],[114.28862,22.42737],[114.28863,22.42732],[114.28845,22.4269],[114.28836,22.42678],[114.28829,22.42658],[114.28828,22.42653],[114.28827,22.4265],[114.28818,22.42649],[114.28803,22.42702],[114.288,22.42707],[114.28798,22.42707],[114.28795,22.42701],[114.2879,22.42696],[114.28785,22.42697],[114.28772,22.42708],[114.28769,22.42708],[114.28767,22.42707],[114.28766,22.42703],[114.28769,22.42689],[114.28772,22.42687],[114.28781,22.42682],[114.28786,22.42669],[114.28787,22.42661],[114.28792,22.42652],[114.28799,22.42642],[114.28799,22.42639],[114.28797,22.42637],[114.28794,22.42641],[114.28791,22.42644],[114.28782,22.4265],[114.28775,22.4265],[114.28744,22.42639],[114.2873,22.4261],[114.2873,22.42582],[114.28747,22.42553],[114.28752,22.4255],[114.2877,22.42552],[114.28773,22.42552],[114.28774,22.42552],[114.28773,22.4255],[114.28764,22.42544],[114.28759,22.42537],[114.28753,22.4253],[114.28749,22.42527],[114.28732,22.42525],[114.28712,22.42521],[114.28689,22.42525],[114.28661,22.42521],[114.28644,22.42517],[114.28615,22.42502],[114.2857,22.42501],[114.28554,22.42506],[114.28544,22.42503],[114.28518,22.42465],[114.28493,22.42453],[114.28465,22.42427],[114.28453,22.424],[114.28448,22.42369],[114.28437,22.42353],[114.28427,22.42347],[114.28404,22.42335],[114.28395,22.42337],[114.28388,22.42344],[114.28378,22.42344],[114.28366,22.42334],[114.28329,22.42315],[114.28322,22.42303],[114.28335,22.42291],[114.28334,22.42285],[114.28265,22.42225],[114.28166,22.42178],[114.28116,22.42166],[114.28094,22.42153],[114.28081,22.42151],[114.28072,22.4214],[114.28047,22.42125],[114.28039,22.42115],[114.28,22.42098],[114.27972,22.4208],[114.27966,22.42074],[114.27937,22.42061],[114.27896,22.42017],[114.27838,22.41969],[114.27779,22.41948],[114.2766,22.41918],[114.27619,22.41904],[114.27584,22.41868],[114.27578,22.41869],[114.27573,22.41861],[114.27576,22.41851],[114.27586,22.41827],[114.2758,22.41769],[114.27571,22.41717],[114.27566,22.41693],[114.27556,22.41639],[114.27543,22.41619],[114.27523,22.41571],[114.2752,22.41548],[114.27504,22.41526],[114.27502,22.41516],[114.27435,22.41534],[114.27433,22.41534],[114.27432,22.41534],[114.27431,22.41533],[114.2743,22.41532],[114.2743,22.41531],[114.2743,22.4153],[114.2743,22.41529],[114.2743,22.41529],[114.27431,22.41529],[114.27432,22.41528],[114.27503,22.41509],[114.27508,22.41474],[114.27529,22.41428],[114.27552,22.41411],[114.27566,22.41391],[114.27573,22.4136],[114.27597,22.41324],[114.27602,22.41285],[114.27597,22.41278],[114.27589,22.41246],[114.27577,22.41223],[114.27574,22.41201],[114.2758,22.41174],[114.27588,22.41132],[114.27601,22.41116],[114.27603,22.41089],[114.27621,22.41041],[114.2762,22.41032],[114.27631,22.41013],[114.27639,22.40972],[114.2764,22.4096],[114.27636,22.40951],[114.27633,22.40944],[114.27619,22.40933],[114.27619,22.40928],[114.27624,22.4091],[114.27622,22.40902],[114.2762,22.40901],[114.27618,22.40902],[114.2761,22.40909],[114.27603,22.40914],[114.27596,22.40919],[114.27584,22.40928],[114.27581,22.40932],[114.27524,22.41044],[114.27488,22.41085],[114.27484,22.41093],[114.27479,22.41099],[114.27476,22.41103],[114.27475,22.41106],[114.27477,22.41107],[114.27474,22.41115],[114.27469,22.41115],[114.27465,22.41121],[114.27429,22.41171],[114.2741,22.41209],[114.27416,22.41254],[114.2741,22.41268],[114.2741,22.41287],[114.27418,22.41294],[114.27421,22.41304],[114.27413,22.41309],[114.27397,22.41312],[114.27396,22.41303],[114.27384,22.41314],[114.27355,22.41325],[114.27349,22.41333],[114.27319,22.41351],[114.27308,22.41365],[114.27299,22.41385],[114.27266,22.4142],[114.27255,22.41438],[114.27204,22.41484],[114.27201,22.41496],[114.27187,22.41502],[114.2715,22.41526],[114.27141,22.41537],[114.27121,22.41548],[114.27093,22.41593],[114.27064,22.41617],[114.2705,22.41619],[114.27031,22.41641],[114.2701,22.41654],[114.27005,22.41667],[114.27008,22.41684],[114.26992,22.4171],[114.2698,22.41747],[114.26982,22.41791],[114.26962,22.4184],[114.2695,22.41844],[114.26927,22.41849],[114.269,22.41851],[114.26887,22.41859],[114.26843,22.41868],[114.26833,22.41872],[114.26827,22.41905],[114.26826,22.41912],[114.26813,22.41961],[114.26794,22.41991],[114.26778,22.42032],[114.26754,22.42061],[114.26761,22.42076],[114.26749,22.42082],[114.26731,22.42102],[114.26731,22.42108],[114.26735,22.42115],[114.26742,22.42146],[114.26754,22.42159],[114.26772,22.42169],[114.2678,22.42165],[114.26794,22.42167],[114.26805,22.42165],[114.268,22.4216],[114.26802,22.42156],[114.26826,22.42145],[114.26838,22.42133],[114.26848,22.42136],[114.26852,22.42142],[114.26876,22.42139],[114.26902,22.42143],[114.26909,22.42146],[114.26926,22.42171],[114.26956,22.42198],[114.2697,22.42211],[114.26976,22.42215],[114.26997,22.42224],[114.27033,22.42227],[114.27058,22.42266],[114.27072,22.42316],[114.27071,22.42334],[114.27061,22.42364],[114.27075,22.42379],[114.27076,22.42389],[114.2707,22.42398],[114.27047,22.42413],[114.27038,22.42426],[114.27034,22.42447],[114.2704,22.42472],[114.27049,22.42486],[114.27094,22.42516],[114.27102,22.4253],[114.27103,22.42545],[114.27099,22.42556],[114.27067,22.42574],[114.27064,22.42584],[114.27066,22.42603],[114.27081,22.42634],[114.27083,22.42658],[114.27086,22.42668],[114.27088,22.4267],[114.27087,22.4267],[114.27068,22.4267],[114.27066,22.4267],[114.27054,22.42668],[114.27039,22.42664],[114.27036,22.42661],[114.27035,22.42658],[114.27027,22.42636],[114.2702,22.42613],[114.2702,22.42605],[114.27021,22.42598],[114.27021,22.42587],[114.27021,22.42577],[114.27021,22.42566],[114.2702,22.42556],[114.2702,22.42552],[114.2702,22.42545],[114.2702,22.42538],[114.27019,22.42529],[114.27017,22.42522],[114.27015,22.42514],[114.27013,22.42506],[114.2701,22.425],[114.27008,22.42495],[114.27005,22.42489],[114.26998,22.42477],[114.26993,22.42482],[114.26987,22.42489],[114.26981,22.42497],[114.26978,22.42501],[114.26974,22.42507],[114.26969,22.42513],[114.26964,22.42518],[114.26957,22.42523],[114.26953,22.42526],[114.26948,22.42528],[114.26943,22.42529],[114.26939,22.42529],[114.26931,22.42528],[114.26923,22.42527],[114.26914,22.42524],[114.26907,22.42522],[114.26901,22.42521],[114.26895,22.42521],[114.26889,22.42519],[114.2688,22.42516],[114.26871,22.42513],[114.26864,22.42509],[114.26857,22.42503],[114.26852,22.42497],[114.26848,22.4249],[114.26844,22.42482],[114.26841,22.42476],[114.26839,22.42469],[114.26837,22.42461],[114.26836,22.42454],[114.26836,22.42447],[114.26839,22.42441],[114.26845,22.42433],[114.26852,22.42427],[114.2686,22.42423],[114.26867,22.42418],[114.26875,22.42414],[114.26882,22.42409],[114.2689,22.42404],[114.26897,22.42399],[114.26904,22.42393],[114.26911,22.42388],[114.26917,22.42382],[114.26923,22.42376],[114.26929,22.4237],[114.26932,22.42365],[114.26936,22.42361],[114.26937,22.42356],[114.2694,22.42349],[114.26978,22.42369],[114.27002,22.4235],[114.27003,22.42349],[114.2701,22.42343],[114.26996,22.42287],[114.26983,22.42276],[114.26969,22.42264],[114.26954,22.42253],[114.26936,22.42242],[114.26916,22.42231],[114.26901,22.42222],[114.2688,22.42212],[114.26879,22.42212],[114.26875,22.42217],[114.26872,22.42222],[114.2687,22.42228],[114.2687,22.42234],[114.26872,22.42252],[114.26874,22.42268],[114.26875,22.42277],[114.26874,22.42285],[114.26873,22.42294],[114.26872,22.423],[114.26871,22.42303],[114.2687,22.42304],[114.26865,22.42306],[114.2686,22.42308],[114.26854,22.42309],[114.26849,22.4231],[114.26844,22.4231],[114.26768,22.42306],[114.26751,22.42303],[114.26716,22.42302],[114.26651,22.42311],[114.26584,22.42326],[114.26548,22.42302],[114.26544,22.42299],[114.26541,22.423],[114.26535,22.42303],[114.26529,22.42305],[114.26523,22.42307],[114.26517,22.42309],[114.2651,22.42311],[114.26502,22.42314],[114.26496,22.42316],[114.26462,22.42327],[114.26456,22.42329],[114.26448,22.42331],[114.26441,22.42334],[114.26433,22.42336],[114.2643,22.42338],[114.26426,22.42339],[114.26422,22.42341],[114.26419,22.42343],[114.26415,22.42344],[114.26412,22.42346],[114.26408,22.42348],[114.26405,22.4235],[114.26401,22.42352],[114.26398,22.42354],[114.26394,22.42356],[114.26391,22.42358],[114.26388,22.4236],[114.26385,22.42363],[114.26382,22.42365],[114.26379,22.42368],[114.26376,22.4237],[114.26374,22.42372],[114.26372,22.42374],[114.26369,22.42377],[114.26367,22.42379],[114.26365,22.42381],[114.26363,22.42384],[114.26361,22.42387],[114.26359,22.4239],[114.26357,22.42393],[114.26355,22.42395],[114.26354,22.42397],[114.26352,22.424],[114.2635,22.42403],[114.26349,22.42405],[114.26348,22.42408],[114.26346,22.42411],[114.26346,22.42418],[114.26339,22.42433],[114.26334,22.42439],[114.26325,22.42459],[114.26318,22.42456],[114.26303,22.42449],[114.26303,22.42449],[114.26301,22.42448],[114.26301,22.42447],[114.26299,22.42446],[114.26298,22.42445],[114.26296,22.42442],[114.26294,22.42439],[114.26292,22.42437],[114.2629,22.42434],[114.26287,22.42429],[114.26285,22.42423],[114.26284,22.42421],[114.26282,22.42419],[114.26281,22.42418],[114.2628,22.42416],[114.26277,22.42412],[114.26274,22.42408],[114.26272,22.42406],[114.26271,22.42403],[114.2627,22.42401],[114.26269,22.42398],[114.26268,22.42394],[114.26266,22.4239],[114.26266,22.42386],[114.26265,22.42382],[114.26265,22.4238],[114.26264,22.42378],[114.26264,22.42376],[114.26264,22.42373],[114.26264,22.42371],[114.26264,22.42369],[114.26264,22.42368],[114.26265,22.42366],[114.26265,22.42362],[114.26266,22.42358],[114.26268,22.42355],[114.26269,22.42351],[114.26269,22.4235],[114.2627,22.42349],[114.26271,22.42348],[114.26272,22.42347],[114.26272,22.42345],[114.26273,22.42344],[114.26273,22.42344],[114.26273,22.42342],[114.26273,22.42341],[114.26273,22.42339],[114.26272,22.42338],[114.26272,22.42337],[114.26272,22.42334],[114.26272,22.42333],[114.26273,22.42332],[114.26273,22.4233],[114.26273,22.42329],[114.26273,22.42328],[114.26274,22.42326],[114.26274,22.42325],[114.26275,22.42324],[114.26275,22.42322],[114.26276,22.42321],[114.26277,22.4232],[114.26279,22.42317],[114.26281,22.42314],[114.26282,22.42312],[114.26282,22.42311],[114.26283,22.42309],[114.26283,22.42308],[114.26284,22.42306],[114.26284,22.42305],[114.26284,22.42303],[114.26284,22.42301],[114.26284,22.42296],[114.26283,22.42293],[114.26283,22.4229],[114.26282,22.42288],[114.26282,22.42286],[114.26282,22.42285],[114.26282,22.42283],[114.26282,22.42282],[114.26283,22.4228],[114.26283,22.42279],[114.26283,22.42277],[114.26284,22.42274],[114.26285,22.4227],[114.26286,22.42267],[114.26288,22.42263],[114.26288,22.4226],[114.26289,22.42258],[114.2629,22.42255],[114.2629,22.42252],[114.2629,22.4225],[114.2629,22.42249],[114.26289,22.42247],[114.26289,22.42246],[114.26288,22.42245],[114.26288,22.42244],[114.26288,22.42243],[114.26288,22.42239],[114.26282,22.42235],[114.26275,22.42229],[114.26269,22.42225],[114.26261,22.4222],[114.26251,22.42215],[114.26243,22.42211],[114.26234,22.42208],[114.26227,22.42204],[114.2622,22.42201],[114.26215,22.42199],[114.26218,22.42184],[114.26221,22.4217],[114.26223,22.42158],[114.26224,22.42148],[114.26225,22.42135],[114.26225,22.42126],[114.26226,22.42117],[114.26225,22.42111],[114.26224,22.42104],[114.26222,22.42097],[114.26219,22.42091],[114.26216,22.42087],[114.26211,22.42082],[114.26206,22.42077],[114.26203,22.42073],[114.26201,22.42071],[114.26196,22.42064],[114.26188,22.42056],[114.26181,22.42049],[114.26173,22.42044],[114.26165,22.42039],[114.26154,22.42033],[114.26143,22.42028],[114.26131,22.42022],[114.26117,22.42019],[114.26103,22.42017],[114.26103,22.42015],[114.26102,22.42013],[114.26102,22.42012],[114.26102,22.42011],[114.26101,22.42008],[114.261,22.42003],[114.26099,22.42],[114.26098,22.41998],[114.26096,22.41995],[114.26095,22.41993],[114.26094,22.41991],[114.26092,22.41988],[114.26091,22.41987],[114.26089,22.41985],[114.26086,22.41983],[114.26084,22.41982],[114.26075,22.41976],[114.26071,22.41974],[114.26066,22.41971],[114.2606,22.41968],[114.26051,22.41963],[114.26042,22.41957],[114.26033,22.4195],[114.26022,22.41941],[114.26012,22.41932],[114.26008,22.41929],[114.26002,22.41926],[114.26001,22.41925],[114.25999,22.41924],[114.25993,22.41919],[114.2598,22.4191],[114.25964,22.41899],[114.25955,22.4189],[114.25948,22.41884],[114.25945,22.41882],[114.25944,22.41881],[114.25944,22.41881],[114.25937,22.41881],[114.25935,22.41881],[114.25932,22.41879],[114.25929,22.41877],[114.25926,22.41874],[114.25924,22.41872],[114.25924,22.41871],[114.25922,22.41868],[114.25919,22.41864],[114.25907,22.41854],[114.25902,22.41849],[114.25893,22.41837],[114.2589,22.4183],[114.2589,22.41828],[114.25889,22.41826],[114.25887,22.41824],[114.25887,22.41824],[114.25885,22.41822],[114.2588,22.41818],[114.25874,22.41815],[114.25866,22.41812],[114.25864,22.41812],[114.25861,22.41812],[114.25853,22.41811],[114.25847,22.41809],[114.25845,22.41808],[114.25842,22.41805],[114.25838,22.418],[114.25836,22.41798],[114.25834,22.41796],[114.25833,22.41795],[114.25828,22.41794],[114.25826,22.41793],[114.25819,22.41793],[114.25816,22.41794],[114.25807,22.41793],[114.258,22.41794],[114.25797,22.41796],[114.25793,22.41796],[114.25791,22.41799],[114.25788,22.41799],[114.25768,22.41794],[114.25766,22.41793],[114.25761,22.41791],[114.25758,22.41789],[114.25752,22.4178],[114.25747,22.41776],[114.25745,22.41775],[114.25741,22.41774],[114.25731,22.41771],[114.25725,22.41768],[114.25722,22.41767],[114.25719,22.41763],[114.25717,22.41762],[114.25717,22.41756],[114.25717,22.41754],[114.25716,22.41752],[114.25715,22.4175],[114.25708,22.4174],[114.25705,22.41734],[114.25702,22.41728],[114.25699,22.41713],[114.25696,22.41709],[114.25693,22.41707],[114.25689,22.41704],[114.25684,22.41702],[114.25682,22.41701],[114.25677,22.417],[114.25668,22.417],[114.25665,22.41701],[114.25664,22.41702],[114.2566,22.41704],[114.25657,22.41708],[114.25655,22.41711],[114.25652,22.41713],[114.2565,22.41713],[114.25649,22.41713],[114.25647,22.41713],[114.25643,22.41711],[114.25638,22.41708],[114.25631,22.41703],[114.25629,22.41702],[114.25627,22.41701],[114.25625,22.41701],[114.25615,22.417],[114.2561,22.41698],[114.25605,22.41695],[114.25605,22.41695],[114.25603,22.41694],[114.256,22.41693],[114.256,22.41693],[114.25595,22.41691],[114.25588,22.41689],[114.25582,22.41689],[114.25576,22.41687],[114.25568,22.41685],[114.25566,22.41684],[114.25563,22.41682],[114.25559,22.41679],[114.25557,22.41675],[114.25549,22.41655],[114.25547,22.41645],[114.2554,22.4163],[114.25537,22.41625],[114.25533,22.41619],[114.2553,22.41616],[114.25526,22.41614],[114.2551,22.41604],[114.25506,22.41603],[114.25503,22.41602],[114.255,22.41601],[114.25499,22.41601],[114.25487,22.41601],[114.2548,22.416],[114.2546,22.41596],[114.25445,22.41593],[114.2544,22.41593],[114.25427,22.41588],[114.25425,22.41587],[114.25416,22.41587],[114.25414,22.41587],[114.25405,22.41583],[114.25401,22.41582],[114.25395,22.41579],[114.25387,22.41574],[114.25379,22.41568],[114.25374,22.41562],[114.25364,22.41555],[114.25362,22.41553],[114.25356,22.41543],[114.2535,22.41537],[114.25349,22.41536],[114.25349,22.41533],[114.25351,22.41527],[114.25351,22.41523],[114.2535,22.41521],[114.25348,22.41517],[114.25345,22.41511],[114.25342,22.41505],[114.25341,22.41503],[114.25341,22.41502],[114.25342,22.41498],[114.25344,22.41489],[114.25345,22.41484],[114.25344,22.41463],[114.25343,22.41459],[114.25342,22.41457],[114.25337,22.41451],[114.25331,22.41442],[114.25329,22.4144],[114.25325,22.41438],[114.25315,22.41436],[114.25312,22.41435],[114.2531,22.41435],[114.25306,22.41435],[114.25303,22.41435],[114.25297,22.41432],[114.25294,22.41431],[114.25288,22.4143],[114.25282,22.41428],[114.25276,22.41427],[114.2527,22.41427],[114.25266,22.41426],[114.25264,22.41425],[114.25263,22.41425],[114.25256,22.41424],[114.25241,22.41423],[114.25236,22.41422],[114.25235,22.41421],[114.25226,22.41416],[114.25222,22.41415],[114.25218,22.41414],[114.25201,22.41414],[114.25199,22.41415],[114.25195,22.41418],[114.25192,22.4142],[114.2519,22.41421],[114.25187,22.41421],[114.25184,22.41421],[114.25181,22.4142],[114.25171,22.41415],[114.2517,22.41415],[114.25168,22.41415],[114.25164,22.41416],[114.25158,22.4142],[114.25154,22.41422],[114.25152,22.41423],[114.25148,22.41423],[114.25144,22.41424],[114.25141,22.41423],[114.25137,22.41422],[114.25134,22.41421],[114.25131,22.4142],[114.25125,22.41415],[114.25123,22.41414],[114.25118,22.41412],[114.25114,22.41411],[114.25112,22.4141],[114.2511,22.41409],[114.25106,22.41406],[114.25101,22.41403],[114.25092,22.41401],[114.25082,22.41402],[114.25076,22.41402],[114.25071,22.41402],[114.25066,22.41401],[114.25061,22.41398],[114.25055,22.41392],[114.25051,22.4139],[114.25047,22.41388],[114.25041,22.41388],[114.25039,22.41387],[114.25034,22.41385],[114.25016,22.41375],[114.25008,22.41371],[114.24951,22.41328],[114.24952,22.41328],[114.24952,22.41327],[114.24955,22.41321],[114.24955,22.41321],[114.24955,22.4132],[114.24956,22.41319],[114.24957,22.41315],[114.24958,22.41314],[114.2496,22.41311],[114.24962,22.4131],[114.24963,22.41309],[114.24967,22.41306],[114.24968,22.41305],[114.2497,22.41303],[114.24972,22.41302],[114.24973,22.413],[114.24974,22.41298],[114.24975,22.41296],[114.24977,22.41294],[114.2498,22.41289],[114.24981,22.41287],[114.24982,22.41285],[114.24983,22.41283],[114.24984,22.41282],[114.24984,22.41281],[114.24985,22.4128],[114.24985,22.4128],[114.24986,22.41279],[114.24987,22.41278],[114.24988,22.41278],[114.24989,22.41276],[114.24992,22.41274],[114.24993,22.41273],[114.24995,22.41272],[114.24997,22.4127],[114.24998,22.41269],[114.25001,22.41266],[114.25003,22.41264],[114.25003,22.41263],[114.25006,22.41259],[114.25007,22.41258],[114.25008,22.41257],[114.2501,22.41255],[114.25011,22.41254],[114.25013,22.41253],[114.25015,22.41251],[114.25016,22.41251],[114.25017,22.4125],[114.25018,22.41248],[114.2502,22.41244],[114.25022,22.41243],[114.25022,22.41242],[114.25025,22.4124],[114.2503,22.41235],[114.25033,22.41231],[114.25034,22.4123],[114.25034,22.4123],[114.25037,22.41225],[114.25037,22.41225],[114.25038,22.41224],[114.25039,22.41222],[114.25042,22.41218],[114.25045,22.41214],[114.25047,22.41212],[114.25049,22.4121],[114.25049,22.41208],[114.2505,22.41207],[114.25051,22.41204],[114.25051,22.41203],[114.25051,22.41203],[114.25052,22.41202],[114.25055,22.41198],[114.25056,22.41197],[114.25059,22.41193],[114.2506,22.41192],[114.25062,22.41189],[114.25062,22.41189],[114.25063,22.41188],[114.25064,22.41187],[114.25064,22.41187],[114.25065,22.41187],[114.25067,22.41186],[114.25068,22.41186],[114.25072,22.41182],[114.25073,22.41181],[114.25074,22.41181],[114.25075,22.4118],[114.25076,22.41179],[114.25078,22.41179],[114.2508,22.41178],[114.25083,22.41177],[114.25086,22.41176],[114.25087,22.41176],[114.25087,22.41176],[114.25088,22.41175],[114.25088,22.41175],[114.25089,22.41174],[114.25091,22.41173],[114.25092,22.41172],[114.25094,22.41169],[114.25095,22.41167],[114.25096,22.41167],[114.25097,22.41165],[114.25097,22.41164],[114.25098,22.41163],[114.25098,22.41163],[114.25099,22.41162],[114.251,22.41161],[114.25101,22.41159],[114.25102,22.41158],[114.25104,22.41156],[114.25105,22.41153],[114.25106,22.41151],[114.25108,22.41149],[114.25109,22.41148],[114.2511,22.41146],[114.25111,22.41145],[114.25112,22.41144],[114.25113,22.41142],[114.25116,22.4114],[114.25117,22.41139],[114.2512,22.41134],[114.25121,22.41132],[114.25121,22.41132],[114.25122,22.4113],[114.25124,22.41126],[114.25124,22.41125],[114.25125,22.41124],[114.25128,22.41122],[114.25129,22.4112],[114.2513,22.41119],[114.25131,22.41118],[114.25132,22.41116],[114.25133,22.41115],[114.25133,22.41114],[114.25134,22.41112],[114.25135,22.41111],[114.25135,22.4111],[114.25135,22.41109],[114.25135,22.41105],[114.25135,22.41103],[114.25135,22.41101],[114.25136,22.41099],[114.25139,22.41095],[114.25142,22.41091],[114.25143,22.4109],[114.25143,22.41089],[114.25143,22.41088],[114.25144,22.41088],[114.25144,22.41086],[114.25144,22.41085],[114.25144,22.41084],[114.25144,22.41083],[114.25145,22.41082],[114.25147,22.4108],[114.25148,22.41079],[114.25149,22.41078],[114.25151,22.41077],[114.25152,22.41076],[114.25155,22.41073],[114.25156,22.41073],[114.25157,22.41071],[114.25159,22.4107],[114.25159,22.4107],[114.25159,22.41069],[114.25161,22.41067],[114.25161,22.41067],[114.25161,22.41066],[114.25162,22.41065],[114.25162,22.41064],[114.25162,22.41063],[114.25163,22.41061],[114.25163,22.41061],[114.25163,22.4106],[114.25164,22.41058],[114.25165,22.41057],[114.25166,22.41055],[114.25167,22.41054],[114.25168,22.41053],[114.25168,22.41052],[114.25169,22.41051],[114.2517,22.41049],[114.25171,22.41049],[114.25172,22.41047],[114.25173,22.41046],[114.25176,22.41043],[114.25177,22.41043],[114.25177,22.41042],[114.25179,22.4104],[114.25179,22.41039],[114.25179,22.41038],[114.25179,22.41036],[114.25178,22.41034],[114.25178,22.41031],[114.25179,22.41029],[114.2518,22.41028],[114.2518,22.41026],[114.2518,22.41024],[114.25181,22.41023],[114.25181,22.41023],[114.25182,22.41022],[114.25182,22.41021],[114.25183,22.4102],[114.25183,22.41019],[114.25183,22.41019],[114.25184,22.41018],[114.25187,22.41016],[114.25188,22.41015],[114.25188,22.41015],[114.25189,22.41013],[114.25189,22.41012],[114.2519,22.4101],[114.25191,22.41007],[114.25192,22.41005],[114.25194,22.41],[114.25195,22.41],[114.25196,22.40999],[114.25196,22.40998],[114.25197,22.40997],[114.25197,22.40997],[114.25196,22.40995],[114.25196,22.40994],[114.25196,22.40993],[114.25196,22.40992],[114.25196,22.40991],[114.25197,22.40988],[114.25197,22.40985],[114.25197,22.40985],[114.25198,22.40984],[114.25198,22.40983],[114.25201,22.40979],[114.25201,22.40979],[114.25202,22.40978],[114.25202,22.40978],[114.25203,22.40977],[114.25203,22.40976],[114.25203,22.40975],[114.25204,22.40974],[114.25204,22.40973],[114.25204,22.40972],[114.25205,22.40972],[114.25206,22.40971],[114.25207,22.40969],[114.25208,22.40968],[114.25209,22.40967],[114.2521,22.40967],[114.25211,22.40966],[114.25212,22.40965],[114.25213,22.40964],[114.25216,22.40961],[114.25216,22.40961],[114.25218,22.4096],[114.25219,22.4096],[114.2522,22.40959],[114.25221,22.40958],[114.25221,22.40958],[114.25222,22.40957],[114.25223,22.40956],[114.25225,22.40953],[114.25225,22.40952],[114.25226,22.40951],[114.25226,22.4095],[114.25227,22.40948],[114.25228,22.40946],[114.25228,22.40945],[114.25229,22.40944],[114.25231,22.40942],[114.25231,22.40941],[114.25232,22.4094],[114.25233,22.40938],[114.25233,22.40935],[114.25234,22.40932],[114.25235,22.4093],[114.25235,22.40929],[114.25235,22.40928],[114.25236,22.40928],[114.25238,22.40925],[114.25238,22.40925],[114.25237,22.40924],[114.25237,22.40923],[114.25238,22.40921],[114.25238,22.4092],[114.25239,22.40919],[114.25239,22.40917],[114.2524,22.40915],[114.25241,22.40911],[114.25241,22.4091],[114.25242,22.40909],[114.25242,22.40908],[114.25243,22.40906],[114.25244,22.40905],[114.25245,22.40904],[114.25246,22.40903],[114.25246,22.40903],[114.25246,22.40902],[114.25246,22.40901],[114.25267,22.40895],[114.25268,22.40433],[114.2527,22.40269],[114.25274,22.40117],[114.25274,22.40116],[114.2528,22.39767],[114.25543,22.39784],[114.25627,22.39785],[114.25613,22.39666],[114.25591,22.39558],[114.2556,22.39485],[114.25528,22.39446],[114.25461,22.39425],[114.2541,22.39396],[114.25358,22.39338],[114.25319,22.39256],[114.25296,22.39201],[114.25285,22.39114],[114.25258,22.39037],[114.25195,22.38984],[114.25149,22.38964],[114.25108,22.3895],[114.25041,22.38947],[114.2498,22.38947],[114.24926,22.38959],[114.24866,22.38945],[114.24819,22.38923],[114.24763,22.38882],[114.2471,22.38828],[114.24705,22.38823],[114.24702,22.3882],[114.247,22.38817],[114.24699,22.38815],[114.24698,22.38813],[114.24697,22.38812],[114.24697,22.38812],[114.24697,22.38811],[114.24697,22.3881],[114.24697,22.38807],[114.24697,22.38801],[114.24698,22.38798],[114.24698,22.38795],[114.24698,22.38794],[114.24698,22.38794],[114.24698,22.38792],[114.24697,22.3879],[114.24696,22.38787],[114.24694,22.38784],[114.24694,22.38783],[114.24692,22.3878],[114.24692,22.3878],[114.24691,22.38779],[114.2469,22.38777],[114.2469,22.38777],[114.24688,22.38775],[114.24687,22.38773],[114.24687,22.38772],[114.24686,22.38772],[114.24686,22.38771],[114.24686,22.3877],[114.24685,22.38769],[114.24682,22.38767],[114.24679,22.38765],[114.24676,22.38764],[114.24672,22.38762],[114.24671,22.38762],[114.2467,22.38762],[114.2467,22.38762],[114.24668,22.38761],[114.24666,22.38761],[114.24666,22.38761],[114.24665,22.38761],[114.24662,22.38759],[114.24661,22.38758],[114.24661,22.38758],[114.2466,22.38757],[114.24659,22.38756],[114.24658,22.38756],[114.24657,22.38755],[114.24655,22.38754],[114.24655,22.38753],[114.24655,22.38752],[114.24655,22.3875],[114.24654,22.38749],[114.24654,22.38747],[114.24654,22.38746],[114.24654,22.38746],[114.24654,22.38744],[114.24654,22.38743],[114.24654,22.38741],[114.24654,22.3874],[114.24654,22.38739],[114.24655,22.38736],[114.24656,22.38734],[114.24658,22.3873],[114.24658,22.38728],[114.24659,22.38723],[114.24659,22.3872],[114.24659,22.38719],[114.24659,22.38717],[114.24659,22.38716],[114.24659,22.38715],[114.24658,22.38713],[114.24656,22.38706],[114.24656,22.38704],[114.24656,22.38703],[114.24656,22.387],[114.24656,22.387],[114.24656,22.38699],[114.24656,22.38697],[114.24656,22.38694],[114.24656,22.38694],[114.24656,22.38693],[114.24637,22.38631],[114.24622,22.38544],[114.2461,22.38449],[114.24609,22.38387],[114.24609,22.38324],[114.24609,22.38324],[114.24609,22.38324],[114.24612,22.38277],[114.24622,22.3822],[114.24623,22.38213],[114.24618,22.3821],[114.24615,22.38207],[114.24613,22.38205],[114.24608,22.38199],[114.24602,22.38194],[114.246,22.38192],[114.24598,22.38188],[114.2459,22.38178],[114.24587,22.38174],[114.24586,22.38173],[114.24586,22.38173],[114.24583,22.3817],[114.24582,22.38168],[114.24582,22.38167],[114.24585,22.38156],[114.24586,22.38151],[114.24586,22.38132],[114.24584,22.38123],[114.24584,22.38116],[114.24583,22.38108],[114.24583,22.38093],[114.24582,22.38091],[114.24581,22.38085],[114.24578,22.38074],[114.24576,22.38069],[114.24572,22.38063],[114.24569,22.38055],[114.24567,22.38047],[114.24566,22.38041],[114.24565,22.38037],[114.24564,22.38035],[114.24555,22.3802],[114.24553,22.38012],[114.24552,22.3801],[114.24552,22.38008],[114.24552,22.38005],[114.24555,22.37994],[114.24555,22.3799],[114.24555,22.37984],[114.24554,22.37982],[114.24549,22.37968],[114.24548,22.37965],[114.24549,22.37953],[114.24549,22.37943],[114.24549,22.3794],[114.24548,22.37927],[114.24551,22.37915],[114.2455,22.37913],[114.24549,22.37911],[114.24548,22.37909],[114.24548,22.37907],[114.24545,22.37901],[114.24543,22.37897],[114.24542,22.37895],[114.24539,22.37892],[114.24537,22.37888],[114.24536,22.37887],[114.24533,22.37885],[114.24532,22.37885],[114.24529,22.37883],[114.24527,22.37883],[114.24524,22.37883],[114.24523,22.37883],[114.2452,22.37882],[114.24518,22.37882],[114.24516,22.3788],[114.24511,22.37878],[114.24509,22.37878],[114.24507,22.37877],[114.24503,22.37875],[114.24502,22.37875],[114.245,22.37874],[114.24497,22.37872],[114.24495,22.3787],[114.24494,22.37869],[114.2449,22.37867],[114.24489,22.37865],[114.24487,22.37862],[114.24485,22.3786],[114.24483,22.3786],[114.24481,22.37859],[114.24479,22.3786],[114.24478,22.37859],[114.24476,22.37859],[114.24475,22.37858],[114.24474,22.37857],[114.24472,22.37853],[114.24472,22.37851],[114.24471,22.37848],[114.2447,22.37845],[114.24469,22.37838],[114.24468,22.37836],[114.24467,22.37834],[114.24466,22.37831],[114.24465,22.37828],[114.24463,22.37819],[114.24463,22.37818],[114.24462,22.37817],[114.2446,22.37815],[114.24456,22.37809],[114.24455,22.37808],[114.24454,22.37806],[114.24453,22.37805],[114.24451,22.37803],[114.2445,22.37801],[114.24448,22.37796],[114.24447,22.37795],[114.24446,22.37793],[114.24445,22.37792],[114.24443,22.3779],[114.24442,22.37788],[114.2444,22.37787],[114.24313,22.37683],[114.24223,22.37618],[114.24123,22.37552],[114.24084,22.37524],[114.24052,22.37501],[114.23989,22.37466],[114.23937,22.37439],[114.23868,22.37399],[114.23772,22.37356],[114.23771,22.37356],[114.2377,22.37355],[114.23769,22.37353],[114.23769,22.37353],[114.23769,22.37353],[114.23766,22.37351],[114.23764,22.3735],[114.23763,22.37349],[114.23763,22.37349],[114.23762,22.37349],[114.23762,22.37349],[114.23761,22.37348],[114.23759,22.37346],[114.23758,22.37344],[114.23755,22.37342],[114.23755,22.37342],[114.23755,22.37342],[114.23755,22.37342],[114.23752,22.3734],[114.23752,22.37339],[114.23752,22.37339],[114.23749,22.37337],[114.23749,22.37337],[114.23747,22.37336],[114.23747,22.37336],[114.23747,22.37336],[114.23746,22.37335],[114.23746,22.37334],[114.23746,22.37334],[114.23746,22.37333],[114.23746,22.37332],[114.23746,22.37331],[114.23745,22.37331],[114.23745,22.37331],[114.23744,22.3733],[114.23744,22.3733],[114.23743,22.37328],[114.23742,22.37327],[114.23742,22.37327],[114.2374,22.37325],[114.23739,22.37325],[114.23739,22.37324],[114.23738,22.37324],[114.23738,22.37324],[114.23737,22.37324],[114.23737,22.37323],[114.23736,22.37323],[114.23736,22.37323],[114.23735,22.37323],[114.23734,22.37323],[114.23734,22.37323],[114.23733,22.37323],[114.23731,22.37324],[114.23731,22.37324],[114.2373,22.37324],[114.2373,22.37324],[114.2373,22.37324],[114.23729,22.37324],[114.23729,22.37325],[114.23727,22.37326],[114.23727,22.37326],[114.23727,22.37327],[114.23725,22.37328],[114.23725,22.37329],[114.23725,22.37329],[114.23725,22.37329],[114.23722,22.37329],[114.23722,22.37329],[114.23722,22.37329],[114.23722,22.37329],[114.23721,22.37328],[114.23721,22.37328],[114.23721,22.37328],[114.23718,22.37327],[114.23717,22.37326],[114.23716,22.37326],[114.23715,22.37326],[114.23714,22.37325],[114.23713,22.37324],[114.23711,22.37323],[114.2371,22.37323],[114.23708,22.37321],[114.23707,22.3732],[114.23707,22.3732],[114.23704,22.37317],[114.23703,22.37316],[114.23702,22.37315],[114.237,22.37314],[114.23699,22.37313],[114.23698,22.37312],[114.23698,22.37312],[114.23697,22.37312],[114.23696,22.37311],[114.23696,22.37311],[114.23695,22.37311],[114.23695,22.37311],[114.23694,22.3731],[114.23693,22.3731],[114.23693,22.3731],[114.23689,22.37309],[114.23689,22.37309],[114.23688,22.37308],[114.23685,22.37307],[114.23684,22.37307],[114.23684,22.37307],[114.23683,22.37306],[114.23683,22.37306],[114.23683,22.37305],[114.23682,22.37305],[114.23681,22.37303],[114.23681,22.37303],[114.23681,22.37303],[114.23681,22.37303],[114.2368,22.37302],[114.2368,22.37302],[114.23679,22.37301],[114.23679,22.37301],[114.23678,22.37301],[114.23677,22.37301],[114.23675,22.373],[114.23674,22.373],[114.23674,22.37299],[114.23673,22.37299],[114.2367,22.37298],[114.23669,22.37297],[114.23666,22.37297],[114.23665,22.37296],[114.23664,22.37296],[114.23664,22.37296],[114.2366,22.37293],[114.2366,22.37293],[114.2366,22.37293],[114.23659,22.37293],[114.23657,22.37292],[114.23655,22.37292],[114.23654,22.37291],[114.23653,22.37291],[114.23652,22.37291],[114.23651,22.3729],[114.23649,22.37289],[114.23649,22.37289],[114.23646,22.37288],[114.23641,22.37286],[114.23639,22.37285],[114.23639,22.37285],[114.23637,22.37284],[114.23635,22.37283],[114.23634,22.37282],[114.23631,22.37281],[114.23631,22.37281],[114.23629,22.3728],[114.23625,22.37278],[114.23625,22.37278],[114.23622,22.37277],[114.23621,22.37277],[114.23619,22.37276],[114.23616,22.37275],[114.23616,22.37275],[114.23613,22.37274],[114.23612,22.37274],[114.23612,22.37273],[114.23612,22.37273],[114.23611,22.37273],[114.23611,22.37273],[114.2361,22.37272],[114.23609,22.37272],[114.23608,22.37271],[114.23608,22.37271],[114.23608,22.37271],[114.23605,22.3727],[114.23602,22.37269],[114.23601,22.37268],[114.236,22.37267],[114.23597,22.37266],[114.23597,22.37265],[114.23596,22.37264],[114.23595,22.37263],[114.23595,22.37263],[114.23595,22.37263],[114.23595,22.37263],[114.23594,22.37263],[114.23594,22.37262],[114.23592,22.37261],[114.23591,22.3726],[114.2359,22.37259],[114.23588,22.37257],[114.23588,22.37257],[114.23587,22.37256],[114.23531,22.37227],[114.23464,22.37187],[114.23463,22.37186],[114.23463,22.37184],[114.23462,22.37184],[114.23461,22.3718],[114.2346,22.3718],[114.2346,22.37179],[114.23458,22.37176],[114.23458,22.37176],[114.23458,22.37176],[114.23458,22.37175],[114.23457,22.37174],[114.23457,22.37174],[114.23456,22.37173],[114.23454,22.37172],[114.23453,22.37172],[114.23453,22.37171],[114.23452,22.37171],[114.23452,22.37171],[114.23452,22.37171],[114.23451,22.37171],[114.23448,22.3717],[114.23446,22.3717],[114.23446,22.3717],[114.23445,22.3717],[114.23444,22.3717],[114.23444,22.37171],[114.23443,22.37171],[114.23443,22.37171],[114.23442,22.37172],[114.23441,22.37172],[114.23441,22.37172],[114.2344,22.37172],[114.2344,22.37172],[114.23438,22.37173],[114.23437,22.37173],[114.23435,22.37173],[114.23434,22.37173],[114.23433,22.37173],[114.23433,22.37173],[114.23431,22.37174],[114.23429,22.37174],[114.23429,22.37174],[114.23425,22.37174],[114.23424,22.37174],[114.23423,22.37173],[114.23421,22.37173],[114.2342,22.37173],[114.2342,22.37173],[114.23419,22.37173],[114.23418,22.37173],[114.23418,22.37172],[114.23417,22.37172],[114.23414,22.37171],[114.23414,22.3717],[114.23414,22.3717],[114.23414,22.3717],[114.23413,22.3717],[114.23413,22.37169],[114.23412,22.37169],[114.23412,22.37168],[114.23412,22.37168],[114.23411,22.37167],[114.23411,22.37166],[114.23411,22.37166],[114.23411,22.37165],[114.2341,22.37163],[114.23409,22.37162],[114.23409,22.37162],[114.23408,22.37161],[114.23407,22.37159],[114.23407,22.37159],[114.23406,22.37156],[114.23405,22.37156],[114.23405,22.37156],[114.23401,22.37154],[114.234,22.37153],[114.23399,22.37153],[114.23398,22.37153],[114.23397,22.37152],[114.23396,22.37152],[114.23396,22.37152],[114.23396,22.37152],[114.23395,22.37152],[114.23395,22.37151],[114.23394,22.37151],[114.23389,22.37148],[114.23389,22.37147],[114.23389,22.37147],[114.23387,22.37146],[114.23385,22.37145],[114.23385,22.37145],[114.23384,22.37145],[114.23383,22.37145],[114.23383,22.37144],[114.2338,22.37143],[114.2338,22.37143],[114.23379,22.37143],[114.23377,22.37142],[114.23375,22.37141],[114.23374,22.3714],[114.23373,22.3714],[114.23373,22.3714],[114.23373,22.3714],[114.23372,22.37139],[114.23371,22.37139],[114.2337,22.37139],[114.23369,22.37139],[114.23369,22.37139],[114.23368,22.37139],[114.23367,22.37138],[114.23366,22.37138],[114.23365,22.37137],[114.23365,22.37137],[114.23362,22.37136],[114.23361,22.37135],[114.23359,22.37134],[114.23357,22.37133],[114.23356,22.37132],[114.23355,22.37132],[114.23353,22.37131],[114.23352,22.3713],[114.23352,22.3713],[114.2335,22.37129],[114.23348,22.37129],[114.23346,22.37128],[114.23344,22.37128],[114.23343,22.37129],[114.23343,22.37129],[114.23341,22.37129],[114.2334,22.37129],[114.2334,22.37129],[114.2334,22.37129],[114.23338,22.37129],[114.23337,22.37129],[114.23336,22.37129],[114.23334,22.37129],[114.23334,22.37129],[114.23333,22.37129],[114.23331,22.37128],[114.2333,22.37128],[114.23329,22.37127],[114.23328,22.37127],[114.23327,22.37127],[114.23324,22.37127],[114.23323,22.37127],[114.23323,22.37127],[114.23322,22.37127],[114.23321,22.37127],[114.2332,22.37126],[114.23318,22.37126],[114.23316,22.37125],[114.23316,22.37125],[114.23312,22.37123],[114.23309,22.37123],[114.23307,22.37122],[114.23305,22.37121],[114.23305,22.37121],[114.23305,22.37121],[114.23305,22.37121],[114.23304,22.3712],[114.23302,22.3712],[114.23302,22.37119],[114.23301,22.37118],[114.23299,22.37117],[114.23298,22.37116],[114.23297,22.37116],[114.23296,22.37115],[114.23296,22.37115],[114.23294,22.37114],[114.23293,22.37113],[114.23291,22.37113],[114.23289,22.37112],[114.23289,22.37112],[114.23288,22.37112],[114.23287,22.37111],[114.23287,22.37111],[114.23285,22.3711],[114.23281,22.3711],[114.2328,22.37109],[114.23279,22.37109],[114.23277,22.37109],[114.23276,22.37109],[114.23273,22.37108],[114.23273,22.37108],[114.23273,22.37108],[114.23272,22.37108],[114.23271,22.37107],[114.23267,22.37106],[114.23265,22.37105],[114.23262,22.37104],[114.23261,22.37104],[114.23261,22.37104],[114.2326,22.37104],[114.23258,22.37104],[114.23257,22.37104],[114.23255,22.37103],[114.23255,22.37103],[114.23253,22.37103],[114.23252,22.37103],[114.23252,22.37103],[114.2325,22.37101],[114.2325,22.37101],[114.23249,22.37101],[114.23247,22.37099],[114.23245,22.37098],[114.23242,22.37096],[114.23241,22.37096],[114.2324,22.37095],[114.23238,22.37094],[114.23238,22.37094],[114.23236,22.37093],[114.23233,22.37091],[114.23231,22.3709],[114.2323,22.3709],[114.2323,22.3709],[114.23228,22.3709],[114.23224,22.37089],[114.23223,22.37089],[114.23221,22.37088],[114.2322,22.37088],[114.2322,22.37088],[114.2322,22.37088],[114.23219,22.37087],[114.23217,22.37087],[114.23217,22.37087],[114.23216,22.37087],[114.23215,22.37087],[114.23213,22.37086],[114.23212,22.37086],[114.23211,22.37086],[114.23211,22.37086],[114.2321,22.37086],[114.2321,22.37086],[114.23206,22.37085],[114.23205,22.37085],[114.23204,22.37085],[114.232,22.37084],[114.23199,22.37084],[114.23197,22.37084],[114.23193,22.37084],[114.2319,22.37083],[114.2319,22.37083],[114.23189,22.37083],[114.23188,22.37082],[114.23188,22.37082],[114.23187,22.37082],[114.23184,22.37082],[114.23183,22.37081],[114.2318,22.37081],[114.23177,22.3708],[114.23173,22.3708],[114.23171,22.37079],[114.23171,22.37079],[114.23171,22.37079],[114.23169,22.37079],[114.23167,22.3708],[114.23166,22.3708],[114.23164,22.3708],[114.23162,22.3708],[114.23161,22.3708],[114.23161,22.3708],[114.23158,22.37081],[114.23158,22.37081],[114.23157,22.37081],[114.23156,22.37081],[114.23154,22.37081],[114.23152,22.37082],[114.23151,22.37082],[114.2315,22.37082],[114.2315,22.37082],[114.23149,22.37082],[114.23147,22.37083],[114.23145,22.37083],[114.23144,22.37084],[114.23143,22.37084],[114.23141,22.37084],[114.2314,22.37084],[114.23137,22.37085],[114.23135,22.37084],[114.23135,22.37084],[114.23135,22.37084],[114.23132,22.37084],[114.23132,22.37084],[114.23131,22.37084],[114.2313,22.37084],[114.23128,22.37084],[114.23128,22.37084],[114.23126,22.37084],[114.23124,22.37085],[114.23122,22.37085],[114.23121,22.37085],[114.23119,22.37085],[114.23116,22.37085],[114.23112,22.37085],[114.23111,22.37085],[114.23109,22.37086],[114.23108,22.37086],[114.23108,22.37086],[114.23105,22.37086],[114.23105,22.37086],[114.23104,22.37086],[114.23103,22.37086],[114.231,22.37086],[114.23099,22.37086],[114.23098,22.37086],[114.23098,22.37086],[114.23097,22.37086],[114.23097,22.37086],[114.23095,22.37086],[114.23094,22.37086],[114.23093,22.37086],[114.23091,22.37086],[114.23087,22.37086],[114.23086,22.37085],[114.23085,22.37085],[114.23085,22.37085],[114.23085,22.37085],[114.23079,22.37085],[114.23075,22.37084],[114.23072,22.37084],[114.23071,22.37084],[114.23069,22.37084],[114.23067,22.37084],[114.23066,22.37084],[114.23065,22.37083],[114.23064,22.37083],[114.23064,22.37083],[114.23064,22.37083],[114.23062,22.37083],[114.23062,22.37083],[114.23059,22.37083],[114.23057,22.37083],[114.23055,22.37082],[114.23054,22.37082],[114.23053,22.37082],[114.23052,22.37082],[114.23051,22.37082],[114.23049,22.37082],[114.23049,22.37082],[114.23049,22.37082],[114.23048,22.37083],[114.23046,22.37083],[114.23045,22.37083],[114.23041,22.37083],[114.23038,22.37083],[114.23037,22.37083],[114.23037,22.37083],[114.23035,22.37083],[114.23033,22.37083],[114.23032,22.37083],[114.23031,22.37083],[114.23029,22.37084],[114.23028,22.37084],[114.23028,22.37084],[114.23028,22.37084],[114.23028,22.37084],[114.23026,22.37083],[114.23025,22.37083],[114.23024,22.37083],[114.23024,22.37083],[114.23023,22.37083],[114.23023,22.37083],[114.23023,22.37083],[114.2302,22.37083],[114.23019,22.37083],[114.23017,22.37083],[114.23017,22.37084],[114.23016,22.37084],[114.23014,22.37084],[114.23014,22.37084],[114.23014,22.37084],[114.23012,22.37084],[114.2301,22.37085],[114.23009,22.37085],[114.23009,22.37085],[114.23008,22.37085],[114.23008,22.37085],[114.23008,22.37085],[114.23007,22.37085],[114.23007,22.37085],[114.23007,22.37085],[114.23007,22.37085],[114.23004,22.37086],[114.23003,22.37086],[114.23002,22.37086],[114.22998,22.37087],[114.22997,22.37087],[114.22997,22.37087],[114.22996,22.37087],[114.22996,22.37087],[114.22996,22.37087],[114.22994,22.37088],[114.22993,22.37088],[114.22993,22.37088],[114.22993,22.37089],[114.22992,22.3709],[114.2299,22.37091],[114.2299,22.37092],[114.2299,22.37092],[114.2299,22.37092],[114.2299,22.37092],[114.22989,22.37093],[114.22988,22.37093],[114.22988,22.37093],[114.22987,22.37094],[114.22986,22.37094],[114.22986,22.37094],[114.22986,22.37094],[114.22984,22.37095],[114.22978,22.37096],[114.22977,22.37096],[114.22975,22.37096],[114.22975,22.37096],[114.22975,22.37095],[114.22973,22.37095],[114.22971,22.37094],[114.22969,22.37094],[114.22968,22.37094],[114.22968,22.37094],[114.22968,22.37094],[114.22965,22.37093],[114.22964,22.37092],[114.22963,22.37092],[114.22961,22.37092],[114.22961,22.37092],[114.2296,22.37091],[114.22959,22.37091],[114.22958,22.37091],[114.22956,22.3709],[114.22955,22.37089],[114.22955,22.37089],[114.22955,22.37089],[114.22955,22.37089],[114.22954,22.37089],[114.22954,22.37088],[114.22953,22.37088],[114.22953,22.37088],[114.22952,22.37088],[114.22952,22.37088],[114.22952,22.37088],[114.22951,22.37088],[114.2295,22.37087],[114.22949,22.37087],[114.22948,22.37087],[114.22947,22.37086],[114.22946,22.37085],[114.22945,22.37085],[114.22945,22.37085],[114.22945,22.37084],[114.22944,22.37084],[114.22944,22.37083],[114.22944,22.37083],[114.22943,22.37083],[114.22942,22.37083],[114.2294,22.37082],[114.2294,22.37082],[114.2294,22.37082],[114.22939,22.37082],[114.22939,22.37082],[114.22939,22.37082],[114.22939,22.37082],[114.22938,22.37083],[114.22938,22.37083],[114.22937,22.37083],[114.22936,22.37085],[114.22934,22.37086],[114.22932,22.37087],[114.22927,22.37088],[114.22926,22.37089],[114.22925,22.37089],[114.22925,22.37089],[114.22924,22.37089],[114.22923,22.37089],[114.22923,22.37089],[114.22923,22.37089],[114.22922,22.37088],[114.22921,22.37088],[114.22921,22.37087],[114.2292,22.37086],[114.2292,22.37086],[114.22918,22.37084],[114.22918,22.37084],[114.22918,22.37083],[114.22917,22.37083],[114.22917,22.37083],[114.22916,22.37082],[114.22915,22.37082],[114.22915,22.37082],[114.22914,22.37081],[114.22913,22.37081],[114.22913,22.37081],[114.22912,22.3708],[114.22912,22.3708],[114.22911,22.3708],[114.2291,22.3708],[114.22909,22.37079],[114.22908,22.37079],[114.22908,22.37079],[114.22906,22.37079],[114.22906,22.37079],[114.22904,22.37079],[114.22903,22.37079],[114.22902,22.37079],[114.22902,22.37079],[114.22902,22.37079],[114.229,22.37079],[114.22899,22.37079],[114.22897,22.37079],[114.22896,22.37079],[114.22893,22.37079],[114.22891,22.37079],[114.22889,22.37079],[114.22889,22.37079],[114.22889,22.37079],[114.22888,22.3708],[114.22888,22.3708],[114.22888,22.3708],[114.22886,22.3708],[114.22886,22.3708],[114.22886,22.37081],[114.22886,22.37081],[114.22884,22.37081],[114.22884,22.37081],[114.22883,22.37081],[114.22882,22.3708],[114.22882,22.3708],[114.22882,22.3708],[114.2288,22.3708],[114.22879,22.37079],[114.22879,22.37079],[114.22872,22.37078],[114.2287,22.37078],[114.2287,22.37078],[114.22869,22.37078],[114.22868,22.37077],[114.22868,22.37077],[114.22867,22.37076],[114.22865,22.37075],[114.22864,22.37075],[114.22862,22.37073],[114.2286,22.37071],[114.2286,22.37071],[114.2286,22.37071],[114.2286,22.3707],[114.22859,22.3707],[114.22859,22.37069],[114.22858,22.37069],[114.22858,22.37069],[114.22857,22.37069],[114.22857,22.37069],[114.22857,22.37069],[114.22856,22.37068],[114.22855,22.37068],[114.22854,22.37068],[114.22853,22.37068],[114.22851,22.37067],[114.22849,22.37067],[114.22849,22.37067],[114.22848,22.37067],[114.22846,22.37067],[114.22846,22.37067],[114.22846,22.37067],[114.22846,22.37067],[114.22845,22.37067],[114.22844,22.37067],[114.22842,22.37067],[114.22842,22.37067],[114.22842,22.37067],[114.2284,22.37067],[114.22839,22.37067],[114.22839,22.37067],[114.22838,22.37067],[114.22838,22.37067],[114.22838,22.37067],[114.22837,22.37067],[114.22837,22.37067],[114.22837,22.37067],[114.22835,22.37068],[114.22833,22.37069],[114.22832,22.3707],[114.22832,22.3707],[114.22832,22.3707],[114.22829,22.37072],[114.22828,22.37073],[114.22828,22.37073],[114.22826,22.37074],[114.22825,22.37075],[114.22825,22.37075],[114.22825,22.37075],[114.22824,22.37075],[114.22824,22.37075],[114.22822,22.37076],[114.22822,22.37076],[114.22822,22.37076],[114.22821,22.37076],[114.22819,22.37077],[114.22817,22.37077],[114.22817,22.37077],[114.22814,22.37078],[114.22811,22.37079],[114.22809,22.37079],[114.22809,22.37079],[114.22807,22.37079],[114.22807,22.37079],[114.22806,22.37079],[114.22806,22.37079],[114.22806,22.37079],[114.22805,22.37078],[114.22804,22.37078],[114.22804,22.37078],[114.22803,22.37078],[114.22803,22.37078],[114.22803,22.37078],[114.22802,22.37078],[114.22802,22.37077],[114.22802,22.37077],[114.22801,22.37077],[114.22801,22.37076],[114.22801,22.37076],[114.228,22.37075],[114.22799,22.37073],[114.22799,22.37073],[114.22798,22.37073],[114.22798,22.37072],[114.22797,22.37072],[114.22796,22.37071],[114.22795,22.37071],[114.22794,22.3707],[114.22794,22.3707],[114.22794,22.3707],[114.22793,22.37069],[114.22791,22.37067],[114.2279,22.37065],[114.22789,22.37064],[114.22787,22.37063],[114.22787,22.37063],[114.22786,22.37062],[114.22785,22.37061],[114.22784,22.3706],[114.22782,22.3706],[114.22782,22.3706],[114.22782,22.3706],[114.22781,22.37059],[114.22779,22.37059],[114.22778,22.37059],[114.22778,22.37059],[114.22777,22.37059],[114.22777,22.37059],[114.22774,22.37059],[114.22772,22.37059],[114.22772,22.37059],[114.22771,22.37059],[114.2277,22.37059],[114.2277,22.37059],[114.22768,22.3706],[114.22768,22.3706],[114.22767,22.3706],[114.22767,22.3706],[114.22767,22.3706],[114.22766,22.3706],[114.22765,22.37061],[114.22764,22.37061],[114.22763,22.37061],[114.22763,22.37062],[114.22762,22.37062],[114.22762,22.37062],[114.22761,22.37062],[114.2276,22.37062],[114.22758,22.37063],[114.22757,22.37063],[114.22756,22.37064],[114.22756,22.37064],[114.22756,22.37064],[114.22755,22.37064],[114.22753,22.37065],[114.2275,22.37066],[114.22748,22.37067],[114.22748,22.37067],[114.22747,22.37067],[114.22747,22.37067],[114.22747,22.37067],[114.22746,22.37068],[114.22745,22.37068],[114.22744,22.37068],[114.22743,22.37069],[114.22741,22.3707],[114.22739,22.3707],[114.22738,22.3707],[114.22738,22.3707],[114.22736,22.3707],[114.22736,22.3707],[114.22736,22.3707],[114.22736,22.3707],[114.22735,22.3707],[114.22734,22.3707],[114.22732,22.3707],[114.22732,22.3707],[114.22731,22.3707],[114.2273,22.3707],[114.2273,22.3707],[114.22729,22.3707],[114.22728,22.3707],[114.22727,22.3707],[114.22726,22.37069],[114.22725,22.37069],[114.22725,22.37069],[114.22725,22.37069],[114.22725,22.37069],[114.22724,22.37069],[114.22724,22.37069],[114.22723,22.37069],[114.22723,22.37069],[114.22723,22.37069],[114.22722,22.37069],[114.2272,22.3707],[114.2272,22.3707],[114.22719,22.3707],[114.22718,22.3707],[114.22718,22.3707],[114.22718,22.3707],[114.22718,22.3707],[114.22718,22.37071],[114.22717,22.37071],[114.22717,22.37071],[114.22716,22.37071],[114.22715,22.37072],[114.22714,22.37073],[114.22713,22.37073],[114.22712,22.37073],[114.22712,22.37073],[114.22711,22.37074],[114.2271,22.37074],[114.2271,22.37074],[114.2271,22.37074],[114.22709,22.37073],[114.22709,22.37073],[114.22707,22.37073],[114.22707,22.37073],[114.22705,22.37072],[114.22702,22.37072],[114.22701,22.37072],[114.227,22.37071],[114.227,22.37071],[114.22699,22.37071],[114.22698,22.3707],[114.22697,22.37069],[114.22692,22.37061],[114.22687,22.37055],[114.22687,22.37055],[114.22683,22.37051],[114.22637,22.37028],[114.22626,22.37023],[114.22593,22.3699],[114.22571,22.36968],[114.22566,22.36952],[114.22566,22.3695],[114.22544,22.36881],[114.22537,22.36768],[114.22546,22.3664],[114.22545,22.36639],[114.22544,22.36635],[114.22545,22.36628],[114.22544,22.36626],[114.22544,22.36625],[114.22541,22.36618],[114.22541,22.36618],[114.22538,22.3661],[114.22535,22.36601],[114.22531,22.36595],[114.22531,22.36595],[114.22531,22.36594],[114.2253,22.36594],[114.2253,22.36593],[114.22529,22.36592],[114.22529,22.36592],[114.22529,22.36592],[114.22529,22.3659],[114.22529,22.3659],[114.22529,22.36589],[114.22529,22.36588],[114.22528,22.36585],[114.22528,22.36583],[114.22528,22.36582],[114.22528,22.36582],[114.22527,22.36582],[114.22527,22.3658],[114.22527,22.36577],[114.22527,22.36574],[114.22527,22.36572],[114.22525,22.36568],[114.22525,22.36567],[114.22525,22.36567],[114.22524,22.36567],[114.22524,22.36566],[114.22523,22.36564],[114.22523,22.36564],[114.22523,22.36564],[114.22523,22.36563],[114.22523,22.36561],[114.22522,22.36558],[114.22521,22.36556],[114.22521,22.36556],[114.22521,22.36553],[114.22521,22.36552],[114.22521,22.36552],[114.22521,22.36551],[114.22521,22.3655],[114.22521,22.3655],[114.22521,22.36549],[114.2252,22.36547],[114.2252,22.36545],[114.2252,22.36543],[114.22519,22.36542],[114.22519,22.36541],[114.22519,22.36539],[114.22519,22.36539],[114.22518,22.36536],[114.22518,22.36536],[114.22518,22.36535],[114.22518,22.36534],[114.22516,22.3653],[114.22516,22.3653],[114.22516,22.36529],[114.22516,22.36527],[114.22516,22.36521],[114.22516,22.3652],[114.22516,22.36519],[114.22516,22.36518],[114.22516,22.36517],[114.22516,22.36515],[114.22516,22.36514],[114.22516,22.36514],[114.22516,22.36514],[114.22516,22.36514],[114.22516,22.36514],[114.22515,22.36513],[114.22515,22.36512],[114.22515,22.36512],[114.22515,22.36512],[114.22515,22.36511],[114.22515,22.36511],[114.22515,22.36511],[114.22514,22.3651],[114.22514,22.36509],[114.22513,22.36509],[114.22513,22.36508],[114.2251,22.36504],[114.22509,22.36503],[114.22509,22.36503],[114.22508,22.36502],[114.22507,22.365],[114.22507,22.365],[114.22506,22.36499],[114.22505,22.36498],[114.22505,22.36497],[114.22505,22.36497],[114.22505,22.36497],[114.22504,22.36496],[114.22504,22.36495],[114.22503,22.36495],[114.22499,22.3649],[114.22499,22.36489],[114.22499,22.36489],[114.22497,22.36487],[114.22497,22.36487],[114.22496,22.36486],[114.22495,22.36486],[114.22495,22.36486],[114.22495,22.36485],[114.22495,22.36485],[114.22491,22.36483],[114.22487,22.3648],[114.22486,22.36479],[114.22486,22.36479],[114.22486,22.36479],[114.22485,22.36478],[114.22485,22.36478],[114.22485,22.36478],[114.22485,22.36478],[114.22485,22.36478],[114.22484,22.36477],[114.22482,22.36475],[114.22482,22.36474],[114.22482,22.36474],[114.22481,22.36473],[114.22481,22.36473],[114.2248,22.36472],[114.2248,22.36472],[114.2248,22.36472],[114.22478,22.36471],[114.22478,22.3647],[114.22477,22.3647],[114.22477,22.36469],[114.22476,22.36468],[114.22475,22.36468],[114.22475,22.36468],[114.22474,22.36467],[114.22474,22.36467],[114.22473,22.36466],[114.22473,22.36466],[114.22472,22.36465],[114.22472,22.36465],[114.22472,22.36465],[114.22471,22.36464],[114.22469,22.36463],[114.22469,22.36463],[114.22469,22.36463],[114.22468,22.36462],[114.22465,22.36459],[114.22463,22.36458],[114.22462,22.36457],[114.22461,22.36456],[114.22461,22.36456],[114.2246,22.36455],[114.22456,22.36452],[114.22455,22.36451],[114.22455,22.36451],[114.22453,22.3645],[114.22452,22.3645],[114.22452,22.36449],[114.2245,22.36448],[114.22449,22.36448],[114.22445,22.36446],[114.22444,22.36446],[114.22442,22.36444],[114.22439,22.36442],[114.22436,22.3644],[114.22435,22.3644],[114.22435,22.36439],[114.22435,22.36439],[114.22433,22.36437],[114.22433,22.36436],[114.22432,22.36435],[114.22431,22.36433],[114.2243,22.36433],[114.2243,22.36432],[114.2243,22.36432],[114.2243,22.36432],[114.22429,22.36431],[114.22429,22.3643],[114.22428,22.36429],[114.22428,22.36429],[114.22428,22.36429],[114.22428,22.36427],[114.22427,22.36426],[114.22426,22.36424],[114.22425,22.36424],[114.22425,22.36424],[114.22425,22.36424],[114.22425,22.36424],[114.22424,22.36423],[114.22424,22.36423],[114.22424,22.36423],[114.22423,22.36422],[114.22422,22.36422],[114.22421,22.36421],[114.2242,22.36421],[114.22419,22.36421],[114.22419,22.3642],[114.22417,22.3642],[114.22415,22.3642],[114.22414,22.3642],[114.22414,22.3642],[114.22413,22.3642],[114.22413,22.3642],[114.22412,22.3642],[114.22412,22.3642],[114.2241,22.36419],[114.2241,22.36418],[114.2241,22.36418],[114.2241,22.36418],[114.22409,22.36417],[114.22409,22.36417],[114.22409,22.36417],[114.22408,22.36417],[114.22408,22.36417],[114.22408,22.36417],[114.22408,22.36417],[114.22407,22.36417],[114.22407,22.36417],[114.22406,22.36417],[114.22405,22.36417],[114.22405,22.36417],[114.22403,22.36417],[114.22401,22.36417],[114.22399,22.36417],[114.22399,22.36417],[114.22398,22.36417],[114.22398,22.36417],[114.22396,22.36418],[114.22396,22.36418],[114.22395,22.36418],[114.22394,22.36419],[114.22393,22.36419],[114.22393,22.36419],[114.22392,22.36419],[114.22392,22.36419],[114.22391,22.36419],[114.2239,22.36418],[114.22389,22.36418],[114.22388,22.36417],[114.22388,22.36417],[114.22387,22.36417],[114.22387,22.36417],[114.22385,22.36417],[114.22384,22.36417],[114.22384,22.36417],[114.22383,22.36418],[114.22382,22.36417],[114.22382,22.36417],[114.22381,22.36417],[114.2238,22.36417],[114.2238,22.36417],[114.22379,22.36416],[114.22379,22.36416],[114.22379,22.36416],[114.22379,22.36415],[114.22378,22.36414],[114.22378,22.36414],[114.22378,22.36414],[114.22378,22.36414],[114.22377,22.36414],[114.22377,22.36413],[114.22376,22.36412],[114.22375,22.36412],[114.22375,22.36412],[114.22375,22.36412],[114.22374,22.36412],[114.22373,22.36412],[114.22372,22.36412],[114.22371,22.36411],[114.22371,22.36411],[114.22371,22.36411],[114.2237,22.36409],[114.2237,22.36409],[114.2237,22.36409],[114.22369,22.36408],[114.22368,22.36407],[114.22366,22.36406],[114.22363,22.36405],[114.22361,22.36405],[114.22361,22.36405],[114.22361,22.36404],[114.2236,22.36404],[114.22359,22.36403],[114.22359,22.36403],[114.22359,22.36403],[114.22359,22.36403],[114.2236,22.36402],[114.22361,22.364],[114.22362,22.36399],[114.22362,22.36399],[114.22362,22.36399],[114.22363,22.36398],[114.22363,22.36398],[114.22363,22.36398],[114.22365,22.36397],[114.22365,22.36396],[114.22365,22.36396],[114.22365,22.36396],[114.22365,22.36396],[114.22365,22.36394],[114.22365,22.36394],[114.22366,22.36394],[114.22366,22.36393],[114.22366,22.36393],[114.22366,22.36393],[114.22367,22.36392],[114.22368,22.36392],[114.22368,22.36392],[114.22369,22.36391],[114.22372,22.3639],[114.22373,22.3639],[114.22373,22.36389],[114.22373,22.36389],[114.22374,22.36388],[114.22374,22.36388],[114.22374,22.36387],[114.22375,22.36386],[114.22375,22.36385],[114.22375,22.36385],[114.22375,22.36384],[114.22375,22.36383],[114.22375,22.36382],[114.22375,22.36382],[114.22375,22.36382],[114.22375,22.36381],[114.22374,22.3638],[114.22374,22.3638],[114.22374,22.3638],[114.22374,22.36379],[114.22374,22.36378],[114.22374,22.36378],[114.22374,22.36378],[114.22374,22.36377],[114.22375,22.36375],[114.22375,22.36374],[114.22375,22.36373],[114.22375,22.36373],[114.22375,22.36373],[114.22375,22.36373],[114.22375,22.36372],[114.22375,22.36371],[114.22375,22.36371],[114.22375,22.3637],[114.22375,22.3637],[114.22375,22.3637],[114.22375,22.3637],[114.22375,22.36369],[114.22376,22.36369],[114.22376,22.36368],[114.22376,22.36368],[114.22376,22.36368],[114.22379,22.36367],[114.22379,22.36367],[114.22379,22.36367],[114.22379,22.36367],[114.2238,22.36366],[114.2238,22.36365],[114.2238,22.36364],[114.22381,22.36363],[114.22381,22.36363],[114.22381,22.36361],[114.22381,22.3636],[114.22382,22.36357],[114.22382,22.36357],[114.22382,22.36356],[114.22382,22.36356],[114.22382,22.36356],[114.22382,22.36354],[114.22383,22.36352],[114.22383,22.36351],[114.22383,22.3635],[114.22383,22.3635],[114.22383,22.36349],[114.22382,22.36349],[114.22382,22.36348],[114.22382,22.36348],[114.22382,22.36347],[114.22382,22.36346],[114.22381,22.36345],[114.22381,22.36345],[114.22381,22.36344],[114.22381,22.36344],[114.22381,22.36344],[114.22381,22.36343],[114.22381,22.36342],[114.22381,22.36341],[114.22381,22.3634],[114.22381,22.3634],[114.22381,22.36339],[114.22381,22.36339],[114.22381,22.36338],[114.22381,22.36337],[114.22381,22.36335],[114.2238,22.36331],[114.22379,22.36329],[114.22378,22.36328],[114.22378,22.36326],[114.22377,22.36324],[114.22377,22.36322],[114.22377,22.36321],[114.22377,22.36321],[114.22377,22.36319],[114.22377,22.36318],[114.22377,22.36318],[114.22376,22.36317],[114.22375,22.36315],[114.22375,22.36315],[114.22375,22.36315],[114.22375,22.36314],[114.22375,22.36313],[114.22374,22.36312],[114.22375,22.3631],[114.22375,22.36309],[114.22375,22.36309],[114.22375,22.36308],[114.22376,22.36305],[114.22376,22.36304],[114.22376,22.36302],[114.22376,22.36301],[114.22376,22.363],[114.22376,22.36299],[114.22376,22.36298],[114.22376,22.36298],[114.22376,22.36298],[114.22376,22.36298],[114.22376,22.36296],[114.22377,22.36295],[114.22377,22.36295],[114.22377,22.36294],[114.22377,22.36292],[114.22378,22.36291],[114.22378,22.3629],[114.22379,22.36289],[114.22379,22.36287],[114.22379,22.36287],[114.22379,22.36287],[114.2238,22.36287],[114.2238,22.36284],[114.2238,22.36284],[114.22381,22.36281],[114.22382,22.3628],[114.22382,22.3628],[114.22382,22.3628],[114.22382,22.36279],[114.22382,22.36277],[114.22382,22.36276],[114.22383,22.36272],[114.22383,22.36271],[114.22383,22.3627],[114.22383,22.36268],[114.22383,22.36267],[114.22383,22.36267],[114.22383,22.36267],[114.22383,22.36267],[114.22383,22.36261],[114.22383,22.3626],[114.22383,22.3626],[114.22383,22.3626],[114.22383,22.3626],[114.22382,22.36258],[114.22382,22.36257],[114.22382,22.36257],[114.22382,22.36256],[114.22382,22.36253],[114.22382,22.36253],[114.22381,22.36252],[114.22381,22.36251],[114.22381,22.36251],[114.22381,22.36251],[114.22381,22.3625],[114.2238,22.36249],[114.2238,22.36249],[114.2238,22.36247],[114.22379,22.36244],[114.22379,22.36243],[114.22379,22.36242],[114.22379,22.36241],[114.22379,22.3624],[114.22379,22.3624],[114.22378,22.36238],[114.22378,22.36235],[114.22378,22.36233],[114.22378,22.36233],[114.22378,22.36232],[114.22378,22.3623],[114.22378,22.3623],[114.22377,22.36229],[114.22378,22.36228],[114.22378,22.36228],[114.22378,22.36226],[114.22378,22.36225],[114.22378,22.36225],[114.22377,22.36223],[114.22377,22.36223],[114.22377,22.36222],[114.22377,22.36222],[114.22377,22.36221],[114.22377,22.3622],[114.22377,22.36218],[114.22377,22.36217],[114.22377,22.36216],[114.22377,22.36215],[114.22377,22.36215],[114.22377,22.36215],[114.22377,22.36215],[114.22378,22.36214],[114.22378,22.36214],[114.22378,22.36213],[114.22379,22.36211],[114.2238,22.36211],[114.2238,22.36211],[114.2238,22.3621],[114.2238,22.36209],[114.2238,22.36209],[114.2238,22.36208],[114.22381,22.36205],[114.22381,22.36204],[114.22381,22.36204],[114.22381,22.36204],[114.22381,22.36202],[114.2238,22.36201],[114.2238,22.36201],[114.2238,22.362],[114.2238,22.36198],[114.22381,22.36196],[114.22381,22.36196],[114.22381,22.36194],[114.22382,22.36192],[114.22382,22.36191],[114.22383,22.36189],[114.22383,22.36188],[114.22383,22.36187],[114.22383,22.36186],[114.22383,22.36184],[114.22383,22.36183],[114.22383,22.36183],[114.22383,22.36182],[114.22382,22.36182],[114.22382,22.3618],[114.22382,22.3618],[114.22382,22.36179],[114.22382,22.36178],[114.22382,22.36177],[114.22383,22.36177],[114.22383,22.36174],[114.22383,22.36172],[114.22383,22.36169],[114.22383,22.36169],[114.22384,22.36168],[114.22383,22.36165],[114.22383,22.36164],[114.22383,22.36163],[114.22384,22.36162],[114.22384,22.36159],[114.22384,22.36159],[114.22383,22.36158],[114.22383,22.36158],[114.22383,22.36157],[114.22382,22.36157],[114.22382,22.36156],[114.22382,22.36156],[114.22381,22.36155],[114.22381,22.36155],[114.22381,22.36155],[114.22381,22.36155],[114.2238,22.36154],[114.2238,22.36154],[114.2238,22.36153],[114.22381,22.3615],[114.22381,22.36149],[114.22381,22.36149],[114.22381,22.36148],[114.22381,22.36148],[114.2238,22.36147],[114.2238,22.36146],[114.22379,22.36145],[114.22379,22.36145],[114.2238,22.36145],[114.2238,22.36145],[114.2238,22.36144],[114.2238,22.36144],[114.2238,22.36143],[114.2238,22.36143],[114.2238,22.36143],[114.2238,22.36143],[114.22381,22.36142],[114.22381,22.36141],[114.22381,22.36141],[114.22382,22.3614],[114.22382,22.36139],[114.22382,22.36139],[114.22382,22.36138],[114.22382,22.36138],[114.22382,22.36138],[114.22382,22.36136],[114.22383,22.36136],[114.22382,22.36134],[114.22382,22.36134],[114.22382,22.36134],[114.22382,22.36132],[114.22382,22.36132],[114.22381,22.36131],[114.22381,22.3613],[114.22381,22.36129],[114.22381,22.36128],[114.22381,22.36127],[114.22381,22.36127],[114.22381,22.36127],[114.22381,22.36127],[114.22381,22.36126],[114.22381,22.36125],[114.22381,22.36125],[114.22381,22.36125],[114.22381,22.36125],[114.22382,22.36124],[114.22383,22.36122],[114.22383,22.36121],[114.22384,22.36121],[114.22384,22.36121],[114.22384,22.36121],[114.22384,22.3612],[114.22384,22.3612],[114.22384,22.3612],[114.22385,22.36119],[114.22385,22.36118],[114.22386,22.36118],[114.22386,22.36118],[114.22386,22.36117],[114.22387,22.36116],[114.22387,22.36116],[114.22387,22.36115],[114.22387,22.36114],[114.22387,22.36113],[114.22387,22.36113],[114.22387,22.36112],[114.22387,22.3611],[114.22388,22.3611],[114.22389,22.36107],[114.22389,22.36107],[114.22391,22.36105],[114.22391,22.36104],[114.22391,22.36104],[114.22392,22.36104],[114.22392,22.36102],[114.22393,22.36102],[114.22393,22.36101],[114.22393,22.36101],[114.22393,22.361],[114.22393,22.36099],[114.22393,22.36099],[114.22393,22.36099],[114.22393,22.36099],[114.22393,22.36098],[114.22393,22.36097],[114.22393,22.36097],[114.22393,22.36095],[114.22393,22.36095],[114.22393,22.36094],[114.22393,22.36094],[114.22393,22.36093],[114.22393,22.36092],[114.22393,22.36091],[114.22394,22.36091],[114.22394,22.3609],[114.22394,22.3609],[114.22394,22.3609],[114.22394,22.3609],[114.22394,22.36089],[114.22394,22.36089],[114.22395,22.36088],[114.22395,22.36088],[114.22395,22.36088],[114.22395,22.36087],[114.22395,22.36085],[114.22395,22.36085],[114.22395,22.36085],[114.22395,22.36085],[114.22395,22.36084],[114.22395,22.36083],[114.22396,22.36082],[114.22396,22.36081],[114.22397,22.36081],[114.22398,22.36079],[114.22398,22.36079],[114.22398,22.36079],[114.22399,22.36078],[114.224,22.36078],[114.22401,22.36077],[114.22401,22.36077],[114.22401,22.36077],[114.22402,22.36076],[114.22403,22.36073],[114.22403,22.36073],[114.22404,22.36073],[114.22404,22.36073],[114.22404,22.36073],[114.22404,22.36072],[114.22405,22.36071],[114.22405,22.36071],[114.22405,22.36071],[114.22405,22.3607],[114.22406,22.36069],[114.22406,22.36068],[114.22407,22.36067],[114.22407,22.36067],[114.22407,22.36067],[114.22409,22.36064],[114.22409,22.36063],[114.2241,22.3606],[114.2241,22.3606],[114.22411,22.36058],[114.22411,22.36057],[114.22411,22.36056],[114.2241,22.36055],[114.2241,22.36054],[114.2241,22.36054],[114.2241,22.36053],[114.2241,22.36052],[114.2241,22.36052],[114.2241,22.36052],[114.2241,22.36052],[114.2241,22.36051],[114.2241,22.3605],[114.2241,22.36049],[114.2241,22.36049],[114.22411,22.36049],[114.22411,22.36048],[114.22411,22.36047],[114.22411,22.36047],[114.22411,22.36047],[114.22411,22.36046],[114.22411,22.36046],[114.22412,22.36045],[114.22412,22.36045],[114.22412,22.36044],[114.22413,22.36042],[114.22415,22.36036],[114.22416,22.36034],[114.22417,22.36031],[114.22417,22.36029],[114.22417,22.36029],[114.22417,22.36028],[114.22418,22.36027],[114.22418,22.36025],[114.22419,22.36023],[114.22419,22.36022],[114.22419,22.36021],[114.2242,22.3602],[114.2242,22.36019],[114.2242,22.36018],[114.2242,22.36018],[114.22421,22.36018],[114.22421,22.36018],[114.22421,22.36017],[114.22421,22.36017],[114.22421,22.36017],[114.22421,22.36017],[114.22421,22.36016],[114.22421,22.36015],[114.22421,22.36015],[114.22421,22.36015],[114.22421,22.36014],[114.22421,22.36014],[114.22421,22.36014],[114.22421,22.36013],[114.22421,22.36013],[114.22421,22.36013],[114.22421,22.36012],[114.22421,22.36011],[114.22421,22.3601],[114.22421,22.36007],[114.22422,22.36004],[114.22422,22.36004],[114.22422,22.36002],[114.22422,22.36],[114.22422,22.35998],[114.22423,22.35996],[114.22423,22.35996],[114.22423,22.35996],[114.22423,22.35995],[114.22423,22.35994],[114.22423,22.35994],[114.22423,22.35993],[114.22423,22.35993],[114.22423,22.35993],[114.22423,22.35993],[114.22423,22.35993],[114.22424,22.35991],[114.22424,22.3599],[114.22424,22.3599],[114.22424,22.3599],[114.22425,22.35989],[114.22425,22.35989],[114.22425,22.35989],[114.22425,22.35988],[114.22426,22.35988],[114.22426,22.35987],[114.22427,22.35986],[114.22427,22.35986],[114.22427,22.35986],[114.22427,22.35985],[114.22428,22.35985],[114.22428,22.35985],[114.22429,22.35984],[114.22429,22.35984],[114.22429,22.35984],[114.22429,22.35984],[114.22429,22.35983],[114.22429,22.35983],[114.22429,22.35983],[114.2243,22.35982],[114.2243,22.35981],[114.2243,22.35981],[114.2243,22.3598],[114.2243,22.3598],[114.2243,22.3598],[114.2243,22.3598],[114.22431,22.3598],[114.22431,22.35979],[114.22431,22.35977],[114.22431,22.35977],[114.22431,22.35977],[114.22431,22.35977],[114.22432,22.35975],[114.22432,22.35974],[114.22432,22.35973],[114.22432,22.35973],[114.22432,22.35973],[114.22433,22.35971],[114.22433,22.35971],[114.22433,22.35971],[114.22433,22.3597],[114.22433,22.3597],[114.22433,22.3597],[114.22433,22.35969],[114.22433,22.35969],[114.22433,22.35969],[114.22433,22.35968],[114.22433,22.35968],[114.22433,22.35967],[114.22433,22.35967],[114.22434,22.35967],[114.22434,22.35967],[114.22434,22.35966],[114.22434,22.35966],[114.22434,22.35965],[114.22434,22.35965],[114.22434,22.35965],[114.22435,22.35964],[114.22435,22.35964],[114.22436,22.35962],[114.22437,22.3596],[114.22438,22.35959],[114.22438,22.35957],[114.22439,22.35956],[114.2244,22.35954],[114.2244,22.35953],[114.2244,22.35953],[114.22441,22.35952],[114.22441,22.35951],[114.22441,22.35951],[114.22442,22.3595],[114.22442,22.35949],[114.22442,22.35949],[114.22442,22.35949],[114.22443,22.35949],[114.22443,22.35948],[114.22443,22.35948],[114.22444,22.35946],[114.22444,22.35946],[114.22445,22.35944],[114.22445,22.35944],[114.22445,22.35943],[114.22446,22.35943],[114.22446,22.35942],[114.22446,22.35941],[114.22446,22.35941],[114.22446,22.35941],[114.22447,22.3594],[114.22447,22.35939],[114.22447,22.35939],[114.22447,22.35939],[114.22447,22.35938],[114.22448,22.35936],[114.22448,22.35935],[114.22449,22.35934],[114.22449,22.35933],[114.22449,22.35933],[114.22449,22.35933],[114.22449,22.35932],[114.22449,22.35931],[114.2245,22.35928],[114.2245,22.35922],[114.2245,22.3591],[114.2245,22.3591],[114.2245,22.3591],[114.2245,22.35909],[114.2245,22.35908],[114.2245,22.35907],[114.2245,22.35907],[114.2245,22.35906],[114.2245,22.35905],[114.2245,22.35904],[114.2245,22.35904],[114.2245,22.35903],[114.2245,22.35903],[114.22451,22.35902],[114.22451,22.35902],[114.22451,22.35902],[114.22451,22.35901],[114.22451,22.35901],[114.22451,22.359],[114.22451,22.35899],[114.22451,22.35899],[114.22451,22.35899],[114.22451,22.35898],[114.22451,22.35898],[114.22451,22.35897],[114.22451,22.35897],[114.22451,22.35897],[114.22451,22.35895],[114.22451,22.35894],[114.2245,22.3589],[114.2245,22.3589],[114.22449,22.35888],[114.22449,22.35886],[114.22448,22.35885],[114.22448,22.35884],[114.22448,22.35884],[114.22448,22.35883],[114.22448,22.35883],[114.22447,22.35881],[114.22447,22.35881],[114.22447,22.35879],[114.22446,22.35877],[114.22445,22.35876],[114.22445,22.35876],[114.22445,22.35875],[114.22445,22.35875],[114.22445,22.35874],[114.22444,22.35873],[114.22443,22.35872],[114.22443,22.35872],[114.22443,22.35871],[114.22442,22.35869],[114.22442,22.35868],[114.22442,22.35867],[114.22441,22.35866],[114.22441,22.35865],[114.2244,22.35864],[114.22436,22.35859],[114.22436,22.35858],[114.22436,22.35858],[114.22436,22.35858],[114.22436,22.35857],[114.22435,22.35857],[114.22435,22.35857],[114.22435,22.35856],[114.22435,22.35856],[114.22435,22.35856],[114.22435,22.35855],[114.22435,22.35855],[114.22435,22.35855],[114.22435,22.35854],[114.22435,22.35853],[114.22435,22.35853],[114.22435,22.35853],[114.22435,22.35853],[114.22433,22.3585],[114.22426,22.35843],[114.22426,22.35842],[114.22426,22.35842],[114.22425,22.35842],[114.22425,22.35842],[114.22425,22.35842],[114.22424,22.35842],[114.22424,22.35842],[114.22423,22.35842],[114.22423,22.35842],[114.22423,22.35842],[114.22422,22.35841],[114.22422,22.35841],[114.22421,22.35841],[114.22421,22.35841],[114.22421,22.35841],[114.2242,22.35841],[114.2242,22.35841],[114.2242,22.3584],[114.22419,22.3584],[114.22419,22.3584],[114.22417,22.3584],[114.22407,22.35838],[114.22407,22.35838],[114.22406,22.35838],[114.22406,22.35838],[114.22405,22.35838],[114.22405,22.35838],[114.22405,22.35838],[114.22404,22.35838],[114.22404,22.35838],[114.22403,22.35838],[114.22403,22.35837],[114.22403,22.35837],[114.22403,22.35837],[114.22403,22.35837],[114.22403,22.35837],[114.22402,22.35837],[114.22401,22.35837],[114.22401,22.35836],[114.22401,22.35836],[114.224,22.35836],[114.224,22.35836],[114.224,22.35836],[114.224,22.35836],[114.22399,22.35836],[114.22399,22.35836],[114.22398,22.35835],[114.22398,22.35835],[114.22397,22.35835],[114.22396,22.35835],[114.22396,22.35835],[114.22396,22.35835],[114.22395,22.35835],[114.22395,22.35835],[114.22395,22.35834],[114.22395,22.35834],[114.22395,22.35834],[114.22395,22.35834],[114.22395,22.35834],[114.22395,22.35834],[114.22394,22.35833],[114.22394,22.35833],[114.22394,22.35833],[114.22394,22.35833],[114.22394,22.35832],[114.22394,22.35832],[114.22394,22.35832],[114.22395,22.35831],[114.22395,22.35831],[114.22395,22.35831],[114.22395,22.3583],[114.22395,22.3583],[114.22395,22.3583],[114.22395,22.3583],[114.22395,22.3583],[114.22395,22.3583],[114.22395,22.35829],[114.22395,22.35829],[114.22394,22.35829],[114.22393,22.35826],[114.22392,22.35826],[114.22392,22.35825],[114.22391,22.35824],[114.22391,22.35824],[114.22391,22.35824],[114.22391,22.35824],[114.22391,22.35824],[114.2239,22.35823],[114.2239,22.35823],[114.2239,22.35823],[114.2239,22.35823],[114.2239,22.35823],[114.22389,22.35823],[114.22389,22.35822],[114.22389,22.35822],[114.22389,22.35822],[114.22388,22.35822],[114.22388,22.35822],[114.22385,22.3582],[114.22384,22.3582],[114.22384,22.3582],[114.22384,22.3582],[114.22384,22.3582],[114.22384,22.3582],[114.22383,22.3582],[114.22383,22.35819],[114.22383,22.35819],[114.22383,22.35819],[114.22383,22.35819],[114.22383,22.35819],[114.22383,22.35819],[114.22383,22.35819],[114.22382,22.35819],[114.22382,22.35819],[114.22382,22.35818],[114.22382,22.35818],[114.22382,22.35818],[114.22382,22.35815],[114.22382,22.35814],[114.22381,22.35814],[114.22381,22.35814],[114.22381,22.35813],[114.22381,22.35813],[114.22381,22.35813],[114.22381,22.35813],[114.22381,22.35813],[114.22381,22.35812],[114.22381,22.35812],[114.22381,22.35812],[114.2238,22.35812],[114.2238,22.35811],[114.2238,22.35811],[114.2238,22.35811],[114.2238,22.35811],[114.2238,22.35811],[114.2238,22.35811],[114.22379,22.35811],[114.22379,22.35811],[114.22379,22.35811],[114.22378,22.3581],[114.22378,22.3581],[114.22376,22.35809],[114.22376,22.35809],[114.22375,22.35809],[114.22374,22.35808],[114.22372,22.35807],[114.22369,22.35805],[114.22369,22.35805],[114.22368,22.35805],[114.22368,22.35804],[114.22368,22.35804],[114.22367,22.35804],[114.22366,22.35803],[114.22365,22.35803],[114.22365,22.35802],[114.22365,22.35802],[114.22365,22.35802],[114.22361,22.35799],[114.2236,22.35798],[114.22355,22.35795],[114.22354,22.35795],[114.22353,22.35794],[114.22352,22.35794],[114.22351,22.35793],[114.22351,22.35793],[114.2235,22.35792],[114.22349,22.35792],[114.22348,22.35791],[114.22346,22.35788],[114.22344,22.35787],[114.22344,22.35787],[114.22344,22.35786],[114.22344,22.35786],[114.22344,22.35786],[114.22344,22.35786],[114.22344,22.35786],[114.22343,22.35786],[114.22343,22.35786],[114.22343,22.35785],[114.22343,22.35785],[114.22343,22.35785],[114.22343,22.35785],[114.22343,22.35785],[114.22343,22.35785],[114.22342,22.35785],[114.22342,22.35785],[114.22342,22.35785],[114.22342,22.35785],[114.22342,22.35785],[114.22341,22.35784],[114.22341,22.35784],[114.22341,22.35784],[114.2234,22.35784],[114.2234,22.35784],[114.22339,22.35784],[114.22339,22.35784],[114.22338,22.35784],[114.22338,22.35784],[114.22337,22.35784],[114.22337,22.35784],[114.22337,22.35784],[114.22337,22.35784],[114.22336,22.35783],[114.22335,22.35783],[114.22335,22.35783],[114.22335,22.35783],[114.22335,22.35782],[114.22334,22.35782],[114.22331,22.3578],[114.22331,22.3578],[114.2233,22.3578],[114.2233,22.3578],[114.2233,22.3578],[114.2233,22.3578],[114.22329,22.35779],[114.22329,22.35779],[114.22329,22.35779],[114.22329,22.35779],[114.22329,22.35779],[114.22329,22.35779],[114.22329,22.35778],[114.22329,22.35778],[114.22328,22.35778],[114.22328,22.35778],[114.22328,22.35777],[114.22328,22.35777],[114.22328,22.35777],[114.22328,22.35777],[114.22328,22.35777],[114.22328,22.35777],[114.22328,22.35776],[114.22328,22.35776],[114.22328,22.35776],[114.22327,22.35773],[114.22327,22.35773],[114.22327,22.35767],[114.22327,22.35767],[114.22327,22.35766],[114.22327,22.35766],[114.22326,22.35765],[114.22326,22.35764],[114.22326,22.35764],[114.22326,22.35764],[114.22326,22.35763],[114.22326,22.35762],[114.22326,22.35762],[114.22326,22.35762],[114.22325,22.35762],[114.22325,22.35762],[114.22325,22.35761],[114.22325,22.35761],[114.22325,22.3576],[114.22324,22.35759],[114.22324,22.35759],[114.22324,22.35759],[114.22321,22.35756],[114.22321,22.35755],[114.22321,22.35755],[114.2232,22.35755],[114.22319,22.35753],[114.22318,22.35753],[114.22318,22.35752],[114.22317,22.35751],[114.22314,22.35747],[114.22314,22.35747],[114.22313,22.35746],[114.22313,22.35746],[114.22312,22.35746],[114.22312,22.35745],[114.22312,22.35745],[114.22311,22.35744],[114.2231,22.35744],[114.2231,22.35744],[114.22309,22.35744],[114.22308,22.35743],[114.22308,22.35742],[114.22307,22.35742],[114.22306,22.35741],[114.22306,22.35741],[114.22305,22.3574],[114.22304,22.3574],[114.22303,22.35739],[114.22303,22.35739],[114.22303,22.35739],[114.22302,22.35739],[114.22302,22.35738],[114.22301,22.35738],[114.22301,22.35738],[114.22301,22.35738],[114.22301,22.35738],[114.223,22.35737],[114.223,22.35737],[114.22299,22.35736],[114.22299,22.35736],[114.22298,22.35735],[114.22298,22.35734],[114.22297,22.35734],[114.22297,22.35734],[114.22296,22.35733],[114.22296,22.35733],[114.22295,22.35732],[114.22295,22.35732],[114.22294,22.35732],[114.22294,22.35731],[114.22293,22.35731],[114.22293,22.35731],[114.22292,22.35731],[114.22292,22.35731],[114.22292,22.35731],[114.22291,22.3573],[114.22291,22.3573],[114.22291,22.3573],[114.22291,22.3573],[114.2229,22.3573],[114.2229,22.3573],[114.2229,22.3573],[114.22289,22.35729],[114.22289,22.35729],[114.22289,22.35729],[114.22289,22.35728],[114.22289,22.35728],[114.22288,22.35728],[114.22288,22.35727],[114.22287,22.35727],[114.22287,22.35727],[114.22287,22.35727],[114.22287,22.35726],[114.22287,22.35726],[114.22287,22.35726],[114.22286,22.35726],[114.22286,22.35725],[114.22286,22.35725],[114.22285,22.35724],[114.22285,22.35723],[114.22285,22.35723],[114.22284,22.35722],[114.22284,22.35722],[114.22283,22.35722],[114.22283,22.35721],[114.22283,22.35721],[114.22283,22.35721],[114.22283,22.35721],[114.22282,22.3572],[114.22282,22.3572],[114.22281,22.35719],[114.22281,22.35719],[114.2228,22.35719],[114.2228,22.35718],[114.22279,22.35718],[114.22278,22.35717],[114.22278,22.35717],[114.22278,22.35717],[114.22277,22.35716],[114.22276,22.35716],[114.22276,22.35715],[114.22276,22.35715],[114.22275,22.35714],[114.22274,22.35714],[114.22274,22.35713],[114.22274,22.35713],[114.22274,22.35713],[114.22272,22.35711],[114.2227,22.3571],[114.22269,22.35709],[114.22268,22.35708],[114.22267,22.35707],[114.22266,22.35707],[114.22266,22.35706],[114.22265,22.35706],[114.22265,22.35706],[114.22264,22.35705],[114.22263,22.35704],[114.22263,22.35704],[114.22262,22.35703],[114.22261,22.35702],[114.22261,22.35702],[114.22261,22.35702],[114.2226,22.35701],[114.22259,22.357],[114.22259,22.357],[114.22259,22.357],[114.22258,22.35699],[114.22257,22.35698],[114.22256,22.35697],[114.22256,22.35697],[114.22256,22.35696],[114.22256,22.35696],[114.22255,22.35696],[114.22255,22.35695],[114.22255,22.35695],[114.22254,22.35695],[114.22246,22.35687],[114.22243,22.35686],[114.22243,22.35686],[114.22239,22.35683],[114.22226,22.35677],[114.2221,22.35672],[114.2218,22.3566],[114.2218,22.3566],[114.22178,22.35659],[114.22176,22.35658],[114.22171,22.35654],[114.22169,22.35645],[114.22164,22.35623],[114.22164,22.35618],[114.22165,22.35612],[114.22167,22.35608],[114.22168,22.35607],[114.22168,22.35607],[114.22169,22.35606],[114.22173,22.356],[114.22179,22.35594],[114.22183,22.3559],[114.22185,22.35587],[114.22186,22.35585],[114.22186,22.35583],[114.22187,22.35579],[114.22187,22.35579],[114.22187,22.35579],[114.22186,22.35577],[114.22186,22.35574],[114.22184,22.3557],[114.22177,22.3556],[114.22176,22.35557],[114.22174,22.35547],[114.22175,22.35544],[114.22175,22.35542],[114.22177,22.35538],[114.22181,22.3553],[114.22182,22.35525],[114.22183,22.35524],[114.22183,22.35524],[114.22182,22.35523],[114.22182,22.35521],[114.22182,22.35518],[114.22178,22.35512],[114.22175,22.35509],[114.22167,22.35504],[114.22161,22.35501],[114.22151,22.35494],[114.22149,22.35491],[114.22148,22.3549],[114.22146,22.35487],[114.22144,22.35485],[114.22141,22.35478],[114.22138,22.35473],[114.22129,22.35458],[114.22128,22.35454],[114.22127,22.35452],[114.22127,22.35449],[114.22129,22.3544],[114.22129,22.35439],[114.22134,22.35431],[114.22143,22.3542],[114.22144,22.35418],[114.22144,22.35418],[114.22145,22.35416],[114.22146,22.3541],[114.22146,22.35409],[114.22146,22.35409],[114.22137,22.35344],[114.22134,22.35339],[114.22132,22.35334],[114.22129,22.35331],[114.22128,22.3533],[114.22126,22.35328],[114.22123,22.35325],[114.22112,22.35318],[114.22403,22.33452],[114.22403,22.33452],[114.22404,22.33452],[114.22404,22.33452],[114.22408,22.33451],[114.22412,22.33451],[114.22413,22.3345],[114.22418,22.33449],[114.22418,22.33449],[114.22426,22.33447],[114.22427,22.33446],[114.22429,22.33446],[114.22432,22.33444],[114.22432,22.33444],[114.22437,22.33441],[114.22432,22.33434],[114.22444,22.33425],[114.22462,22.33417],[114.22475,22.33412],[114.22487,22.33409],[114.22505,22.33408],[114.22525,22.3341],[114.22547,22.33411],[114.22599,22.33416],[114.22652,22.33424],[114.22663,22.33426],[114.22664,22.33427],[114.22687,22.33431],[114.22701,22.33431],[114.22714,22.33432],[114.22719,22.33432],[114.22736,22.33433],[114.22791,22.33435],[114.22829,22.33435],[114.22864,22.33435],[114.22864,22.33426],[114.22864,22.33425],[114.22864,22.33424],[114.22864,22.33424],[114.22864,22.33423],[114.22864,22.33422],[114.22864,22.33421],[114.22864,22.33421],[114.22864,22.3342],[114.22865,22.33419],[114.22865,22.33419],[114.22865,22.33418],[114.22866,22.33415],[114.22868,22.33411],[114.22871,22.33407],[114.22872,22.33405],[114.22874,22.33403],[114.22877,22.334],[114.22878,22.334],[114.22879,22.33398],[114.2288,22.33397],[114.22882,22.33394],[114.22884,22.33392],[114.22885,22.3339],[114.22885,22.33388],[114.22884,22.33386],[114.22883,22.33383],[114.22881,22.33381],[114.22878,22.33376],[114.22873,22.33372],[114.2287,22.33368],[114.22866,22.33364],[114.22863,22.33361],[114.22862,22.33359],[114.2286,22.33356],[114.2286,22.33355],[114.22859,22.33351],[114.22859,22.33348],[114.22859,22.33346],[114.2286,22.33341],[114.2286,22.33339],[114.2286,22.33337],[114.2286,22.33333],[114.22858,22.33329],[114.22857,22.33327],[114.22854,22.33322],[114.22851,22.33318],[114.22849,22.33315],[114.22846,22.3331],[114.22845,22.33308],[114.22844,22.33306],[114.22844,22.33302],[114.22844,22.333],[114.22844,22.33296],[114.22844,22.33296],[114.22844,22.33295],[114.22847,22.3329],[114.2285,22.33284],[114.22852,22.33279],[114.22855,22.33275],[114.22861,22.33267],[114.22869,22.3326],[114.22874,22.33255],[114.22883,22.33247],[114.22884,22.33247],[114.22884,22.33246],[114.22891,22.33241],[114.229,22.33234],[114.22908,22.33228],[114.22915,22.33221],[114.22923,22.33212],[114.22929,22.33206],[114.22932,22.332],[114.22936,22.33192],[114.22937,22.33187],[114.22939,22.33179],[114.22939,22.33171],[114.22939,22.33165],[114.22938,22.33153],[114.22936,22.33144],[114.22927,22.33107],[114.22924,22.33095],[114.22923,22.33082],[114.22922,22.33067],[114.22921,22.33049],[114.22922,22.33044],[114.22925,22.3304],[114.22932,22.33034],[114.22941,22.33029],[114.22951,22.33024],[114.22954,22.33021],[114.22959,22.33013],[114.22963,22.33006],[114.22966,22.33008],[114.23038,22.33058],[114.23048,22.33064],[114.23062,22.33073],[114.23084,22.33084],[114.23111,22.33098],[114.23148,22.33116],[114.23164,22.33124],[114.23176,22.33129],[114.23191,22.33132],[114.23198,22.33134],[114.23214,22.33135],[114.23224,22.33135],[114.23234,22.33135],[114.23235,22.33135],[114.23235,22.33135],[114.23235,22.33135],[114.23247,22.33135],[114.23259,22.33134],[114.23271,22.33132],[114.23283,22.33129],[114.23294,22.33126],[114.23307,22.33123],[114.23319,22.33118],[114.23329,22.33115],[114.23343,22.33109],[114.23354,22.33105],[114.23366,22.33099],[114.23369,22.33097],[114.23382,22.3309],[114.23383,22.3309],[114.234,22.33081],[114.23421,22.33069],[114.23434,22.33061],[114.23442,22.33055],[114.23453,22.33047],[114.23467,22.33038],[114.23484,22.33024],[114.23499,22.33012],[114.23513,22.33001],[114.23526,22.32991],[114.23539,22.32981],[114.23556,22.32967],[114.23578,22.3295],[114.23595,22.32937],[114.23608,22.32927],[114.23623,22.32915],[114.23642,22.329],[114.23652,22.32891],[114.2367,22.32875],[114.23687,22.3286],[114.23699,22.32848],[114.23715,22.32834],[114.2373,22.32819],[114.23743,22.32806],[114.23747,22.32802],[114.23755,22.32794],[114.23769,22.3278],[114.23784,22.32765],[114.23803,22.32748],[114.2382,22.32732],[114.23836,22.32718],[114.23852,22.32703],[114.2387,22.32687],[114.23888,22.32671],[114.23907,22.32654],[114.23926,22.32638],[114.23951,22.32618],[114.23969,22.32605],[114.23988,22.32594],[114.24011,22.32578],[114.24029,22.32566],[114.24043,22.32557],[114.24058,22.32546],[114.24076,22.32533],[114.24087,22.32524],[114.24107,22.32509],[114.24124,22.32495],[114.24137,22.32483],[114.24155,22.32467],[114.24173,22.32451],[114.24196,22.3243],[114.24209,22.32414],[114.24221,22.324],[114.24231,22.3239],[114.24235,22.32385],[114.2424,22.32377],[114.24244,22.3237],[114.24248,22.32362],[114.24253,22.32354],[114.24256,22.32349],[114.24258,22.32342],[114.24261,22.32335],[114.24264,22.32326],[114.24266,22.3232],[114.24267,22.32313],[114.24269,22.32304],[114.24272,22.32294],[114.24274,22.3228],[114.24275,22.32274],[114.24276,22.32269],[114.24278,22.32262],[114.24279,22.32258],[114.2428,22.32253],[114.2428,22.32248],[114.24281,22.32242],[114.24281,22.32236],[114.24283,22.32229],[114.24284,22.32225],[114.24284,22.3222],[114.24284,22.32215],[114.24285,22.32209],[114.24286,22.32203],[114.24286,22.32202],[114.24286,22.32199],[114.24287,22.32202],[114.24291,22.32211],[114.24291,22.32213],[114.24292,22.32214],[114.24294,22.32216],[114.24295,22.32218],[114.24297,22.32219],[114.24299,22.3222],[114.24301,22.32222],[114.24303,22.32224],[114.24305,22.32225],[114.24307,22.32227],[114.24309,22.32228],[114.24312,22.32228],[114.24315,22.32228],[114.24317,22.32228],[114.2432,22.32227],[114.24323,22.32226],[114.24326,22.32224],[114.24329,22.32222],[114.24333,22.3222],[114.24335,22.32218],[114.24338,22.32216],[114.24341,22.32213],[114.24342,22.3221],[114.24343,22.3221],[114.24345,22.32211],[114.24344,22.32213],[114.24343,22.32215],[114.24343,22.32216],[114.24343,22.32218],[114.24342,22.3222],[114.24342,22.3222],[114.24341,22.32221],[114.2434,22.32221],[114.24339,22.32222],[114.24338,22.32223],[114.24338,22.32223],[114.24338,22.32224],[114.24337,22.32225],[114.24336,22.32226],[114.24335,22.32227],[114.24334,22.32228],[114.24334,22.32229],[114.24333,22.32231],[114.24332,22.32232],[114.24332,22.32233],[114.24331,22.32234],[114.24331,22.32235],[114.2433,22.32236],[114.24329,22.32238],[114.24329,22.32239],[114.24328,22.32241],[114.24327,22.32244],[114.24327,22.32245],[114.24327,22.32247],[114.24327,22.32247],[114.24327,22.32248],[114.24327,22.32249],[114.24327,22.3225],[114.24327,22.32251],[114.24327,22.32253],[114.24327,22.32254],[114.24327,22.32255],[114.24327,22.32256],[114.24327,22.32257],[114.24327,22.32258],[114.24327,22.32259],[114.24328,22.3226],[114.24327,22.3226],[114.24327,22.32262],[114.24327,22.32263],[114.24327,22.32268],[114.24326,22.3227],[114.24324,22.32275],[114.24324,22.32275],[114.24324,22.32276],[114.24321,22.32279],[114.24321,22.3228],[114.2432,22.32281],[114.24319,22.32282],[114.24318,22.32285],[114.24318,22.32286],[114.24318,22.32287],[114.24318,22.32289],[114.24318,22.32289],[114.24318,22.3229],[114.24318,22.3229],[114.24318,22.32291],[114.24318,22.32292],[114.24318,22.32293],[114.24318,22.32293],[114.24318,22.32294],[114.24318,22.32294],[114.24318,22.32296],[114.24317,22.323],[114.24317,22.32301],[114.24317,22.32302],[114.24316,22.32304],[114.24316,22.32307],[114.24315,22.32309],[114.24314,22.3231],[114.24314,22.32311],[114.24314,22.32311],[114.24314,22.32313],[114.24313,22.32313],[114.24313,22.32314],[114.24312,22.32315],[114.24312,22.32316],[114.24311,22.32318],[114.24309,22.32323],[114.24309,22.32323],[114.24308,22.32323],[114.24308,22.32325],[114.24307,22.3233],[114.24306,22.32332],[114.24306,22.32334],[114.24305,22.32336],[114.24304,22.32337],[114.24303,22.3234],[114.24303,22.32341],[114.24301,22.32343],[114.24301,22.32343],[114.24299,22.32346],[114.24299,22.32347],[114.24298,22.32348],[114.24298,22.32348],[114.24298,22.32348],[114.24298,22.32349],[114.24298,22.3235],[114.24297,22.32352],[114.24297,22.32354],[114.24296,22.32355],[114.24295,22.3236],[114.24295,22.32362],[114.24294,22.32364],[114.24294,22.32365],[114.24292,22.32367],[114.24291,22.32369],[114.2429,22.32371],[114.2429,22.32371],[114.2429,22.32372],[114.2429,22.32372],[114.24289,22.32374],[114.24288,22.32375],[114.24287,22.32378],[114.24286,22.32378],[114.24286,22.32379],[114.24285,22.3238],[114.24285,22.3238],[114.24282,22.32382],[114.2428,22.32383],[114.2428,22.32384],[114.24277,22.32387],[114.24276,22.32388],[114.24276,22.32388],[114.24274,22.3239],[114.2427,22.32394],[114.24269,22.32395],[114.24268,22.32396],[114.24267,22.32398],[114.24266,22.32399],[114.24264,22.324],[114.24263,22.32401],[114.24263,22.32401],[114.24262,22.32403],[114.24259,22.32407],[114.24259,22.32407],[114.24258,22.32409],[114.24256,22.32411],[114.24255,22.32412],[114.24254,22.32414],[114.24254,22.32416],[114.24251,22.3242],[114.2425,22.32422],[114.24249,22.32424],[114.24247,22.32426],[114.24246,22.32428],[114.24246,22.32429],[114.24246,22.32429],[114.24245,22.32431],[114.24244,22.32432],[114.24243,22.32435],[114.24243,22.32436],[114.24242,22.32439],[114.24242,22.32439],[114.24241,22.32441],[114.24241,22.32441],[114.2424,22.32443],[114.2424,22.32444],[114.2424,22.32445],[114.2424,22.32445],[114.2424,22.32446],[114.2424,22.32448],[114.24239,22.32449],[114.24239,22.32452],[114.24238,22.32455],[114.24237,22.32457],[114.24237,22.32459],[114.24236,22.32462],[114.24236,22.32463],[114.24236,22.32464],[114.24236,22.32464],[114.24235,22.32465],[114.24234,22.32465],[114.24233,22.32466],[114.24231,22.32468],[114.24228,22.3247],[114.24227,22.32471],[114.24226,22.32472],[114.24225,22.32473],[114.24225,22.32473],[114.24224,22.32474],[114.24222,22.32476],[114.24222,22.32476],[114.24221,22.32476],[114.24221,22.32477],[114.2422,22.32477],[114.24218,22.32478],[114.24217,22.32479],[114.24216,22.3248],[114.24213,22.32481],[114.24212,22.32482],[114.24212,22.32482],[114.24211,22.32483],[114.2421,22.32484],[114.2421,22.32485],[114.24209,22.32486],[114.24208,22.32487],[114.24207,22.32488],[114.24207,22.32489],[114.24207,22.32489],[114.24206,22.32489],[114.24205,22.3249],[114.24203,22.3249],[114.24204,22.32491],[114.24205,22.32492],[114.24205,22.32493],[114.24206,22.32494],[114.24207,22.32496],[114.24207,22.32498],[114.24208,22.32499],[114.24209,22.32503],[114.24209,22.32503],[114.24209,22.32505],[114.2421,22.32507],[114.2421,22.32507],[114.2421,22.32508],[114.24211,22.32509],[114.24211,22.32511],[114.24211,22.32513],[114.24211,22.32514],[114.24211,22.32516],[114.2421,22.32517],[114.2421,22.32517],[114.2421,22.32521],[114.24209,22.32523],[114.24209,22.32524],[114.24209,22.32528],[114.24209,22.32528],[114.24208,22.32532],[114.24208,22.32535],[114.24208,22.32537],[114.24208,22.32539],[114.24208,22.32545],[114.24208,22.32547],[114.24208,22.32548],[114.24208,22.32549],[114.24207,22.3255],[114.24207,22.32551],[114.24207,22.32551],[114.24207,22.32553],[114.24207,22.32555],[114.24206,22.32558],[114.24207,22.32559],[114.24207,22.3256],[114.24207,22.3256],[114.24206,22.32562],[114.24206,22.32564],[114.24206,22.32564],[114.24206,22.32567],[114.24206,22.32567],[114.24206,22.32568],[114.24206,22.32568],[114.24206,22.32569],[114.24207,22.32571],[114.24207,22.32572],[114.24208,22.32577],[114.24208,22.32577],[114.24208,22.32577],[114.24208,22.3258],[114.24208,22.3258],[114.24209,22.32582],[114.24209,22.32584],[114.2421,22.32584],[114.24211,22.32587],[114.24211,22.32587],[114.24211,22.32588],[114.24212,22.3259],[114.24212,22.3259],[114.24212,22.32591],[114.24212,22.32591],[114.24213,22.32593],[114.24213,22.32593],[114.24213,22.32595],[114.24214,22.32596],[114.24214,22.32597],[114.24216,22.32602],[114.24216,22.32602],[114.24217,22.32603],[114.24217,22.32604],[114.24218,22.32606],[114.2422,22.3261],[114.24221,22.3261],[114.24221,22.32611],[114.24221,22.32612],[114.24221,22.32613],[114.24221,22.32614],[114.2422,22.32616],[114.2422,22.32617],[114.24219,22.32618],[114.24219,22.32618],[114.24219,22.32621],[114.24219,22.32621],[114.24218,22.32622],[114.24218,22.32623],[114.24218,22.32624],[114.24218,22.32625],[114.24218,22.32627],[114.24219,22.32631],[114.24219,22.32632],[114.24219,22.32633],[114.24219,22.32633],[114.24217,22.32636],[114.24216,22.32637],[114.24216,22.32638],[114.24215,22.32639],[114.24213,22.3264],[114.24212,22.32642],[114.2421,22.32643],[114.24207,22.32644],[114.24206,22.32645],[114.24205,22.32646],[114.24203,22.32647],[114.24203,22.32647],[114.24202,22.32649],[114.24201,22.3265],[114.242,22.3265],[114.242,22.32652],[114.24199,22.32654],[114.24199,22.32656],[114.24197,22.32662],[114.24197,22.32663],[114.24196,22.32666],[114.24195,22.32669],[114.24194,22.3267],[114.24193,22.32674],[114.24192,22.32676],[114.24191,22.32678],[114.2419,22.3268],[114.24189,22.32682],[114.24189,22.32683],[114.24186,22.32686],[114.24184,22.32689],[114.24182,22.32692],[114.24179,22.32697],[114.24177,22.32699],[114.24177,22.327],[114.24174,22.32703],[114.24173,22.32705],[114.24172,22.32706],[114.24171,22.32709],[114.24171,22.3271],[114.2417,22.32712],[114.2417,22.32713],[114.2417,22.32714],[114.2417,22.32716],[114.2417,22.32718],[114.2417,22.3272],[114.24169,22.32722],[114.24169,22.32722],[114.24168,22.32723],[114.24164,22.32737],[114.24163,22.32742],[114.24164,22.32765],[114.24168,22.32774],[114.24173,22.32789],[114.24174,22.32794],[114.24176,22.32796],[114.24178,22.328],[114.24183,22.32805],[114.24191,22.32808],[114.24201,22.3281],[114.24209,22.3281],[114.24216,22.3281],[114.24227,22.3281],[114.24238,22.32809],[114.2425,22.32808],[114.24264,22.32804],[114.24292,22.32795],[114.24334,22.32783],[114.24353,22.32778],[114.24378,22.32776],[114.24412,22.32781],[114.24438,22.3279],[114.24455,22.32803],[114.24472,22.3282],[114.24476,22.32824],[114.24485,22.32838],[114.24491,22.3285],[114.24492,22.32851],[114.24497,22.32862],[114.24504,22.32872],[114.24507,22.32878],[114.24509,22.32881],[114.2451,22.32883],[114.24511,22.32885],[114.24512,22.32886],[114.24513,22.32887],[114.24514,22.32887],[114.24514,22.32888],[114.24514,22.32888],[114.24515,22.32888],[114.24515,22.32889],[114.24516,22.32891],[114.24518,22.32892],[114.24519,22.32893],[114.24521,22.32895],[114.24523,22.32895],[114.24525,22.32896],[114.24528,22.32896],[114.2453,22.32896],[114.24533,22.32896],[114.24537,22.32895],[114.24541,22.32895],[114.24544,22.32894],[114.24546,22.32893],[114.24548,22.32893],[114.2455,22.32892],[114.24552,22.32891],[114.24554,22.32891],[114.24563,22.32886],[114.24565,22.32884],[114.24586,22.32868],[114.24593,22.32862],[114.24604,22.32853],[114.24612,22.32847],[114.24619,22.32843],[114.24627,22.3284],[114.24633,22.32837],[114.24639,22.32836],[114.24646,22.32834],[114.24654,22.32833],[114.2466,22.32833],[114.24667,22.32834],[114.24672,22.32835],[114.24677,22.32836],[114.24682,22.32838],[114.24685,22.32839],[114.24689,22.3284],[114.24693,22.32841],[114.24696,22.32843],[114.24698,22.32845],[114.247,22.32847],[114.24702,22.3285],[114.24704,22.32853],[114.24704,22.32854],[114.24704,22.32856],[114.24704,22.32861],[114.24702,22.32868],[114.24697,22.32873],[114.24687,22.32885],[114.24681,22.32893],[114.24666,22.3291],[114.24658,22.3292],[114.24655,22.32923],[114.24652,22.32925],[114.24649,22.32926],[114.24646,22.32927],[114.24642,22.32928],[114.24638,22.32928],[114.24633,22.32928],[114.24629,22.32928],[114.24624,22.32927],[114.24621,22.32926],[114.24618,22.32924],[114.24612,22.32921],[114.2461,22.32921],[114.24609,22.32923],[114.24606,22.32926],[114.24597,22.32937],[114.24562,22.32981],[114.24558,22.32991],[114.24558,22.3301],[114.24563,22.33026],[114.24572,22.33048],[114.24566,22.33064],[114.2454,22.33119],[114.2454,22.3312],[114.24539,22.3312],[114.24539,22.33121],[114.24537,22.33123],[114.24537,22.33124],[114.24536,22.33124],[114.24536,22.33125],[114.24535,22.33126],[114.24534,22.33127],[114.24533,22.33128],[114.24532,22.33128],[114.24531,22.33129],[114.2453,22.33129],[114.24529,22.33129],[114.24528,22.33129],[114.24527,22.33129],[114.24526,22.33129],[114.24526,22.33129],[114.24524,22.33128],[114.24523,22.33128],[114.24522,22.33128],[114.24518,22.33127],[114.24515,22.33125],[114.24513,22.33124],[114.2451,22.33123],[114.24507,22.33122],[114.24504,22.33122],[114.245,22.33121],[114.24497,22.33122],[114.24493,22.33122],[114.24491,22.33123],[114.24488,22.33125],[114.24486,22.33126],[114.24485,22.33127],[114.24483,22.33129],[114.24481,22.33132],[114.2448,22.33134],[114.24479,22.33136],[114.24478,22.33138],[114.24477,22.3314],[114.24476,22.33142],[114.24475,22.33144],[114.24474,22.33147],[114.24473,22.3315],[114.24473,22.33152],[114.24472,22.33155],[114.24472,22.33158],[114.24472,22.33159],[114.24472,22.33161],[114.24472,22.33164],[114.24472,22.3317],[114.24472,22.33172],[114.24472,22.33175],[114.24473,22.33178],[114.24473,22.33181],[114.24474,22.33184],[114.24475,22.33186],[114.24476,22.3319],[114.24477,22.33193],[114.24479,22.33196],[114.2448,22.33199],[114.24482,22.33202],[114.24484,22.33205],[114.24486,22.33209],[114.24488,22.33212],[114.2449,22.33214],[114.24492,22.33216],[114.24495,22.33218],[114.24499,22.33221],[114.24501,22.33222],[114.24504,22.33223],[114.24507,22.33224],[114.24508,22.33224],[114.24509,22.33224],[114.24511,22.33224],[114.24513,22.33225],[114.24514,22.33225],[114.24517,22.33225],[114.24519,22.33224],[114.2452,22.33224],[114.24522,22.33223],[114.24523,22.33222],[114.24525,22.3322],[114.24526,22.33219],[114.24527,22.33217],[114.24527,22.33216],[114.24528,22.33215],[114.24528,22.33215],[114.24529,22.33214],[114.24529,22.33214],[114.24529,22.33214],[114.2453,22.33213],[114.2453,22.33213],[114.2453,22.33213],[114.24531,22.33212],[114.24531,22.33212],[114.24532,22.33211],[114.24532,22.33211],[114.24532,22.33211],[114.24532,22.33211],[114.24533,22.33211],[114.24534,22.3321],[114.24535,22.3321],[114.24537,22.3321],[114.24538,22.33211],[114.24539,22.33211],[114.24541,22.33211],[114.24542,22.33212],[114.24543,22.33213],[114.24545,22.33214],[114.24548,22.33217],[114.24559,22.3323],[114.24559,22.33231],[114.24576,22.33244],[114.24577,22.33245],[114.24579,22.33247],[114.24583,22.3325],[114.24585,22.33251],[114.24588,22.33253],[114.24589,22.33254],[114.2459,22.33254],[114.24592,22.33255],[114.24594,22.33256],[114.24596,22.33256],[114.24598,22.33256],[114.246,22.33256],[114.24603,22.33256],[114.24608,22.33255],[114.24608,22.33255],[114.24608,22.33255],[114.24609,22.33254],[114.24609,22.33254],[114.24611,22.33253],[114.24612,22.33252],[114.24615,22.33251],[114.24617,22.3325],[114.24619,22.33249],[114.24621,22.33248],[114.24624,22.33247],[114.24625,22.33247],[114.24627,22.33246],[114.24631,22.33246],[114.24633,22.33246],[114.24636,22.33246],[114.24639,22.33247],[114.24642,22.33247],[114.24644,22.33249],[114.24646,22.3325],[114.24649,22.33251],[114.24661,22.33253],[114.24671,22.33255],[114.24675,22.33256],[114.24678,22.33257],[114.24681,22.33257],[114.24685,22.33258],[114.24692,22.33261],[114.24703,22.33267],[114.24706,22.33269],[114.24707,22.3327],[114.24707,22.3327],[114.24708,22.3327],[114.24715,22.33274],[114.24717,22.33277],[114.2472,22.33283],[114.24722,22.33287],[114.24722,22.33287],[114.24723,22.33289],[114.24724,22.3329],[114.24725,22.33294],[114.24727,22.33298],[114.24728,22.33299],[114.24729,22.333],[114.24733,22.33303],[114.24734,22.33305],[114.24736,22.33306],[114.2474,22.33309],[114.24743,22.3331],[114.24751,22.3331],[114.24758,22.3331],[114.24761,22.3331],[114.24763,22.33311],[114.24765,22.33313],[114.24768,22.33316],[114.24771,22.33319],[114.24774,22.33321],[114.24776,22.33321],[114.2478,22.33322],[114.24783,22.33322],[114.24787,22.3332],[114.24794,22.33319],[114.24796,22.33319],[114.24801,22.33318],[114.24804,22.33317],[114.2481,22.33318],[114.24814,22.3332],[114.24816,22.3332],[114.24821,22.33319],[114.24825,22.33319],[114.24827,22.3332],[114.2483,22.3332],[114.24832,22.33321],[114.24844,22.33327],[114.24847,22.33329],[114.24851,22.33333],[114.24855,22.33338],[114.24856,22.33341],[114.24857,22.33343],[114.24857,22.33344],[114.24857,22.33344],[114.24856,22.33347],[114.24856,22.3335],[114.24857,22.33351],[114.24858,22.33352],[114.24858,22.33352],[114.2486,22.33353],[114.24862,22.33353],[114.24863,22.33353],[114.24866,22.33352],[114.24867,22.33351],[114.2487,22.33351],[114.24877,22.33351],[114.24883,22.33351],[114.24888,22.33352],[114.24891,22.33352],[114.24894,22.33351],[114.24897,22.3335],[114.24899,22.33348],[114.24904,22.33345],[114.24908,22.33344],[114.24908,22.33344],[114.24909,22.33343],[114.24911,22.33342],[114.24915,22.33338],[114.24921,22.3333],[114.24923,22.33327],[114.24925,22.3332],[114.24926,22.33316],[114.24929,22.3331],[114.24931,22.33308],[114.24933,22.33307],[114.24936,22.33306],[114.24944,22.33303],[114.24949,22.33302],[114.24951,22.33302],[114.24952,22.33302],[114.24961,22.33306],[114.24963,22.33306],[114.24967,22.33305],[114.24969,22.33304],[114.24971,22.33304],[114.24973,22.33305],[114.24978,22.33307],[114.24981,22.33309],[114.24982,22.3331],[114.24986,22.33311],[114.24989,22.33311],[114.24996,22.3331],[114.25001,22.33308],[114.25004,22.33306],[114.25008,22.33303],[114.25011,22.333],[114.25013,22.33299],[114.25015,22.33299],[114.25017,22.333],[114.25018,22.33301],[114.2502,22.33303],[114.25022,22.33306],[114.25024,22.33307],[114.25027,22.33308],[114.2503,22.33308],[114.25032,22.33308],[114.25034,22.33309],[114.25034,22.33309],[114.25034,22.33309],[114.25036,22.33307],[114.25042,22.33302],[114.25043,22.333],[114.25046,22.33298],[114.25051,22.33293],[114.25054,22.33291],[114.25055,22.33291],[114.25059,22.3329],[114.25063,22.3329],[114.25066,22.3329],[114.2507,22.33292],[114.25074,22.33295],[114.25077,22.33296],[114.25079,22.33297],[114.25079,22.33297],[114.25079,22.33297],[114.25079,22.33298],[114.25067,22.33313],[114.25058,22.33326],[114.25054,22.33344],[114.25049,22.33352],[114.25038,22.33365],[114.25035,22.33379],[114.25031,22.33398],[114.2503,22.33403],[114.25028,22.33405],[114.25015,22.33424],[114.25002,22.33439],[114.24994,22.33454],[114.24985,22.33465],[114.24969,22.3348],[114.24968,22.33481],[114.24967,22.33482],[114.24969,22.33485],[114.24984,22.33501],[114.25007,22.33526],[114.25022,22.33536],[114.25034,22.3354],[114.2504,22.33539],[114.25059,22.33538],[114.25079,22.33532],[114.25093,22.33528],[114.25098,22.33528],[114.2511,22.3353],[114.25115,22.33531],[114.25117,22.33532],[114.25123,22.33537],[114.2513,22.33542],[114.25136,22.33548],[114.25141,22.33555],[114.25144,22.33561],[114.25169,22.33647],[114.25178,22.3367],[114.25183,22.33691],[114.25186,22.33722],[114.25187,22.33735],[114.2519,22.33767],[114.2519,22.33795],[114.25194,22.33813],[114.25197,22.33823],[114.25203,22.33834],[114.25209,22.33844],[114.25221,22.33857],[114.25228,22.33863],[114.25234,22.33868],[114.25243,22.33876],[114.25245,22.33876],[114.25247,22.33877],[114.2525,22.33877],[114.25253,22.33878],[114.25255,22.33878],[114.25256,22.33878],[114.25258,22.33877],[114.25276,22.3387],[114.25298,22.33857],[114.25339,22.33833],[114.25394,22.33806],[114.25406,22.33801],[114.25448,22.33779],[114.25492,22.33754],[114.25519,22.33741],[114.25559,22.3372],[114.25598,22.337],[114.2561,22.33693],[114.25657,22.33678],[114.25689,22.33668],[114.25703,22.33664],[114.25703,22.33664],[114.25706,22.33662],[114.2571,22.33658],[114.25712,22.33655],[114.25714,22.33653],[114.25716,22.33649],[114.25719,22.33647],[114.25722,22.33643],[114.25725,22.33639],[114.25725,22.33638],[114.25726,22.33638],[114.25726,22.33638],[114.25726,22.33637],[114.25726,22.33637],[114.25726,22.33636],[114.25727,22.33636],[114.25727,22.33636],[114.25727,22.33635],[114.25727,22.33635],[114.25728,22.33634],[114.25728,22.33634],[114.25728,22.33634],[114.25728,22.33633],[114.25728,22.33633],[114.25729,22.33632],[114.25729,22.33632],[114.25729,22.33632],[114.25729,22.33631],[114.25729,22.33631],[114.2573,22.3363],[114.2573,22.3363],[114.2573,22.33629],[114.2573,22.33629],[114.2573,22.33629],[114.25731,22.33628],[114.25731,22.33628],[114.25731,22.33627],[114.25731,22.33627],[114.25731,22.33626],[114.25731,22.33626],[114.25732,22.33626],[114.25732,22.33625],[114.25732,22.33625],[114.25732,22.33624],[114.25732,22.33624],[114.25733,22.33624],[114.25733,22.33623],[114.25733,22.33623],[114.25733,22.33622],[114.25733,22.33622],[114.25734,22.33622],[114.25734,22.33621],[114.25734,22.33621],[114.25734,22.3362],[114.25734,22.3362],[114.25735,22.3362],[114.25735,22.33619],[114.25736,22.33617],[114.2576,22.33538],[114.25766,22.33504],[114.2577,22.33476],[114.2577,22.33474],[114.2577,22.33474],[114.2577,22.33473],[114.25771,22.33473],[114.25771,22.33472],[114.25771,22.33472],[114.25771,22.33471],[114.25771,22.33471],[114.25771,22.33471],[114.25771,22.3347],[114.25771,22.3347],[114.25772,22.33469],[114.25772,22.33469],[114.25772,22.33468],[114.25772,22.33468],[114.25772,22.33468],[114.25772,22.33467],[114.25772,22.33467],[114.25773,22.33466],[114.25773,22.33466],[114.25773,22.33465],[114.25773,22.33465],[114.25773,22.33465],[114.25773,22.33464],[114.25774,22.33464],[114.25774,22.33463],[114.25774,22.33463],[114.25774,22.33463],[114.25774,22.33462],[114.25775,22.33462],[114.25775,22.33461],[114.25775,22.33461],[114.25775,22.33461],[114.25776,22.3346],[114.25776,22.3346],[114.25776,22.33459],[114.25776,22.33459],[114.25776,22.33459],[114.25777,22.33458],[114.25777,22.33458],[114.25777,22.33457],[114.25777,22.33457],[114.25778,22.33457],[114.25778,22.33456],[114.25778,22.33456],[114.25779,22.33455],[114.25779,22.33455],[114.25779,22.33455],[114.25779,22.33454],[114.2578,22.33454],[114.2578,22.33454],[114.2578,22.33453],[114.2578,22.33453],[114.25781,22.33453],[114.25781,22.33452],[114.25781,22.33452],[114.25782,22.33451],[114.25782,22.33451],[114.25782,22.33451],[114.25783,22.3345],[114.25783,22.3345],[114.25783,22.3345],[114.25784,22.33449],[114.25784,22.33449],[114.25784,22.33449],[114.25785,22.33448],[114.25785,22.33448],[114.25785,22.33448],[114.25786,22.33447],[114.25786,22.33447],[114.25786,22.33447],[114.25787,22.33446],[114.25787,22.33446],[114.25787,22.33446],[114.25788,22.33446],[114.25788,22.33445],[114.25788,22.33445],[114.25789,22.33445],[114.25789,22.33444],[114.2579,22.33444],[114.2579,22.33444],[114.2579,22.33444],[114.25791,22.33443],[114.25791,22.33443],[114.25792,22.33443],[114.25792,22.33443],[114.25792,22.33442],[114.25793,22.33442],[114.25793,22.33442],[114.25794,22.33442],[114.25794,22.33442],[114.25795,22.33441],[114.25795,22.33441],[114.25795,22.33441],[114.25796,22.33441],[114.25796,22.33441],[114.25797,22.3344],[114.25797,22.3344],[114.25798,22.3344],[114.25798,22.3344],[114.25799,22.3344],[114.25799,22.33439],[114.25799,22.33439],[114.258,22.33439],[114.258,22.33439],[114.25801,22.33439],[114.25801,22.33439],[114.25802,22.33438],[114.25802,22.33438],[114.25803,22.33438],[114.25803,22.33438],[114.25803,22.33438],[114.25804,22.33438],[114.25804,22.33437],[114.25805,22.33437],[114.25805,22.33437],[114.25806,22.33437],[114.25806,22.33437],[114.25807,22.33437],[114.25807,22.33437],[114.25807,22.33437],[114.25808,22.33436],[114.25808,22.33436],[114.25809,22.33436],[114.25809,22.33436],[114.25809,22.33436],[114.2581,22.33436],[114.2581,22.33436],[114.25811,22.33436],[114.25811,22.33435],[114.25812,22.33435],[114.25812,22.33435],[114.25813,22.33435],[114.25813,22.33435],[114.25814,22.33435],[114.25814,22.33435],[114.25815,22.33435],[114.25815,22.33435],[114.25816,22.33435],[114.25816,22.33435],[114.25817,22.33435],[114.25817,22.33435],[114.25818,22.33435],[114.25818,22.33435],[114.25819,22.33435],[114.25819,22.33435],[114.25819,22.33435],[114.25824,22.33436],[114.25824,22.33436],[114.25825,22.33436],[114.25825,22.33436],[114.25826,22.33436],[114.25826,22.33436],[114.25826,22.33436],[114.25827,22.33436],[114.25827,22.33436],[114.25828,22.33436],[114.25828,22.33436],[114.25829,22.33436],[114.25829,22.33436],[114.2583,22.33437],[114.2583,22.33437],[114.25831,22.33437],[114.25831,22.33437],[114.25832,22.33437],[114.25832,22.33437],[114.25833,22.33437],[114.25833,22.33437],[114.25834,22.33437],[114.25834,22.33437],[114.25835,22.33438],[114.25835,22.33438],[114.25835,22.33438],[114.25836,22.33438],[114.25836,22.33438],[114.25837,22.33438],[114.25837,22.33438],[114.25838,22.33439],[114.25838,22.33439],[114.25839,22.33439],[114.25839,22.33439],[114.2584,22.33439],[114.2584,22.33439],[114.2584,22.3344],[114.25841,22.3344],[114.25841,22.3344],[114.25842,22.3344],[114.25842,22.3344],[114.25843,22.3344],[114.25843,22.33441],[114.25844,22.33441],[114.25844,22.33441],[114.25844,22.33441],[114.25845,22.33441],[114.25845,22.33442],[114.25846,22.33442],[114.25846,22.33442],[114.25847,22.33442],[114.25847,22.33443],[114.25847,22.33443],[114.25848,22.33443],[114.25848,22.33443],[114.25849,22.33444],[114.25849,22.33444],[114.2585,22.33444],[114.2585,22.33444],[114.2585,22.33444],[114.25851,22.33445],[114.25851,22.33445],[114.25852,22.33445],[114.25852,22.33445],[114.25852,22.33446],[114.25853,22.33446],[114.25853,22.33446],[114.25854,22.33446],[114.25854,22.33447],[114.25855,22.33447],[114.25855,22.33447],[114.25855,22.33447],[114.25856,22.33447],[114.25856,22.33448],[114.25857,22.33448],[114.25857,22.33448],[114.25858,22.33448],[114.25858,22.33449],[114.25858,22.33449],[114.25859,22.33449],[114.25859,22.33449],[114.2586,22.33449],[114.2586,22.3345],[114.2586,22.3345],[114.25861,22.3345],[114.25861,22.3345],[114.25976,22.33501],[114.25978,22.33497],[114.25986,22.33486],[114.26004,22.33454],[114.26003,22.33454],[114.26002,22.33453],[114.25964,22.33436],[114.25985,22.33391],[114.26025,22.33406],[114.26031,22.33408],[114.26033,22.33401],[114.26049,22.33368],[114.26062,22.33343],[114.26067,22.33334],[114.2607,22.33327],[114.2607,22.33327],[114.26071,22.33326],[114.26071,22.33326],[114.26097,22.33273],[114.26099,22.33271],[114.26103,22.33262],[114.26152,22.33164],[114.26153,22.33163],[114.26156,22.33157],[114.2616,22.33151],[114.26161,22.33147],[114.26163,22.33144],[114.26164,22.33143],[114.26165,22.33141],[114.26166,22.3314],[114.26171,22.33128],[114.26173,22.33124],[114.26175,22.33121],[114.26177,22.33118],[114.26182,22.33111],[114.26183,22.3311],[114.26183,22.33109],[114.26186,22.33106],[114.26187,22.33106],[114.2619,22.33102],[114.26193,22.33099],[114.26197,22.33096],[114.262,22.33092],[114.26204,22.33089],[114.26207,22.33086],[114.26211,22.33082],[114.26215,22.33077],[114.2622,22.33071],[114.2622,22.3307],[114.26221,22.3307],[114.26228,22.33062],[114.26229,22.33061],[114.26231,22.33058],[114.26234,22.33056],[114.26236,22.33053],[114.26239,22.33051],[114.26242,22.33047],[114.26244,22.33045],[114.26246,22.33043],[114.26258,22.33032],[114.26262,22.33029],[114.26262,22.33029],[114.26263,22.33028],[114.2626,22.33026],[114.26255,22.33021],[114.26249,22.33015],[114.26228,22.32997],[114.26259,22.32966],[114.26259,22.32966],[114.2626,22.32965],[114.26259,22.32964],[114.26256,22.32962],[114.2626,22.32959],[114.26264,22.32962],[114.26266,22.3296],[114.26371,22.32858],[114.26371,22.32857],[114.26373,22.32855],[114.26373,22.32854],[114.26373,22.32854],[114.26373,22.32854],[114.26373,22.32853],[114.26374,22.32853],[114.26374,22.32852],[114.26374,22.32852],[114.26374,22.32851],[114.26374,22.32851],[114.26375,22.32851],[114.26375,22.3285],[114.26375,22.3285],[114.26375,22.32849],[114.26375,22.32849],[114.26375,22.32849],[114.26376,22.32848],[114.26376,22.32848],[114.26376,22.32847],[114.26376,22.32847],[114.26376,22.32846],[114.26376,22.32846],[114.26376,22.32846],[114.26377,22.32845],[114.26377,22.32845],[114.26377,22.32844],[114.26377,22.32844],[114.26377,22.32843],[114.26377,22.32843],[114.26377,22.32843],[114.26378,22.32842],[114.26378,22.32842],[114.26378,22.32841],[114.26378,22.32841],[114.26378,22.3284],[114.26378,22.3284],[114.26378,22.32839],[114.26378,22.32839],[114.26378,22.32839],[114.26378,22.32838],[114.26379,22.32838],[114.26379,22.32837],[114.26379,22.32837],[114.26379,22.32836],[114.26379,22.32836],[114.26379,22.32835],[114.26379,22.32835],[114.26379,22.32835],[114.26379,22.32834],[114.26379,22.32834],[114.26379,22.32833],[114.26379,22.32833],[114.26379,22.32832],[114.26379,22.32832],[114.26379,22.32831],[114.26379,22.32831],[114.2638,22.32831],[114.2638,22.3283],[114.2638,22.3283],[114.2638,22.32829],[114.2638,22.32829],[114.2638,22.32828],[114.2638,22.32828],[114.2638,22.32827],[114.2638,22.32827],[114.2638,22.32826],[114.2638,22.32826],[114.2638,22.32826],[114.2638,22.32825],[114.2638,22.32825],[114.2638,22.32824],[114.2638,22.32824],[114.2638,22.32823],[114.2638,22.32823],[114.2638,22.32822],[114.2638,22.32822],[114.2638,22.32821],[114.2638,22.32821],[114.2638,22.32821],[114.26379,22.3282],[114.26379,22.3282],[114.26379,22.32819],[114.26379,22.32819],[114.26379,22.32818],[114.26379,22.32818],[114.26379,22.32817],[114.26379,22.32817],[114.26379,22.32817],[114.26379,22.32816],[114.26379,22.32816],[114.26379,22.32815],[114.26379,22.32815],[114.26379,22.32814],[114.26379,22.32814],[114.26379,22.32813],[114.26379,22.32813],[114.26379,22.32812],[114.2638,22.32812],[114.2638,22.32812],[114.2638,22.32811],[114.2638,22.32811],[114.2638,22.3281],[114.2638,22.3281],[114.2638,22.32809],[114.2638,22.32809],[114.2638,22.32808],[114.2638,22.32808],[114.2638,22.32808],[114.2638,22.32807],[114.2638,22.32807],[114.26381,22.32806],[114.26381,22.32806],[114.26381,22.32805],[114.26381,22.32805],[114.26381,22.32804],[114.26381,22.32804],[114.26381,22.32804],[114.26382,22.32803],[114.26382,22.32803],[114.26382,22.32802],[114.26382,22.32802],[114.26382,22.32802],[114.26383,22.328],[114.26383,22.328],[114.26383,22.32799],[114.26384,22.32798],[114.26384,22.32798],[114.26384,22.32797],[114.26384,22.32797],[114.26384,22.32796],[114.26385,22.32796],[114.26385,22.32795],[114.26385,22.32795],[114.26385,22.32794],[114.26386,22.32794],[114.26386,22.32793],[114.26386,22.32793],[114.26386,22.32792],[114.26386,22.32792],[114.26387,22.32791],[114.26387,22.32791],[114.26387,22.32791],[114.26387,22.3279],[114.26387,22.3279],[114.26388,22.32789],[114.26388,22.32789],[114.26388,22.32789],[114.26388,22.32788],[114.26388,22.32788],[114.26389,22.32787],[114.26389,22.32787],[114.26389,22.32787],[114.26389,22.32786],[114.26389,22.32786],[114.2639,22.32785],[114.2639,22.32785],[114.2639,22.32784],[114.2639,22.32784],[114.2639,22.32784],[114.26391,22.32783],[114.26391,22.32783],[114.26391,22.32782],[114.26391,22.32782],[114.26392,22.32782],[114.26392,22.32781],[114.26392,22.32781],[114.26392,22.32781],[114.26393,22.3278],[114.26393,22.3278],[114.26393,22.32779],[114.26393,22.32779],[114.26394,22.32779],[114.26394,22.32778],[114.26394,22.32778],[114.26394,22.32777],[114.26395,22.32777],[114.26395,22.32777],[114.26395,22.32776],[114.26396,22.32776],[114.26396,22.32776],[114.26396,22.32775],[114.26396,22.32775],[114.26397,22.32775],[114.26397,22.32774],[114.26397,22.32774],[114.26398,22.32774],[114.26398,22.32773],[114.26398,22.32773],[114.26399,22.32773],[114.26399,22.32772],[114.26399,22.32772],[114.26398,22.3277],[114.26358,22.32747],[114.26358,22.32747],[114.26358,22.32746],[114.26359,22.32746],[114.26359,22.32745],[114.26359,22.32745],[114.26359,22.32745],[114.26359,22.32744],[114.26359,22.32744],[114.26359,22.32743],[114.26359,22.32743],[114.26359,22.32742],[114.26359,22.32742],[114.2636,22.32741],[114.2636,22.32741],[114.2636,22.32741],[114.2636,22.3274],[114.2636,22.3274],[114.2636,22.32739],[114.2636,22.32739],[114.2636,22.32738],[114.26361,22.32738],[114.26361,22.32738],[114.26361,22.32737],[114.26361,22.32737],[114.26361,22.32736],[114.26361,22.32736],[114.26361,22.32735],[114.26362,22.32735],[114.26362,22.32734],[114.26362,22.32734],[114.26362,22.32734],[114.26362,22.32733],[114.26362,22.32733],[114.26363,22.32732],[114.26363,22.32732],[114.26363,22.32732],[114.26363,22.32731],[114.26363,22.32731],[114.26364,22.3273],[114.26364,22.3273],[114.26364,22.32729],[114.26364,22.32729],[114.26364,22.32729],[114.26365,22.32728],[114.26365,22.32727],[114.26365,22.32727],[114.26365,22.32727],[114.26366,22.32726],[114.26366,22.32725],[114.26366,22.32725],[114.26366,22.32725],[114.26367,22.32724],[114.26367,22.32724],[114.26367,22.32723],[114.26368,22.32722],[114.26368,22.32722],[114.26368,22.32721],[114.26368,22.32721],[114.26368,22.3272],[114.26369,22.3272],[114.26369,22.3272],[114.26369,22.32719],[114.26369,22.32719],[114.2637,22.32718],[114.2637,22.32718],[114.2637,22.32718],[114.2637,22.32717],[114.26371,22.32717],[114.26371,22.32717],[114.26371,22.32716],[114.26371,22.32716],[114.26372,22.32715],[114.26372,22.32715],[114.26372,22.32715],[114.26372,22.32714],[114.26373,22.32714],[114.26373,22.32713],[114.26373,22.32713],[114.26373,22.32713],[114.26374,22.32712],[114.26374,22.32712],[114.26374,22.32712],[114.26374,22.32711],[114.26375,22.32711],[114.26375,22.3271],[114.26375,22.3271],[114.26376,22.3271],[114.26376,22.32709],[114.26376,22.32709],[114.26376,22.32709],[114.26377,22.32708],[114.26377,22.32708],[114.26378,22.32708],[114.26378,22.32707],[114.26378,22.32707],[114.26379,22.32707],[114.26379,22.32707],[114.26379,22.32706],[114.2638,22.32706],[114.2638,22.32706],[114.26381,22.32705],[114.26381,22.32705],[114.26381,22.32705],[114.26382,22.32705],[114.26382,22.32704],[114.26383,22.32704],[114.26383,22.32704],[114.26383,22.32704],[114.26384,22.32703],[114.26384,22.32703],[114.26384,22.32703],[114.26385,22.32703],[114.26385,22.32702],[114.26386,22.32702],[114.26386,22.32702],[114.26386,22.32701],[114.26387,22.32701],[114.26387,22.32701],[114.26387,22.32701],[114.26388,22.327],[114.26388,22.327],[114.26389,22.327],[114.26389,22.327],[114.2639,22.32699],[114.2639,22.32699],[114.2639,22.32699],[114.26391,22.32699],[114.26391,22.32698],[114.26392,22.32698],[114.26392,22.32698],[114.26393,22.32698],[114.26393,22.32698],[114.26393,22.32698],[114.26393,22.32698],[114.26394,22.32697],[114.26394,22.32697],[114.26395,22.32697],[114.26395,22.32697],[114.26395,22.32697],[114.26396,22.32696],[114.26396,22.32696],[114.26397,22.32696],[114.26397,22.32696],[114.26398,22.32696],[114.26398,22.32696],[114.26399,22.32696],[114.26399,22.32695],[114.264,22.32695],[114.264,22.32695],[114.264,22.32695],[114.26401,22.32695],[114.26401,22.32695],[114.26402,22.32694],[114.26402,22.32694],[114.26403,22.32694],[114.26403,22.32694],[114.26404,22.32694],[114.26404,22.32694],[114.26405,22.32694],[114.26405,22.32694],[114.26406,22.32693],[114.26406,22.32693],[114.26406,22.32693],[114.26407,22.32693],[114.26407,22.32693],[114.26408,22.32693],[114.26408,22.32693],[114.26409,22.32693],[114.26409,22.32693],[114.2641,22.32693],[114.2641,22.32692],[114.26411,22.32692],[114.26411,22.32692],[114.26412,22.32692],[114.26412,22.32692],[114.26413,22.32692],[114.26413,22.32692],[114.26414,22.32692],[114.26414,22.32692],[114.26416,22.32692],[114.26416,22.32692],[114.26416,22.32691],[114.26417,22.32691],[114.26417,22.32691],[114.26418,22.32691],[114.26418,22.32691],[114.26419,22.32691],[114.26419,22.32691],[114.2642,22.32691],[114.2642,22.32691],[114.26421,22.32691],[114.26421,22.32691],[114.26422,22.32691],[114.26422,22.32691],[114.26423,22.32691],[114.26423,22.32691],[114.26424,22.32691],[114.26424,22.32691],[114.26424,22.32691],[114.26425,22.32691],[114.26425,22.32692],[114.26426,22.32692],[114.26426,22.32692],[114.26427,22.32692],[114.26427,22.32692],[114.26428,22.32692],[114.26428,22.32692],[114.26429,22.32692],[114.26429,22.32692],[114.2643,22.32692],[114.2643,22.32692],[114.26431,22.32692],[114.26431,22.32692],[114.26432,22.32692],[114.26433,22.32692],[114.26433,22.32692],[114.26434,22.32692],[114.26434,22.32692],[114.26435,22.32692],[114.26435,22.32692],[114.26436,22.32692],[114.26436,22.32692],[114.26437,22.32692],[114.26437,22.32692],[114.26438,22.32693],[114.26438,22.32693],[114.26439,22.32693],[114.26439,22.32693],[114.26439,22.32693],[114.2644,22.32693],[114.2644,22.32693],[114.26441,22.32693],[114.26441,22.32693],[114.26442,22.32693],[114.26442,22.32693],[114.26443,22.32693],[114.26443,22.32693],[114.26444,22.32693],[114.26444,22.32693],[114.26445,22.32693],[114.26445,22.32693],[114.26446,22.32693],[114.26446,22.32693],[114.26447,22.32693],[114.26447,22.32693],[114.26448,22.32693],[114.26448,22.32694],[114.26449,22.32694],[114.26449,22.32694],[114.2645,22.32694],[114.2645,22.32694],[114.26451,22.32694],[114.26451,22.32694],[114.26451,22.32694],[114.26452,22.32694],[114.26454,22.32695],[114.26455,22.32695],[114.26455,22.32695],[114.26456,22.32695],[114.26456,22.32695],[114.26457,22.32695],[114.26457,22.32696],[114.26458,22.32696],[114.26458,22.32696],[114.26458,22.32696],[114.26459,22.32696],[114.26459,22.32696],[114.2646,22.32696],[114.2646,22.32697],[114.26461,22.32697],[114.26461,22.32697],[114.26462,22.32697],[114.26462,22.32697],[114.26463,22.32697],[114.26464,22.32698],[114.26464,22.32698],[114.26464,22.32698],[114.26465,22.32698],[114.26465,22.32698],[114.26465,22.32698],[114.26466,22.32698],[114.26467,22.32699],[114.26467,22.32699],[114.26468,22.32699],[114.26468,22.32699],[114.26469,22.32699],[114.26469,22.32699],[114.26469,22.327],[114.2647,22.327],[114.2647,22.327],[114.26471,22.327],[114.26471,22.327],[114.26472,22.327],[114.26472,22.32701],[114.26473,22.32701],[114.26473,22.32701],[114.26473,22.32701],[114.26474,22.32701],[114.26474,22.32702],[114.26475,22.32702],[114.26475,22.32702],[114.26476,22.32702],[114.26476,22.32702],[114.26477,22.32702],[114.26477,22.32703],[114.26477,22.32703],[114.26478,22.32703],[114.26478,22.32703],[114.26479,22.32703],[114.26479,22.32704],[114.2648,22.32704],[114.2648,22.32704],[114.2648,22.32704],[114.26481,22.32704],[114.26481,22.32705],[114.26482,22.32705],[114.26482,22.32705],[114.26483,22.32705],[114.26483,22.32705],[114.26484,22.32705],[114.26484,22.32706],[114.26485,22.32706],[114.26485,22.32706],[114.26485,22.32706],[114.26486,22.32706],[114.26486,22.32706],[114.26487,22.32707],[114.26487,22.32707],[114.26488,22.32707],[114.26488,22.32707],[114.26489,22.32707],[114.26489,22.32707],[114.2649,22.32708],[114.2649,22.32708],[114.2649,22.32708],[114.26491,22.32708],[114.26491,22.32708],[114.26492,22.32708],[114.26492,22.32709],[114.26493,22.32709],[114.26493,22.32709],[114.26494,22.32709],[114.26494,22.32709],[114.26494,22.3271],[114.26495,22.3271],[114.26495,22.3271],[114.26496,22.3271],[114.26496,22.3271],[114.26497,22.32711],[114.26497,22.32711],[114.26497,22.32711],[114.26498,22.32711],[114.26498,22.32712],[114.26499,22.32712],[114.26499,22.32712],[114.265,22.32713],[114.26501,22.32713],[114.26501,22.32713],[114.26501,22.32714],[114.26502,22.32714],[114.26502,22.32714],[114.26503,22.32714],[114.26503,22.32714],[114.26504,22.32715],[114.26504,22.32715],[114.26505,22.32715],[114.26505,22.32716],[114.26505,22.32716],[114.26506,22.32716],[114.26506,22.32716],[114.26507,22.32717],[114.26507,22.32717],[114.26508,22.32717],[114.26508,22.32717],[114.26509,22.32717],[114.26509,22.32718],[114.26509,22.32718],[114.2651,22.32718],[114.2651,22.32718],[114.26511,22.32719],[114.26512,22.32719],[114.26512,22.32719],[114.26512,22.32719],[114.26513,22.3272],[114.26513,22.3272],[114.26514,22.3272],[114.26514,22.3272],[114.26514,22.3272],[114.26518,22.32723],[114.26519,22.32724],[114.26523,22.32716],[114.26526,22.3271],[114.26529,22.32704],[114.26537,22.32688],[114.26544,22.32676],[114.26547,22.32672],[114.26549,22.32669],[114.26551,22.32666],[114.26554,22.32662],[114.26557,22.32658],[114.26561,22.32655],[114.26565,22.32652],[114.26568,22.32649],[114.26571,22.32647],[114.26574,22.32645],[114.26577,22.32643],[114.2658,22.32641],[114.26582,22.3264],[114.26585,22.32639],[114.26588,22.32637],[114.26592,22.32635],[114.26594,22.32633],[114.26596,22.32631],[114.26598,22.3263],[114.266,22.32628],[114.26602,22.32626],[114.26604,22.32623],[114.26606,22.32621],[114.26608,22.32618],[114.2661,22.32616],[114.26612,22.32613],[114.26613,22.32611],[114.26614,22.32607],[114.26616,22.32605],[114.26617,22.32603],[114.26619,22.326],[114.2662,22.32598],[114.26622,22.32595],[114.26624,22.32593],[114.26627,22.3259],[114.26629,22.32587],[114.26631,22.32585],[114.26634,22.32582],[114.26637,22.3258],[114.26639,22.32578],[114.26642,22.32576],[114.26644,22.32574],[114.26647,22.32572],[114.26649,22.32571],[114.26651,22.32569],[114.26658,22.32564],[114.26666,22.32558],[114.26671,22.32554],[114.26676,22.3255],[114.26677,22.3255],[114.26678,22.32549],[114.2668,22.32548],[114.26681,22.32547],[114.26682,22.32545],[114.26683,22.32543],[114.26684,22.32542],[114.26685,22.3254],[114.2669,22.32532],[114.26692,22.3253],[114.26694,22.32528],[114.26696,22.32525],[114.26698,22.32523],[114.26702,22.32519],[114.26705,22.32515],[114.26709,22.3251],[114.26713,22.32507],[114.26714,22.32505],[114.26716,22.32504],[114.26717,22.32503],[114.26719,22.32502],[114.26722,22.32499],[114.26725,22.32497],[114.26728,22.32495],[114.26731,22.32493],[114.26735,22.32491],[114.26738,22.3249],[114.26741,22.32489],[114.26744,22.32487],[114.26749,22.32486],[114.26753,22.32485],[114.26757,22.32483],[114.26761,22.32482],[114.26762,22.32482],[114.26764,22.32481],[114.26767,22.3248],[114.26769,22.32479],[114.26772,22.32477],[114.26775,22.32476],[114.26778,22.32474],[114.26781,22.32472],[114.26781,22.32472],[114.26783,22.3247],[114.26786,22.32468],[114.26789,22.32466],[114.26791,22.32464],[114.26793,22.32461],[114.26801,22.32452],[114.26809,22.32443],[114.26817,22.32435],[114.26823,22.32428],[114.26826,22.32425],[114.26829,22.32421],[114.26838,22.32412],[114.26842,22.32406],[114.26847,22.32399],[114.2685,22.32395],[114.26854,22.32391],[114.26867,22.3238],[114.2687,22.32377],[114.26872,22.32374],[114.26874,22.3237],[114.26877,22.32367],[114.26878,22.32364],[114.2688,22.32362],[114.26882,22.32359],[114.26883,22.32356],[114.26886,22.32352],[114.26889,22.32346],[114.2689,22.32342],[114.26892,22.32334],[114.26897,22.32322],[114.26904,22.32306],[114.26908,22.32299],[114.26909,22.32298],[114.26909,22.32298],[114.26909,22.32297],[114.26911,22.32292],[114.26913,22.32288],[114.26914,22.32283],[114.26916,22.32279],[114.26916,22.32278],[114.26916,22.32277],[114.26916,22.32277],[114.26916,22.32277],[114.26916,22.32276],[114.26917,22.32276],[114.26917,22.32275],[114.26917,22.32275],[114.26917,22.32274],[114.26917,22.32274],[114.26917,22.32274],[114.26917,22.32273],[114.26918,22.32273],[114.26918,22.32272],[114.26918,22.32272],[114.26918,22.32271],[114.26918,22.32271],[114.26918,22.32271],[114.26918,22.3227],[114.26919,22.3227],[114.26919,22.32269],[114.26919,22.32269],[114.26919,22.32269],[114.26919,22.32268],[114.2692,22.32268],[114.2692,22.32267],[114.2692,22.32267],[114.2692,22.32266],[114.2692,22.32266],[114.2692,22.32266],[114.26921,22.32265],[114.26921,22.32265],[114.26921,22.32264],[114.26922,22.32263],[114.26922,22.32262],[114.26922,22.32262],[114.26922,22.32261],[114.26923,22.32261],[114.26923,22.32261],[114.26923,22.3226],[114.26923,22.3226],[114.26923,22.3226],[114.26921,22.3226],[114.2692,22.32261],[114.26919,22.32261],[114.26917,22.3226],[114.26916,22.3226],[114.26915,22.3226],[114.26914,22.3226],[114.26913,22.32259],[114.26904,22.32257],[114.26902,22.32255],[114.26901,22.32254],[114.269,22.32253],[114.26899,22.32253],[114.26899,22.32252],[114.26898,22.32251],[114.26898,22.3225],[114.26897,22.32249],[114.26897,22.32248],[114.26896,22.32247],[114.26896,22.32246],[114.26896,22.32245],[114.26896,22.32244],[114.26896,22.32243],[114.26896,22.32242],[114.26896,22.32241],[114.26896,22.3224],[114.26896,22.32238],[114.26897,22.32233],[114.26898,22.32229],[114.269,22.3222],[114.26901,22.32218],[114.26901,22.32215],[114.26903,22.32204],[114.26904,22.322],[114.26904,22.32196],[114.26905,22.32194],[114.26905,22.32192],[114.26905,22.32189],[114.26905,22.32183],[114.26904,22.3217],[114.26903,22.32163],[114.26903,22.32158],[114.26899,22.32125],[114.26899,22.32123],[114.26898,22.3212],[114.26898,22.32115],[114.26898,22.3211],[114.26898,22.32107],[114.26898,22.32105],[114.26899,22.32102],[114.26899,22.321],[114.26916,22.32091],[114.26926,22.32086],[114.2694,22.32079],[114.26955,22.32076],[114.26975,22.32072],[114.26992,22.32071],[114.27008,22.3207],[114.27021,22.32069],[114.27037,22.32066],[114.27042,22.32064],[114.27052,22.32055],[114.2706,22.32046],[114.2706,22.32045],[114.27061,22.32045],[114.27061,22.32045],[114.27061,22.32044],[114.27061,22.32044],[114.27062,22.32043],[114.27062,22.32043],[114.27062,22.32043],[114.27062,22.32042],[114.27063,22.32042],[114.27063,22.32042],[114.27063,22.32041],[114.27063,22.32041],[114.27064,22.3204],[114.27064,22.3204],[114.27064,22.3204],[114.27064,22.32039],[114.27065,22.32039],[114.27065,22.32038],[114.27065,22.32038],[114.27065,22.32038],[114.27065,22.32037],[114.27066,22.32037],[114.27066,22.32036],[114.27066,22.32036],[114.27066,22.32036],[114.27067,22.32035],[114.27067,22.32035],[114.27067,22.32034],[114.27067,22.32034],[114.27067,22.32034],[114.27068,22.32033],[114.27068,22.32033],[114.27068,22.32032],[114.27068,22.32032],[114.27069,22.32032],[114.27069,22.32031],[114.27069,22.3203],[114.27069,22.3203],[114.2707,22.3203],[114.2707,22.32029],[114.2707,22.32029],[114.2707,22.32028],[114.2707,22.32028],[114.27071,22.32027],[114.27071,22.32027],[114.27071,22.32027],[114.27071,22.32026],[114.27071,22.32026],[114.27072,22.32025],[114.27072,22.32025],[114.27072,22.32025],[114.27072,22.32024],[114.27073,22.32024],[114.27073,22.32023],[114.27073,22.32023],[114.27073,22.32023],[114.27073,22.32022],[114.27074,22.32022],[114.27074,22.32021],[114.27074,22.32021],[114.27074,22.32021],[114.27075,22.3202],[114.27075,22.32019],[114.27075,22.32019],[114.27076,22.32019],[114.27076,22.32018],[114.27076,22.32018],[114.27076,22.32017],[114.27077,22.32017],[114.27077,22.32017],[114.27077,22.32016],[114.27077,22.32016],[114.27078,22.32016],[114.27078,22.32015],[114.27078,22.32015],[114.27078,22.32014],[114.27079,22.32014],[114.27079,22.32014],[114.27079,22.32013],[114.27079,22.32013],[114.27079,22.32012],[114.2708,22.32012],[114.2708,22.32012],[114.2708,22.32011],[114.2708,22.32011],[114.27081,22.3201],[114.27081,22.3201],[114.27081,22.3201],[114.27081,22.32009],[114.27082,22.32009],[114.27082,22.32008],[114.27082,22.32008],[114.27082,22.32008],[114.27083,22.32007],[114.27083,22.32007],[114.27083,22.32006],[114.27083,22.32006],[114.27084,22.32006],[114.27084,22.32005],[114.27084,22.32005],[114.27085,22.32004],[114.27085,22.32004],[114.27085,22.32003],[114.27085,22.32003],[114.27086,22.32003],[114.27086,22.32002],[114.27086,22.32002],[114.27086,22.32002],[114.27087,22.32001],[114.27087,22.32001],[114.27088,22.32],[114.27088,22.32],[114.27088,22.31999],[114.27088,22.31999],[114.27089,22.31999],[114.27089,22.31998],[114.27089,22.31998],[114.27089,22.31997],[114.2709,22.31997],[114.2709,22.31997],[114.2709,22.31996],[114.27091,22.31996],[114.27091,22.31996],[114.27091,22.31995],[114.27091,22.31995],[114.27092,22.31994],[114.27092,22.31994],[114.27092,22.31994],[114.27092,22.31993],[114.27093,22.31993],[114.27093,22.31993],[114.27093,22.31992],[114.27093,22.31992],[114.27094,22.31991],[114.27098,22.31985],[114.27098,22.31985],[114.27098,22.31984],[114.27098,22.31984],[114.27099,22.31983],[114.27099,22.31983],[114.27099,22.31983],[114.27099,22.31982],[114.271,22.31982],[114.271,22.31982],[114.271,22.31981],[114.27101,22.31981],[114.27101,22.31981],[114.27101,22.3198],[114.27101,22.3198],[114.27102,22.31979],[114.27102,22.31979],[114.27102,22.31979],[114.27103,22.31978],[114.27103,22.31978],[114.27103,22.31978],[114.27104,22.31977],[114.27104,22.31977],[114.27104,22.31977],[114.27105,22.31976],[114.27105,22.31976],[114.27105,22.31976],[114.27106,22.31975],[114.27106,22.31975],[114.27106,22.31975],[114.27107,22.31975],[114.27107,22.31974],[114.27107,22.31974],[114.27108,22.31974],[114.27108,22.31973],[114.27109,22.31973],[114.27109,22.31973],[114.27109,22.31972],[114.2711,22.31972],[114.2711,22.31972],[114.27111,22.31972],[114.27111,22.31971],[114.27111,22.31971],[114.27112,22.31971],[114.27112,22.31971],[114.27112,22.3197],[114.27113,22.3197],[114.27113,22.3197],[114.27114,22.3197],[114.27114,22.31969],[114.27115,22.31969],[114.27115,22.31969],[114.27115,22.31969],[114.27116,22.31969],[114.27116,22.31968],[114.27116,22.31968],[114.27117,22.31968],[114.27117,22.31968],[114.27118,22.31968],[114.27118,22.31968],[114.27118,22.31967],[114.27119,22.31967],[114.27119,22.31967],[114.2712,22.31967],[114.2712,22.31967],[114.27121,22.31966],[114.27121,22.31966],[114.27122,22.31966],[114.27122,22.31966],[114.27122,22.31966],[114.27123,22.31966],[114.27123,22.31965],[114.27124,22.31965],[114.27124,22.31965],[114.27125,22.31965],[114.27125,22.31965],[114.27126,22.31965],[114.27126,22.31965],[114.27127,22.31965],[114.27127,22.31965],[114.27128,22.31964],[114.27129,22.31964],[114.27129,22.31964],[114.27129,22.31964],[114.2713,22.31963],[114.2713,22.31963],[114.27131,22.31963],[114.27131,22.31963],[114.27132,22.31963],[114.27132,22.31962],[114.27133,22.31962],[114.27133,22.31962],[114.27133,22.31962],[114.27134,22.31962],[114.27135,22.31961],[114.27135,22.31961],[114.27136,22.31961],[114.27137,22.3196],[114.27138,22.3196],[114.27138,22.3196],[114.27139,22.3196],[114.27139,22.3196],[114.2714,22.31959],[114.2714,22.31959],[114.27141,22.31959],[114.27141,22.31959],[114.27141,22.31959],[114.27142,22.31958],[114.27142,22.31958],[114.27143,22.31958],[114.27143,22.31958],[114.27144,22.31958],[114.27145,22.31957],[114.27145,22.31957],[114.27145,22.31957],[114.27146,22.31957],[114.27146,22.31957],[114.27147,22.31956],[114.27147,22.31956],[114.27148,22.31956],[114.27148,22.31956],[114.27148,22.31956],[114.27149,22.31955],[114.27149,22.31955],[114.2715,22.31955],[114.2715,22.31955],[114.27151,22.31955],[114.27151,22.31954],[114.27152,22.31954],[114.27152,22.31954],[114.27152,22.31954],[114.27153,22.31954],[114.27153,22.31953],[114.27154,22.31953],[114.27154,22.31953],[114.27155,22.31953],[114.27155,22.31953],[114.27156,22.31952],[114.27156,22.31952],[114.27156,22.31952],[114.27157,22.31952],[114.27158,22.31951],[114.27159,22.31951],[114.27159,22.31951],[114.27159,22.31951],[114.2716,22.3195],[114.27161,22.3195],[114.27161,22.3195],[114.27162,22.3195],[114.27162,22.31949],[114.27163,22.31949],[114.27179,22.31939],[114.2718,22.31938],[114.27192,22.31929],[114.27201,22.31923],[114.27204,22.31921],[114.27205,22.3192],[114.27205,22.3192],[114.27206,22.3192],[114.27206,22.31919],[114.27207,22.31919],[114.27208,22.31918],[114.27208,22.31918],[114.27209,22.31918],[114.27209,22.31917],[114.2721,22.31917],[114.2721,22.31917],[114.2721,22.31917],[114.27211,22.31916],[114.27211,22.31916],[114.27212,22.31916],[114.27212,22.31915],[114.27212,22.31915],[114.27213,22.31915],[114.27213,22.31915],[114.27213,22.31914],[114.27214,22.31914],[114.27214,22.31914],[114.27215,22.31914],[114.27215,22.31913],[114.27216,22.31913],[114.27216,22.31912],[114.27216,22.31912],[114.27217,22.31912],[114.27218,22.31911],[114.27218,22.31911],[114.27218,22.31911],[114.27219,22.3191],[114.27219,22.3191],[114.2722,22.3191],[114.2722,22.31909],[114.27221,22.31909],[114.27221,22.31909],[114.27221,22.31908],[114.27222,22.31908],[114.27222,22.31908],[114.27222,22.31908],[114.27223,22.31907],[114.27223,22.31907],[114.27224,22.31907],[114.27224,22.31906],[114.27225,22.31906],[114.27225,22.31906],[114.27225,22.31905],[114.27226,22.31905],[114.27226,22.31905],[114.27227,22.31904],[114.27227,22.31904],[114.27227,22.31904],[114.27228,22.31903],[114.27228,22.31903],[114.27228,22.31903],[114.27229,22.31903],[114.27229,22.31902],[114.2723,22.31902],[114.2723,22.31901],[114.27231,22.31901],[114.27231,22.31901],[114.27231,22.319],[114.27232,22.319],[114.27232,22.319],[114.27232,22.319],[114.27233,22.31899],[114.27233,22.31899],[114.27233,22.31899],[114.27234,22.31898],[114.27234,22.31898],[114.27235,22.31897],[114.27235,22.31897],[114.27235,22.31897],[114.27236,22.31896],[114.27236,22.31896],[114.27237,22.31896],[114.27237,22.31895],[114.27237,22.31895],[114.27238,22.31895],[114.27238,22.31895],[114.27238,22.31894],[114.27239,22.31894],[114.27239,22.31894],[114.27239,22.31893],[114.2724,22.31893],[114.2724,22.31893],[114.2724,22.31892],[114.27241,22.31892],[114.27241,22.31891],[114.27242,22.31891],[114.27243,22.3189],[114.27243,22.3189],[114.27243,22.31889],[114.27244,22.31889],[114.27244,22.31889],[114.27244,22.31888],[114.27245,22.31888],[114.27245,22.31888],[114.27245,22.31887],[114.27246,22.31887],[114.27247,22.31886],[114.27247,22.31886],[114.27247,22.31886],[114.27248,22.31885],[114.27248,22.31885],[114.27248,22.31885],[114.27249,22.31884],[114.27249,22.31884],[114.27249,22.31884],[114.2725,22.31883],[114.2725,22.31883],[114.27251,22.31882],[114.27251,22.31882],[114.27252,22.31881],[114.27253,22.3188],[114.27253,22.3188],[114.27253,22.3188],[114.27254,22.31879],[114.27254,22.31879],[114.27254,22.31879],[114.27255,22.31878],[114.27255,22.31878],[114.27255,22.31878],[114.27256,22.31877],[114.27256,22.31877],[114.27256,22.31877],[114.27257,22.31876],[114.27257,22.31876],[114.27258,22.31875],[114.27258,22.31875],[114.27258,22.31875],[114.27259,22.31874],[114.27259,22.31874],[114.27259,22.31874],[114.2726,22.31873],[114.2726,22.31873],[114.2726,22.31873],[114.27261,22.31872],[114.27261,22.31872],[114.27261,22.31872],[114.27262,22.31871],[114.27262,22.31871],[114.27262,22.3187],[114.27262,22.3187],[114.27263,22.3187],[114.27263,22.31869],[114.27263,22.31869],[114.27264,22.31869],[114.27264,22.31868],[114.27265,22.31868],[114.27265,22.31867],[114.27265,22.31867],[114.27266,22.31867],[114.27266,22.31866],[114.27266,22.31866],[114.27267,22.31865],[114.27267,22.31865],[114.27267,22.31865],[114.27267,22.31865],[114.2727,22.31862],[114.27291,22.3184],[114.27311,22.31817],[114.27335,22.31792],[114.2738,22.31741],[114.27458,22.31724],[114.27458,22.31723],[114.27458,22.31722],[114.27458,22.31721],[114.27458,22.3172],[114.27458,22.31719],[114.27458,22.31718],[114.27458,22.31717],[114.27457,22.31716],[114.27457,22.31715],[114.27457,22.31715],[114.27456,22.31714],[114.27456,22.31713],[114.27455,22.31712],[114.27451,22.31706],[114.27451,22.31705],[114.2745,22.31704],[114.2745,22.31703],[114.27449,22.31703],[114.27449,22.31702],[114.27449,22.31701],[114.27449,22.317],[114.27448,22.31699],[114.27448,22.31698],[114.27448,22.31697],[114.27448,22.31696],[114.27448,22.31695],[114.27448,22.31694],[114.27448,22.31694],[114.27448,22.31693],[114.27448,22.31692],[114.27448,22.31691],[114.27449,22.3169],[114.27449,22.31689],[114.27449,22.31688],[114.27449,22.31687],[114.2745,22.31686],[114.2745,22.31686],[114.27449,22.31684],[114.27449,22.31683],[114.27448,22.31683],[114.27448,22.31683],[114.27448,22.31682],[114.27448,22.31682],[114.27447,22.31681],[114.27447,22.31681],[114.27447,22.31681],[114.27447,22.3168],[114.27446,22.3168],[114.27446,22.3168],[114.27446,22.31679],[114.27446,22.31679],[114.27445,22.31678],[114.27445,22.31678],[114.27445,22.31678],[114.27444,22.31677],[114.27444,22.31677],[114.27444,22.31676],[114.27444,22.31676],[114.27443,22.31676],[114.27443,22.31675],[114.27443,22.31675],[114.27443,22.31675],[114.27442,22.31674],[114.27442,22.31674],[114.27442,22.31673],[114.27442,22.31673],[114.27441,22.31673],[114.27441,22.31672],[114.27441,22.31672],[114.2744,22.31672],[114.2744,22.31671],[114.2744,22.31671],[114.27439,22.31671],[114.27438,22.31669],[114.27437,22.31667],[114.27436,22.31667],[114.27436,22.31666],[114.27436,22.31666],[114.27435,22.31666],[114.27435,22.31665],[114.27435,22.31665],[114.27434,22.31664],[114.27434,22.31664],[114.27434,22.31664],[114.27433,22.31663],[114.27433,22.31663],[114.27433,22.31663],[114.27433,22.31662],[114.27432,22.31662],[114.27432,22.31662],[114.27432,22.31661],[114.27431,22.31661],[114.27431,22.31661],[114.27431,22.3166],[114.2743,22.3166],[114.2743,22.3166],[114.2743,22.31659],[114.27429,22.31659],[114.27429,22.31659],[114.27428,22.31658],[114.27428,22.31657],[114.27428,22.31657],[114.27427,22.31656],[114.27427,22.31656],[114.27427,22.31655],[114.27426,22.31655],[114.27426,22.31655],[114.27426,22.31654],[114.27426,22.31654],[114.27425,22.31653],[114.27425,22.31653],[114.27424,22.31653],[114.27424,22.31652],[114.27424,22.31652],[114.27423,22.31651],[114.27423,22.31651],[114.27423,22.3165],[114.27422,22.3165],[114.27422,22.3165],[114.27422,22.31649],[114.27421,22.31649],[114.27421,22.31648],[114.27421,22.31648],[114.2742,22.31648],[114.2742,22.31647],[114.2742,22.31647],[114.27419,22.31647],[114.27419,22.31647],[114.27419,22.31646],[114.27418,22.31646],[114.27431,22.31626],[114.27402,22.31591],[114.27401,22.3159],[114.27401,22.3159],[114.274,22.31589],[114.274,22.31589],[114.274,22.31588],[114.27399,22.31588],[114.27399,22.31588],[114.27399,22.31587],[114.27398,22.31586],[114.27398,22.31586],[114.27397,22.31585],[114.27397,22.31585],[114.27397,22.31585],[114.27396,22.31584],[114.27396,22.31583],[114.27396,22.31583],[114.27395,22.31583],[114.27395,22.31582],[114.27395,22.31582],[114.27395,22.31582],[114.27394,22.31581],[114.27394,22.31581],[114.27393,22.3158],[114.27393,22.3158],[114.27393,22.31579],[114.27393,22.31579],[114.27392,22.31578],[114.27392,22.31578],[114.27391,22.31577],[114.27391,22.31577],[114.27391,22.31576],[114.2739,22.31576],[114.2739,22.31575],[114.27389,22.31575],[114.27389,22.31575],[114.27389,22.31574],[114.27384,22.31572],[114.27382,22.31571],[114.27382,22.31571],[114.27381,22.31571],[114.27381,22.3157],[114.27381,22.3157],[114.2738,22.3157],[114.2738,22.3157],[114.27379,22.3157],[114.27379,22.31569],[114.27378,22.31569],[114.27378,22.31569],[114.27377,22.31569],[114.27377,22.31568],[114.27376,22.31568],[114.27375,22.31568],[114.27375,22.31567],[114.27375,22.31567],[114.27374,22.31567],[114.27374,22.31567],[114.27373,22.31567],[114.27373,22.31566],[114.27372,22.31566],[114.27372,22.31566],[114.27372,22.31566],[114.27371,22.31566],[114.2737,22.31565],[114.2737,22.31565],[114.2737,22.31565],[114.27369,22.31564],[114.27369,22.31564],[114.27368,22.31564],[114.27368,22.31564],[114.27368,22.31563],[114.27367,22.31563],[114.27367,22.31563],[114.27367,22.31562],[114.27366,22.31562],[114.27366,22.31562],[114.27365,22.31562],[114.27365,22.31561],[114.27365,22.31561],[114.27364,22.31561],[114.27364,22.3156],[114.27364,22.3156],[114.27363,22.3156],[114.27363,22.31559],[114.27362,22.31559],[114.27362,22.31559],[114.27362,22.31559],[114.27361,22.31558],[114.27361,22.31558],[114.27361,22.31558],[114.2736,22.31557],[114.2736,22.31557],[114.2736,22.31557],[114.27359,22.31556],[114.27359,22.31556],[114.27359,22.31556],[114.27359,22.31555],[114.27358,22.31555],[114.27358,22.31555],[114.27356,22.31552],[114.27356,22.31552],[114.27355,22.31552],[114.27355,22.31551],[114.27355,22.31551],[114.27355,22.3155],[114.27355,22.3155],[114.27354,22.3155],[114.27354,22.31549],[114.27354,22.31549],[114.27354,22.31548],[114.27354,22.31548],[114.27354,22.31547],[114.27354,22.31547],[114.27353,22.31547],[114.27353,22.31546],[114.27353,22.31545],[114.27353,22.31545],[114.27353,22.31544],[114.27353,22.31544],[114.27353,22.31544],[114.27353,22.31543],[114.27352,22.31543],[114.27352,22.31542],[114.27352,22.31542],[114.27352,22.31541],[114.27352,22.31541],[114.27352,22.3154],[114.27352,22.3154],[114.27352,22.3154],[114.27352,22.31539],[114.27352,22.31539],[114.27352,22.31538],[114.27352,22.31538],[114.27352,22.31537],[114.27353,22.31537],[114.27353,22.31536],[114.27353,22.31536],[114.27353,22.31536],[114.27353,22.31535],[114.27354,22.31535],[114.27354,22.31535],[114.27354,22.31534],[114.27355,22.31534],[114.27355,22.31534],[114.27355,22.31534],[114.27356,22.31533],[114.27356,22.31533],[114.27356,22.31533],[114.27357,22.31532],[114.27357,22.31532],[114.27357,22.31532],[114.27358,22.31531],[114.2736,22.31527],[114.2736,22.31525],[114.2736,22.31521],[114.2736,22.31516],[114.27359,22.31511],[114.27358,22.31509],[114.27358,22.31508],[114.27358,22.31508],[114.27358,22.31508],[114.27358,22.31508],[114.27358,22.31507],[114.27359,22.31506],[114.2736,22.31504],[114.27361,22.31503],[114.27363,22.31501],[114.27365,22.31499],[114.27369,22.31497],[114.27371,22.31496],[114.27375,22.31494],[114.27379,22.31493],[114.27382,22.31491],[114.27384,22.3149],[114.27386,22.31488],[114.27389,22.31486],[114.27391,22.31484],[114.27392,22.31483],[114.27393,22.3148],[114.27395,22.31476],[114.27397,22.31472],[114.27411,22.31445],[114.27415,22.31434],[114.27427,22.3141],[114.27431,22.31404],[114.27434,22.31401],[114.27438,22.31396],[114.2744,22.31394],[114.27441,22.31393],[114.27443,22.31392],[114.27446,22.31391],[114.27448,22.31391],[114.27452,22.31388],[114.27452,22.31387],[114.27452,22.31387],[114.27452,22.31387],[114.27453,22.31386],[114.27453,22.31386],[114.27453,22.31386],[114.27453,22.31385],[114.27454,22.31385],[114.27454,22.31384],[114.27454,22.31384],[114.27454,22.31384],[114.27454,22.31383],[114.27455,22.31383],[114.27455,22.31382],[114.27455,22.31382],[114.27455,22.31381],[114.27455,22.31381],[114.27456,22.31381],[114.27456,22.3138],[114.27456,22.3138],[114.27456,22.31379],[114.27456,22.31379],[114.27456,22.31379],[114.27457,22.31378],[114.27457,22.31378],[114.27457,22.31377],[114.27457,22.31377],[114.27457,22.31376],[114.27457,22.31376],[114.27457,22.31375],[114.27457,22.31375],[114.27457,22.31375],[114.27458,22.31374],[114.27458,22.31374],[114.27458,22.31373],[114.27458,22.31373],[114.27458,22.31372],[114.27458,22.31372],[114.27458,22.31371],[114.27458,22.31371],[114.27458,22.31371],[114.27458,22.3137],[114.27458,22.3137],[114.27458,22.31369],[114.27458,22.31369],[114.27458,22.31368],[114.27458,22.31368],[114.27458,22.31367],[114.27458,22.31367],[114.27458,22.31366],[114.27458,22.31366],[114.27458,22.31366],[114.27458,22.31365],[114.27458,22.31365],[114.27458,22.31364],[114.27458,22.31364],[114.27458,22.31363],[114.27458,22.31363],[114.27458,22.31362],[114.27457,22.31362],[114.27457,22.31362],[114.27457,22.31361],[114.27457,22.31361],[114.27457,22.3136],[114.27457,22.3136],[114.27457,22.31359],[114.27457,22.31359],[114.27457,22.31358],[114.27456,22.31358],[114.27456,22.31358],[114.27456,22.31357],[114.27456,22.31357],[114.27456,22.31356],[114.27456,22.31356],[114.27455,22.31355],[114.27455,22.31355],[114.27454,22.31353],[114.27454,22.31352],[114.27453,22.31352],[114.27453,22.31352],[114.27453,22.31351],[114.27453,22.31351],[114.27453,22.3135],[114.27452,22.3135],[114.27452,22.3135],[114.27452,22.31349],[114.27452,22.31349],[114.27452,22.31348],[114.27451,22.31348],[114.27451,22.31347],[114.27451,22.31347],[114.27451,22.31347],[114.27451,22.31346],[114.2745,22.31346],[114.2745,22.31345],[114.2745,22.31345],[114.2745,22.31345],[114.2745,22.31344],[114.27449,22.31344],[114.27449,22.31343],[114.27449,22.31343],[114.27449,22.31342],[114.27449,22.31342],[114.27449,22.31342],[114.27448,22.31341],[114.27448,22.31341],[114.27448,22.3134],[114.27448,22.3134],[114.27448,22.3134],[114.27444,22.3134],[114.27443,22.3134],[114.27442,22.3134],[114.27442,22.3134],[114.27441,22.31339],[114.2744,22.31339],[114.27439,22.31339],[114.27438,22.31338],[114.27438,22.31338],[114.27437,22.31336],[114.27436,22.31335],[114.27435,22.31334],[114.27435,22.31332],[114.27434,22.3133],[114.27433,22.31327],[114.27433,22.31325],[114.27434,22.31323],[114.27435,22.31321],[114.27436,22.31319],[114.27436,22.31319],[114.27437,22.31318],[114.27437,22.31318],[114.27437,22.31318],[114.27438,22.31317],[114.27438,22.31317],[114.27439,22.31317],[114.2744,22.31317],[114.27441,22.31317],[114.27442,22.31316],[114.27443,22.31316],[114.27443,22.31316],[114.27443,22.31316],[114.27442,22.31315],[114.27442,22.31315],[114.27442,22.31314],[114.27442,22.31314],[114.27442,22.31313],[114.27442,22.31313],[114.27442,22.31313],[114.27442,22.31312],[114.27442,22.31312],[114.27442,22.31311],[114.27442,22.31311],[114.27442,22.3131],[114.27442,22.3131],[114.27442,22.31309],[114.27442,22.31309],[114.27442,22.31308],[114.27442,22.31308],[114.27442,22.31308],[114.27442,22.31307],[114.27442,22.31307],[114.27442,22.31306],[114.27442,22.31306],[114.27442,22.31305],[114.27442,22.31305],[114.27442,22.31304],[114.27442,22.31304],[114.27442,22.31303],[114.27442,22.31303],[114.27442,22.31303],[114.27442,22.31302],[114.27442,22.31302],[114.27442,22.31301],[114.27442,22.31301],[114.27443,22.313],[114.27443,22.313],[114.27443,22.31299],[114.27443,22.31299],[114.27443,22.31299],[114.27443,22.31298],[114.27443,22.31298],[114.27443,22.31297],[114.27443,22.31297],[114.27443,22.31296],[114.27443,22.31296],[114.27443,22.31295],[114.27443,22.31295],[114.27443,22.31295],[114.27443,22.31294],[114.27443,22.31294],[114.27443,22.31293],[114.27444,22.31293],[114.27444,22.31292],[114.27444,22.31292],[114.27444,22.31291],[114.27444,22.31291],[114.27444,22.3129],[114.27444,22.3129],[114.27444,22.3129],[114.27444,22.31289],[114.27444,22.31289],[114.27444,22.31288],[114.27444,22.31288],[114.27445,22.31287],[114.27445,22.31287],[114.27445,22.31287],[114.27445,22.31286],[114.27445,22.31286],[114.27445,22.31285],[114.27445,22.31285],[114.27446,22.3128],[114.27446,22.31277],[114.27442,22.31263],[114.27442,22.31263],[114.27442,22.31263],[114.27441,22.31263],[114.27441,22.31262],[114.2744,22.31262],[114.2744,22.31262],[114.2744,22.31262],[114.27439,22.31261],[114.27439,22.31261],[114.27438,22.31261],[114.27438,22.3126],[114.27438,22.3126],[114.27437,22.3126],[114.27437,22.3126],[114.27436,22.31259],[114.27436,22.31259],[114.27436,22.31259],[114.27435,22.31258],[114.27435,22.31258],[114.27435,22.31258],[114.27434,22.31258],[114.27434,22.31257],[114.27434,22.31257],[114.27433,22.31257],[114.27433,22.31256],[114.27432,22.31256],[114.27432,22.31256],[114.27432,22.31255],[114.27431,22.31255],[114.27431,22.31255],[114.27431,22.31254],[114.2743,22.31254],[114.2743,22.31254],[114.2743,22.31253],[114.27429,22.31253],[114.27429,22.31253],[114.27429,22.31252],[114.27428,22.31252],[114.27428,22.31252],[114.27428,22.31251],[114.27427,22.31251],[114.27427,22.31251],[114.27427,22.3125],[114.27427,22.3125],[114.27426,22.3125],[114.27426,22.31249],[114.27426,22.31249],[114.27425,22.31249],[114.27425,22.31248],[114.27425,22.31248],[114.27425,22.31248],[114.27424,22.31247],[114.27424,22.31247],[114.27424,22.31246],[114.27423,22.31246],[114.27423,22.31246],[114.27423,22.31245],[114.27423,22.31245],[114.27422,22.31245],[114.27422,22.31244],[114.27422,22.31244],[114.2742,22.31241],[114.27418,22.31238],[114.27417,22.31235],[114.27416,22.31233],[114.27416,22.31231],[114.27422,22.31226],[114.2743,22.31221],[114.2743,22.31221],[114.2743,22.3122],[114.2743,22.31219],[114.2743,22.31219],[114.2743,22.31218],[114.27431,22.31217],[114.27431,22.31216],[114.27431,22.31216],[114.27431,22.31215],[114.27431,22.31215],[114.27431,22.31214],[114.27431,22.31214],[114.27431,22.31214],[114.27431,22.31213],[114.27431,22.31213],[114.27431,22.31212],[114.27432,22.31211],[114.27432,22.3121],[114.27432,22.3121],[114.27432,22.31209],[114.27432,22.31209],[114.27432,22.31208],[114.27432,22.31208],[114.27432,22.31208],[114.27432,22.31207],[114.27432,22.31207],[114.27433,22.31206],[114.27433,22.31206],[114.27433,22.31205],[114.27433,22.31205],[114.27433,22.31204],[114.27433,22.31204],[114.27433,22.31204],[114.27433,22.31203],[114.27434,22.31201],[114.27434,22.31201],[114.27434,22.312],[114.27434,22.312],[114.27434,22.312],[114.27434,22.31199],[114.27434,22.31198],[114.27434,22.31198],[114.27434,22.31197],[114.27434,22.31197],[114.27434,22.31196],[114.27435,22.31196],[114.27435,22.31196],[114.27435,22.31195],[114.27435,22.31195],[114.27435,22.31194],[114.27435,22.31193],[114.27435,22.31192],[114.27435,22.31192],[114.27435,22.31192],[114.27435,22.31191],[114.27436,22.31191],[114.27436,22.3119],[114.27436,22.3119],[114.27436,22.31189],[114.27436,22.31189],[114.27436,22.31188],[114.27436,22.31188],[114.27436,22.31188],[114.27436,22.31187],[114.27436,22.31187],[114.27436,22.31186],[114.27436,22.31186],[114.27436,22.31185],[114.27437,22.31185],[114.27437,22.31184],[114.27437,22.31184],[114.27437,22.31184],[114.27437,22.31183],[114.27437,22.31183],[114.27437,22.31182],[114.27437,22.31182],[114.27437,22.31181],[114.27437,22.31181],[114.27437,22.3118],[114.27437,22.3118],[114.27438,22.31179],[114.27438,22.31179],[114.27438,22.31178],[114.27438,22.31178],[114.27438,22.31177],[114.27438,22.31177],[114.27438,22.31176],[114.27438,22.31175],[114.27438,22.31175],[114.27438,22.31175],[114.27438,22.31174],[114.27438,22.31174],[114.27438,22.31173],[114.27439,22.31173],[114.27439,22.31172],[114.27439,22.31172],[114.27439,22.31171],[114.27439,22.31171],[114.27439,22.31171],[114.27439,22.3117],[114.27439,22.3117],[114.27439,22.31169],[114.27439,22.31169],[114.27439,22.31168],[114.27439,22.31167],[114.27439,22.31167],[114.2744,22.31167],[114.2744,22.31166],[114.2744,22.31166],[114.2744,22.31164],[114.2744,22.31164],[114.2744,22.31163],[114.2744,22.31163],[114.2744,22.31163],[114.2744,22.31162],[114.2744,22.31162],[114.2744,22.31161],[114.2744,22.31161],[114.2744,22.3116],[114.27441,22.3116],[114.27441,22.31159],[114.27441,22.31159],[114.27441,22.31159],[114.27441,22.31158],[114.27441,22.31158],[114.27441,22.31157],[114.27441,22.31157],[114.27441,22.31156],[114.27441,22.31156],[114.27441,22.31155],[114.27441,22.31155],[114.27441,22.31154],[114.27441,22.31154],[114.27441,22.31153],[114.27442,22.31153],[114.27442,22.31152],[114.27442,22.31152],[114.27442,22.31151],[114.27442,22.31151],[114.27442,22.3115],[114.27442,22.3115],[114.27442,22.3115],[114.27442,22.31149],[114.27442,22.31149],[114.27442,22.31148],[114.27442,22.31148],[114.27442,22.31147],[114.27442,22.31147],[114.27442,22.31146],[114.27442,22.31146],[114.27443,22.31145],[114.27443,22.31145],[114.27443,22.31144],[114.27443,22.31144],[114.27443,22.31143],[114.27443,22.31143],[114.27443,22.31142],[114.27443,22.31142],[114.27443,22.31141],[114.27443,22.31141],[114.27443,22.31141],[114.27443,22.3114],[114.27443,22.3114],[114.27443,22.31139],[114.27443,22.31139],[114.27443,22.31138],[114.27443,22.31138],[114.27444,22.31137],[114.27444,22.31137],[114.27444,22.31137],[114.27444,22.31136],[114.27444,22.31135],[114.27444,22.31134],[114.27444,22.31133],[114.27444,22.31133],[114.27444,22.31133],[114.27444,22.31132],[114.27444,22.31132],[114.27444,22.31131],[114.27444,22.31131],[114.27444,22.3113],[114.27444,22.3113],[114.27444,22.31129],[114.27444,22.31129],[114.27445,22.31128],[114.27445,22.31128],[114.27445,22.31128],[114.27445,22.31127],[114.27445,22.31127],[114.27445,22.31126],[114.27445,22.31126],[114.27473,22.31136],[114.2751,22.31066],[114.27497,22.31063],[114.275,22.31052],[114.27542,22.31053],[114.2755,22.31064],[114.27589,22.3103],[114.27616,22.30999],[114.27617,22.30996],[114.27617,22.30995],[114.27617,22.30995],[114.27617,22.30994],[114.27616,22.30994],[114.27616,22.30993],[114.27616,22.30993],[114.27616,22.30993],[114.27615,22.30992],[114.27615,22.30992],[114.27615,22.30992],[114.27614,22.30991],[114.27614,22.30991],[114.27614,22.30991],[114.27613,22.3099],[114.27613,22.3099],[114.27613,22.3099],[114.27613,22.30989],[114.27613,22.30989],[114.27613,22.30988],[114.27613,22.30988],[114.27613,22.30987],[114.27613,22.30987],[114.27613,22.30986],[114.27613,22.30986],[114.27613,22.30986],[114.27613,22.30985],[114.27613,22.30985],[114.27613,22.30984],[114.27613,22.30984],[114.27613,22.30983],[114.27613,22.30983],[114.27613,22.30982],[114.27614,22.30982],[114.27614,22.30982],[114.27614,22.30981],[114.27614,22.30981],[114.27614,22.3098],[114.27615,22.3098],[114.27615,22.3098],[114.27615,22.30979],[114.27615,22.30979],[114.27615,22.30979],[114.27616,22.30978],[114.27616,22.30978],[114.27616,22.30978],[114.27617,22.30977],[114.27617,22.30977],[114.27617,22.30977],[114.27618,22.30976],[114.27618,22.30976],[114.27618,22.30976],[114.27619,22.30975],[114.27619,22.30975],[114.27619,22.30975],[114.27619,22.30975],[114.2762,22.30975],[114.2762,22.30974],[114.27621,22.30974],[114.27621,22.30974],[114.27621,22.30973],[114.27622,22.30973],[114.27622,22.30973],[114.27623,22.30973],[114.27623,22.30972],[114.27623,22.30972],[114.27624,22.30972],[114.27624,22.30972],[114.27625,22.30972],[114.27625,22.30971],[114.27626,22.30971],[114.27626,22.30971],[114.27627,22.30971],[114.27627,22.30971],[114.27627,22.30971],[114.27628,22.30971],[114.27628,22.30971],[114.27629,22.30971],[114.27629,22.30971],[114.2763,22.30971],[114.2763,22.30972],[114.27631,22.30972],[114.27631,22.30972],[114.27632,22.30972],[114.27632,22.30973],[114.27632,22.30973],[114.27633,22.30973],[114.27633,22.30974],[114.27633,22.30974],[114.27634,22.30974],[114.27634,22.30975],[114.27634,22.30975],[114.27634,22.30975],[114.27635,22.30976],[114.27635,22.30976],[114.27635,22.30977],[114.27635,22.30977],[114.27636,22.30977],[114.27636,22.30978],[114.27636,22.30978],[114.27636,22.30978],[114.27637,22.30979],[114.27637,22.30979],[114.27637,22.3098],[114.27637,22.3098],[114.27638,22.3098],[114.27638,22.30981],[114.27638,22.30981],[114.27638,22.30982],[114.27639,22.30982],[114.27639,22.30982],[114.27639,22.30983],[114.2764,22.30983],[114.2764,22.30983],[114.2764,22.30984],[114.2764,22.30984],[114.27641,22.30984],[114.27641,22.30985],[114.27641,22.30985],[114.27642,22.30986],[114.27642,22.30987],[114.27643,22.30987],[114.27643,22.30987],[114.27643,22.30988],[114.27643,22.30988],[114.27644,22.30988],[114.27644,22.30989],[114.27644,22.30989],[114.27645,22.30989],[114.27645,22.3099],[114.27645,22.3099],[114.27646,22.3099],[114.27646,22.30991],[114.27646,22.30991],[114.27646,22.30992],[114.27647,22.30992],[114.27647,22.30992],[114.27647,22.30993],[114.27648,22.30993],[114.27648,22.30993],[114.27648,22.30994],[114.27649,22.30994],[114.27649,22.30994],[114.27649,22.30995],[114.27649,22.30995],[114.2765,22.30995],[114.2765,22.30996],[114.2765,22.30996],[114.27651,22.30997],[114.27651,22.30997],[114.27651,22.30997],[114.27652,22.30998],[114.27652,22.30998],[114.27652,22.30998],[114.27653,22.30998],[114.27653,22.30999],[114.27653,22.30999],[114.27654,22.30999],[114.27654,22.31],[114.27655,22.31],[114.27655,22.31],[114.27655,22.31001],[114.27656,22.31001],[114.27656,22.31001],[114.27656,22.31002],[114.27656,22.31002],[114.27657,22.31002],[114.27657,22.31003],[114.27657,22.31003],[114.27658,22.31003],[114.27658,22.31004],[114.27658,22.31004],[114.27659,22.31005],[114.27659,22.31005],[114.27659,22.31005],[114.27659,22.31006],[114.2766,22.31006],[114.2766,22.31006],[114.2766,22.31007],[114.27661,22.31007],[114.27661,22.31007],[114.27662,22.31007],[114.27662,22.31008],[114.27662,22.31008],[114.27663,22.31008],[114.27663,22.31009],[114.27664,22.31009],[114.27664,22.3101],[114.27664,22.3101],[114.27665,22.3101],[114.27665,22.31011],[114.27666,22.31011],[114.27666,22.31011],[114.27666,22.31011],[114.27667,22.31012],[114.27667,22.31012],[114.27667,22.31012],[114.27668,22.31013],[114.27668,22.31013],[114.27669,22.31013],[114.27669,22.31013],[114.27669,22.31014],[114.2767,22.31014],[114.2767,22.31014],[114.27671,22.31014],[114.27671,22.31015],[114.27671,22.31015],[114.27672,22.31015],[114.27672,22.31016],[114.27673,22.31016],[114.27673,22.31016],[114.27673,22.31016],[114.27674,22.31017],[114.27674,22.31017],[114.27675,22.31017],[114.27675,22.31017],[114.27675,22.31018],[114.27676,22.31018],[114.27676,22.31018],[114.27677,22.31018],[114.27677,22.31019],[114.27677,22.31019],[114.27678,22.31019],[114.27678,22.31019],[114.27679,22.31019],[114.27679,22.3102],[114.27679,22.3102],[114.27681,22.31021],[114.27681,22.31021],[114.27682,22.31021],[114.27682,22.31022],[114.27682,22.31022],[114.27683,22.31022],[114.27683,22.31023],[114.27683,22.31023],[114.27684,22.31023],[114.27684,22.31023],[114.27684,22.31024],[114.27684,22.31024],[114.27684,22.31024],[114.27685,22.31025],[114.27685,22.31025],[114.27685,22.31026],[114.27685,22.31026],[114.27685,22.31026],[114.27686,22.31027],[114.27686,22.31027],[114.27686,22.31028],[114.27686,22.31028],[114.27686,22.31029],[114.27686,22.31029],[114.27685,22.3103],[114.27685,22.3103],[114.27685,22.3103],[114.27685,22.31031],[114.27685,22.31031],[114.27684,22.31032],[114.27684,22.31032],[114.27684,22.31032],[114.27683,22.31033],[114.27683,22.31033],[114.27681,22.31034],[114.27681,22.31034],[114.2768,22.31034],[114.2768,22.31034],[114.27679,22.31034],[114.27679,22.31035],[114.27678,22.31035],[114.27678,22.31035],[114.27678,22.31035],[114.27677,22.31035],[114.27677,22.31036],[114.27676,22.31036],[114.27676,22.31036],[114.27675,22.31036],[114.27675,22.31036],[114.27675,22.31037],[114.27674,22.31037],[114.27674,22.31037],[114.27673,22.31037],[114.27673,22.31038],[114.27673,22.31038],[114.27672,22.31038],[114.27672,22.31038],[114.27671,22.31039],[114.27671,22.31039],[114.27671,22.31039],[114.2767,22.3104],[114.2767,22.3104],[114.27669,22.3104],[114.27669,22.3104],[114.27669,22.31041],[114.27668,22.31041],[114.2766,22.31046],[114.2766,22.31047],[114.27659,22.31047],[114.27659,22.31047],[114.27659,22.31048],[114.27658,22.31048],[114.27658,22.31048],[114.27658,22.31049],[114.27658,22.31049],[114.27658,22.3105],[114.27658,22.3105],[114.27658,22.31051],[114.27658,22.31051],[114.27658,22.31052],[114.27659,22.31052],[114.27659,22.31052],[114.27659,22.31053],[114.2766,22.31053],[114.2766,22.31053],[114.2766,22.31054],[114.27661,22.31054],[114.27661,22.31054],[114.27661,22.31055],[114.27662,22.31055],[114.27662,22.31055],[114.27663,22.31055],[114.27663,22.31055],[114.27664,22.31055],[114.27664,22.31055],[114.27665,22.31055],[114.27665,22.31056],[114.27666,22.31056],[114.27666,22.31056],[114.27667,22.31056],[114.27667,22.31056],[114.27667,22.31056],[114.27668,22.31056],[114.27668,22.31056],[114.27669,22.31056],[114.2767,22.31056],[114.27676,22.31058],[114.27685,22.31062],[114.27692,22.31066],[114.27692,22.31066],[114.27692,22.31066],[114.27693,22.31066],[114.27693,22.31067],[114.27694,22.31067],[114.27694,22.31067],[114.27695,22.31067],[114.27695,22.31068],[114.27695,22.31068],[114.27696,22.31068],[114.27696,22.31068],[114.27697,22.31068],[114.27697,22.31068],[114.27698,22.31068],[114.27698,22.31068],[114.27699,22.31068],[114.277,22.31068],[114.27704,22.31069],[114.27707,22.31069],[114.27708,22.31069],[114.27709,22.31069],[114.27709,22.31069],[114.27709,22.31069],[114.2771,22.31069],[114.2771,22.31069],[114.27711,22.31069],[114.27711,22.31069],[114.27712,22.31069],[114.27712,22.31069],[114.27713,22.31069],[114.27713,22.31069],[114.27714,22.31069],[114.27714,22.31069],[114.27715,22.31069],[114.27715,22.31069],[114.27716,22.31069],[114.27716,22.3107],[114.27717,22.3107],[114.27717,22.3107],[114.27718,22.3107],[114.27718,22.3107],[114.27719,22.3107],[114.27719,22.3107],[114.2772,22.3107],[114.2772,22.31071],[114.2772,22.31071],[114.27721,22.31071],[114.27721,22.31071],[114.27722,22.31071],[114.27722,22.31071],[114.27723,22.31071],[114.27723,22.31072],[114.27724,22.31072],[114.27724,22.31072],[114.27725,22.31072],[114.27725,22.31072],[114.27725,22.31072],[114.27726,22.31073],[114.27726,22.31073],[114.27727,22.31073],[114.27727,22.31073],[114.27728,22.31073],[114.27728,22.31074],[114.27729,22.31074],[114.27729,22.31074],[114.27729,22.31074],[114.2773,22.31074],[114.2773,22.31075],[114.27731,22.31075],[114.27731,22.31075],[114.27732,22.31075],[114.27732,22.31075],[114.27733,22.31075],[114.27733,22.31075],[114.27733,22.31076],[114.27734,22.31076],[114.27734,22.31076],[114.27735,22.31076],[114.27735,22.31076],[114.27736,22.31076],[114.27736,22.31076],[114.27737,22.31076],[114.27737,22.31076],[114.27738,22.31076],[114.27738,22.31076],[114.27739,22.31076],[114.27739,22.31076],[114.2774,22.31077],[114.2774,22.31077],[114.27741,22.31077],[114.27741,22.31077],[114.27742,22.31077],[114.27742,22.31077],[114.27742,22.31077],[114.27743,22.31077],[114.27743,22.31078],[114.27744,22.31078],[114.27744,22.31078],[114.27745,22.31078],[114.27745,22.31078],[114.27746,22.31078],[114.27746,22.31079],[114.27747,22.31079],[114.27747,22.31079],[114.27747,22.31079],[114.27748,22.31079],[114.27748,22.3108],[114.27749,22.3108],[114.27749,22.3108],[114.27749,22.3108],[114.2775,22.31081],[114.2775,22.31081],[114.27751,22.31081],[114.27751,22.31081],[114.27751,22.31082],[114.27752,22.31082],[114.27752,22.31082],[114.27753,22.31082],[114.27753,22.31083],[114.27754,22.31083],[114.27754,22.31083],[114.27754,22.31083],[114.27755,22.31083],[114.27755,22.31084],[114.27756,22.31084],[114.27756,22.31084],[114.27757,22.31084],[114.27757,22.31085],[114.27757,22.31085],[114.27758,22.31085],[114.27758,22.31085],[114.27759,22.31085],[114.27759,22.31086],[114.2776,22.31086],[114.2776,22.31086],[114.2776,22.31086],[114.27761,22.31086],[114.27761,22.31087],[114.27762,22.31087],[114.27762,22.31087],[114.27763,22.31087],[114.27763,22.31087],[114.27763,22.31088],[114.27764,22.31088],[114.27764,22.31088],[114.27765,22.31088],[114.27765,22.31089],[114.27766,22.31089],[114.27766,22.31089],[114.27766,22.31089],[114.27767,22.31089],[114.27767,22.3109],[114.27768,22.3109],[114.27768,22.3109],[114.27768,22.31091],[114.27769,22.31091],[114.27769,22.31091],[114.27769,22.31091],[114.2777,22.31092],[114.2777,22.31092],[114.27771,22.31092],[114.27771,22.31092],[114.27771,22.31093],[114.27772,22.31093],[114.27772,22.31093],[114.27772,22.31094],[114.27773,22.31094],[114.27773,22.31094],[114.27774,22.31095],[114.27774,22.31095],[114.27774,22.31095],[114.27775,22.31095],[114.27775,22.31096],[114.27775,22.31096],[114.27776,22.31096],[114.27776,22.31097],[114.27776,22.31097],[114.27776,22.31098],[114.27777,22.31098],[114.27777,22.31098],[114.27777,22.31099],[114.27778,22.31099],[114.27778,22.31099],[114.27778,22.311],[114.27778,22.311],[114.27778,22.31101],[114.27779,22.31101],[114.27779,22.31102],[114.27779,22.31102],[114.27779,22.31102],[114.27779,22.31103],[114.27779,22.31103],[114.2778,22.31104],[114.2778,22.31104],[114.2778,22.31105],[114.2778,22.31105],[114.2778,22.31105],[114.2778,22.31106],[114.2778,22.31106],[114.2778,22.31107],[114.27781,22.31107],[114.27781,22.31108],[114.27781,22.31108],[114.27781,22.31108],[114.27782,22.31109],[114.27782,22.31109],[114.27782,22.31109],[114.27782,22.3111],[114.27783,22.3111],[114.27783,22.3111],[114.27783,22.31111],[114.27784,22.31111],[114.27784,22.31111],[114.27785,22.31112],[114.27785,22.31112],[114.27785,22.31112],[114.27786,22.31112],[114.27786,22.31113],[114.27787,22.31113],[114.27787,22.31113],[114.27788,22.31113],[114.27788,22.31113],[114.27788,22.31114],[114.27789,22.31114],[114.27789,22.31114],[114.2779,22.31114],[114.2779,22.31115],[114.2779,22.31115],[114.27791,22.31115],[114.27791,22.31115],[114.27791,22.31116],[114.27792,22.31116],[114.27792,22.31116],[114.27792,22.31117],[114.27793,22.31117],[114.27793,22.31117],[114.27794,22.31117],[114.27794,22.31118],[114.27794,22.31118],[114.27795,22.31118],[114.27795,22.31119],[114.27795,22.31119],[114.27796,22.31119],[114.27796,22.3112],[114.27796,22.3112],[114.27797,22.3112],[114.27797,22.31121],[114.27797,22.31121],[114.27798,22.31121],[114.27798,22.31122],[114.27798,22.31122],[114.27798,22.31122],[114.27799,22.31123],[114.27799,22.31123],[114.27799,22.31123],[114.278,22.31124],[114.278,22.31124],[114.278,22.31124],[114.27801,22.31125],[114.27801,22.31125],[114.27801,22.31126],[114.27802,22.31126],[114.27802,22.31126],[114.27802,22.31127],[114.27802,22.31127],[114.27803,22.31127],[114.27803,22.31128],[114.27803,22.31128],[114.27803,22.31129],[114.27804,22.31129],[114.27804,22.31129],[114.27804,22.3113],[114.27804,22.3113],[114.27805,22.31131],[114.27805,22.31131],[114.27805,22.31131],[114.27805,22.31132],[114.27805,22.31132],[114.27805,22.31133],[114.27806,22.31133],[114.27806,22.31134],[114.27806,22.31134],[114.27806,22.31134],[114.27806,22.31135],[114.27806,22.31135],[114.27807,22.31136],[114.27807,22.31136],[114.27807,22.31137],[114.27807,22.31137],[114.27807,22.31137],[114.27807,22.31138],[114.27807,22.31138],[114.27807,22.31139],[114.27807,22.31139],[114.27807,22.3114],[114.27807,22.3114],[114.27807,22.31141],[114.27807,22.31141],[114.27807,22.31142],[114.27807,22.31142],[114.27807,22.31142],[114.27807,22.31143],[114.27807,22.31143],[114.27807,22.31144],[114.27807,22.31144],[114.27807,22.31145],[114.27807,22.31145],[114.27806,22.31146],[114.27806,22.31146],[114.27806,22.31146],[114.27806,22.31147],[114.27806,22.31147],[114.27806,22.31148],[114.27806,22.31148],[114.27806,22.31149],[114.27806,22.31149],[114.27806,22.31149],[114.27806,22.3115],[114.27806,22.3115],[114.27806,22.31151],[114.27805,22.31151],[114.27805,22.31152],[114.27805,22.31152],[114.27805,22.31153],[114.27805,22.31153],[114.27805,22.31154],[114.27805,22.31154],[114.27805,22.31154],[114.27805,22.31155],[114.27805,22.31155],[114.27805,22.31156],[114.27805,22.31156],[114.27806,22.31157],[114.27806,22.31157],[114.27806,22.31158],[114.27806,22.31158],[114.27806,22.31158],[114.27806,22.31159],[114.27806,22.31159],[114.27806,22.3116],[114.27806,22.3116],[114.27806,22.31161],[114.27806,22.31161],[114.27807,22.31162],[114.27807,22.31162],[114.27807,22.31162],[114.27807,22.31163],[114.27807,22.31163],[114.27807,22.31164],[114.27807,22.31164],[114.27808,22.31165],[114.27808,22.31165],[114.27808,22.31165],[114.27808,22.31166],[114.27808,22.31166],[114.27809,22.31167],[114.27809,22.31167],[114.27809,22.31167],[114.27809,22.31168],[114.2781,22.31168],[114.2781,22.31169],[114.2781,22.31169],[114.2781,22.31169],[114.27811,22.3117],[114.27811,22.3117],[114.27811,22.3117],[114.27812,22.31171],[114.27812,22.31171],[114.27812,22.31171],[114.27813,22.31172],[114.27813,22.31172],[114.27813,22.31172],[114.27814,22.31173],[114.27814,22.31173],[114.27815,22.31173],[114.27815,22.31173],[114.27815,22.31174],[114.27816,22.31174],[114.27816,22.31174],[114.27817,22.31174],[114.27817,22.31175],[114.27817,22.31175],[114.27818,22.31175],[114.27818,22.31175],[114.27819,22.31176],[114.27819,22.31176],[114.2782,22.31176],[114.2782,22.31176],[114.2782,22.31176],[114.27821,22.31176],[114.27821,22.31177],[114.27822,22.31177],[114.27822,22.31177],[114.27823,22.31177],[114.27823,22.31177],[114.27823,22.31178],[114.27824,22.31178],[114.27824,22.31178],[114.27825,22.31178],[114.27825,22.31179],[114.27825,22.31179],[114.27826,22.31179],[114.27826,22.31179],[114.27826,22.3118],[114.27827,22.3118],[114.27827,22.31181],[114.27827,22.31181],[114.27828,22.31181],[114.27828,22.31182],[114.27828,22.31182],[114.27828,22.31182],[114.27829,22.31183],[114.27829,22.31183],[114.27829,22.31184],[114.2783,22.31184],[114.2783,22.31184],[114.2783,22.31185],[114.2783,22.31185],[114.2783,22.31185],[114.27831,22.31186],[114.27831,22.31186],[114.27831,22.31187],[114.27831,22.31187],[114.27831,22.31188],[114.27832,22.31188],[114.27832,22.31188],[114.27832,22.31189],[114.27832,22.31189],[114.27832,22.3119],[114.27832,22.3119],[114.27833,22.31191],[114.27833,22.31191],[114.27833,22.31191],[114.27833,22.31192],[114.27833,22.31192],[114.27833,22.31193],[114.27833,22.31193],[114.27833,22.31194],[114.27833,22.31194],[114.27833,22.31195],[114.27833,22.31195],[114.27833,22.31195],[114.27833,22.31196],[114.27833,22.31196],[114.27833,22.31197],[114.27833,22.31197],[114.27833,22.31198],[114.27833,22.31198],[114.27833,22.31199],[114.27833,22.31199],[114.27833,22.312],[114.27833,22.312],[114.27833,22.312],[114.27833,22.31201],[114.27833,22.31201],[114.27833,22.31202],[114.27833,22.31202],[114.27832,22.31203],[114.27832,22.31203],[114.27832,22.31204],[114.27832,22.31204],[114.27832,22.31204],[114.27832,22.31205],[114.27832,22.31205],[114.27832,22.31206],[114.27832,22.31206],[114.27831,22.31207],[114.27831,22.31207],[114.27831,22.31207],[114.27831,22.31208],[114.27831,22.31208],[114.27831,22.31209],[114.27831,22.31209],[114.27831,22.3121],[114.27831,22.3121],[114.27831,22.31211],[114.2783,22.31211],[114.2783,22.31211],[114.2783,22.31212],[114.2783,22.31212],[114.2783,22.31213],[114.2783,22.31213],[114.2783,22.31214],[114.2783,22.31214],[114.2783,22.31215],[114.2783,22.31215],[114.2783,22.31215],[114.2783,22.31216],[114.2783,22.31216],[114.2783,22.31217],[114.2783,22.31217],[114.2783,22.31217],[114.2783,22.31218],[114.2783,22.31218],[114.27831,22.31219],[114.27831,22.31219],[114.27831,22.31219],[114.27831,22.3122],[114.27832,22.3122],[114.27832,22.31221],[114.27832,22.31221],[114.27832,22.31221],[114.27833,22.31222],[114.27833,22.31222],[114.27833,22.31222],[114.27833,22.31223],[114.27834,22.31223],[114.27834,22.31223],[114.27834,22.31224],[114.27835,22.31224],[114.27835,22.31225],[114.27835,22.31225],[114.27836,22.31225],[114.27836,22.31226],[114.27836,22.31226],[114.27837,22.31226],[114.27837,22.31226],[114.27837,22.31227],[114.27838,22.31227],[114.27838,22.31227],[114.27838,22.31228],[114.27839,22.31228],[114.27839,22.31228],[114.2784,22.31229],[114.2784,22.31229],[114.2784,22.31229],[114.27841,22.31229],[114.27841,22.3123],[114.27841,22.3123],[114.27842,22.3123],[114.27842,22.31231],[114.27843,22.31231],[114.27843,22.31231],[114.27844,22.31232],[114.27844,22.31232],[114.27845,22.31233],[114.27845,22.31233],[114.27846,22.31233],[114.27846,22.31233],[114.27846,22.31234],[114.27847,22.31234],[114.27847,22.31235],[114.27848,22.31235],[114.27848,22.31235],[114.27849,22.31235],[114.27849,22.31236],[114.27849,22.31236],[114.2785,22.31236],[114.2785,22.31236],[114.27851,22.31237],[114.27851,22.31237],[114.27852,22.31238],[114.27853,22.31238],[114.27853,22.31239],[114.27854,22.31239],[114.27854,22.31239],[114.27854,22.31239],[114.27855,22.3124],[114.27855,22.3124],[114.27856,22.3124],[114.27856,22.3124],[114.27856,22.31241],[114.27857,22.31241],[114.27857,22.31241],[114.27858,22.31242],[114.27858,22.31242],[114.27858,22.31242],[114.27859,22.31242],[114.27859,22.31242],[114.2786,22.31243],[114.2786,22.31243],[114.2786,22.31243],[114.27861,22.31243],[114.27861,22.31243],[114.27862,22.31243],[114.27862,22.31243],[114.27863,22.31243],[114.27863,22.31243],[114.27864,22.31243],[114.27864,22.31243],[114.27865,22.31243],[114.27865,22.31243],[114.27866,22.31243],[114.27866,22.31243],[114.27867,22.31243],[114.27867,22.31243],[114.27868,22.31242],[114.27868,22.31242],[114.27868,22.31242],[114.2789,22.31232],[114.27892,22.31231],[114.27892,22.31231],[114.27893,22.3123],[114.27893,22.3123],[114.27893,22.31229],[114.27893,22.31229],[114.27893,22.31228],[114.27893,22.31228],[114.27893,22.31228],[114.27893,22.31227],[114.27893,22.31227],[114.27893,22.31226],[114.27892,22.31226],[114.27892,22.31225],[114.27892,22.31225],[114.27892,22.31225],[114.27892,22.31224],[114.27892,22.31224],[114.27892,22.31223],[114.27892,22.31223],[114.27892,22.31222],[114.27892,22.31222],[114.27892,22.31221],[114.27892,22.31221],[114.27891,22.31221],[114.27891,22.3122],[114.27891,22.3122],[114.27891,22.31219],[114.27891,22.31219],[114.27891,22.31218],[114.27891,22.31218],[114.27891,22.31217],[114.27891,22.31217],[114.27891,22.31217],[114.27891,22.31216],[114.27891,22.31216],[114.27891,22.31215],[114.27891,22.31215],[114.27891,22.31214],[114.27891,22.31214],[114.27891,22.31213],[114.27891,22.31213],[114.27891,22.31212],[114.27892,22.31212],[114.27892,22.31212],[114.27892,22.31211],[114.27892,22.31211],[114.27892,22.3121],[114.27892,22.3121],[114.27893,22.31209],[114.27893,22.31209],[114.27893,22.31209],[114.27893,22.31208],[114.27894,22.31208],[114.27894,22.31208],[114.27895,22.31208],[114.27895,22.31207],[114.27895,22.31207],[114.27896,22.31207],[114.27896,22.31207],[114.27897,22.31207],[114.27897,22.31206],[114.27898,22.31206],[114.27898,22.31206],[114.27899,22.31206],[114.27899,22.31206],[114.27899,22.31206],[114.279,22.31206],[114.279,22.31205],[114.27901,22.31205],[114.27901,22.31205],[114.27902,22.31205],[114.27902,22.31205],[114.27903,22.31205],[114.27903,22.31205],[114.27904,22.31205],[114.27904,22.31205],[114.27905,22.31205],[114.27905,22.31206],[114.27906,22.31206],[114.27906,22.31206],[114.27906,22.31206],[114.27907,22.31206],[114.27907,22.31207],[114.27908,22.31207],[114.27908,22.31207],[114.27908,22.31208],[114.27909,22.31208],[114.27909,22.31209],[114.2791,22.31209],[114.2791,22.31209],[114.2791,22.3121],[114.2791,22.3121],[114.2791,22.3121],[114.27911,22.3121],[114.27911,22.31211],[114.27911,22.31211],[114.27911,22.31212],[114.27912,22.31212],[114.27912,22.31212],[114.27912,22.31213],[114.27912,22.31213],[114.27912,22.31214],[114.27912,22.31214],[114.27913,22.31214],[114.27913,22.31215],[114.27913,22.31215],[114.27913,22.31216],[114.27913,22.31216],[114.27913,22.31217],[114.27914,22.31217],[114.27914,22.31217],[114.27914,22.31218],[114.27914,22.31218],[114.27914,22.31219],[114.27914,22.31219],[114.27914,22.3122],[114.27914,22.3122],[114.27915,22.31221],[114.27915,22.31221],[114.27915,22.31221],[114.27915,22.31221],[114.27915,22.31222],[114.27915,22.31222],[114.27915,22.31223],[114.27915,22.31223],[114.27915,22.31223],[114.27916,22.31224],[114.27916,22.31224],[114.27916,22.31225],[114.27916,22.31225],[114.27916,22.31226],[114.27917,22.31226],[114.27917,22.31227],[114.27917,22.31227],[114.27917,22.31228],[114.27918,22.31228],[114.27918,22.31228],[114.27918,22.31229],[114.27919,22.31229],[114.27919,22.31229],[114.27919,22.3123],[114.2792,22.3123],[114.2792,22.3123],[114.27921,22.3123],[114.27921,22.3123],[114.27922,22.3123],[114.27922,22.3123],[114.27922,22.3123],[114.27923,22.3123],[114.27923,22.3123],[114.27924,22.3123],[114.27924,22.3123],[114.27925,22.3123],[114.27926,22.3123],[114.27926,22.31229],[114.27927,22.31229],[114.27927,22.31229],[114.27928,22.31229],[114.27928,22.31229],[114.27928,22.31229],[114.27929,22.31229],[114.2793,22.31229],[114.2793,22.31228],[114.27931,22.31228],[114.27932,22.31228],[114.27932,22.31228],[114.27933,22.31228],[114.27934,22.31228],[114.27934,22.31228],[114.27935,22.31228],[114.27935,22.31227],[114.27936,22.31227],[114.27937,22.31227],[114.27937,22.31227],[114.27937,22.31227],[114.27938,22.31227],[114.27938,22.31227],[114.27939,22.31227],[114.27939,22.31227],[114.2794,22.31226],[114.2794,22.31226],[114.27941,22.31226],[114.27941,22.31226],[114.27942,22.31226],[114.27942,22.31226],[114.27943,22.31226],[114.27943,22.31226],[114.27944,22.31226],[114.27944,22.31226],[114.27945,22.31226],[114.27945,22.31225],[114.27946,22.31225],[114.27946,22.31225],[114.27947,22.31225],[114.27947,22.31225],[114.27947,22.31225],[114.27948,22.31225],[114.27949,22.31225],[114.27949,22.31225],[114.2795,22.31225],[114.2795,22.31225],[114.27951,22.31224],[114.27951,22.31224],[114.27952,22.31224],[114.27953,22.31224],[114.27953,22.31224],[114.27954,22.31224],[114.27954,22.31224],[114.27955,22.31224],[114.27955,22.31224],[114.27956,22.31224],[114.27957,22.31224],[114.27957,22.31223],[114.27957,22.31223],[114.27958,22.31223],[114.27958,22.31223],[114.27959,22.31223],[114.27959,22.31223],[114.2796,22.31223],[114.2796,22.31223],[114.27961,22.31223],[114.27961,22.31223],[114.27962,22.31223],[114.27962,22.31223],[114.27963,22.31223],[114.27963,22.31223],[114.27964,22.31222],[114.27964,22.31222],[114.27965,22.31222],[114.27965,22.31222],[114.27966,22.31222],[114.27966,22.31222],[114.27967,22.31222],[114.27967,22.31222],[114.27968,22.31222],[114.27968,22.31222],[114.27969,22.31222],[114.27969,22.31222],[114.2797,22.31222],[114.2797,22.31222],[114.2797,22.31222],[114.27971,22.31222],[114.27971,22.31222],[114.27972,22.31222],[114.27972,22.31222],[114.27973,22.31222],[114.27973,22.31222],[114.27974,22.31222],[114.27974,22.31222],[114.27975,22.31222],[114.27975,22.31222],[114.27976,22.31222],[114.27976,22.31222],[114.27977,22.31222],[114.27977,22.31222],[114.27978,22.31222],[114.27978,22.31222],[114.27979,22.31222],[114.27979,22.31222],[114.2798,22.31222],[114.2798,22.31222],[114.27981,22.31222],[114.27981,22.31222],[114.27982,22.31222],[114.27982,22.31222],[114.27983,22.31222],[114.27983,22.31222],[114.27984,22.31222],[114.27984,22.31222],[114.27985,22.31222],[114.27985,22.31223],[114.27986,22.31223],[114.27986,22.31223],[114.27986,22.31223],[114.27987,22.31223],[114.27988,22.31223],[114.27989,22.31223],[114.27989,22.31223],[114.2799,22.31223],[114.27991,22.31223],[114.27991,22.31223],[114.27992,22.31223],[114.27992,22.31223],[114.27993,22.31223],[114.27994,22.31223],[114.27995,22.31223],[114.27995,22.31223],[114.27996,22.31223],[114.27996,22.31223],[114.27997,22.31224],[114.27997,22.31224],[114.27998,22.31224],[114.27998,22.31224],[114.27999,22.31224],[114.27999,22.31224],[114.27999,22.31224],[114.28,22.31224],[114.28,22.31224],[114.28001,22.31225],[114.28001,22.31225],[114.28002,22.31225],[114.28002,22.31225],[114.28003,22.31225],[114.28003,22.31225],[114.28004,22.31225],[114.28004,22.31226],[114.28004,22.31226],[114.28005,22.31226],[114.28005,22.31226],[114.28006,22.31227],[114.28006,22.31227],[114.28006,22.31227],[114.28008,22.31228],[114.28009,22.31228],[114.28009,22.31228],[114.28009,22.31228],[114.2801,22.31229],[114.2801,22.31229],[114.28011,22.31229],[114.28011,22.31229],[114.28011,22.3123],[114.28012,22.3123],[114.28012,22.3123],[114.28013,22.31231],[114.28013,22.31231],[114.28013,22.31231],[114.28014,22.31232],[114.28014,22.31232],[114.28014,22.31232],[114.28015,22.31233],[114.28015,22.31233],[114.28015,22.31233],[114.28015,22.31234],[114.28016,22.31234],[114.28016,22.31234],[114.28016,22.31235],[114.28016,22.31235],[114.28017,22.31236],[114.28017,22.31236],[114.28017,22.31236],[114.28017,22.31237],[114.28018,22.31237],[114.28018,22.31238],[114.28018,22.31238],[114.28018,22.31238],[114.28018,22.31239],[114.28018,22.31239],[114.28019,22.3124],[114.28019,22.3124],[114.28019,22.31241],[114.28019,22.31241],[114.28019,22.31241],[114.28019,22.31242],[114.28019,22.31242],[114.28019,22.31243],[114.28019,22.31243],[114.28019,22.31244],[114.28019,22.31244],[114.2802,22.31245],[114.2802,22.31245],[114.2802,22.31245],[114.2802,22.31246],[114.2802,22.31246],[114.28019,22.31247],[114.28019,22.31248],[114.28019,22.31248],[114.28019,22.31249],[114.28019,22.31249],[114.28019,22.31249],[114.28019,22.3125],[114.28019,22.3125],[114.28019,22.31251],[114.28018,22.31251],[114.28018,22.31252],[114.28018,22.31252],[114.28018,22.31252],[114.28018,22.31253],[114.28017,22.31253],[114.28017,22.31254],[114.28017,22.31254],[114.28016,22.31254],[114.28016,22.31255],[114.28016,22.31255],[114.28015,22.31255],[114.28015,22.31255],[114.28015,22.31256],[114.28014,22.31256],[114.28014,22.31256],[114.28013,22.31256],[114.28013,22.31257],[114.28013,22.31257],[114.28012,22.31257],[114.28012,22.31257],[114.28011,22.31257],[114.28011,22.31257],[114.2801,22.31257],[114.2801,22.31258],[114.28009,22.31258],[114.28009,22.31258],[114.28008,22.31258],[114.28008,22.31258],[114.28008,22.31258],[114.28007,22.31259],[114.28007,22.31259],[114.28006,22.31259],[114.28006,22.31259],[114.28005,22.3126],[114.28005,22.3126],[114.28005,22.3126],[114.28004,22.3126],[114.28004,22.31261],[114.28003,22.31261],[114.28003,22.31261],[114.28003,22.31261],[114.28002,22.31262],[114.28002,22.31262],[114.28002,22.31262],[114.28001,22.31263],[114.28001,22.31263],[114.28001,22.31263],[114.28,22.31264],[114.28,22.31264],[114.28,22.31265],[114.28,22.31265],[114.27999,22.31265],[114.27999,22.31266],[114.27999,22.31266],[114.27999,22.31267],[114.27999,22.31267],[114.27998,22.31267],[114.27998,22.31268],[114.27998,22.31268],[114.27998,22.31269],[114.27998,22.31269],[114.27998,22.3127],[114.27997,22.3127],[114.27997,22.31271],[114.27997,22.31271],[114.27997,22.31272],[114.27997,22.31272],[114.27997,22.31272],[114.27997,22.31273],[114.27997,22.31273],[114.27997,22.31274],[114.27997,22.31274],[114.27997,22.31275],[114.27997,22.31275],[114.27997,22.31276],[114.27997,22.31276],[114.27997,22.31276],[114.27997,22.31277],[114.27997,22.31277],[114.27997,22.31278],[114.27997,22.31278],[114.27997,22.31279],[114.27997,22.31279],[114.27997,22.3128],[114.27997,22.3128],[114.27997,22.31281],[114.27997,22.31281],[114.27997,22.31281],[114.27997,22.31282],[114.27998,22.31282],[114.27998,22.31283],[114.27998,22.31283],[114.27998,22.31284],[114.27998,22.31284],[114.27998,22.31284],[114.27998,22.31285],[114.27999,22.31285],[114.27999,22.31286],[114.27999,22.31286],[114.27999,22.31286],[114.28,22.31287],[114.28,22.31287],[114.28,22.31288],[114.28,22.31288],[114.28,22.31288],[114.28001,22.31289],[114.28001,22.31289],[114.28001,22.3129],[114.28001,22.3129],[114.28002,22.3129],[114.28002,22.31291],[114.28002,22.31291],[114.28003,22.31291],[114.28003,22.31292],[114.28003,22.31292],[114.28003,22.31293],[114.28004,22.31293],[114.28004,22.31293],[114.28004,22.31294],[114.28005,22.31294],[114.28005,22.31294],[114.28005,22.31295],[114.28006,22.31295],[114.28006,22.31295],[114.28006,22.31295],[114.28006,22.31296],[114.28007,22.31296],[114.28007,22.31296],[114.28007,22.31297],[114.28008,22.31297],[114.28008,22.31297],[114.28008,22.31298],[114.28009,22.31298],[114.28009,22.31298],[114.2801,22.31299],[114.2801,22.31299],[114.2801,22.31299],[114.28011,22.313],[114.28011,22.313],[114.28011,22.313],[114.28012,22.313],[114.28012,22.31301],[114.28013,22.31301],[114.28013,22.31301],[114.28013,22.31301],[114.28014,22.31302],[114.28014,22.31302],[114.28015,22.31302],[114.28015,22.31302],[114.28016,22.31302],[114.28017,22.31303],[114.28017,22.31303],[114.28017,22.31303],[114.28018,22.31303],[114.28018,22.31303],[114.28018,22.31304],[114.28019,22.31304],[114.28019,22.31304],[114.2802,22.31304],[114.2802,22.31304],[114.28021,22.31304],[114.28021,22.31304],[114.28022,22.31304],[114.28022,22.31304],[114.28023,22.31304],[114.28023,22.31304],[114.28024,22.31304],[114.28024,22.31304],[114.28025,22.31304],[114.28025,22.31304],[114.28026,22.31304],[114.28026,22.31304],[114.28027,22.31304],[114.28027,22.31304],[114.28028,22.31304],[114.28028,22.31304],[114.28029,22.31304],[114.28029,22.31304],[114.2803,22.31304],[114.2803,22.31304],[114.28031,22.31304],[114.28031,22.31304],[114.28032,22.31304],[114.28032,22.31304],[114.28033,22.31304],[114.28033,22.31304],[114.28033,22.31304],[114.28034,22.31304],[114.28034,22.31304],[114.28035,22.31304],[114.28036,22.31304],[114.28036,22.31304],[114.28037,22.31304],[114.28037,22.31304],[114.28038,22.31304],[114.28038,22.31304],[114.28039,22.31304],[114.28039,22.31304],[114.2804,22.31304],[114.2804,22.31304],[114.28041,22.31304],[114.28041,22.31304],[114.28042,22.31304],[114.28042,22.31304],[114.28043,22.31304],[114.28043,22.31304],[114.28044,22.31304],[114.28044,22.31304],[114.28045,22.31304],[114.28045,22.31304],[114.28046,22.31304],[114.28046,22.31304],[114.28047,22.31304],[114.28047,22.31303],[114.28047,22.31303],[114.28048,22.31303],[114.28048,22.31303],[114.28049,22.31303],[114.28049,22.31303],[114.2805,22.31303],[114.2805,22.31303],[114.28051,22.31303],[114.28051,22.31303],[114.28052,22.31303],[114.28052,22.31302],[114.28053,22.31302],[114.28053,22.31302],[114.28054,22.31302],[114.28054,22.31302],[114.28055,22.31302],[114.28055,22.31302],[114.28055,22.31301],[114.28056,22.31301],[114.28056,22.31301],[114.28057,22.31301],[114.28057,22.31301],[114.28058,22.31301],[114.28058,22.313],[114.28059,22.313],[114.28059,22.313],[114.28059,22.313],[114.2806,22.31299],[114.2806,22.31299],[114.28061,22.31299],[114.28061,22.31299],[114.28061,22.31298],[114.28062,22.31298],[114.28062,22.31298],[114.28063,22.31298],[114.28063,22.31297],[114.28063,22.31297],[114.28064,22.31297],[114.28064,22.31296],[114.28064,22.31296],[114.28065,22.31296],[114.28065,22.31295],[114.28065,22.31295],[114.28066,22.31295],[114.28066,22.31294],[114.28066,22.31294],[114.28066,22.31294],[114.28067,22.31293],[114.28067,22.31293],[114.28067,22.31292],[114.28067,22.31292],[114.28067,22.31292],[114.28068,22.31291],[114.28068,22.31291],[114.28068,22.3129],[114.28068,22.3129],[114.28068,22.3129],[114.28069,22.31289],[114.28069,22.31289],[114.28069,22.31288],[114.28069,22.31288],[114.28069,22.31287],[114.28069,22.31287],[114.28069,22.31286],[114.28069,22.31286],[114.28069,22.31286],[114.2807,22.31285],[114.2807,22.31285],[114.2807,22.31284],[114.2807,22.31284],[114.2807,22.31283],[114.2807,22.31283],[114.2807,22.31282],[114.2807,22.31282],[114.2807,22.31282],[114.2807,22.31281],[114.2807,22.31281],[114.2807,22.3128],[114.2807,22.3128],[114.2807,22.31279],[114.28069,22.31279],[114.28069,22.31278],[114.28069,22.31278],[114.28069,22.31278],[114.28069,22.31277],[114.28069,22.31277],[114.28069,22.31276],[114.28069,22.31276],[114.28068,22.31275],[114.28068,22.31275],[114.28068,22.31275],[114.28068,22.31274],[114.28068,22.31274],[114.28068,22.31273],[114.28067,22.31273],[114.28067,22.31272],[114.28067,22.31272],[114.28067,22.31271],[114.28066,22.31271],[114.28066,22.3127],[114.28066,22.3127],[114.28066,22.31269],[114.28065,22.31269],[114.28065,22.31268],[114.28065,22.31268],[114.28065,22.31268],[114.28064,22.31267],[114.28064,22.31267],[114.28064,22.31266],[114.28064,22.31266],[114.28064,22.31266],[114.28063,22.31265],[114.28063,22.31265],[114.28063,22.31264],[114.28063,22.31264],[114.28063,22.31263],[114.28062,22.31263],[114.28062,22.31263],[114.28062,22.31262],[114.28062,22.31262],[114.28061,22.31261],[114.28061,22.31261],[114.28061,22.31261],[114.28061,22.3126],[114.2806,22.3126],[114.2806,22.3126],[114.2806,22.31259],[114.2806,22.31259],[114.28059,22.31258],[114.28059,22.31258],[114.28059,22.31258],[114.28059,22.31257],[114.28058,22.31257],[114.28058,22.31257],[114.28058,22.31256],[114.28057,22.31256],[114.28057,22.31255],[114.28057,22.31255],[114.28057,22.31255],[114.28056,22.31254],[114.28056,22.31254],[114.28056,22.31254],[114.28055,22.31253],[114.28055,22.31253],[114.28055,22.31253],[114.28054,22.31252],[114.28054,22.31252],[114.28054,22.31252],[114.28054,22.31252],[114.28053,22.31251],[114.28053,22.31251],[114.28053,22.31251],[114.27998,22.31199],[114.27971,22.31178],[114.27949,22.31161],[114.27922,22.31137],[114.27915,22.3113],[114.27914,22.3112],[114.27832,22.30899],[114.27832,22.30833],[114.27835,22.30827],[114.27844,22.3082],[114.27846,22.30819],[114.27852,22.30815],[114.27898,22.30793],[114.27914,22.30777],[114.27928,22.30746],[114.27926,22.30727],[114.27925,22.30596],[114.27908,22.30551],[114.27907,22.30534],[114.27914,22.30468],[114.27915,22.30458],[114.27917,22.30387],[114.27943,22.30337],[114.27944,22.30315],[114.27941,22.30283],[114.27943,22.3026],[114.27958,22.30225],[114.2795,22.30196],[114.2795,22.30171],[114.27973,22.30091],[114.27974,22.30085],[114.27983,22.30042],[114.27984,22.30012],[114.27988,22.29998],[114.27987,22.29989],[114.27973,22.2996],[114.27965,22.29934],[114.27963,22.29897],[114.27967,22.29879],[114.27985,22.29844],[114.27998,22.29829],[114.28008,22.29824],[114.2802,22.29825],[114.28022,22.29827],[114.28027,22.29825],[114.28063,22.29736],[114.28082,22.29722],[114.281,22.29694],[114.2812,22.29679],[114.28145,22.29667],[114.28168,22.29664],[114.28173,22.29659],[114.28174,22.29638],[114.2817,22.2962],[114.28154,22.29581],[114.28136,22.29548],[114.28135,22.29533],[114.28143,22.2952],[114.28151,22.29514],[114.2817,22.29479],[114.28177,22.2945],[114.28209,22.29422],[114.28234,22.29411],[114.28283,22.2941],[114.28278,22.29387],[114.28274,22.29372],[114.28265,22.29357],[114.28259,22.29346],[114.28239,22.29319],[114.28194,22.29276],[114.28158,22.29262],[114.28157,22.29252],[114.28161,22.29249],[114.28184,22.29243],[114.28186,22.29226],[114.28167,22.29137],[114.28152,22.2909],[114.28106,22.29016],[114.28074,22.28967],[114.28076,22.28957],[114.28078,22.28948],[114.28117,22.28845],[114.28125,22.28823],[114.28168,22.28704],[114.2824,22.28505],[114.28245,22.28493],[114.28251,22.28475],[114.28251,22.28472],[114.28257,22.28447],[114.28263,22.28426],[114.28272,22.28395],[114.2828,22.28359],[114.28287,22.28335],[114.28298,22.2829],[114.28326,22.2815],[114.28339,22.28086],[114.28016,22.27785],[114.27984,22.27617],[114.27807,22.27589],[114.27661,22.27566],[114.27656,22.27549],[114.27651,22.2754],[114.27648,22.27535],[114.27637,22.27516],[114.27633,22.2751],[114.27626,22.27482],[114.27626,22.27475],[114.27625,22.27471],[114.27623,22.27462],[114.2762,22.27454],[114.2762,22.27452],[114.2762,22.27452],[114.2762,22.27451],[114.2762,22.27451],[114.2762,22.27451],[114.2762,22.2745],[114.2762,22.2745],[114.2762,22.27449],[114.2762,22.27449],[114.27619,22.27448],[114.27619,22.27448],[114.27619,22.27447],[114.27619,22.27447],[114.27618,22.27442],[114.27618,22.27441],[114.27619,22.27434],[114.27619,22.27434],[114.27619,22.27434],[114.27619,22.27434],[114.2762,22.27433],[114.2762,22.27433],[114.2762,22.27432],[114.2762,22.27432],[114.2762,22.27432],[114.27621,22.27431],[114.27621,22.27431],[114.27621,22.2743],[114.27621,22.2743],[114.27622,22.2743],[114.27622,22.27429],[114.27622,22.27429],[114.27622,22.27428],[114.27623,22.27428],[114.27623,22.27428],[114.27623,22.27427],[114.27623,22.27427],[114.27623,22.27426],[114.27624,22.27426],[114.27624,22.27425],[114.27624,22.27425],[114.27624,22.27425],[114.27624,22.27424],[114.27625,22.27424],[114.27625,22.27424],[114.27625,22.27423],[114.27626,22.27423],[114.27626,22.27422],[114.27626,22.27422],[114.27626,22.27422],[114.27627,22.27421],[114.27627,22.27421],[114.27627,22.27421],[114.27628,22.2742],[114.27628,22.2742],[114.27628,22.2742],[114.27629,22.2742],[114.27629,22.27419],[114.27629,22.27419],[114.2763,22.27418],[114.2763,22.27418],[114.2763,22.27418],[114.27631,22.27417],[114.27631,22.27417],[114.27632,22.27416],[114.27632,22.27416],[114.27633,22.27415],[114.27633,22.27415],[114.27633,22.27415],[114.27634,22.27414],[114.27634,22.27414],[114.27635,22.27413],[114.27635,22.27413],[114.27635,22.27413],[114.27636,22.27412],[114.27636,22.27412],[114.27636,22.27412],[114.27637,22.27411],[114.27637,22.27411],[114.27637,22.27411],[114.27638,22.27411],[114.27638,22.2741],[114.27638,22.2741],[114.27639,22.2741],[114.27639,22.27409],[114.27639,22.27409],[114.2764,22.27409],[114.2764,22.27408],[114.2764,22.27408],[114.27641,22.27408],[114.27641,22.27407],[114.27641,22.27407],[114.27642,22.27407],[114.27642,22.27406],[114.27642,22.27406],[114.27643,22.27406],[114.27643,22.27405],[114.27643,22.27405],[114.27644,22.27404],[114.27644,22.27404],[114.27644,22.27404],[114.27644,22.27403],[114.27644,22.27403],[114.27645,22.27403],[114.27645,22.27402],[114.27645,22.27402],[114.27646,22.27401],[114.27646,22.27401],[114.27646,22.27401],[114.27646,22.274],[114.27647,22.274],[114.27647,22.274],[114.27647,22.27399],[114.27647,22.27399],[114.27648,22.27398],[114.27648,22.27398],[114.27648,22.27398],[114.27648,22.27397],[114.27649,22.27397],[114.27649,22.27396],[114.27649,22.27396],[114.27649,22.27396],[114.2765,22.27395],[114.2765,22.27395],[114.2765,22.27394],[114.2765,22.27394],[114.2765,22.27394],[114.27651,22.27393],[114.27651,22.27393],[114.27651,22.27392],[114.27651,22.27392],[114.27651,22.27392],[114.27652,22.27391],[114.27652,22.27391],[114.27652,22.2739],[114.27652,22.2739],[114.27652,22.27389],[114.27652,22.27389],[114.27652,22.27389],[114.27653,22.27388],[114.27653,22.27388],[114.27653,22.27387],[114.27653,22.27387],[114.27653,22.27386],[114.27653,22.27386],[114.27653,22.27385],[114.27653,22.27385],[114.27653,22.27385],[114.27653,22.27384],[114.27654,22.27383],[114.27654,22.27383],[114.27654,22.27382],[114.27654,22.27382],[114.27654,22.27381],[114.27654,22.27381],[114.27654,22.27381],[114.27654,22.2738],[114.27655,22.27379],[114.27655,22.27378],[114.27655,22.27378],[114.27655,22.27378],[114.27655,22.27377],[114.27655,22.27376],[114.27655,22.27376],[114.27655,22.27373],[114.27655,22.27373],[114.27655,22.27372],[114.27655,22.27371],[114.27655,22.27371],[114.27655,22.27369],[114.27655,22.27368],[114.27655,22.27368],[114.27655,22.27368],[114.27655,22.27367],[114.27655,22.27367],[114.27655,22.27366],[114.27655,22.27366],[114.27655,22.27365],[114.27655,22.27364],[114.27656,22.27364],[114.27656,22.27363],[114.27656,22.27363],[114.27656,22.27362],[114.27656,22.27361],[114.27656,22.27361],[114.27656,22.2736],[114.27656,22.2736],[114.27656,22.27359],[114.27656,22.27359],[114.27656,22.27359],[114.27656,22.27358],[114.27656,22.27358],[114.27656,22.27357],[114.27656,22.27357],[114.27656,22.27356],[114.27656,22.27356],[114.27656,22.27355],[114.27656,22.27355],[114.27656,22.27355],[114.27656,22.27354],[114.27656,22.27354],[114.27657,22.27353],[114.27657,22.27353],[114.27657,22.27352],[114.27657,22.27352],[114.27657,22.27351],[114.27657,22.27351],[114.27657,22.2735],[114.27657,22.2735],[114.27657,22.27349],[114.27657,22.27349],[114.27657,22.27348],[114.27657,22.27348],[114.27657,22.27347],[114.27657,22.27347],[114.27657,22.27347],[114.27658,22.27346],[114.27658,22.27346],[114.27658,22.27345],[114.27658,22.27345],[114.27658,22.27344],[114.27658,22.27344],[114.27659,22.27344],[114.27659,22.27343],[114.27659,22.27343],[114.27659,22.27342],[114.27659,22.27341],[114.2766,22.27341],[114.2766,22.27341],[114.2766,22.2734],[114.2766,22.2734],[114.2766,22.27339],[114.27661,22.27339],[114.27661,22.27339],[114.27661,22.27338],[114.27661,22.27338],[114.27661,22.27337],[114.27662,22.27337],[114.27662,22.27337],[114.27662,22.27336],[114.27662,22.27336],[114.27663,22.27335],[114.27663,22.27335],[114.27663,22.27334],[114.27663,22.27334],[114.27663,22.27334],[114.27664,22.27333],[114.27664,22.27333],[114.27664,22.27333],[114.27664,22.27332],[114.27665,22.27332],[114.27665,22.27331],[114.27665,22.27331],[114.27665,22.27331],[114.27666,22.2733],[114.27666,22.2733],[114.27666,22.27329],[114.27666,22.27329],[114.27667,22.27329],[114.27667,22.27328],[114.27667,22.27328],[114.27667,22.27327],[114.27668,22.27327],[114.27668,22.27327],[114.27668,22.27326],[114.27669,22.27326],[114.27669,22.27326],[114.27669,22.27325],[114.27669,22.27325],[114.2767,22.27325],[114.2767,22.27324],[114.2767,22.27324],[114.27671,22.27324],[114.27671,22.27323],[114.27671,22.27323],[114.27672,22.27323],[114.27672,22.27322],[114.27672,22.27322],[114.27673,22.27322],[114.27673,22.27321],[114.27673,22.27321],[114.27674,22.2732],[114.27674,22.2732],[114.27675,22.27319],[114.27675,22.27319],[114.27676,22.27318],[114.27676,22.27318],[114.27676,22.27318],[114.27677,22.27317],[114.27677,22.27317],[114.27677,22.27317],[114.27678,22.27317],[114.27678,22.27316],[114.27678,22.27316],[114.27679,22.27316],[114.27679,22.27315],[114.2768,22.27315],[114.2768,22.27315],[114.2768,22.27314],[114.27681,22.27314],[114.27681,22.27314],[114.27681,22.27313],[114.27682,22.27313],[114.27682,22.27313],[114.27682,22.27313],[114.27683,22.27312],[114.27683,22.27312],[114.27683,22.27312],[114.27684,22.27311],[114.27684,22.27311],[114.27684,22.27311],[114.27685,22.2731],[114.27685,22.2731],[114.27685,22.2731],[114.27686,22.27309],[114.27686,22.27309],[114.27686,22.27309],[114.27687,22.27308],[114.27687,22.27308],[114.27688,22.27308],[114.27688,22.27307],[114.27688,22.27307],[114.27689,22.27307],[114.27689,22.27307],[114.27689,22.27306],[114.2769,22.27306],[114.2769,22.27306],[114.2769,22.27305],[114.27691,22.27305],[114.27691,22.27305],[114.27691,22.27304],[114.27692,22.27304],[114.27692,22.27304],[114.27692,22.27303],[114.27693,22.27303],[114.27693,22.27303],[114.27694,22.27302],[114.27694,22.27302],[114.27694,22.27301],[114.27694,22.27301],[114.27695,22.273],[114.27695,22.273],[114.27695,22.273],[114.27696,22.27299],[114.27696,22.27298],[114.27697,22.27298],[114.27697,22.27298],[114.27697,22.27297],[114.27697,22.27297],[114.27698,22.27296],[114.27698,22.27296],[114.27698,22.27296],[114.27698,22.27295],[114.27699,22.27295],[114.27699,22.27294],[114.27699,22.27294],[114.27699,22.27294],[114.277,22.27293],[114.277,22.27293],[114.277,22.27292],[114.277,22.27292],[114.277,22.27292],[114.27701,22.27291],[114.27701,22.27291],[114.27701,22.2729],[114.27701,22.2729],[114.27701,22.2729],[114.27702,22.27289],[114.27702,22.27289],[114.27702,22.27288],[114.27702,22.27288],[114.27702,22.27288],[114.27702,22.27287],[114.27703,22.27287],[114.27703,22.27286],[114.27703,22.27286],[114.27703,22.27285],[114.27703,22.27285],[114.27703,22.27285],[114.27704,22.27284],[114.27704,22.27284],[114.27704,22.27283],[114.27704,22.27283],[114.27704,22.27282],[114.27704,22.27282],[114.27704,22.27281],[114.27704,22.27281],[114.27705,22.27281],[114.27705,22.2728],[114.27705,22.2728],[114.27705,22.27279],[114.27705,22.27279],[114.27705,22.27278],[114.27705,22.27278],[114.27706,22.27277],[114.27706,22.27277],[114.27706,22.27276],[114.27706,22.27276],[114.27706,22.27275],[114.27706,22.27275],[114.27706,22.27274],[114.27706,22.27274],[114.27706,22.27274],[114.27706,22.27273],[114.27707,22.27272],[114.27707,22.27271],[114.27707,22.27271],[114.27707,22.2727],[114.27707,22.2727],[114.27707,22.2727],[114.27707,22.27269],[114.27708,22.27268],[114.27708,22.27268],[114.27708,22.27267],[114.27708,22.27267],[114.27708,22.27266],[114.27708,22.27266],[114.27708,22.27265],[114.27708,22.27265],[114.27708,22.27265],[114.27708,22.27264],[114.27709,22.27263],[114.27709,22.27262],[114.27709,22.27262],[114.27709,22.27262],[114.27709,22.27261],[114.27709,22.27261],[114.27709,22.2726],[114.27709,22.2726],[114.2771,22.27259],[114.2771,22.27259],[114.2771,22.27258],[114.2771,22.27258],[114.2771,22.27258],[114.2771,22.27257],[114.2771,22.27257],[114.2771,22.27256],[114.2771,22.27256],[114.27711,22.27255],[114.27711,22.27255],[114.27711,22.27255],[114.27711,22.27253],[114.27711,22.27253],[114.27711,22.27252],[114.27711,22.27252],[114.27712,22.27251],[114.27712,22.27251],[114.27712,22.27251],[114.27712,22.2725],[114.27712,22.2725],[114.27712,22.27249],[114.27712,22.27249],[114.27712,22.27248],[114.27712,22.27248],[114.27713,22.27248],[114.27713,22.27247],[114.27713,22.27247],[114.27713,22.27246],[114.27713,22.27246],[114.27713,22.27245],[114.27713,22.27245],[114.27714,22.27244],[114.27714,22.27244],[114.27714,22.27244],[114.27714,22.27243],[114.27714,22.27242],[114.27714,22.27242],[114.27715,22.27241],[114.27715,22.27241],[114.27715,22.2724],[114.27715,22.27239],[114.27715,22.27239],[114.27715,22.27238],[114.27715,22.27238],[114.27716,22.27237],[114.27716,22.27237],[114.27716,22.27237],[114.27716,22.27236],[114.27716,22.27236],[114.27716,22.27235],[114.27716,22.27235],[114.27716,22.27234],[114.27717,22.27234],[114.27717,22.27234],[114.27717,22.27233],[114.27717,22.27233],[114.27717,22.27232],[114.27717,22.27232],[114.27717,22.27231],[114.27717,22.27231],[114.27718,22.27231],[114.27718,22.2723],[114.27718,22.2723],[114.27718,22.27229],[114.27718,22.27229],[114.27718,22.27228],[114.27718,22.27228],[114.27718,22.27227],[114.27719,22.27227],[114.27719,22.27227],[114.27719,22.27226],[114.27719,22.27226],[114.27719,22.27224],[114.27719,22.27224],[114.2772,22.27224],[114.2772,22.27223],[114.2772,22.27223],[114.2772,22.27222],[114.2772,22.27222],[114.2772,22.27221],[114.2772,22.27221],[114.27721,22.2722],[114.27721,22.2722],[114.27721,22.2722],[114.27721,22.27219],[114.27721,22.27219],[114.27721,22.27218],[114.27721,22.27218],[114.27722,22.27218],[114.27722,22.27217],[114.27722,22.27217],[114.27722,22.27216],[114.27722,22.27215],[114.27722,22.27215],[114.27723,22.27214],[114.27723,22.27213],[114.27723,22.27213],[114.27723,22.27212],[114.27723,22.27212],[114.27723,22.27211],[114.27723,22.27211],[114.27723,22.27211],[114.27724,22.2721],[114.27724,22.27209],[114.27724,22.27209],[114.27724,22.27208],[114.27724,22.27208],[114.27724,22.27207],[114.27724,22.27207],[114.27724,22.27206],[114.27724,22.27206],[114.27724,22.27206],[114.27725,22.27205],[114.27725,22.27205],[114.27725,22.27204],[114.27725,22.27204],[114.27725,22.27203],[114.27725,22.27203],[114.27725,22.27202],[114.27725,22.27202],[114.27725,22.27202],[114.27725,22.27201],[114.27725,22.27201],[114.27725,22.272],[114.27726,22.272],[114.27726,22.27199],[114.27726,22.27199],[114.27726,22.27198],[114.27726,22.27198],[114.27726,22.27198],[114.27726,22.27197],[114.27726,22.27197],[114.27726,22.27196],[114.27726,22.27196],[114.27726,22.27195],[114.27727,22.27195],[114.27727,22.27194],[114.27727,22.27194],[114.27727,22.27194],[114.27727,22.27193],[114.27727,22.27193],[114.27727,22.27192],[114.27727,22.27192],[114.27727,22.27191],[114.27727,22.27191],[114.27727,22.27191],[114.27727,22.2719],[114.27728,22.2719],[114.27728,22.27189],[114.27728,22.27189],[114.27728,22.27188],[114.27728,22.27188],[114.27728,22.27187],[114.27728,22.27187],[114.27728,22.27187],[114.27728,22.27186],[114.27728,22.27185],[114.27729,22.27185],[114.27729,22.27184],[114.27729,22.27184],[114.27729,22.27183],[114.27729,22.27183],[114.27729,22.27183],[114.27729,22.27182],[114.27729,22.27182],[114.27729,22.27181],[114.27729,22.27181],[114.2773,22.2718],[114.2773,22.2718],[114.2773,22.27179],[114.2773,22.27179],[114.2773,22.27179],[114.2773,22.27178],[114.2773,22.27178],[114.2773,22.27177],[114.2773,22.27177],[114.2773,22.27176],[114.2773,22.27176],[114.2773,22.27175],[114.2773,22.27175],[114.27731,22.27175],[114.27731,22.27174],[114.27731,22.27174],[114.27731,22.27173],[114.27731,22.27172],[114.27731,22.27172],[114.27731,22.27171],[114.27731,22.27171],[114.27731,22.2717],[114.27731,22.2717],[114.27731,22.2717],[114.27731,22.27169],[114.27731,22.27169],[114.27732,22.27168],[114.27732,22.27167],[114.27732,22.27167],[114.27732,22.27166],[114.27732,22.27166],[114.27732,22.27165],[114.27732,22.27164],[114.27732,22.27164],[114.27732,22.27163],[114.27732,22.27163],[114.27732,22.27162],[114.27732,22.27162],[114.27732,22.27162],[114.27732,22.27161],[114.27733,22.2716],[114.27733,22.2716],[114.27733,22.27159],[114.27733,22.27159],[114.27733,22.27158],[114.27733,22.27158],[114.27733,22.27157],[114.27733,22.27157],[114.27733,22.27156],[114.27733,22.27155],[114.27733,22.27155],[114.27733,22.27154],[114.27733,22.27153],[114.27733,22.27153],[114.27733,22.27153],[114.27733,22.27152],[114.27734,22.27152],[114.27734,22.27151],[114.27734,22.27151],[114.27734,22.2715],[114.27734,22.27149],[114.27734,22.27149],[114.27734,22.27149],[114.27734,22.27148],[114.27734,22.27148],[114.27734,22.27147],[114.27734,22.27147],[114.27734,22.27146],[114.27734,22.27145],[114.27734,22.27145],[114.27734,22.27144],[114.27734,22.27144],[114.27734,22.27144],[114.27734,22.27143],[114.27734,22.27143],[114.27735,22.27142],[114.27735,22.27142],[114.27735,22.27141],[114.27735,22.2714],[114.27735,22.2714],[114.27735,22.2714],[114.27735,22.27139],[114.27735,22.27139],[114.27735,22.27138],[114.27735,22.27138],[114.27735,22.27137],[114.27735,22.27137],[114.27735,22.27136],[114.27735,22.27135],[114.27735,22.27135],[114.27735,22.27135],[114.27735,22.27134],[114.27735,22.27134],[114.27735,22.27133],[114.27735,22.27133],[114.27735,22.27132],[114.27736,22.27132],[114.27736,22.27131],[114.27736,22.27131],[114.27736,22.2713],[114.27736,22.2713],[114.27736,22.27129],[114.27736,22.27128],[114.27736,22.27128],[114.27736,22.27127],[114.27736,22.27127],[114.27736,22.27126],[114.27736,22.27126],[114.27736,22.27125],[114.27736,22.27124],[114.27736,22.27123],[114.27736,22.2712],[114.27736,22.27119],[114.27736,22.27119],[114.27736,22.27118],[114.27736,22.27118],[114.27736,22.27117],[114.27736,22.27117],[114.27736,22.27117],[114.27736,22.27116],[114.27736,22.27116],[114.27736,22.27115],[114.27736,22.27114],[114.27736,22.27114],[114.27736,22.27113],[114.27736,22.27113],[114.27736,22.27113],[114.27736,22.27112],[114.27736,22.27112],[114.27736,22.27111],[114.27736,22.27111],[114.27736,22.2711],[114.27735,22.2711],[114.27735,22.27109],[114.27735,22.27109],[114.27735,22.27108],[114.27735,22.27107],[114.27735,22.27107],[114.27735,22.27106],[114.27735,22.27106],[114.27735,22.27105],[114.27734,22.27105],[114.27734,22.27104],[114.27734,22.27103],[114.27734,22.27103],[114.27734,22.27102],[114.27734,22.27102],[114.27734,22.27102],[114.27734,22.27101],[114.27734,22.27101],[114.27734,22.271],[114.27734,22.271],[114.27733,22.27099],[114.27733,22.27099],[114.27733,22.27098],[114.27733,22.27098],[114.27733,22.27097],[114.27733,22.27097],[114.27733,22.27096],[114.27733,22.27096],[114.27732,22.27095],[114.27732,22.27095],[114.27732,22.27095],[114.27732,22.27094],[114.27732,22.27094],[114.27732,22.27092],[114.27732,22.27092],[114.27731,22.27092],[114.27731,22.27091],[114.27731,22.27091],[114.27731,22.2709],[114.27731,22.2709],[114.2773,22.27089],[114.2773,22.27089],[114.2773,22.27089],[114.27729,22.27088],[114.27729,22.27087],[114.27729,22.27087],[114.27729,22.27086],[114.27728,22.27086],[114.27728,22.27086],[114.27728,22.27085],[114.27728,22.27085],[114.27727,22.27085],[114.27727,22.27084],[114.27727,22.27084],[114.27726,22.27083],[114.27726,22.27083],[114.27726,22.27083],[114.27726,22.27082],[114.27725,22.27082],[114.27725,22.27082],[114.27725,22.27081],[114.27725,22.27081],[114.27724,22.2708],[114.27724,22.2708],[114.27724,22.2708],[114.27724,22.27079],[114.27723,22.27079],[114.27723,22.27078],[114.27723,22.27078],[114.27723,22.27078],[114.27722,22.27077],[114.27722,22.27077],[114.27722,22.27077],[114.27721,22.27076],[114.27721,22.27076],[114.27721,22.27075],[114.27721,22.27075],[114.2772,22.27075],[114.2772,22.27074],[114.2772,22.27074],[114.2772,22.27074],[114.27719,22.27073],[114.27719,22.27073],[114.27719,22.27073],[114.27718,22.27072],[114.27718,22.27072],[114.27718,22.27071],[114.27718,22.27071],[114.27717,22.27071],[114.27717,22.2707],[114.27717,22.2707],[114.27717,22.2707],[114.27716,22.27069],[114.27716,22.27069],[114.27716,22.27068],[114.27715,22.27068],[114.27715,22.27068],[114.27715,22.27067],[114.27715,22.27067],[114.27714,22.27067],[114.27714,22.27066],[114.27714,22.27066],[114.27713,22.27065],[114.27711,22.27061],[114.27703,22.27049],[114.27701,22.27045],[114.27701,22.27045],[114.277,22.27044],[114.277,22.27044],[114.277,22.27044],[114.27699,22.27043],[114.27699,22.27043],[114.27699,22.27042],[114.27699,22.27042],[114.27698,22.27042],[114.27698,22.27041],[114.27698,22.27041],[114.27698,22.27041],[114.27697,22.2704],[114.27697,22.2704],[114.27697,22.27039],[114.27697,22.27039],[114.27696,22.27039],[114.27696,22.27038],[114.27696,22.27038],[114.27696,22.27037],[114.27695,22.27037],[114.27695,22.27037],[114.27695,22.27036],[114.27695,22.27036],[114.27695,22.27035],[114.27694,22.27035],[114.27694,22.27035],[114.27694,22.27034],[114.27694,22.27034],[114.27694,22.27033],[114.27693,22.27033],[114.27693,22.27033],[114.27693,22.27032],[114.27693,22.27032],[114.27693,22.27031],[114.27692,22.2703],[114.27692,22.2703],[114.27692,22.2703],[114.27692,22.27029],[114.27692,22.27028],[114.27692,22.27028],[114.27692,22.27027],[114.27691,22.27027],[114.27691,22.27026],[114.27691,22.27026],[114.27691,22.27026],[114.27691,22.27025],[114.27691,22.27025],[114.27691,22.27024],[114.2769,22.27023],[114.2769,22.27023],[114.2769,22.27023],[114.2769,22.27022],[114.2769,22.27022],[114.2769,22.27021],[114.2769,22.27021],[114.27689,22.2702],[114.27689,22.2702],[114.27689,22.2702],[114.27689,22.27019],[114.27689,22.27019],[114.27689,22.27018],[114.27688,22.27018],[114.27688,22.27017],[114.27688,22.27017],[114.27688,22.27017],[114.27688,22.27016],[114.27688,22.27016],[114.27688,22.27015],[114.27688,22.27015],[114.27688,22.27014],[114.27688,22.27014],[114.27688,22.27013],[114.27688,22.27013],[114.27688,22.27012],[114.27688,22.27012],[114.27688,22.27012],[114.27688,22.27011],[114.27688,22.27011],[114.27688,22.2701],[114.27688,22.2701],[114.27688,22.27009],[114.27687,22.27009],[114.27687,22.27008],[114.27687,22.27008],[114.27687,22.27008],[114.27687,22.27007],[114.27687,22.27006],[114.27687,22.27006],[114.27687,22.27005],[114.27687,22.27004],[114.27687,22.27004],[114.27686,22.27004],[114.27686,22.27003],[114.27686,22.27003],[114.27686,22.27002],[114.27686,22.27002],[114.27686,22.27001],[114.27686,22.27001],[114.27686,22.27],[114.27686,22.27],[114.27686,22.26999],[114.27685,22.26998],[114.27685,22.26998],[114.27685,22.26997],[114.27685,22.26997],[114.27685,22.26996],[114.27685,22.26995],[114.27685,22.26995],[114.27685,22.26994],[114.27685,22.26993],[114.27685,22.26992],[114.27685,22.26992],[114.27685,22.26991],[114.27685,22.26991],[114.27686,22.26991],[114.27686,22.2699],[114.27686,22.2699],[114.27686,22.26989],[114.27686,22.26988],[114.27686,22.26987],[114.27686,22.26986],[114.27686,22.26985],[114.27686,22.26984],[114.27686,22.26984],[114.27685,22.26983],[114.27685,22.26983],[114.27685,22.26982],[114.27685,22.26982],[114.27685,22.26981],[114.27685,22.26981],[114.27685,22.2698],[114.27685,22.2698],[114.27685,22.26979],[114.27685,22.26978],[114.27685,22.26977],[114.27685,22.26976],[114.27685,22.26975],[114.27685,22.26975],[114.27685,22.26974],[114.27685,22.26974],[114.27685,22.26973],[114.27685,22.26973],[114.27685,22.26972],[114.27686,22.26971],[114.27686,22.26971],[114.27686,22.2697],[114.27686,22.26969],[114.27686,22.26969],[114.27686,22.26969],[114.27686,22.26968],[114.27686,22.26968],[114.27686,22.26967],[114.27686,22.26967],[114.27686,22.26966],[114.27686,22.26966],[114.27686,22.26965],[114.27686,22.26965],[114.27686,22.26964],[114.27687,22.26964],[114.27687,22.26964],[114.27687,22.26963],[114.27687,22.26962],[114.27687,22.26962],[114.27687,22.26961],[114.27687,22.2696],[114.27687,22.2696],[114.27687,22.2696],[114.27687,22.26959],[114.27687,22.26958],[114.27687,22.26958],[114.27687,22.26955],[114.27687,22.26955],[114.27687,22.26954],[114.27687,22.26953],[114.27687,22.26953],[114.27688,22.26952],[114.27688,22.26952],[114.27688,22.26951],[114.27688,22.26951],[114.27688,22.26951],[114.27688,22.2695],[114.27688,22.26949],[114.27688,22.26949],[114.27688,22.26948],[114.27688,22.26948],[114.27688,22.26947],[114.27688,22.26946],[114.27688,22.26946],[114.27688,22.26945],[114.27688,22.26945],[114.27688,22.26944],[114.27688,22.26943],[114.27689,22.26943],[114.27689,22.26942],[114.27689,22.26942],[114.27689,22.26942],[114.27689,22.26941],[114.27689,22.26941],[114.27689,22.2694],[114.27689,22.2694],[114.27689,22.26939],[114.27689,22.26939],[114.27689,22.26938],[114.2769,22.26938],[114.2769,22.26937],[114.2769,22.26937],[114.2769,22.26936],[114.2769,22.26936],[114.2769,22.26935],[114.2769,22.26934],[114.27691,22.26934],[114.27691,22.26932],[114.27691,22.26932],[114.27691,22.26931],[114.27692,22.26931],[114.27692,22.2693],[114.27692,22.2693],[114.27692,22.26929],[114.27692,22.26929],[114.27692,22.26928],[114.27692,22.26928],[114.27692,22.26928],[114.27693,22.26927],[114.27693,22.26927],[114.27693,22.26926],[114.27693,22.26926],[114.27693,22.26925],[114.27693,22.26925],[114.27694,22.26925],[114.27694,22.26924],[114.27694,22.26924],[114.27694,22.26923],[114.27694,22.26923],[114.27694,22.26922],[114.27695,22.26922],[114.27695,22.26922],[114.27695,22.26921],[114.27695,22.26921],[114.27695,22.2692],[114.27695,22.2692],[114.27696,22.26919],[114.27696,22.26919],[114.27696,22.26919],[114.27696,22.26918],[114.27696,22.26918],[114.27696,22.26917],[114.27696,22.26917],[114.27697,22.26916],[114.27697,22.26916],[114.27697,22.26916],[114.27697,22.26915],[114.27697,22.26915],[114.27697,22.26914],[114.27697,22.26914],[114.27698,22.26913],[114.27698,22.26913],[114.27698,22.26913],[114.27698,22.26912],[114.27698,22.26911],[114.27698,22.26911],[114.27698,22.2691],[114.27699,22.2691],[114.27699,22.26909],[114.27699,22.26909],[114.27699,22.26909],[114.27699,22.26908],[114.27699,22.26908],[114.27699,22.26907],[114.27699,22.26907],[114.27699,22.26906],[114.27699,22.26906],[114.277,22.26906],[114.277,22.26905],[114.277,22.26905],[114.277,22.26904],[114.277,22.26903],[114.277,22.26903],[114.277,22.26902],[114.277,22.26902],[114.27701,22.26902],[114.27701,22.26901],[114.27701,22.26901],[114.27701,22.269],[114.27701,22.269],[114.27701,22.26899],[114.27701,22.26899],[114.27702,22.26899],[114.27702,22.26898],[114.27702,22.26898],[114.27702,22.26897],[114.27702,22.26897],[114.27702,22.26896],[114.27703,22.26896],[114.27703,22.26895],[114.27703,22.26895],[114.27703,22.26894],[114.27704,22.26894],[114.27704,22.26893],[114.27704,22.26893],[114.27704,22.26893],[114.27704,22.26892],[114.27704,22.26892],[114.27705,22.26891],[114.27705,22.26891],[114.27705,22.26891],[114.27705,22.2689],[114.27705,22.2689],[114.27705,22.26889],[114.27706,22.26889],[114.27706,22.26888],[114.27706,22.26888],[114.27706,22.26888],[114.27706,22.26887],[114.27706,22.26887],[114.27707,22.26886],[114.27707,22.26886],[114.27707,22.26885],[114.27707,22.26885],[114.27707,22.26885],[114.27707,22.26884],[114.27708,22.26884],[114.27708,22.26883],[114.27708,22.26883],[114.27708,22.26882],[114.27708,22.26882],[114.27709,22.26882],[114.27709,22.26881],[114.27709,22.26881],[114.27709,22.26881],[114.27709,22.2688],[114.2771,22.2688],[114.2771,22.2688],[114.2771,22.26879],[114.2771,22.26879],[114.2771,22.26878],[114.27711,22.26878],[114.27711,22.26878],[114.27711,22.26877],[114.27711,22.26877],[114.27711,22.26876],[114.27712,22.26876],[114.27712,22.26875],[114.27712,22.26875],[114.27712,22.26874],[114.27712,22.26874],[114.27713,22.26873],[114.27713,22.26873],[114.27713,22.26873],[114.27713,22.26872],[114.27713,22.26872],[114.27713,22.26871],[114.27714,22.26871],[114.27714,22.26871],[114.27714,22.2687],[114.27714,22.2687],[114.27714,22.26869],[114.27714,22.26869],[114.27715,22.26868],[114.27715,22.26868],[114.27715,22.26868],[114.27715,22.26867],[114.27715,22.26867],[114.27715,22.26866],[114.27716,22.26866],[114.27716,22.26865],[114.27716,22.26865],[114.27716,22.26865],[114.27716,22.26864],[114.27716,22.26864],[114.27716,22.26863],[114.27717,22.26862],[114.27717,22.26862],[114.27717,22.26861],[114.27717,22.26861],[114.27717,22.26861],[114.27717,22.2686],[114.27717,22.2686],[114.27718,22.26859],[114.27718,22.26859],[114.27718,22.26858],[114.27718,22.26858],[114.27718,22.26858],[114.27718,22.26857],[114.27718,22.26857],[114.27719,22.26855],[114.27719,22.26855],[114.27719,22.26854],[114.27719,22.26854],[114.27719,22.26854],[114.27719,22.26853],[114.27719,22.26853],[114.27719,22.26852],[114.27719,22.26852],[114.27719,22.26851],[114.27719,22.26851],[114.2772,22.2685],[114.2772,22.2685],[114.2772,22.2685],[114.2772,22.26849],[114.2772,22.26849],[114.2772,22.26848],[114.2772,22.26848],[114.2772,22.26847],[114.2772,22.26847],[114.2772,22.26846],[114.2772,22.26846],[114.2772,22.26846],[114.2772,22.26845],[114.2772,22.26844],[114.2772,22.26841],[114.2772,22.2684],[114.2772,22.2684],[114.2772,22.26839],[114.2772,22.26839],[114.2772,22.26838],[114.2772,22.26838],[114.2772,22.26837],[114.2772,22.26837],[114.2772,22.26836],[114.2772,22.26836],[114.2772,22.26835],[114.2772,22.26835],[114.27719,22.26834],[114.27719,22.26834],[114.27719,22.26833],[114.27719,22.26833],[114.27719,22.26832],[114.27719,22.26832],[114.27719,22.26831],[114.27719,22.26831],[114.27719,22.2683],[114.27719,22.2683],[114.27719,22.26829],[114.27719,22.26829],[114.27719,22.26828],[114.27719,22.26828],[114.27719,22.26825],[114.27719,22.26825],[114.27719,22.26824],[114.27719,22.26823],[114.27719,22.26823],[114.27719,22.26822],[114.27719,22.26822],[114.27719,22.26821],[114.27719,22.26821],[114.27719,22.2682],[114.27719,22.2682],[114.27719,22.26819],[114.27719,22.26819],[114.2772,22.26818],[114.2772,22.26818],[114.2772,22.26817],[114.2772,22.26817],[114.2772,22.26816],[114.2772,22.26816],[114.2772,22.26815],[114.2772,22.26815],[114.2772,22.26814],[114.2772,22.26814],[114.2772,22.26813],[114.2772,22.26813],[114.2772,22.26813],[114.2772,22.26812],[114.2772,22.26812],[114.2772,22.26811],[114.2772,22.2681],[114.2772,22.2681],[114.2772,22.26809],[114.27721,22.26809],[114.27721,22.26808],[114.27721,22.26808],[114.27721,22.26807],[114.27721,22.26807],[114.27721,22.26806],[114.27721,22.26805],[114.27721,22.26805],[114.27721,22.26804],[114.27721,22.26804],[114.27721,22.26803],[114.27721,22.26802],[114.27721,22.26802],[114.27721,22.26801],[114.27722,22.26801],[114.27722,22.268],[114.27722,22.268],[114.27722,22.268],[114.27722,22.26799],[114.27722,22.26798],[114.27722,22.26797],[114.27722,22.26797],[114.27722,22.26796],[114.27722,22.26796],[114.27722,22.26795],[114.27722,22.26795],[114.27723,22.26795],[114.27723,22.26794],[114.27723,22.26794],[114.27723,22.26793],[114.27723,22.26793],[114.27723,22.26792],[114.27723,22.26792],[114.27723,22.26791],[114.27723,22.26791],[114.27723,22.26791],[114.27723,22.2679],[114.27723,22.2679],[114.27724,22.26789],[114.27724,22.26789],[114.27724,22.26788],[114.27724,22.26788],[114.27724,22.26788],[114.27724,22.26787],[114.27724,22.26787],[114.27724,22.26786],[114.27724,22.26786],[114.27724,22.26785],[114.27725,22.26785],[114.27725,22.26784],[114.27725,22.26784],[114.27725,22.26783],[114.27725,22.26783],[114.27725,22.26782],[114.27725,22.26782],[114.27726,22.2678],[114.27726,22.2678],[114.27726,22.2678],[114.27726,22.26779],[114.27726,22.26778],[114.27726,22.26778],[114.27726,22.26777],[114.27726,22.26777],[114.27726,22.26776],[114.27726,22.26776],[114.27727,22.26776],[114.27727,22.26775],[114.27727,22.26775],[114.27727,22.26774],[114.27727,22.26774],[114.27727,22.26773],[114.27727,22.26773],[114.27727,22.26772],[114.27727,22.26772],[114.27727,22.26772],[114.27727,22.26771],[114.27727,22.2677],[114.27727,22.2677],[114.27728,22.26769],[114.27728,22.26768],[114.27728,22.26768],[114.27728,22.26768],[114.27728,22.26767],[114.27728,22.26767],[114.27728,22.26766],[114.27728,22.26766],[114.27728,22.26765],[114.27728,22.26765],[114.27729,22.26764],[114.27729,22.26763],[114.27729,22.26763],[114.27729,22.26762],[114.27729,22.26762],[114.2773,22.26761],[114.2773,22.26761],[114.2773,22.26761],[114.2773,22.2676],[114.2773,22.2676],[114.2773,22.26759],[114.27731,22.26759],[114.27731,22.26758],[114.27731,22.26758],[114.27731,22.26758],[114.27731,22.26757],[114.27732,22.26757],[114.27732,22.26757],[114.27732,22.26756],[114.27732,22.26756],[114.27732,22.26755],[114.27732,22.26755],[114.27733,22.26755],[114.27733,22.26754],[114.27733,22.26754],[114.27733,22.26753],[114.27733,22.26753],[114.27734,22.26753],[114.27734,22.26752],[114.27734,22.26752],[114.27734,22.26751],[114.27734,22.26751],[114.27734,22.2675],[114.27735,22.2675],[114.27735,22.26749],[114.27735,22.26749],[114.27735,22.26748],[114.27736,22.26748],[114.27736,22.26748],[114.27736,22.26747],[114.27736,22.26747],[114.27736,22.26746],[114.27737,22.26746],[114.27737,22.26745],[114.27737,22.26745],[114.27737,22.26745],[114.27738,22.26744],[114.27738,22.26744],[114.27738,22.26743],[114.27738,22.26743],[114.27738,22.26743],[114.27739,22.26742],[114.27739,22.26742],[114.27739,22.26741],[114.27739,22.26741],[114.27739,22.26741],[114.2774,22.2674],[114.2774,22.2674],[114.2774,22.26739],[114.2774,22.26739],[114.27741,22.26739],[114.27741,22.26738],[114.27741,22.26738],[114.27741,22.26737],[114.27742,22.26737],[114.27742,22.26737],[114.27742,22.26736],[114.27742,22.26736],[114.27742,22.26735],[114.27743,22.26735],[114.27743,22.26735],[114.27743,22.26734],[114.27743,22.26734],[114.27744,22.26734],[114.27744,22.26733],[114.27744,22.26733],[114.27744,22.26732],[114.27745,22.26732],[114.27745,22.26732],[114.27745,22.26731],[114.27745,22.26731],[114.27746,22.2673],[114.27746,22.2673],[114.27746,22.2673],[114.27746,22.26729],[114.27747,22.26729],[114.27747,22.26728],[114.27747,22.26728],[114.27747,22.26728],[114.27748,22.26727],[114.27748,22.26727],[114.27748,22.26727],[114.27748,22.26726],[114.27749,22.26726],[114.27749,22.26725],[114.27749,22.26725],[114.27749,22.26725],[114.2775,22.26724],[114.2775,22.26724],[114.2775,22.26723],[114.2775,22.26723],[114.27751,22.26723],[114.27751,22.26722],[114.27751,22.26722],[114.27751,22.26721],[114.27752,22.26721],[114.27752,22.26721],[114.27752,22.2672],[114.27752,22.2672],[114.27752,22.2672],[114.27753,22.26719],[114.27753,22.26719],[114.27753,22.26718],[114.27753,22.26718],[114.27754,22.26717],[114.27754,22.26717],[114.27754,22.26717],[114.27754,22.26716],[114.27755,22.26716],[114.27755,22.26715],[114.27755,22.26715],[114.27755,22.26715],[114.27755,22.26714],[114.27756,22.26714],[114.27756,22.26714],[114.27756,22.26713],[114.27756,22.26713],[114.27757,22.26712],[114.27757,22.26712],[114.27757,22.26712],[114.27757,22.26711],[114.27757,22.26711],[114.27758,22.2671],[114.27758,22.2671],[114.27758,22.2671],[114.27758,22.26709],[114.27758,22.26709],[114.27759,22.26708],[114.27759,22.26708],[114.27759,22.26708],[114.27759,22.26707],[114.27759,22.26707],[114.2776,22.26706],[114.2776,22.26706],[114.2776,22.26706],[114.2776,22.26705],[114.27761,22.26705],[114.27761,22.26704],[114.27761,22.26704],[114.27761,22.26704],[114.27762,22.26703],[114.27762,22.26703],[114.27762,22.26702],[114.27762,22.26702],[114.27763,22.26702],[114.27763,22.26701],[114.27763,22.26701],[114.27763,22.267],[114.27764,22.267],[114.27764,22.267],[114.27764,22.26699],[114.27764,22.26699],[114.27765,22.26698],[114.27765,22.26697],[114.27773,22.26686],[114.27781,22.26675],[114.27791,22.26664],[114.27801,22.26652],[114.27806,22.26646],[114.27807,22.26645],[114.27807,22.26645],[114.27807,22.26645],[114.27808,22.26644],[114.27808,22.26644],[114.27808,22.26644],[114.27809,22.26643],[114.27809,22.26643],[114.27809,22.26643],[114.2781,22.26642],[114.2781,22.26642],[114.2781,22.26642],[114.27811,22.26641],[114.27811,22.26641],[114.27811,22.26641],[114.27812,22.2664],[114.27812,22.2664],[114.27812,22.2664],[114.27813,22.26639],[114.27813,22.26639],[114.27813,22.26639],[114.27814,22.26638],[114.27814,22.26638],[114.27814,22.26638],[114.27815,22.26638],[114.27815,22.26637],[114.27815,22.26637],[114.27816,22.26637],[114.27816,22.26636],[114.27817,22.26636],[114.27817,22.26636],[114.27817,22.26635],[114.27818,22.26635],[114.27818,22.26635],[114.27819,22.26634],[114.2782,22.26633],[114.27831,22.26624],[114.27832,22.26623],[114.27833,22.26623],[114.27833,22.26622],[114.27834,22.26622],[114.27834,22.26622],[114.27835,22.26621],[114.27835,22.26621],[114.27835,22.26621],[114.27836,22.26621],[114.27836,22.2662],[114.27837,22.2662],[114.27837,22.2662],[114.27838,22.2662],[114.27838,22.26619],[114.27838,22.26619],[114.27839,22.26619],[114.27839,22.26619],[114.2784,22.26618],[114.2784,22.26618],[114.27841,22.26618],[114.27841,22.26618],[114.27841,22.26618],[114.27842,22.26617],[114.27842,22.26617],[114.27843,22.26617],[114.27843,22.26617],[114.27844,22.26617],[114.27844,22.26616],[114.27844,22.26616],[114.27845,22.26616],[114.27845,22.26616],[114.27846,22.26616],[114.27846,22.26615],[114.27847,22.26615],[114.27847,22.26615],[114.27847,22.26615],[114.27848,22.26615],[114.27848,22.26614],[114.27849,22.26614],[114.27849,22.26614],[114.2785,22.26614],[114.27851,22.26614],[114.27851,22.26613],[114.27851,22.26613],[114.27852,22.26613],[114.27852,22.26613],[114.27853,22.26613],[114.27853,22.26613],[114.27854,22.26612],[114.27854,22.26612],[114.27855,22.26612],[114.27855,22.26612],[114.27856,22.26612],[114.27856,22.26612],[114.27856,22.26611],[114.27857,22.26611],[114.27857,22.26611],[114.27858,22.26611],[114.27858,22.26611],[114.27859,22.26611],[114.27859,22.26611],[114.2786,22.2661],[114.2786,22.2661],[114.27861,22.2661],[114.27861,22.2661],[114.27861,22.2661],[114.27862,22.2661],[114.27862,22.26609],[114.27863,22.26609],[114.27863,22.26609],[114.27864,22.26609],[114.27864,22.26609],[114.27865,22.26609],[114.27865,22.26609],[114.27866,22.26608],[114.27866,22.26608],[114.27867,22.26608],[114.27867,22.26608],[114.27867,22.26608],[114.27868,22.26608],[114.27868,22.26608],[114.27869,22.26607],[114.27869,22.26607],[114.27869,22.26607],[114.2787,22.26607],[114.2787,22.26607],[114.27871,22.26607],[114.27871,22.26607],[114.27872,22.26607],[114.27873,22.26606],[114.27874,22.26606],[114.27875,22.26606],[114.27875,22.26606],[114.27877,22.26605],[114.27877,22.26605],[114.27877,22.26605],[114.27878,22.26605],[114.27879,22.26605],[114.27879,22.26605],[114.2788,22.26605],[114.2788,22.26605],[114.27881,22.26605],[114.27881,22.26604],[114.27882,22.26604],[114.27882,22.26604],[114.27882,22.26604],[114.27883,22.26606],[114.27884,22.26607],[114.27885,22.26608],[114.27886,22.2661],[114.27887,22.2661],[114.27889,22.26611],[114.2789,22.26612],[114.27891,22.26611],[114.27899,22.26604],[114.27903,22.26602],[114.27904,22.26602],[114.27905,22.26602],[114.27911,22.26602],[114.27912,22.26602],[114.27913,22.26602],[114.27914,22.26601],[114.27914,22.26601],[114.27915,22.26601],[114.27916,22.26601],[114.27916,22.26601],[114.27916,22.26601],[114.27917,22.26601],[114.27917,22.26601],[114.27917,22.26601],[114.27918,22.266],[114.27918,22.266],[114.27919,22.266],[114.27919,22.266],[114.27919,22.26599],[114.2792,22.26599],[114.2792,22.26599],[114.2792,22.26598],[114.27921,22.26598],[114.27921,22.26598],[114.27922,22.26598],[114.27922,22.26597],[114.27922,22.26597],[114.27922,22.26597],[114.27922,22.26597],[114.27923,22.26596],[114.27923,22.26596],[114.27923,22.26595],[114.27924,22.26595],[114.27924,22.26595],[114.27924,22.26594],[114.27924,22.26594],[114.27924,22.26593],[114.27925,22.26593],[114.27925,22.26593],[114.27926,22.26591],[114.27925,22.2659],[114.27925,22.2659],[114.27925,22.2659],[114.27926,22.26589],[114.27934,22.26591],[114.27935,22.26605],[114.27928,22.2661],[114.27956,22.26685],[114.27971,22.26701],[114.27992,22.26733],[114.28062,22.26809],[114.28083,22.26827],[114.2811,22.26834],[114.28138,22.26834],[114.28167,22.26829],[114.28172,22.26824],[114.28211,22.26856],[114.28221,22.26861],[114.28229,22.26879],[114.28228,22.26896],[114.28216,22.26914],[114.28218,22.26927],[114.28223,22.26931],[114.28223,22.26954],[114.28203,22.26963],[114.28202,22.26984],[114.28193,22.27008],[114.28193,22.2702],[114.28177,22.27027],[114.2817,22.2705],[114.28155,22.27071],[114.28146,22.27099],[114.28153,22.27116],[114.28166,22.27133],[114.28192,22.27155],[114.28215,22.27165],[114.28253,22.27165],[114.28267,22.27151],[114.2828,22.27148],[114.28294,22.27133],[114.28294,22.27125],[114.28298,22.27123],[114.28351,22.27113],[114.28375,22.271],[114.28389,22.27103],[114.28395,22.27097],[114.28406,22.27085],[114.28409,22.27076],[114.28463,22.27073],[114.28527,22.27062],[114.28563,22.27065],[114.28573,22.27073],[114.28588,22.27062],[114.2865,22.27077],[114.28689,22.27075],[114.28713,22.27072],[114.2875,22.27061],[114.28769,22.2705],[114.28779,22.27049],[114.28798,22.27032],[114.28821,22.27026],[114.28843,22.27037],[114.28858,22.27059],[114.28874,22.2705],[114.28898,22.2706],[114.28904,22.27066],[114.28909,22.27063],[114.28922,22.27044],[114.28921,22.27038],[114.28855,22.26979],[114.28861,22.26972],[114.28925,22.27029],[114.28933,22.27021],[114.28939,22.27026],[114.28948,22.2702],[114.28997,22.26977],[114.29003,22.26972],[114.29006,22.26972],[114.29014,22.26972],[114.29023,22.26963],[114.29032,22.26951],[114.29038,22.26934],[114.29018,22.26898],[114.2902,22.2689],[114.29026,22.26887],[114.29036,22.26853],[114.29032,22.2684],[114.2903,22.26822],[114.29034,22.26798],[114.29045,22.26764],[114.29064,22.26748],[114.29078,22.26727],[114.29085,22.26712],[114.29099,22.26711],[114.29103,22.26701],[114.29131,22.26695],[114.29137,22.26699],[114.29151,22.26696],[114.29153,22.26691],[114.2918,22.26694],[114.2921,22.26686],[114.29219,22.2667],[114.29244,22.26656],[114.29296,22.26644],[114.29315,22.26629],[114.29326,22.26629],[114.2934,22.26623],[114.29361,22.26625],[114.29389,22.2662],[114.29398,22.2661],[114.29409,22.26609],[114.2942,22.26598],[114.29479,22.26585],[114.29486,22.26587],[114.29495,22.26575],[114.29518,22.26569],[114.29546,22.26536],[114.2957,22.26522],[114.2959,22.26496],[114.29583,22.26492],[114.29587,22.26483],[114.29584,22.26473],[114.29593,22.26464],[114.29595,22.26451],[114.29619,22.26414],[114.29623,22.2639],[114.29626,22.26389],[114.29632,22.26385],[114.29637,22.26383],[114.29652,22.26362],[114.29658,22.26357],[114.29673,22.26352],[114.29687,22.26338],[114.29687,22.26323],[114.29687,22.26319],[114.29696,22.26305],[114.2971,22.26288],[114.29723,22.26274],[114.2973,22.26267],[114.29741,22.26244],[114.2974,22.26239],[114.29717,22.26226],[114.29713,22.26233],[114.29707,22.26229],[114.29718,22.2621],[114.29724,22.26213],[114.29721,22.26219],[114.29733,22.26224],[114.29739,22.26217],[114.29743,22.2621],[114.29744,22.262],[114.2974,22.26191],[114.29734,22.26181],[114.29723,22.26168],[114.29717,22.26158],[114.2972,22.26149],[114.2974,22.26128],[114.29745,22.26126],[114.29765,22.26117],[114.29786,22.26114],[114.29803,22.26103],[114.29824,22.26106],[114.2983,22.26089],[114.29844,22.26094],[114.29853,22.261],[114.29875,22.26085],[114.29888,22.26082],[114.29899,22.26058],[114.29902,22.26055],[114.29908,22.26052],[114.29916,22.2605],[114.29923,22.26048],[114.29935,22.26041],[114.29939,22.2604],[114.29945,22.26042],[114.29956,22.26047],[114.29963,22.26052],[114.29966,22.26055],[114.29967,22.2606],[114.29968,22.26067],[114.29972,22.2607],[114.29975,22.26075],[114.29978,22.2608],[114.29979,22.26083],[114.29981,22.26083],[114.29982,22.26082],[114.29983,22.26079],[114.29986,22.26076],[114.29988,22.26076],[114.2999,22.26077],[114.29991,22.26078],[114.30012,22.26111],[114.30016,22.26124],[114.30023,22.26127],[114.30027,22.26123],[114.30038,22.2612],[114.30046,22.26125],[114.30048,22.26142],[114.30044,22.26157],[114.30047,22.26172],[114.30053,22.26185],[114.30049,22.26197],[114.30039,22.26205],[114.30038,22.26211],[114.3006,22.26202],[114.30067,22.26214],[114.30071,22.26212],[114.30073,22.26197],[114.30087,22.26197],[114.30095,22.26202],[114.30095,22.26206],[114.30091,22.26219],[114.3007,22.26231],[114.30061,22.26236],[114.30041,22.26249],[114.3006,22.26266],[114.30064,22.26277],[114.30065,22.2628],[114.30064,22.26282],[114.30062,22.26287],[114.30059,22.26291],[114.30057,22.26297],[114.30057,22.26298],[114.30057,22.263],[114.30058,22.26301],[114.30059,22.26302],[114.3006,22.26303],[114.30061,22.26304],[114.3006,22.26307],[114.30059,22.26309],[114.30057,22.26311],[114.30056,22.26317],[114.30055,22.26324],[114.30051,22.26334],[114.30048,22.26339],[114.30047,22.26343],[114.30047,22.26346],[114.30053,22.26351],[114.30061,22.26339],[114.30064,22.26336],[114.30067,22.26336],[114.30073,22.26344],[114.30071,22.26356],[114.30047,22.26393],[114.30041,22.26391],[114.30031,22.26376],[114.30028,22.26416],[114.30031,22.26422],[114.30022,22.26445],[114.29992,22.26477],[114.2998,22.26482],[114.29972,22.26491],[114.29965,22.26494],[114.29956,22.26498],[114.29955,22.26503],[114.29967,22.265],[114.29974,22.265],[114.29987,22.26489],[114.29994,22.26489],[114.30002,22.26487],[114.30005,22.26498],[114.30001,22.26506],[114.29992,22.26516],[114.29976,22.26529],[114.29972,22.26534],[114.2997,22.26538],[114.29975,22.26544],[114.29979,22.26548],[114.29993,22.2655],[114.29996,22.26551],[114.3,22.26559],[114.30005,22.26558],[114.30008,22.26548],[114.30011,22.26547],[114.30012,22.26548],[114.30014,22.2655],[114.30021,22.2656],[114.30021,22.26574],[114.30015,22.26578],[114.30028,22.26595],[114.30027,22.26601],[114.30023,22.26608],[114.30028,22.26611],[114.30029,22.26613],[114.30021,22.26619],[114.30022,22.26626],[114.30026,22.2663],[114.30036,22.26631],[114.30039,22.26634],[114.30034,22.26648],[114.30044,22.2666],[114.30065,22.26669],[114.30061,22.26656],[114.30083,22.26655],[114.301,22.26682],[114.30116,22.26686],[114.30122,22.26685],[114.30122,22.26676],[114.30132,22.26663],[114.30148,22.26655],[114.30148,22.26668],[114.30142,22.26684],[114.30147,22.26684],[114.30154,22.26674],[114.30153,22.2666],[114.30164,22.26658],[114.30169,22.26645],[114.30172,22.26641],[114.30179,22.26638],[114.30193,22.26647],[114.30192,22.26628],[114.30196,22.26613],[114.30214,22.26587],[114.30224,22.26579],[114.30235,22.26575],[114.30255,22.26575],[114.30263,22.26572],[114.3027,22.26575],[114.30274,22.26583],[114.30288,22.26582],[114.3029,22.26587],[114.30296,22.26552],[114.303,22.26549],[114.30304,22.26551],[114.30308,22.2654],[114.30317,22.26531],[114.3032,22.26526],[114.30318,22.26519],[114.30319,22.26518],[114.30327,22.26521],[114.30333,22.26516],[114.30341,22.26514],[114.30352,22.26509],[114.30357,22.26499],[114.30372,22.26491],[114.30384,22.26491],[114.3039,22.26482],[114.30394,22.26481],[114.30396,22.26484],[114.30407,22.26474],[114.30424,22.26467],[114.30433,22.26472],[114.30449,22.26463],[114.30455,22.26466],[114.30476,22.26463],[114.30496,22.26463],[114.30505,22.26452],[114.30514,22.26453],[114.30523,22.26458],[114.30527,22.26462],[114.30528,22.2646],[114.3053,22.2646],[114.30531,22.26465],[114.30527,22.26475],[114.30509,22.26487],[114.30489,22.26509],[114.30461,22.26519],[114.30448,22.26537],[114.3045,22.26555],[114.30457,22.26554],[114.30465,22.26564],[114.30495,22.26537],[114.30497,22.26539],[114.30475,22.26565],[114.30469,22.26578],[114.30485,22.26566],[114.30511,22.26541],[114.30551,22.26532],[114.30577,22.26538],[114.30563,22.26563],[114.30595,22.26548],[114.30623,22.26568],[114.30625,22.26588],[114.30643,22.2658],[114.30655,22.26591],[114.30647,22.26635],[114.30635,22.26647],[114.30628,22.26671],[114.3066,22.26632],[114.30666,22.2664],[114.3065,22.26691],[114.30636,22.26712],[114.30658,22.26725],[114.3067,22.26723],[114.30663,22.26733],[114.30659,22.26753],[114.30672,22.26753],[114.30705,22.26772],[114.30706,22.26786],[114.307,22.26792],[114.30687,22.26827],[114.30683,22.26849],[114.30688,22.26858],[114.30683,22.26867],[114.30667,22.26878],[114.30658,22.2689],[114.30652,22.26902],[114.30656,22.26905],[114.30648,22.26919],[114.3063,22.2694],[114.30585,22.26981],[114.30579,22.26981],[114.30565,22.26987],[114.30552,22.26982],[114.30544,22.26981],[114.30537,22.26976],[114.3053,22.26963],[114.30514,22.26947],[114.30514,22.26942],[114.30507,22.26937],[114.30501,22.2693],[114.30504,22.26923],[114.30497,22.26923],[114.30495,22.26911],[114.30492,22.2691],[114.30484,22.26901],[114.30485,22.26874],[114.30476,22.26869],[114.30452,22.26863],[114.3044,22.26874],[114.30433,22.26876],[114.30421,22.26874],[114.30396,22.2688],[114.30381,22.26887],[114.30363,22.26889],[114.30351,22.26883],[114.30339,22.26869],[114.30333,22.26863],[114.30326,22.26863],[114.30315,22.26858],[114.3031,22.26849],[114.30298,22.26844],[114.30283,22.26838],[114.30276,22.26833],[114.30243,22.26809],[114.30235,22.26815],[114.30224,22.26824],[114.30218,22.26829],[114.30214,22.26825],[114.30201,22.26836],[114.30193,22.26842],[114.30156,22.26869],[114.30156,22.2687],[114.30157,22.26874],[114.30156,22.26876],[114.30153,22.26885],[114.30149,22.26892],[114.30144,22.26898],[114.3014,22.26902],[114.30132,22.26908],[114.3013,22.26909],[114.30127,22.26908],[114.30125,22.26907],[114.30123,22.26908],[114.3012,22.26911],[114.30118,22.26912],[114.3011,22.26914],[114.30107,22.26916],[114.30105,22.26917],[114.30086,22.26916],[114.30082,22.26917],[114.30072,22.26919],[114.30043,22.26917],[114.30036,22.26921],[114.30036,22.2693],[114.30028,22.26941],[114.30029,22.26946],[114.30049,22.26962],[114.30054,22.26976],[114.30057,22.26995],[114.30063,22.27004],[114.30048,22.27008],[114.30046,22.27012],[114.30055,22.27031],[114.30062,22.27038],[114.30077,22.27076],[114.30141,22.27146],[114.3015,22.27147],[114.30163,22.2714],[114.3034,22.26996],[114.30378,22.26956],[114.30402,22.26947],[114.30418,22.2695],[114.30438,22.26968],[114.30442,22.2699],[114.30437,22.27],[114.30361,22.27055],[114.30179,22.27204],[114.30154,22.27259],[114.30146,22.27301],[114.30149,22.27307],[114.3015,22.27308],[114.30155,22.273],[114.30158,22.27297],[114.30161,22.27297],[114.30163,22.27299],[114.30163,22.27303],[114.30161,22.27321],[114.30161,22.27323],[114.30158,22.27326],[114.30142,22.27332],[114.30153,22.27334],[114.30157,22.27335],[114.30161,22.2734],[114.30166,22.27346],[114.30166,22.27351],[114.30162,22.27352],[114.30161,22.27346],[114.30153,22.2736],[114.30119,22.27378],[114.30118,22.2738],[114.30124,22.27385],[114.30108,22.27395],[114.30107,22.27407],[114.30114,22.2741],[114.30114,22.27415],[114.30103,22.27429],[114.30102,22.27455],[114.30087,22.27471],[114.30062,22.27517],[114.30051,22.27561],[114.30044,22.27567],[114.30035,22.27565],[114.30033,22.27572],[114.30044,22.27582],[114.30037,22.27603],[114.30039,22.27616],[114.30031,22.27631],[114.30034,22.27635],[114.30033,22.27642],[114.30038,22.27641],[114.30038,22.27649],[114.30031,22.27684],[114.30026,22.27697],[114.30029,22.2771],[114.30023,22.27732],[114.30035,22.27748],[114.30048,22.27828],[114.3004,22.27861],[114.30039,22.27879],[114.30031,22.27901],[114.30036,22.27899],[114.30045,22.27889],[114.3005,22.27879],[114.30053,22.2788],[114.30055,22.27889],[114.30065,22.27877],[114.30079,22.27882],[114.30077,22.27897],[114.30106,22.2789],[114.3015,22.27901],[114.30194,22.27887],[114.302,22.27891],[114.302,22.27897],[114.30204,22.27904],[114.30235,22.27898],[114.30238,22.27901],[114.30231,22.27907],[114.30241,22.27906],[114.3025,22.27907],[114.30264,22.27913],[114.30266,22.27919],[114.30276,22.27929],[114.30306,22.27934],[114.3031,22.2793],[114.30314,22.27935],[114.30312,22.27946],[114.30303,22.27954],[114.3029,22.27953],[114.30285,22.27956],[114.30276,22.27973],[114.30277,22.27978],[114.30271,22.27985],[114.30246,22.27996],[114.30239,22.28003],[114.30232,22.28005],[114.30228,22.28012],[114.3021,22.28017],[114.302,22.28032],[114.30189,22.28039],[114.30158,22.28053],[114.30138,22.28057],[114.30124,22.28055],[114.30114,22.2805],[114.30108,22.28051],[114.30107,22.28055],[114.30096,22.28059],[114.30046,22.28057],[114.30041,22.28058],[114.30034,22.28052],[114.3001,22.2805],[114.30005,22.28047],[114.29996,22.28045],[114.2999,22.28041],[114.29984,22.2804],[114.29975,22.28031],[114.2997,22.28031],[114.29952,22.28027],[114.29944,22.28011],[114.29947,22.28008],[114.29946,22.28006],[114.29927,22.27994],[114.29912,22.2797],[114.29882,22.2796],[114.29851,22.27916],[114.29846,22.27913],[114.29837,22.27894],[114.29826,22.27888],[114.29802,22.27844],[114.29794,22.27837],[114.29789,22.27818],[114.29775,22.27799],[114.29772,22.27779],[114.29762,22.27766],[114.29763,22.27749],[114.29742,22.27721],[114.2968,22.27702],[114.29663,22.27691],[114.29649,22.27676],[114.29631,22.27669],[114.2961,22.27653],[114.29606,22.27652],[114.29605,22.27654],[114.29596,22.27651],[114.29594,22.27654],[114.29587,22.27649],[114.2959,22.27647],[114.29586,22.27645],[114.29585,22.27639],[114.29554,22.27664],[114.29557,22.27667],[114.29554,22.27671],[114.29543,22.2766],[114.29547,22.27657],[114.29551,22.2766],[114.29584,22.27633],[114.29579,22.27625],[114.29574,22.27628],[114.29568,22.27619],[114.29563,22.27613],[114.29567,22.2761],[114.29563,22.2761],[114.29522,22.27607],[114.29522,22.27604],[114.29533,22.27604],[114.2954,22.27604],[114.29539,22.27591],[114.2955,22.27589],[114.29554,22.27589],[114.29554,22.27587],[114.2955,22.27587],[114.2955,22.27581],[114.29552,22.27582],[114.29553,22.2758],[114.29544,22.27578],[114.29546,22.27565],[114.29551,22.27566],[114.29553,22.27565],[114.2956,22.27555],[114.29554,22.27548],[114.29553,22.27548],[114.29547,22.27541],[114.29541,22.27543],[114.29535,22.2753],[114.29546,22.27526],[114.29543,22.27518],[114.29539,22.275],[114.29536,22.27501],[114.29535,22.27499],[114.29532,22.275],[114.29531,22.27498],[114.29528,22.27498],[114.29527,22.27495],[114.29532,22.27494],[114.29531,22.27488],[114.29532,22.27487],[114.29531,22.27482],[114.29521,22.27483],[114.29521,22.27482],[114.29528,22.27481],[114.29538,22.2748],[114.29538,22.27476],[114.29535,22.27468],[114.29529,22.27468],[114.29522,22.27468],[114.29522,22.27467],[114.2953,22.27467],[114.29535,22.27467],[114.29539,22.27453],[114.29541,22.27449],[114.29542,22.27443],[114.29541,22.27419],[114.29535,22.27416],[114.29532,22.27409],[114.29531,22.27396],[114.29537,22.27389],[114.29539,22.27384],[114.29538,22.27359],[114.29525,22.27324],[114.29512,22.27297],[114.29503,22.27292],[114.29499,22.27298],[114.29495,22.27299],[114.29486,22.27298],[114.29475,22.27293],[114.2941,22.27308],[114.29399,22.27314],[114.29354,22.27317],[114.29295,22.27351],[114.29278,22.27367],[114.2927,22.27393],[114.2926,22.27405],[114.29261,22.27422],[114.29259,22.27452],[114.2928,22.27498],[114.29281,22.27514],[114.29274,22.27535],[114.29274,22.27553],[114.29284,22.2758],[114.29283,22.27593],[114.2928,22.27598],[114.2929,22.27595],[114.29299,22.27602],[114.2933,22.27621],[114.29349,22.27649],[114.29354,22.27657],[114.29358,22.27656],[114.29362,22.27668],[114.29361,22.27686],[114.29358,22.2769],[114.29382,22.27716],[114.29399,22.2772],[114.29411,22.27714],[114.29418,22.27705],[114.29416,22.27701],[114.29428,22.27696],[114.29429,22.27699],[114.29442,22.27698],[114.29442,22.27693],[114.29449,22.27693],[114.29468,22.27704],[114.29468,22.27707],[114.29474,22.27712],[114.29473,22.27713],[114.29477,22.27716],[114.29481,22.27712],[114.29489,22.27717],[114.29491,22.2772],[114.2949,22.27722],[114.29497,22.2773],[114.29526,22.2775],[114.29533,22.27768],[114.29547,22.27767],[114.29568,22.27773],[114.29578,22.27784],[114.29576,22.2779],[114.29587,22.27809],[114.29574,22.27836],[114.29588,22.27845],[114.29593,22.27854],[114.2962,22.27856],[114.29629,22.27866],[114.29635,22.27881],[114.29617,22.27893],[114.29612,22.27902],[114.296,22.27908],[114.29601,22.27922],[114.29584,22.27923],[114.2957,22.27922],[114.29559,22.2791],[114.29546,22.27908],[114.29522,22.27915],[114.29482,22.27914],[114.29488,22.27923],[114.29468,22.27917],[114.29467,22.27922],[114.29439,22.27919],[114.29411,22.27936],[114.2938,22.27943],[114.29366,22.27934],[114.29353,22.27912],[114.29347,22.27906],[114.29337,22.27904],[114.2931,22.27875],[114.29263,22.27889],[114.29232,22.27912],[114.29225,22.2792],[114.29198,22.27928],[114.29077,22.27945],[114.29075,22.27948],[114.29027,22.27952],[114.28991,22.27965],[114.2898,22.27975],[114.2896,22.2797],[114.28944,22.27973],[114.28907,22.28001],[114.28879,22.28006],[114.28869,22.28012],[114.28837,22.28041],[114.28815,22.28068],[114.28812,22.28078],[114.28825,22.28106],[114.28814,22.28118],[114.28794,22.28119],[114.28785,22.28134],[114.28788,22.28166],[114.28782,22.28184],[114.28792,22.28257],[114.28801,22.28267],[114.28792,22.28275],[114.28787,22.28291],[114.28787,22.28309],[114.28793,22.28331],[114.28795,22.28335],[114.288,22.28333],[114.28805,22.2834],[114.28814,22.28347],[114.28817,22.28373],[114.2882,22.28372],[114.28826,22.2838],[114.28833,22.28379],[114.28842,22.28384],[114.28859,22.28404],[114.28861,22.28416],[114.28854,22.28427],[114.28857,22.28435],[114.28862,22.28438],[114.28883,22.28452],[114.28891,22.28442],[114.28902,22.28438],[114.28909,22.2844],[114.28915,22.28451],[114.28928,22.28467],[114.28942,22.28473],[114.28948,22.28468],[114.28959,22.28468],[114.2897,22.28463],[114.28988,22.28473],[114.28997,22.28468],[114.29001,22.2847],[114.28999,22.28477],[114.29016,22.28482],[114.29016,22.28495],[114.29031,22.28498],[114.29036,22.2852],[114.29047,22.28535],[114.29046,22.28543],[114.2904,22.2854],[114.29033,22.28554],[114.29021,22.28565],[114.29013,22.28569],[114.29003,22.28569],[114.28995,22.28577],[114.28987,22.28576],[114.28976,22.2857],[114.28968,22.28566],[114.28963,22.28564],[114.28958,22.28564],[114.28952,22.28564],[114.28945,22.28564],[114.28937,22.28565],[114.28932,22.28567],[114.28911,22.28576],[114.28907,22.28579],[114.28905,22.28582],[114.28904,22.28589],[114.28903,22.2859],[114.28896,22.28594],[114.28894,22.28594],[114.28893,22.28593],[114.2889,22.28588],[114.28886,22.28585],[114.28883,22.28583],[114.28876,22.28583],[114.2887,22.28585],[114.28865,22.28588],[114.28861,22.28592],[114.28856,22.28597],[114.28846,22.28605],[114.2884,22.28611],[114.28839,22.28615],[114.28841,22.28621],[114.2884,22.28624],[114.28839,22.28625],[114.28836,22.28626],[114.28832,22.28625],[114.28828,22.28625],[114.28824,22.28626],[114.28815,22.28629],[114.28813,22.2863],[114.28809,22.28633],[114.288,22.28651],[114.28799,22.28656],[114.28799,22.28659],[114.28794,22.28668],[114.28789,22.28683],[114.28789,22.28688],[114.28788,22.28701],[114.28787,22.28741],[114.28787,22.28752],[114.28784,22.28762],[114.28784,22.28772],[114.28787,22.28779],[114.28789,22.28789],[114.28789,22.28793],[114.28788,22.28799],[114.2879,22.28809],[114.28798,22.28825],[114.28799,22.28831],[114.288,22.28832],[114.28803,22.28835],[114.2881,22.28837],[114.28812,22.28839],[114.28814,22.28841],[114.28814,22.28843],[114.28814,22.28845],[114.28814,22.2885],[114.28812,22.28863],[114.28812,22.28864],[114.28814,22.28866],[114.28823,22.28868],[114.28833,22.28875],[114.28849,22.28892],[114.28871,22.28895],[114.28883,22.28909],[114.28892,22.28908],[114.28899,22.2891],[114.28905,22.28924],[114.28914,22.28929],[114.28919,22.28935],[114.2892,22.2894],[114.28918,22.2895],[114.28922,22.28953],[114.28925,22.28948],[114.28935,22.28952],[114.28956,22.28953],[114.28962,22.28956],[114.28967,22.28963],[114.28974,22.28969],[114.28978,22.28974],[114.28984,22.28989],[114.28994,22.2899],[114.29019,22.29009],[114.29027,22.29022],[114.29032,22.29027],[114.29034,22.29033],[114.29035,22.29044],[114.29031,22.29057],[114.2905,22.29072],[114.29053,22.29073],[114.29054,22.29073],[114.29057,22.29066],[114.29061,22.29065],[114.29063,22.29066],[114.29068,22.29097],[114.29072,22.29099],[114.29075,22.29098],[114.29078,22.29098],[114.29086,22.29099],[114.29096,22.29102],[114.29102,22.29104],[114.29113,22.2911],[114.29118,22.29113],[114.29123,22.29117],[114.2913,22.2912],[114.29131,22.29119],[114.29133,22.29119],[114.29138,22.2912],[114.29145,22.29123],[114.29155,22.29129],[114.29161,22.29131],[114.29162,22.29131],[114.29164,22.29131],[114.29166,22.29131],[114.29167,22.2913],[114.29168,22.29129],[114.29169,22.29128],[114.2917,22.29127],[114.2917,22.29127],[114.29175,22.2912],[114.29195,22.29114],[114.29201,22.29117],[114.29219,22.29114],[114.29226,22.29099],[114.29233,22.29094],[114.29242,22.29095],[114.29244,22.29101],[114.29248,22.29099],[114.29255,22.29092],[114.29264,22.29088],[114.29278,22.29086],[114.29294,22.29088],[114.29314,22.29084],[114.29329,22.2909],[114.29349,22.29087],[114.29365,22.29094],[114.29383,22.29092],[114.29389,22.29089],[114.29407,22.29089],[114.29419,22.29078],[114.29445,22.29034],[114.29446,22.29022],[114.29456,22.29006],[114.29453,22.28996],[114.29437,22.28986],[114.29422,22.28971],[114.29405,22.28956],[114.29398,22.28937],[114.29394,22.28922],[114.29394,22.28911],[114.29404,22.28892],[114.29407,22.28885],[114.29408,22.28872],[114.29415,22.28864],[114.29433,22.28849],[114.29446,22.28837],[114.29458,22.2883],[114.29476,22.28828],[114.29494,22.28831],[114.29506,22.28838],[114.29517,22.28831],[114.2954,22.28823],[114.29551,22.28812],[114.29602,22.28794],[114.29624,22.28793],[114.29639,22.28786],[114.29651,22.28789],[114.29695,22.28779],[114.29717,22.28779],[114.2972,22.28781],[114.29728,22.28792],[114.2974,22.28816],[114.29742,22.28819],[114.29745,22.2882],[114.29756,22.28822],[114.29769,22.28822],[114.29778,22.28819],[114.29783,22.28816],[114.29787,22.28814],[114.29791,22.28814],[114.29789,22.288],[114.29797,22.28801],[114.29802,22.28798],[114.29803,22.28784],[114.29814,22.28781],[114.29809,22.28775],[114.29817,22.28773],[114.29835,22.28774],[114.29843,22.28764],[114.29855,22.28754],[114.2986,22.28751],[114.29873,22.28738],[114.2988,22.28738],[114.29886,22.28733],[114.29888,22.28737],[114.29892,22.28738],[114.2991,22.28736],[114.29928,22.28725],[114.2995,22.28725],[114.29964,22.28718],[114.29989,22.2871],[114.29995,22.2871],[114.30014,22.28713],[114.30019,22.28714],[114.30029,22.28724],[114.30031,22.28727],[114.30052,22.28713],[114.30073,22.28708],[114.30103,22.28703],[114.30119,22.28711],[114.30122,22.28718],[114.30133,22.28729],[114.3013,22.28743],[114.30142,22.28747],[114.30146,22.28747],[114.3015,22.28742],[114.30152,22.28738],[114.30163,22.28733],[114.30195,22.28735],[114.30202,22.28737],[114.30216,22.28757],[114.3023,22.28814],[114.30237,22.28811],[114.30244,22.28818],[114.30242,22.28826],[114.30234,22.28826],[114.30228,22.28836],[114.30238,22.28845],[114.30251,22.2886],[114.30259,22.2887],[114.30265,22.2888],[114.3027,22.28885],[114.30269,22.28887],[114.30265,22.28886],[114.30262,22.28883],[114.3026,22.28885],[114.3026,22.28887],[114.30262,22.28891],[114.30294,22.28905],[114.30294,22.28908],[114.30301,22.28918],[114.30296,22.28923],[114.303,22.28932],[114.30332,22.28947],[114.30351,22.28953],[114.30352,22.28963],[114.30345,22.28969],[114.30336,22.28971],[114.30338,22.28975],[114.30363,22.28988],[114.30356,22.28997],[114.30347,22.28995],[114.30345,22.28998],[114.30355,22.29012],[114.30366,22.29011],[114.30381,22.29022],[114.30379,22.29027],[114.3038,22.29042],[114.30402,22.29037],[114.30412,22.29045],[114.30409,22.2905],[114.30398,22.29057],[114.30397,22.29059],[114.30407,22.29069],[114.30451,22.29078],[114.3046,22.29077],[114.30461,22.29083],[114.30461,22.29088],[114.30473,22.29089],[114.30482,22.29098],[114.30483,22.29103],[114.30477,22.29104],[114.30485,22.29111],[114.30498,22.29115],[114.30502,22.29111],[114.30509,22.2911],[114.30526,22.29116],[114.30525,22.29124],[114.30515,22.29128],[114.30522,22.2914],[114.30534,22.29145],[114.30573,22.29121],[114.30594,22.29132],[114.30608,22.29146],[114.30609,22.29159],[114.30602,22.29171],[114.30576,22.29182],[114.30575,22.29195],[114.30587,22.29201],[114.30602,22.29199],[114.30607,22.29211],[114.30639,22.29222],[114.30666,22.29228],[114.30697,22.29231],[114.30711,22.29227],[114.30724,22.2923],[114.30735,22.29216],[114.30756,22.29216],[114.30763,22.2922],[114.30766,22.29228],[114.30748,22.29245],[114.30753,22.29247],[114.30767,22.29245],[114.30787,22.29234],[114.30818,22.29225],[114.30839,22.29211],[114.3086,22.2921],[114.30865,22.29214],[114.30855,22.29227],[114.3087,22.29227],[114.30889,22.29238],[114.30892,22.29252],[114.30898,22.29257],[114.30936,22.29252],[114.30958,22.29254],[114.30966,22.29262],[114.30974,22.29265],[114.31003,22.29287],[114.31011,22.29307],[114.31013,22.2933],[114.30995,22.29357],[114.31014,22.29366],[114.31035,22.29383],[114.31071,22.29479],[114.31075,22.29499],[114.31076,22.2951],[114.31072,22.29522],[114.31063,22.29525],[114.31076,22.29537],[114.31068,22.29551],[114.31034,22.29569],[114.31027,22.29576],[114.3102,22.29576],[114.31013,22.29582],[114.30997,22.29604],[114.31004,22.29605],[114.31018,22.29597],[114.31039,22.29601],[114.31057,22.29612],[114.31056,22.29623],[114.31042,22.29631],[114.31015,22.29637],[114.30998,22.29651],[114.30979,22.2966],[114.30944,22.29669],[114.30917,22.29671],[114.30917,22.297],[114.30938,22.29726],[114.30971,22.29729],[114.3099,22.29733],[114.30998,22.29736],[114.30995,22.29747],[114.30989,22.29749],[114.30992,22.29754],[114.31047,22.29754],[114.31051,22.29751],[114.3107,22.2975],[114.31109,22.29757],[114.31125,22.29757],[114.31131,22.29761],[114.31144,22.2977],[114.31145,22.29777],[114.31148,22.29782],[114.31164,22.29779],[114.3117,22.29764],[114.31182,22.29764],[114.31186,22.29765],[114.31188,22.29772],[114.31182,22.29779],[114.31177,22.29788],[114.31171,22.29793],[114.31167,22.29797],[114.31165,22.298],[114.31101,22.29804],[114.31105,22.29816],[114.3113,22.29814],[114.31138,22.29817],[114.31133,22.29822],[114.31135,22.29825],[114.31165,22.29821],[114.31172,22.29829],[114.31193,22.29827],[114.31213,22.29819],[114.31211,22.29829],[114.31211,22.29864],[114.312,22.2989],[114.31195,22.29919],[114.31195,22.2995],[114.31183,22.29981],[114.31151,22.30022],[114.31141,22.30022],[114.3113,22.30031],[114.31112,22.30037],[114.31052,22.30051],[114.31052,22.30057],[114.31048,22.30067],[114.31049,22.30076],[114.3106,22.3008],[114.31072,22.30078],[114.31099,22.30087],[114.311,22.30089],[114.31108,22.30114],[114.31097,22.3014],[114.31097,22.30158],[114.31073,22.30196],[114.31042,22.30227],[114.31049,22.30239],[114.3105,22.30251],[114.3104,22.3027],[114.31023,22.30284],[114.30981,22.30292],[114.30977,22.30298],[114.30963,22.30296],[114.30938,22.30307],[114.30928,22.30316],[114.30929,22.30319],[114.30906,22.30329],[114.30909,22.30341],[114.30895,22.30362],[114.30893,22.30361],[114.30891,22.30339],[114.30876,22.30341],[114.3085,22.30388],[114.30831,22.30413],[114.30821,22.30427],[114.30781,22.30479],[114.30768,22.30484],[114.30759,22.30498],[114.30749,22.30514],[114.30734,22.3053],[114.30723,22.30535],[114.30714,22.3054],[114.30707,22.3055],[114.30699,22.30559],[114.3068,22.30568],[114.30669,22.30578],[114.30647,22.30578],[114.30625,22.30566],[114.30622,22.30572],[114.30634,22.30595],[114.30627,22.30605],[114.30595,22.30591],[114.30589,22.30603],[114.3061,22.30625],[114.30606,22.30636],[114.30578,22.30659],[114.30573,22.30664],[114.30561,22.30665],[114.30562,22.30669],[114.30538,22.30673],[114.30529,22.30664],[114.30522,22.30663],[114.30511,22.30675],[114.30511,22.30687],[114.30504,22.307],[114.30478,22.30724],[114.30461,22.30727],[114.30446,22.30734],[114.30418,22.30759],[114.30393,22.30768],[114.30356,22.3079],[114.30365,22.30809],[114.30383,22.30833],[114.30415,22.30846],[114.30439,22.3083],[114.30449,22.30833],[114.30463,22.30844],[114.30465,22.30849],[114.30469,22.30891],[114.30458,22.30916],[114.30438,22.30939],[114.30418,22.30958],[114.30399,22.30964],[114.30364,22.30959],[114.3035,22.30951],[114.30315,22.30981],[114.30303,22.31],[114.30329,22.31016],[114.30335,22.31049],[114.30326,22.31055],[114.30318,22.31055],[114.303,22.31046],[114.30289,22.31051],[114.30271,22.31055],[114.30259,22.31045],[114.30245,22.31031],[114.30239,22.31014],[114.3023,22.31008],[114.30235,22.30983],[114.30218,22.30983],[114.30203,22.30973],[114.30201,22.30972],[114.30173,22.30969],[114.3017,22.30957],[114.30162,22.30947],[114.30127,22.30941],[114.3011,22.30942],[114.30103,22.30955],[114.30094,22.30964],[114.30058,22.30989],[114.3003,22.31001],[114.30019,22.30998],[114.29999,22.31001],[114.29993,22.30991],[114.29976,22.30989],[114.29981,22.31002],[114.29974,22.31003],[114.29953,22.30994],[114.29946,22.30999],[114.29947,22.31007],[114.29942,22.31012],[114.29931,22.31013],[114.29924,22.31019],[114.2992,22.31026],[114.29888,22.3103],[114.2987,22.31015],[114.29863,22.31004],[114.29853,22.31001],[114.29833,22.30987],[114.2982,22.30975],[114.2981,22.30966],[114.29793,22.30959],[114.29787,22.3094],[114.29772,22.30926],[114.29754,22.30913],[114.29719,22.30898],[114.29721,22.30885],[114.29718,22.30881],[114.29684,22.30867],[114.29656,22.30849],[114.29654,22.30841],[114.29648,22.30831],[114.29636,22.30817],[114.29636,22.30811],[114.29602,22.30779],[114.29579,22.30768],[114.29572,22.30757],[114.29545,22.30744],[114.29528,22.30745],[114.29506,22.30726],[114.2949,22.30727],[114.29488,22.30719],[114.29469,22.30694],[114.29501,22.30682],[114.29511,22.30683],[114.29516,22.30683],[114.2953,22.30675],[114.29539,22.30662],[114.29563,22.30627],[114.29567,22.30616],[114.29577,22.30608],[114.29583,22.30581],[114.29573,22.30532],[114.29584,22.30513],[114.29584,22.3049],[114.29599,22.3045],[114.2959,22.30449],[114.29589,22.30452],[114.29577,22.30448],[114.29541,22.30436],[114.29492,22.30433],[114.29467,22.30429],[114.2944,22.30422],[114.29437,22.30413],[114.29412,22.30403],[114.294,22.30405],[114.2937,22.30416],[114.29356,22.30423],[114.29336,22.30427],[114.2932,22.30422],[114.29303,22.3041],[114.29247,22.30411],[114.29235,22.30407],[114.29243,22.30426],[114.29213,22.30462],[114.29219,22.3047],[114.29219,22.30486],[114.29224,22.30501],[114.2924,22.3052],[114.29243,22.30518],[114.29249,22.30523],[114.29248,22.30531],[114.29242,22.30539],[114.29233,22.30557],[114.29242,22.30558],[114.29259,22.30577],[114.29267,22.30604],[114.29289,22.30629],[114.29295,22.30641],[114.29295,22.30645],[114.2929,22.30646],[114.29287,22.30661],[114.29289,22.30672],[114.29297,22.30686],[114.29295,22.30698],[114.29288,22.30703],[114.29281,22.30703],[114.29271,22.30691],[114.29264,22.30688],[114.29244,22.30691],[114.29237,22.30674],[114.29232,22.30672],[114.29209,22.30673],[114.29201,22.30675],[114.29193,22.3068],[114.29194,22.30687],[114.29189,22.30694],[114.29168,22.30702],[114.29144,22.30701],[114.29112,22.3069],[114.29103,22.30694],[114.29086,22.30702],[114.29059,22.30719],[114.29043,22.3074],[114.29038,22.30757],[114.29045,22.30781],[114.29075,22.30806],[114.29111,22.30857],[114.29138,22.30874],[114.29177,22.30915],[114.29191,22.30937],[114.29195,22.30955],[114.29226,22.30993],[114.29228,22.31007],[114.2922,22.31015],[114.2924,22.31013],[114.29244,22.31017],[114.29241,22.31022],[114.29255,22.31035],[114.29257,22.31055],[114.29255,22.31071],[114.29251,22.3108],[114.29244,22.31086],[114.29244,22.31093],[114.29238,22.31104],[114.29215,22.31118],[114.29205,22.31122],[114.29193,22.31131],[114.29174,22.31134],[114.2916,22.31155],[114.29157,22.31168],[114.29172,22.3119],[114.29191,22.31208],[114.29199,22.31212],[114.29213,22.31223],[114.29218,22.31217],[114.29242,22.31234],[114.29246,22.31259],[114.29246,22.31278],[114.29242,22.31282],[114.29226,22.31285],[114.29238,22.31295],[114.2924,22.31303],[114.29226,22.31322],[114.29219,22.31325],[114.29209,22.31329],[114.29203,22.3133],[114.29185,22.31332],[114.29177,22.31334],[114.29165,22.31342],[114.29165,22.31347],[114.29141,22.31347],[114.29133,22.31355],[114.29126,22.31364],[114.29114,22.31374],[114.2909,22.31376],[114.29071,22.31367],[114.2906,22.31376],[114.29052,22.31382],[114.29034,22.31403],[114.29008,22.31408],[114.28997,22.31427],[114.28993,22.31448],[114.28995,22.31461],[114.28989,22.31486],[114.28981,22.31505],[114.28992,22.31513],[114.28998,22.3153],[114.28998,22.31532],[114.28984,22.31535],[114.28987,22.31568],[114.28996,22.31573],[114.29,22.31566],[114.2901,22.31566],[114.29017,22.31573],[114.29018,22.31577],[114.29019,22.3158],[114.29028,22.31579],[114.29033,22.31597],[114.29027,22.31609],[114.29025,22.31624],[114.29024,22.31628],[114.29023,22.31631],[114.29015,22.31637],[114.29011,22.31636],[114.29004,22.31662],[114.29012,22.31667],[114.2901,22.31676],[114.28975,22.31709],[114.28996,22.317],[114.29009,22.31702],[114.29005,22.31733],[114.28981,22.31773],[114.28978,22.31792],[114.28969,22.31807],[114.28953,22.31818],[114.28944,22.31828],[114.28934,22.31834],[114.28945,22.31844],[114.28937,22.31841],[114.28941,22.31849],[114.28936,22.31858],[114.28919,22.31865],[114.28897,22.31865],[114.28919,22.3187],[114.28916,22.31883],[114.28913,22.31891],[114.28882,22.31918],[114.2887,22.3192],[114.28858,22.31927],[114.28845,22.31929],[114.28847,22.31956],[114.28865,22.31977],[114.28873,22.31979],[114.28887,22.31974],[114.2891,22.31974],[114.28922,22.31966],[114.28947,22.31956],[114.28957,22.3196],[114.28959,22.31966],[114.28955,22.31973],[114.28948,22.31978],[114.28947,22.31981],[114.2895,22.31984],[114.28963,22.31986],[114.28975,22.31996],[114.2898,22.32006],[114.28973,22.32022],[114.28959,22.32025],[114.28955,22.32027],[114.28956,22.32028],[114.28961,22.3203],[114.28965,22.32034],[114.28966,22.32046],[114.28962,22.3205],[114.2895,22.32056],[114.28947,22.32058],[114.2895,22.32059],[114.28963,22.32059],[114.28964,22.32062],[114.28934,22.32071],[114.28924,22.32077],[114.28925,22.3208],[114.2895,22.32071],[114.28959,22.32072],[114.28959,22.32093],[114.28965,22.32101],[114.28953,22.32106],[114.28939,22.32104],[114.28907,22.32119],[114.28907,22.32121],[114.28919,22.32124],[114.28919,22.32127],[114.28914,22.3213],[114.28895,22.32129],[114.28893,22.32125],[114.28883,22.32121],[114.28864,22.32107],[114.28864,22.32101],[114.28858,22.32095],[114.28842,22.32092],[114.28855,22.32082],[114.28862,22.32048],[114.28862,22.32027],[114.28852,22.32014],[114.28841,22.32007],[114.28808,22.31997],[114.28739,22.31987],[114.28729,22.31991],[114.2872,22.32001],[114.28706,22.32003],[114.2864,22.31994],[114.28613,22.31996],[114.28569,22.32016],[114.28544,22.32038],[114.28528,22.32059],[114.28521,22.32062],[114.2852,22.32065],[114.28521,22.32068],[114.28529,22.32073],[114.28532,22.32092],[114.2853,22.32114],[114.28538,22.32124],[114.28532,22.3213],[114.2855,22.32133],[114.28546,22.32136],[114.28512,22.32135],[114.28513,22.32143],[114.28507,22.32147],[114.28496,22.32149],[114.28487,22.32156],[114.28479,22.32155],[114.28473,22.32144],[114.28463,22.3214],[114.28446,22.32148],[114.28445,22.3214],[114.28433,22.32134],[114.28412,22.32132],[114.2838,22.32122],[114.28361,22.32122],[114.2832,22.32115],[114.28266,22.32135],[114.28244,22.32136],[114.28212,22.32109],[114.28194,22.32085],[114.28173,22.3207],[114.28147,22.3206],[114.28115,22.32055],[114.2808,22.32045],[114.2803,22.32019],[114.28008,22.32],[114.27968,22.31983],[114.27952,22.3198],[114.27934,22.31978],[114.27906,22.31976],[114.27902,22.31975],[114.27899,22.31973],[114.27897,22.31972],[114.2788,22.31956],[114.2787,22.31955],[114.27864,22.31954],[114.27856,22.31954],[114.27852,22.31954],[114.27851,22.3195],[114.27852,22.31946],[114.27839,22.31926],[114.27827,22.3193],[114.27782,22.31942],[114.27778,22.31943],[114.27773,22.31946],[114.27753,22.31961],[114.27755,22.31971],[114.27755,22.31979],[114.27754,22.31993],[114.27754,22.31994],[114.27746,22.32013],[114.27753,22.32021],[114.2776,22.32016],[114.27762,22.3202],[114.27751,22.32027],[114.27747,22.32022],[114.27742,22.32031],[114.27714,22.32065],[114.27718,22.3208],[114.27718,22.32093],[114.27704,22.32121],[114.27694,22.32128],[114.2769,22.32142],[114.27673,22.32155],[114.27656,22.32158],[114.27649,22.32156],[114.27633,22.32166],[114.27627,22.32177],[114.27616,22.32185],[114.27603,22.32181],[114.27602,22.32178],[114.27578,22.32188],[114.27575,22.32197],[114.27564,22.32197],[114.27556,22.32193],[114.27546,22.32198],[114.27516,22.32204],[114.27479,22.32202],[114.27411,22.32215],[114.27378,22.3223],[114.27368,22.32232],[114.27364,22.32232],[114.27349,22.32225],[114.27332,22.32225],[114.27312,22.32227],[114.27308,22.32227],[114.27302,22.32227],[114.27298,22.32227],[114.27291,22.32231],[114.27283,22.32236],[114.2728,22.32237],[114.27277,22.32238],[114.27268,22.32242],[114.27263,22.32243],[114.27262,22.32242],[114.27251,22.32238],[114.27249,22.32236],[114.27245,22.32235],[114.27239,22.32241],[114.27239,22.32241],[114.27235,22.32246],[114.27232,22.32244],[114.27228,22.32247],[114.272,22.32277],[114.27178,22.32312],[114.27169,22.32315],[114.27183,22.32343],[114.27186,22.3237],[114.27197,22.3238],[114.272,22.32378],[114.27201,22.32377],[114.27203,22.32378],[114.27205,22.32379],[114.27206,22.32381],[114.27206,22.32386],[114.27203,22.32387],[114.27217,22.32411],[114.27218,22.32417],[114.27211,22.32427],[114.27215,22.32438],[114.27223,22.3244],[114.27226,22.32454],[114.27224,22.32468],[114.27226,22.32498],[114.27223,22.32504],[114.27218,22.32525],[114.27213,22.32545],[114.27214,22.32554],[114.27207,22.32562],[114.27196,22.3256],[114.27188,22.32566],[114.27172,22.32609],[114.27168,22.32634],[114.27172,22.32645],[114.27191,22.32647],[114.27198,22.32654],[114.27198,22.32666],[114.27188,22.32681],[114.27193,22.32711],[114.27193,22.32742],[114.272,22.32758],[114.27195,22.32779],[114.27202,22.32796],[114.27214,22.32803],[114.27216,22.32813],[114.2721,22.32836],[114.27213,22.32863],[114.2721,22.32868],[114.27212,22.32874],[114.27218,22.32875],[114.27235,22.32887],[114.27233,22.32894],[114.27234,22.3292],[114.27224,22.32947],[114.27195,22.32977],[114.27184,22.3299],[114.27175,22.33036],[114.27165,22.33052],[114.27148,22.33057],[114.27127,22.33063],[114.27118,22.33071],[114.27106,22.33078],[114.27098,22.33077],[114.27087,22.33087],[114.27082,22.33098],[114.27067,22.33137],[114.27065,22.33152],[114.27056,22.33162],[114.27057,22.33176],[114.27057,22.33212],[114.27044,22.33226],[114.27043,22.33242],[114.27031,22.33246],[114.27037,22.33269],[114.27033,22.33275],[114.27037,22.33278],[114.27038,22.33289],[114.27036,22.33295],[114.27035,22.33296],[114.27039,22.33334],[114.27046,22.3334],[114.2705,22.33339],[114.27065,22.33343],[114.27064,22.33348],[114.27073,22.33357],[114.2708,22.33389],[114.27061,22.33419],[114.27039,22.33448],[114.27015,22.33473],[114.27021,22.33482],[114.27024,22.33507],[114.2701,22.33519],[114.26996,22.3352],[114.27004,22.33532],[114.26995,22.3354],[114.26998,22.3355],[114.2699,22.33556],[114.26983,22.33593],[114.26988,22.33602],[114.26987,22.33607],[114.2697,22.33617],[114.26972,22.33629],[114.26963,22.33629],[114.26964,22.33636],[114.26921,22.33658],[114.26956,22.33771],[114.26952,22.33775],[114.26956,22.33786],[114.2694,22.33791],[114.26938,22.33784],[114.26895,22.33796],[114.26893,22.33792],[114.26909,22.33788],[114.26904,22.33775],[114.26769,22.33811],[114.2676,22.33816],[114.26745,22.33835],[114.26742,22.33838],[114.26741,22.33839],[114.26739,22.33839],[114.26737,22.33839],[114.26735,22.33839],[114.26733,22.33839],[114.26731,22.33838],[114.26706,22.33825],[114.26699,22.33832],[114.26677,22.33874],[114.2667,22.33909],[114.26663,22.33919],[114.26666,22.33938],[114.26663,22.33941],[114.26656,22.33943],[114.26657,22.33954],[114.26663,22.33964],[114.2666,22.33965],[114.26655,22.33962],[114.26649,22.33967],[114.2665,22.33975],[114.26644,22.33974],[114.26644,22.33982],[114.26648,22.33989],[114.26637,22.33992],[114.26631,22.33997],[114.26619,22.33996],[114.26613,22.33991],[114.26611,22.33996],[114.26616,22.34009],[114.26605,22.3401],[114.26608,22.34018],[114.26597,22.34023],[114.26592,22.34032],[114.26585,22.34039],[114.26594,22.34038],[114.26598,22.3404],[114.26597,22.34044],[114.26594,22.34044],[114.26593,22.34045],[114.26592,22.34049],[114.26591,22.3405],[114.26592,22.34066],[114.26591,22.34089],[114.26592,22.34107],[114.26594,22.34114],[114.26595,22.34123],[114.26596,22.34137],[114.26598,22.34146],[114.26598,22.3417],[114.26597,22.34175],[114.26594,22.34181],[114.26591,22.34184],[114.26587,22.34183],[114.26583,22.34176],[114.2658,22.34172],[114.26576,22.34169],[114.26571,22.34168],[114.26568,22.34169],[114.26565,22.34169],[114.2656,22.34172],[114.26555,22.34174],[114.26533,22.34189],[114.26541,22.34194],[114.26545,22.34191],[114.26555,22.34186],[114.26558,22.34186],[114.26559,22.34186],[114.2656,22.34187],[114.26561,22.34187],[114.26562,22.34192],[114.26566,22.34195],[114.26578,22.34194],[114.26579,22.34194],[114.26581,22.34194],[114.26584,22.34194],[114.26587,22.34196],[114.26592,22.342],[114.26594,22.342],[114.26599,22.34199],[114.26603,22.34197],[114.26604,22.34197],[114.26608,22.34198],[114.26613,22.34188],[114.26613,22.34187],[114.26613,22.34186],[114.26614,22.34186],[114.26615,22.34185],[114.26617,22.34186],[114.26618,22.34187],[114.26618,22.34188],[114.26616,22.34189],[114.26616,22.3419],[114.26616,22.34194],[114.26617,22.34198],[114.26617,22.34201],[114.26616,22.34202],[114.26615,22.34203],[114.26613,22.34203],[114.2661,22.34201],[114.26603,22.34201],[114.26602,22.34204],[114.26607,22.34207],[114.26609,22.34209],[114.26612,22.34211],[114.26613,22.34212],[114.26614,22.34215],[114.26608,22.34237],[114.26607,22.34239],[114.26604,22.34241],[114.26604,22.34241],[114.26603,22.34248],[114.26604,22.34251],[114.26615,22.34251],[114.26617,22.34251],[114.2662,22.34253],[114.2662,22.34254],[114.2662,22.34254],[114.2662,22.34255],[114.26619,22.34257],[114.26617,22.34258],[114.26616,22.34258],[114.26609,22.34258],[114.26599,22.34262],[114.266,22.34269],[114.26599,22.3427],[114.26598,22.34273],[114.26597,22.34276],[114.26596,22.34277],[114.26585,22.34285],[114.26583,22.34286],[114.26581,22.34286],[114.2658,22.34284],[114.26579,22.34284],[114.26578,22.34284],[114.26574,22.34288],[114.26574,22.34301],[114.26581,22.34301],[114.26582,22.34302],[114.26583,22.34303],[114.26584,22.34304],[114.26583,22.34305],[114.26582,22.34309],[114.26579,22.34314],[114.26577,22.34315],[114.2657,22.3432],[114.26567,22.34325],[114.26567,22.34326],[114.26572,22.34326],[114.26574,22.34327],[114.26574,22.34328],[114.26574,22.3433],[114.26572,22.34331],[114.2657,22.3433],[114.26568,22.34331],[114.26562,22.34334],[114.2656,22.34341],[114.26563,22.34346],[114.26567,22.34346],[114.26569,22.34346],[114.26572,22.34347],[114.26574,22.34347],[114.26576,22.34347],[114.26577,22.34349],[114.26577,22.3435],[114.26576,22.34353],[114.26572,22.34366],[114.26566,22.34376],[114.26564,22.34378],[114.26561,22.3438],[114.26556,22.34381],[114.26555,22.34382],[114.26555,22.34384],[114.26554,22.34387],[114.2656,22.34387],[114.26561,22.34388],[114.26564,22.34388],[114.26565,22.34389],[114.26552,22.34407],[114.26558,22.34418],[114.2656,22.3443],[114.26577,22.34433],[114.26581,22.34443],[114.26578,22.34456],[114.26585,22.34457],[114.26585,22.34464],[114.26579,22.34464],[114.26582,22.34476],[114.26587,22.34477],[114.26595,22.34471],[114.26609,22.34472],[114.26616,22.34479],[114.26622,22.34492],[114.26621,22.34502],[114.26611,22.34522],[114.26619,22.34525],[114.2662,22.3453],[114.26615,22.34539],[114.26612,22.34561],[114.266,22.34573],[114.26598,22.3458],[114.26603,22.34591],[114.26603,22.34612],[114.26608,22.34614],[114.26613,22.3462],[114.26608,22.34629],[114.26613,22.34637],[114.26607,22.34651],[114.26622,22.34677],[114.26638,22.34691],[114.26651,22.34684],[114.26658,22.34685],[114.26663,22.34693],[114.26671,22.34694],[114.26682,22.34686],[114.26688,22.34693],[114.26704,22.34681],[114.26705,22.3469],[114.26714,22.34685],[114.26725,22.34688],[114.26725,22.34701],[114.26719,22.34707],[114.26707,22.34708],[114.26696,22.34703],[114.26688,22.34696],[114.26673,22.34705],[114.26665,22.34725],[114.26665,22.34744],[114.26658,22.34749],[114.26655,22.34757],[114.26656,22.34773],[114.26663,22.34787],[114.26663,22.34801],[114.26668,22.34807],[114.26674,22.34803],[114.26682,22.34806],[114.26681,22.34815],[114.26684,22.34821],[114.26745,22.34869],[114.26749,22.34871],[114.26755,22.34866],[114.26762,22.34867],[114.26763,22.34876],[114.26795,22.34888],[114.2682,22.34904],[114.26863,22.34946],[114.26864,22.3495],[114.26859,22.34962],[114.26862,22.3498],[114.26847,22.3501],[114.26857,22.35006],[114.26866,22.35013],[114.26861,22.35026],[114.26853,22.35027],[114.26833,22.35049],[114.26839,22.35049],[114.26843,22.35055],[114.26838,22.35062],[114.26832,22.35062],[114.26831,22.35063],[114.2684,22.3507],[114.26838,22.35073],[114.26831,22.35077],[114.26818,22.35079],[114.26814,22.35081],[114.26828,22.35083],[114.26833,22.35087],[114.26827,22.35099],[114.26825,22.35108],[114.26815,22.35116],[114.26802,22.35118],[114.26783,22.35118],[114.26775,22.35113],[114.26766,22.35117],[114.26753,22.35117],[114.26745,22.35114],[114.26742,22.35119],[114.26734,22.35119],[114.26701,22.35116],[114.26697,22.35111],[114.26671,22.35118],[114.26657,22.35118],[114.26649,22.35118],[114.26643,22.35112],[114.26612,22.35114],[114.26601,22.35114],[114.266,22.35111],[114.26587,22.35106],[114.26588,22.35103],[114.2658,22.35102],[114.26571,22.3509],[114.26542,22.35072],[114.26504,22.35042],[114.26487,22.35012],[114.26463,22.35012],[114.26445,22.35036],[114.26439,22.35053],[114.26446,22.35067],[114.2644,22.35094],[114.26445,22.35107],[114.26457,22.35119],[114.26465,22.35138],[114.26459,22.35153],[114.26478,22.35164],[114.2648,22.35169],[114.26478,22.3518],[114.26476,22.35188],[114.26482,22.35194],[114.26482,22.35226],[114.26453,22.35232],[114.26451,22.35243],[114.2646,22.35256],[114.26452,22.3526],[114.26439,22.35258],[114.26425,22.35262],[114.26387,22.35288],[114.26351,22.35343],[114.26324,22.35364],[114.26316,22.35383],[114.26291,22.35417],[114.26297,22.35421],[114.263,22.35438],[114.2628,22.35464],[114.26254,22.35472],[114.26234,22.3546],[114.26235,22.35449],[114.26231,22.35444],[114.26192,22.35439],[114.26165,22.35424],[114.26155,22.35419],[114.26141,22.35416],[114.26133,22.35417],[114.26125,22.35418],[114.26118,22.35421],[114.26108,22.35425],[114.26097,22.35432],[114.2609,22.35438],[114.26072,22.35455],[114.26063,22.35484],[114.26053,22.35507],[114.26051,22.3551],[114.2603,22.35546],[114.26019,22.35557],[114.26007,22.35558],[114.26009,22.35562],[114.26037,22.35579],[114.26054,22.356],[114.26066,22.35605],[114.26076,22.35622],[114.2608,22.35652],[114.26068,22.3568],[114.26062,22.35683],[114.2604,22.35686],[114.26034,22.35676],[114.26027,22.35673],[114.26012,22.35676],[114.26004,22.35666],[114.25991,22.3566],[114.25976,22.35648],[114.25974,22.35623],[114.25977,22.35608],[114.25981,22.35589],[114.25983,22.35582],[114.25984,22.35577],[114.25984,22.35568],[114.25985,22.35556],[114.25984,22.35553],[114.25984,22.35549],[114.25987,22.35545],[114.25986,22.35539],[114.25983,22.35525],[114.25966,22.35527],[114.25874,22.35552],[114.25817,22.35564],[114.25789,22.3557],[114.25734,22.35579],[114.25659,22.35586],[114.25576,22.35586],[114.25573,22.35585],[114.25571,22.35582],[114.25571,22.35581],[114.25572,22.3558],[114.25575,22.35578],[114.25576,22.35578],[114.25577,22.35578],[114.25585,22.35581],[114.25602,22.3558],[114.25609,22.3558],[114.2562,22.35581],[114.25632,22.35578],[114.25644,22.35578],[114.25668,22.35578],[114.25715,22.35575],[114.25758,22.35568],[114.25796,22.35562],[114.25814,22.35559],[114.25827,22.35555],[114.25842,22.35554],[114.25872,22.35545],[114.2588,22.35545],[114.25898,22.35539],[114.25904,22.35538],[114.25913,22.35534],[114.25923,22.35534],[114.25941,22.35529],[114.25976,22.35518],[114.25978,22.35522],[114.2598,22.35521],[114.25978,22.35516],[114.2598,22.35514],[114.25979,22.3551],[114.25968,22.3551],[114.25957,22.3551],[114.25946,22.3551],[114.25942,22.35508],[114.25942,22.35504],[114.25943,22.35498],[114.25947,22.35497],[114.25956,22.35497],[114.25956,22.35484],[114.25957,22.35469],[114.25954,22.35465],[114.25951,22.35466],[114.25947,22.35466],[114.25944,22.35464],[114.25943,22.3546],[114.25943,22.35457],[114.25945,22.35453],[114.25947,22.35449],[114.25947,22.35445],[114.25945,22.35442],[114.25944,22.35439],[114.25948,22.35433],[114.25955,22.35433],[114.25956,22.3543],[114.25953,22.35426],[114.25952,22.35423],[114.25953,22.35418],[114.25953,22.35416],[114.25957,22.35413],[114.25967,22.35418],[114.2597,22.35415],[114.25958,22.3541],[114.2595,22.35413],[114.25948,22.35413],[114.25946,22.3541],[114.25948,22.35408],[114.25969,22.35405],[114.25968,22.35402],[114.2595,22.35404],[114.25947,22.35404],[114.25945,22.35402],[114.25944,22.354],[114.25945,22.35398],[114.25946,22.35397],[114.25948,22.35395],[114.25968,22.35393],[114.25968,22.35392],[114.25951,22.35392],[114.25946,22.35393],[114.25939,22.35385],[114.25941,22.35376],[114.25942,22.35372],[114.25961,22.35368],[114.25963,22.35363],[114.25959,22.35366],[114.25946,22.35366],[114.25936,22.3537],[114.2593,22.35377],[114.25927,22.35384],[114.25925,22.35388],[114.2592,22.35401],[114.25917,22.35407],[114.25914,22.35409],[114.25901,22.35414],[114.25897,22.35416],[114.2589,22.35417],[114.25885,22.35418],[114.2588,22.35416],[114.25878,22.35414],[114.25876,22.3541],[114.25877,22.35408],[114.25889,22.35381],[114.25895,22.35365],[114.25898,22.35354],[114.25893,22.35353],[114.2589,22.3536],[114.25885,22.35366],[114.25883,22.35369],[114.25879,22.35371],[114.25876,22.35371],[114.25868,22.35369],[114.25863,22.35371],[114.25859,22.3537],[114.25857,22.35349],[114.25851,22.35349],[114.25851,22.35352],[114.2585,22.35367],[114.25849,22.35371],[114.25841,22.35375],[114.25839,22.35376],[114.25832,22.35374],[114.25827,22.35372],[114.25826,22.35371],[114.25823,22.35367],[114.2582,22.35367],[114.25801,22.35366],[114.25794,22.35365],[114.25791,22.35357],[114.25791,22.35347],[114.25788,22.35347],[114.25787,22.35353],[114.25787,22.35365],[114.25789,22.35375],[114.25794,22.35381],[114.25803,22.35391],[114.25809,22.35399],[114.25808,22.35404],[114.25807,22.35411],[114.25802,22.35418],[114.25788,22.35426],[114.25784,22.35429],[114.25778,22.35432],[114.25758,22.35437],[114.25728,22.35441],[114.25707,22.35433],[114.25694,22.35424],[114.25691,22.35418],[114.25689,22.3541],[114.25688,22.35396],[114.25684,22.35383],[114.25684,22.35378],[114.25688,22.35368],[114.25693,22.35359],[114.25696,22.3535],[114.257,22.3534],[114.25701,22.35334],[114.25694,22.35332],[114.25692,22.35335],[114.2569,22.35338],[114.25688,22.35345],[114.25687,22.35348],[114.25683,22.35353],[114.25678,22.35358],[114.25676,22.35361],[114.25675,22.35369],[114.25672,22.35384],[114.25668,22.35394],[114.25668,22.35401],[114.2567,22.35406],[114.25668,22.35413],[114.25666,22.35422],[114.25663,22.35424],[114.2566,22.35425],[114.25657,22.35425],[114.25648,22.3542],[114.25633,22.35414],[114.25624,22.35402],[114.2562,22.3539],[114.25621,22.35382],[114.25626,22.35374],[114.25634,22.35367],[114.2564,22.35359],[114.2565,22.35341],[114.25654,22.35333],[114.25656,22.35326],[114.25657,22.35316],[114.25651,22.35314],[114.25647,22.35319],[114.2564,22.35326],[114.25635,22.35328],[114.25634,22.35331],[114.25627,22.35335],[114.25622,22.35338],[114.2562,22.35338],[114.25617,22.35337],[114.25612,22.35334],[114.2561,22.3533],[114.25608,22.35326],[114.25606,22.35325],[114.256,22.35323],[114.25597,22.35323],[114.25586,22.35319],[114.25583,22.35314],[114.25579,22.35307],[114.25574,22.35296],[114.25574,22.35291],[114.25575,22.3528],[114.25568,22.35277],[114.25562,22.35282],[114.25555,22.35286],[114.25549,22.35296],[114.25549,22.35302],[114.25547,22.35305],[114.25529,22.35316],[114.25513,22.35326],[114.25509,22.35326],[114.25502,22.35323],[114.25498,22.35325],[114.25489,22.35331],[114.25491,22.35348],[114.25496,22.35359],[114.25498,22.35365],[114.25501,22.3537],[114.25505,22.35389],[114.2551,22.35405],[114.25515,22.35424],[114.25518,22.35445],[114.25522,22.3546],[114.25526,22.35476],[114.25526,22.35478],[114.25525,22.35476],[114.25518,22.35457],[114.25511,22.35431],[114.25502,22.354],[114.25497,22.35386],[114.25485,22.35391],[114.2548,22.35392],[114.2547,22.35386],[114.25478,22.35373],[114.25482,22.35336],[114.25484,22.35334],[114.25483,22.35306],[114.25483,22.35281],[114.25481,22.35278],[114.25479,22.35276],[114.25473,22.35277],[114.25478,22.35281],[114.25479,22.35284],[114.25478,22.35314],[114.25477,22.3532],[114.25474,22.35353],[114.25471,22.35369],[114.25463,22.3538],[114.25451,22.35361],[114.25448,22.35341],[114.25439,22.35334],[114.25427,22.35343],[114.25407,22.35366],[114.25376,22.35385],[114.25369,22.35388],[114.25361,22.3539],[114.25353,22.3539],[114.25344,22.35388],[114.25336,22.35386],[114.25328,22.35382],[114.25326,22.35379],[114.25325,22.35377],[114.25327,22.3537],[114.25327,22.35365],[114.25318,22.35354],[114.25318,22.35353],[114.25314,22.35329],[114.25313,22.35306],[114.25312,22.35302],[114.2531,22.35296],[114.253,22.35285],[114.25297,22.35282],[114.25297,22.35281],[114.25288,22.35277],[114.25268,22.35268],[114.25266,22.35274],[114.25248,22.35266],[114.25251,22.35261],[114.25246,22.35257],[114.2523,22.35244],[114.25226,22.35235],[114.2522,22.35222],[114.25215,22.35214],[114.25208,22.35215],[114.25156,22.35264],[114.25156,22.35268],[114.25076,22.35376],[114.25059,22.35413],[114.2505,22.35454],[114.25071,22.35469],[114.2509,22.35415],[114.25101,22.35391],[114.25111,22.3538],[114.25124,22.35357],[114.25136,22.35342],[114.25152,22.35332],[114.25174,22.35321],[114.25176,22.35323],[114.25177,22.35326],[114.2517,22.35334],[114.2517,22.35341],[114.25151,22.35363],[114.25202,22.35399],[114.25194,22.35411],[114.25201,22.35419],[114.25206,22.35435],[114.25211,22.35448],[114.2522,22.35462],[114.25223,22.35469],[114.25223,22.35474],[114.2522,22.35478],[114.25216,22.35481],[114.25207,22.35484],[114.25196,22.35481],[114.25194,22.35484],[114.25239,22.35511],[114.25309,22.35552],[114.25314,22.35551],[114.25323,22.35539],[114.25333,22.35533],[114.25358,22.35534],[114.25369,22.35537],[114.25374,22.35542],[114.25377,22.3555],[114.25377,22.35559],[114.2537,22.35575],[114.25376,22.35589],[114.25472,22.35646],[114.25682,22.35695],[114.2572,22.35712],[114.25727,22.35717],[114.25729,22.35721],[114.25729,22.35725],[114.25727,22.3573],[114.25721,22.35732],[114.25596,22.35742],[114.25588,22.35741],[114.25587,22.35737],[114.25515,22.35719],[114.25454,22.35693],[114.2539,22.35659],[114.25303,22.35659],[114.25295,22.3566],[114.25291,22.35661],[114.25284,22.35665],[114.25278,22.35672],[114.25275,22.35679],[114.25257,22.35753],[114.25257,22.35791],[114.25285,22.35805],[114.25299,22.35847],[114.25303,22.35864],[114.25308,22.35898],[114.2531,22.35908],[114.25314,22.35917],[114.25317,22.35924],[114.25322,22.35931],[114.25327,22.35938],[114.25337,22.35947],[114.25347,22.3595],[114.25386,22.35951],[114.25386,22.35929],[114.25357,22.35929],[114.25351,22.35928],[114.25342,22.35924],[114.25337,22.35918],[114.25334,22.35912],[114.25333,22.35849],[114.25335,22.35845],[114.25337,22.35844],[114.25341,22.35842],[114.25347,22.35843],[114.25418,22.35881],[114.25424,22.35886],[114.25429,22.35891],[114.2543,22.35896],[114.2543,22.35903],[114.25428,22.35907],[114.25423,22.35913],[114.2541,22.35925],[114.25404,22.35928],[114.25398,22.35929],[114.25398,22.3595],[114.2541,22.35949],[114.25424,22.35942],[114.25434,22.35933],[114.25446,22.35919],[114.25463,22.35905],[114.25479,22.35894],[114.25493,22.35886],[114.25509,22.3588],[114.25528,22.35877],[114.25544,22.35876],[114.25576,22.35879],[114.25577,22.35855],[114.25524,22.35855],[114.25517,22.35851],[114.25515,22.35847],[114.25516,22.35844],[114.25551,22.35788],[114.25554,22.35785],[114.25609,22.35782],[114.25619,22.35789],[114.25614,22.35817],[114.2562,22.35848],[114.25613,22.35856],[114.25589,22.35855],[114.25589,22.35878],[114.25632,22.35889],[114.257,22.35932],[114.25723,22.35937],[114.25742,22.35927],[114.25786,22.35881],[114.25789,22.35877],[114.25792,22.3587],[114.25793,22.35864],[114.25793,22.35857],[114.25789,22.35848],[114.25782,22.3584],[114.25684,22.35778],[114.25682,22.35779],[114.25679,22.35779],[114.25676,22.35778],[114.25674,22.35775],[114.25674,22.35771],[114.25676,22.35767],[114.25679,22.35764],[114.25684,22.35762],[114.25687,22.35762],[114.25793,22.35754],[114.25806,22.35754],[114.25819,22.35758],[114.25901,22.35798],[114.25909,22.35805],[114.25913,22.35816],[114.25914,22.35823],[114.25913,22.35831],[114.25912,22.35837],[114.2591,22.35841],[114.25903,22.3585],[114.25735,22.36032],[114.25729,22.36067],[114.25726,22.36071],[114.25713,22.3607],[114.25714,22.36088],[114.25719,22.36099],[114.2572,22.36104],[114.25715,22.36106],[114.25715,22.3611],[114.25725,22.36107],[114.25727,22.36114],[114.25722,22.36117],[114.257,22.36122],[114.25702,22.36129],[114.25714,22.36125],[114.25718,22.36136],[114.25712,22.36138],[114.25728,22.3616],[114.25747,22.36178],[114.25748,22.3618],[114.25754,22.36186],[114.25755,22.36185],[114.25762,22.36193],[114.25765,22.36196],[114.25773,22.36218],[114.25772,22.36219],[114.25773,22.36222],[114.2578,22.36219],[114.25784,22.36225],[114.25776,22.36229],[114.2578,22.3624],[114.25791,22.36263],[114.25785,22.36269],[114.25808,22.3629],[114.25815,22.36293],[114.25822,22.36299],[114.25828,22.363],[114.25837,22.36287],[114.25844,22.36291],[114.2584,22.36297],[114.25857,22.36308],[114.25854,22.36311],[114.25868,22.36321],[114.2587,22.36318],[114.25876,22.36322],[114.2587,22.3633],[114.25876,22.36332],[114.25895,22.36344],[114.25898,22.36339],[114.25901,22.36342],[114.25905,22.36336],[114.25915,22.36342],[114.25968,22.36265],[114.26002,22.36215],[114.25988,22.36207],[114.25992,22.36201],[114.26012,22.36213],[114.25985,22.36252],[114.25994,22.36257],[114.25939,22.36337],[114.25976,22.36368],[114.25972,22.36371],[114.25977,22.36378],[114.25979,22.3638],[114.25978,22.36383],[114.25966,22.3639],[114.2597,22.36395],[114.25972,22.36395],[114.25978,22.36402],[114.25981,22.36413],[114.25977,22.36414],[114.25975,22.36429],[114.25985,22.3643],[114.25983,22.36442],[114.25981,22.36441],[114.25981,22.36448],[114.26008,22.3645],[114.26007,22.36454],[114.25985,22.36453],[114.25984,22.36464],[114.25986,22.36464],[114.25986,22.36465],[114.26005,22.36467],[114.25997,22.36504],[114.26017,22.36508],[114.2602,22.36504],[114.26029,22.36502],[114.26058,22.36499],[114.2606,22.36467],[114.26084,22.36451],[114.26085,22.36453],[114.26113,22.36513],[114.26108,22.36515],[114.26108,22.36516],[114.26107,22.36518],[114.26105,22.36519],[114.26063,22.36536],[114.26024,22.36552],[114.26036,22.36581],[114.26055,22.36574],[114.26061,22.36589],[114.26063,22.36589],[114.26073,22.36585],[114.26076,22.36592],[114.26076,22.36592],[114.26076,22.36593],[114.26076,22.36593],[114.26076,22.36593],[114.26076,22.36594],[114.26065,22.366],[114.26073,22.36619],[114.26074,22.3663],[114.26068,22.36645],[114.26064,22.36708],[114.26059,22.36743],[114.26057,22.36751],[114.26053,22.36756],[114.2605,22.36759],[114.26047,22.3676],[114.26044,22.36769],[114.26042,22.36775],[114.26041,22.36782],[114.26039,22.3679],[114.26036,22.36796],[114.26031,22.36802],[114.26027,22.36802],[114.26016,22.368],[114.26007,22.36805],[114.26005,22.36817],[114.26009,22.36821],[114.25999,22.36867],[114.26002,22.36868],[114.26008,22.3687],[114.26015,22.36872],[114.26023,22.36873],[114.26031,22.36874],[114.26038,22.36876],[114.26045,22.36874],[114.26047,22.36871],[114.2605,22.36868],[114.26056,22.36864],[114.26068,22.36855],[114.26071,22.36853],[114.26074,22.36852],[114.26076,22.36851],[114.26077,22.3685],[114.26075,22.36847],[114.26076,22.36846],[114.26078,22.36844],[114.26081,22.3684],[114.26082,22.36839],[114.26083,22.36837],[114.26083,22.36834],[114.26084,22.36831],[114.26085,22.36829],[114.26095,22.36819],[114.261,22.36815],[114.26102,22.36812],[114.26102,22.36804],[114.26103,22.36796],[114.26105,22.36793],[114.2611,22.36788],[114.26115,22.36783],[114.26121,22.36779],[114.26124,22.36777],[114.26131,22.36776],[114.26142,22.36776],[114.26159,22.36779],[114.26166,22.3678],[114.26203,22.36779],[114.26243,22.36768],[114.2626,22.3675],[114.26284,22.36749],[114.26297,22.36781],[114.26288,22.36808],[114.2631,22.36826],[114.26306,22.36839],[114.26286,22.36842],[114.26292,22.36849],[114.26296,22.36864],[114.26294,22.36887],[114.26292,22.36912],[114.26288,22.36919],[114.26271,22.36925],[114.26263,22.36934],[114.26262,22.36945],[114.2627,22.36961],[114.26274,22.36961],[114.26281,22.36952],[114.26301,22.36966],[114.26323,22.36967],[114.26337,22.36954],[114.26332,22.36941],[114.26338,22.36932],[114.26346,22.36927],[114.26365,22.36923],[114.264,22.36931],[114.26415,22.36947],[114.26419,22.36962],[114.26413,22.36987],[114.26404,22.36995],[114.26383,22.36989],[114.26374,22.37012],[114.26392,22.3702],[114.26395,22.37027],[114.2639,22.37044],[114.26372,22.37057],[114.26382,22.37077],[114.26383,22.37089],[114.26391,22.37096],[114.26386,22.37113],[114.26345,22.37154],[114.26324,22.37164],[114.26319,22.37172],[114.26314,22.37172],[114.26304,22.37158],[114.26292,22.37164],[114.26302,22.37191],[114.26318,22.37196],[114.26347,22.37223],[114.26357,22.37228],[114.26358,22.37234],[114.26364,22.37231],[114.26374,22.37232],[114.26378,22.37235],[114.2638,22.37236],[114.26394,22.37226],[114.26407,22.37237],[114.26414,22.37237],[114.26427,22.37223],[114.26437,22.37196],[114.26451,22.37172],[114.26475,22.37154],[114.265,22.37127],[114.26504,22.37125],[114.26506,22.37124],[114.26508,22.37123],[114.26511,22.37123],[114.26528,22.37121],[114.26536,22.3712],[114.26543,22.37118],[114.26548,22.37116],[114.26597,22.37079],[114.2661,22.37072],[114.26619,22.37068],[114.2663,22.37056],[114.26632,22.37053],[114.26636,22.37049],[114.26641,22.37043],[114.26646,22.37035],[114.26655,22.37026],[114.26656,22.37025],[114.26659,22.37023],[114.26665,22.3702],[114.26667,22.37019],[114.26673,22.37019],[114.26679,22.3702],[114.26681,22.3702],[114.26683,22.37021],[114.26685,22.37023],[114.26692,22.37031],[114.26696,22.37034],[114.26705,22.37038],[114.2672,22.37041],[114.2674,22.37044],[114.26752,22.37045],[114.2678,22.37041],[114.26786,22.37037],[114.26796,22.37027],[114.26798,22.37023],[114.26798,22.37021],[114.26798,22.37019],[114.26797,22.37016],[114.26796,22.37014],[114.26796,22.37013],[114.26793,22.37011],[114.26792,22.3701],[114.2679,22.36998],[114.26789,22.36989],[114.2679,22.36987],[114.26794,22.36978],[114.26803,22.36966],[114.26808,22.36955],[114.26813,22.36949],[114.26822,22.36924],[114.2683,22.3692],[114.26847,22.36832],[114.26842,22.36822],[114.26858,22.36789],[114.26868,22.36783],[114.26902,22.36734],[114.26905,22.36737],[114.26934,22.36703],[114.26971,22.3667],[114.26984,22.36651],[114.26989,22.36637],[114.26988,22.36617],[114.26998,22.36573],[114.27009,22.36551],[114.27007,22.36543],[114.26987,22.36531],[114.26975,22.36517],[114.26978,22.36501],[114.26974,22.36483],[114.26981,22.36456],[114.26987,22.36449],[114.26984,22.3643],[114.26998,22.36414],[114.27014,22.36347],[114.27003,22.36325],[114.27001,22.36311],[114.26987,22.36304],[114.26979,22.36268],[114.26959,22.36249],[114.26948,22.36233],[114.26916,22.3621],[114.26897,22.36189],[114.26895,22.36139],[114.26885,22.3612],[114.26877,22.36112],[114.26803,22.36077],[114.26783,22.36039],[114.26768,22.36025],[114.26764,22.36017],[114.26751,22.3601],[114.2675,22.36008],[114.2675,22.36004],[114.26749,22.36003],[114.26747,22.36001],[114.26743,22.36001],[114.2674,22.36001],[114.26735,22.36003],[114.26717,22.3602],[114.26686,22.36009],[114.26687,22.36006],[114.26716,22.36016],[114.26743,22.35991],[114.26739,22.35982],[114.26737,22.35967],[114.26735,22.35962],[114.26731,22.35958],[114.26727,22.35955],[114.26707,22.35952],[114.26697,22.35948],[114.26692,22.35949],[114.26679,22.35954],[114.26662,22.35964],[114.26645,22.35972],[114.2664,22.35977],[114.26639,22.35982],[114.2664,22.35988],[114.26682,22.36004],[114.26681,22.36007],[114.26638,22.35991],[114.26637,22.35992],[114.26627,22.35995],[114.2662,22.35994],[114.26613,22.3599],[114.26608,22.35985],[114.26592,22.35979],[114.26566,22.35979],[114.26565,22.35992],[114.26561,22.35992],[114.26561,22.35979],[114.26557,22.35975],[114.26557,22.35973],[114.2655,22.35971],[114.26543,22.35966],[114.2654,22.35962],[114.26549,22.35913],[114.2651,22.35905],[114.26511,22.359],[114.26515,22.35899],[114.26514,22.35902],[114.26539,22.35908],[114.26556,22.3589],[114.26556,22.3587],[114.26551,22.35846],[114.2653,22.35794],[114.26524,22.35752],[114.26524,22.35742],[114.26538,22.35719],[114.26527,22.35692],[114.2652,22.35658],[114.26514,22.3565],[114.26503,22.35648],[114.26496,22.35643],[114.26494,22.35627],[114.26499,22.35619],[114.26505,22.3562],[114.26513,22.35625],[114.26514,22.35629],[114.26533,22.35636],[114.26543,22.35628],[114.26555,22.35604],[114.26568,22.35596],[114.26583,22.35606],[114.26589,22.35618],[114.26583,22.35631],[114.26572,22.35633],[114.2657,22.35636],[114.2658,22.35642],[114.26587,22.35641],[114.26593,22.35651],[114.26578,22.35685],[114.26588,22.35694],[114.26594,22.35672],[114.26603,22.35679],[114.2659,22.35701],[114.26619,22.3572],[114.26621,22.35713],[114.26633,22.35707],[114.26645,22.35716],[114.26651,22.35726],[114.26649,22.35739],[114.26701,22.35765],[114.26724,22.35758],[114.26727,22.35755],[114.26722,22.35747],[114.26737,22.35737],[114.26746,22.35738],[114.26754,22.35744],[114.26755,22.3575],[114.26752,22.35753],[114.2675,22.35761],[114.26757,22.35763],[114.26861,22.35765],[114.26868,22.3576],[114.26869,22.35736],[114.269,22.35738],[114.26911,22.35731],[114.26933,22.35724],[114.26944,22.35721],[114.26954,22.35723],[114.26982,22.35741],[114.26992,22.35755],[114.27015,22.35764],[114.27021,22.35772],[114.27057,22.35795],[114.2715,22.35886],[114.2718,22.35927],[114.27186,22.35951],[114.27185,22.3597],[114.27199,22.35977],[114.27216,22.35994],[114.27246,22.35996],[114.27252,22.36005],[114.27253,22.35997],[114.27234,22.35956],[114.27234,22.35934],[114.27235,22.35921],[114.27236,22.35917],[114.27246,22.35904],[114.27246,22.35898],[114.27245,22.35893],[114.27242,22.3589],[114.27238,22.35886],[114.27233,22.35879],[114.27229,22.35866],[114.27231,22.35842],[114.27224,22.35823],[114.27227,22.35815],[114.27223,22.35801],[114.2721,22.35771],[114.27199,22.35775],[114.27195,22.35765],[114.2719,22.35767],[114.2719,22.35765],[114.27181,22.35768],[114.27181,22.35766],[114.27206,22.35758],[114.27203,22.35752],[114.27194,22.35756],[114.27183,22.35746],[114.27172,22.3575],[114.27171,22.35748],[114.27182,22.35744],[114.27187,22.35741],[114.2717,22.35713],[114.27161,22.35707],[114.27159,22.35709],[114.27157,22.35706],[114.27134,22.35725],[114.27132,22.35723],[114.27147,22.35711],[114.27144,22.35704],[114.27146,22.35703],[114.27134,22.35675],[114.27138,22.35673],[114.27137,22.3567],[114.27115,22.35673],[114.27115,22.35668],[114.27135,22.35666],[114.27135,22.35651],[114.27138,22.35645],[114.27141,22.35635],[114.27142,22.35632],[114.27139,22.35631],[114.2714,22.35627],[114.27131,22.35625],[114.27132,22.35621],[114.27143,22.35624],[114.27148,22.35616],[114.27128,22.35611],[114.2713,22.35607],[114.27148,22.35612],[114.27151,22.35604],[114.27154,22.35605],[114.27159,22.35582],[114.27157,22.3556],[114.2716,22.35542],[114.27156,22.35541],[114.27155,22.35536],[114.27156,22.35529],[114.27169,22.35526],[114.2717,22.35517],[114.27183,22.3551],[114.27196,22.35487],[114.27205,22.35453],[114.27206,22.35449],[114.2722,22.35433],[114.27228,22.3543],[114.27233,22.35422],[114.27246,22.35373],[114.2724,22.35367],[114.27244,22.35351],[114.27269,22.35354],[114.27302,22.35285],[114.27301,22.35268],[114.27303,22.35264],[114.27313,22.35254],[114.2732,22.35254],[114.27327,22.3525],[114.27335,22.35234],[114.27336,22.35221],[114.27346,22.3521],[114.27355,22.3521],[114.27362,22.35203],[114.27365,22.35199],[114.27368,22.35191],[114.27372,22.35182],[114.27372,22.35177],[114.27358,22.35163],[114.27354,22.35156],[114.27348,22.3515],[114.27343,22.35137],[114.27344,22.35127],[114.27363,22.35121],[114.2736,22.35135],[114.27367,22.35139],[114.27378,22.35132],[114.27383,22.35123],[114.27396,22.35123],[114.27404,22.35132],[114.27412,22.35131],[114.2743,22.35115],[114.27448,22.3511],[114.27463,22.35089],[114.27481,22.35082],[114.27497,22.3507],[114.27511,22.35065],[114.27531,22.35081],[114.27533,22.3513],[114.27532,22.3516],[114.27527,22.35173],[114.27533,22.35181],[114.27549,22.35189],[114.2756,22.35215],[114.27561,22.35229],[114.27557,22.35259],[114.2755,22.35271],[114.27538,22.35282],[114.27525,22.35287],[114.27534,22.35292],[114.27555,22.35292],[114.27565,22.3531],[114.27565,22.35324],[114.27571,22.35325],[114.27581,22.35317],[114.2759,22.35329],[114.27589,22.35359],[114.27564,22.35377],[114.2757,22.3539],[114.27585,22.35405],[114.27605,22.35416],[114.27605,22.35425],[114.27617,22.35434],[114.27623,22.35431],[114.27629,22.35413],[114.27649,22.35409],[114.2766,22.35409],[114.27679,22.35419],[114.27683,22.35425],[114.2768,22.35432],[114.27688,22.35438],[114.27707,22.35437],[114.27721,22.35428],[114.2773,22.35432],[114.27737,22.35439],[114.2776,22.35449],[114.2778,22.35469],[114.27789,22.35486],[114.27793,22.35509],[114.27792,22.35516],[114.27791,22.35522],[114.27779,22.35546],[114.2778,22.35557],[114.2778,22.35559],[114.27779,22.35562],[114.27777,22.35565],[114.27774,22.35568],[114.27771,22.35571],[114.27768,22.35571],[114.27759,22.35574],[114.27747,22.35587],[114.27747,22.35598],[114.27742,22.35617],[114.2774,22.3562],[114.27739,22.35621],[114.27732,22.35622],[114.27731,22.35622],[114.27729,22.35622],[114.27724,22.35628],[114.27724,22.35635],[114.27723,22.35642],[114.27723,22.35644],[114.27722,22.35645],[114.2772,22.35647],[114.27718,22.35649],[114.27708,22.35653],[114.27706,22.35655],[114.27706,22.35658],[114.27707,22.35661],[114.27709,22.35662],[114.2771,22.35664],[114.27711,22.35666],[114.2771,22.35667],[114.27709,22.35668],[114.27708,22.35669],[114.27704,22.35669],[114.27701,22.35672],[114.27705,22.35682],[114.27703,22.35689],[114.27712,22.35696],[114.27716,22.35706],[114.27713,22.35714],[114.27706,22.35718],[114.27698,22.35718],[114.27693,22.35716],[114.27688,22.35715],[114.27686,22.35714],[114.27685,22.35715],[114.27685,22.35716],[114.27686,22.35717],[114.27691,22.35721],[114.27701,22.35733],[114.27703,22.35742],[114.27705,22.35757],[114.27704,22.35762],[114.27699,22.35763],[114.27681,22.35755],[114.27711,22.35781],[114.27703,22.3579],[114.27709,22.35803],[114.27729,22.35805],[114.27745,22.35804],[114.27763,22.35814],[114.27788,22.3581],[114.27826,22.35833],[114.27833,22.35842],[114.2783,22.35853],[114.27837,22.35859],[114.27844,22.35862],[114.27852,22.3586],[114.27856,22.35863],[114.27865,22.3588],[114.27874,22.35892],[114.27876,22.35913],[114.27856,22.35945],[114.27834,22.35966],[114.27827,22.35967],[114.27832,22.3598],[114.27823,22.35997],[114.27825,22.36003],[114.27814,22.36017],[114.2779,22.36026],[114.27776,22.36021],[114.27761,22.36022],[114.27751,22.36016],[114.27749,22.36022],[114.27755,22.36032],[114.27747,22.3604],[114.27739,22.36038],[114.27735,22.36041],[114.27734,22.36051],[114.27739,22.36058],[114.27738,22.36063],[114.2773,22.3607],[114.27717,22.36074],[114.2772,22.36084],[114.27706,22.36091],[114.2769,22.3609],[114.27649,22.36069],[114.27636,22.36067],[114.27606,22.36079],[114.2761,22.36089],[114.27605,22.36095],[114.2759,22.36096],[114.2757,22.36094],[114.27566,22.36096],[114.27555,22.36094],[114.27532,22.36094],[114.27507,22.36125],[114.27487,22.36172],[114.27493,22.36182],[114.27502,22.36184],[114.275,22.3619],[114.27489,22.36188],[114.27488,22.36207],[114.2748,22.36217],[114.27481,22.36238],[114.27495,22.36247],[114.27496,22.36256],[114.27487,22.36259],[114.27469,22.36247],[114.2746,22.36249],[114.27451,22.36256],[114.27437,22.36278],[114.27428,22.36318],[114.27416,22.36329],[114.27409,22.36343],[114.2742,22.36362],[114.27422,22.36372],[114.27389,22.36388],[114.27354,22.36384],[114.27345,22.36377],[114.27322,22.36384],[114.27308,22.36394],[114.27268,22.36448],[114.27263,22.36464],[114.27264,22.36529],[114.27275,22.36553],[114.27284,22.36562],[114.27291,22.36564],[114.27278,22.36568],[114.27288,22.36587],[114.27293,22.36589],[114.273,22.36606],[114.27302,22.36613],[114.27291,22.36639],[114.27278,22.36651],[114.27266,22.36645],[114.2725,22.36649],[114.27245,22.36662],[114.27241,22.36691],[114.27234,22.36719],[114.27217,22.36747],[114.2721,22.36757],[114.27202,22.36781],[114.27188,22.36795],[114.272,22.36801],[114.27198,22.36808],[114.27191,22.36809],[114.27198,22.36836],[114.27186,22.36872],[114.27176,22.36887],[114.2718,22.36903],[114.27173,22.36925],[114.27174,22.36935],[114.27175,22.36953],[114.27165,22.36969],[114.27168,22.37015],[114.27198,22.37063],[114.27206,22.37069],[114.27218,22.37065],[114.27224,22.37069],[114.27224,22.3708],[114.27219,22.37084],[114.27217,22.37094],[114.27219,22.37106],[114.27253,22.37133],[114.27257,22.37141],[114.27299,22.37178],[114.27317,22.3718],[114.27314,22.37186],[114.27302,22.3719],[114.27303,22.37195],[114.27316,22.37214],[114.27328,22.3721],[114.27335,22.37212],[114.27338,22.37218],[114.27335,22.37234],[114.27332,22.37241],[114.27351,22.37258],[114.27357,22.37264],[114.2737,22.37271],[114.27372,22.37278],[114.27508,22.37536],[114.27414,22.37587],[114.27458,22.37769],[114.27426,22.378],[114.27335,22.37805],[114.27335,22.37807],[114.27332,22.37808],[114.2733,22.37808],[114.27329,22.37806],[114.27312,22.3776],[114.27305,22.37762],[114.27309,22.37773],[114.27304,22.37775],[114.273,22.37764],[114.27264,22.37775],[114.27261,22.37775],[114.27254,22.37774],[114.27248,22.37774],[114.27246,22.37787],[114.27241,22.37787],[114.27244,22.37766],[114.27237,22.37766],[114.27232,22.3776],[114.27224,22.37765],[114.27221,22.37762],[114.27228,22.37756],[114.27225,22.37753],[114.27224,22.3775],[114.27217,22.37759],[114.27215,22.37758],[114.27217,22.37756],[114.2721,22.37748],[114.27212,22.37746],[114.27208,22.37738],[114.27199,22.37739],[114.27196,22.37738],[114.27186,22.37736],[114.27177,22.37737],[114.27178,22.37742],[114.2717,22.37744],[114.2717,22.37743],[114.27161,22.37747],[114.27158,22.37749],[114.27152,22.37756],[114.27149,22.37763],[114.27148,22.37771],[114.27148,22.37774],[114.27147,22.37776],[114.27145,22.37777],[114.27145,22.37778],[114.27143,22.37779],[114.2714,22.37779],[114.27116,22.3778],[114.27114,22.37771],[114.27104,22.37776],[114.27107,22.37801],[114.27105,22.37801],[114.27104,22.37792],[114.27086,22.37794],[114.27086,22.37799],[114.2708,22.378],[114.27079,22.37797],[114.27076,22.37797],[114.27076,22.37802],[114.27071,22.37803],[114.27056,22.37808],[114.27036,22.37809],[114.27039,22.37815],[114.27027,22.3782],[114.27016,22.37798],[114.27,22.37799],[114.26986,22.37802],[114.27038,22.37889],[114.27038,22.37893],[114.27051,22.37903],[114.27075,22.379],[114.27078,22.37919],[114.2709,22.37918],[114.27089,22.37913],[114.27092,22.37913],[114.27092,22.37916],[114.27095,22.37915],[114.27095,22.37913],[114.27116,22.37909],[114.27116,22.37906],[114.27129,22.37904],[114.2713,22.3791],[114.27157,22.37904],[114.27161,22.37924],[114.2718,22.37931],[114.27189,22.37911],[114.27193,22.37912],[114.27185,22.37929],[114.27251,22.37964],[114.27274,22.3799],[114.27413,22.38143],[114.27473,22.38097],[114.2748,22.38105],[114.27421,22.38151],[114.27466,22.38201],[114.2758,22.38113],[114.27586,22.38119],[114.27473,22.38209],[114.27501,22.3824],[114.27506,22.38236],[114.2752,22.38251],[114.27514,22.38255],[114.27612,22.38364],[114.27699,22.38365],[114.2771,22.38361],[114.27746,22.38402],[114.27756,22.38421],[114.27749,22.38434],[114.27715,22.38469],[114.27684,22.38507],[114.27656,22.38549],[114.27627,22.38615],[114.27609,22.38695],[114.27605,22.38743],[114.27596,22.38757],[114.27608,22.38808],[114.27616,22.38924],[114.27626,22.38952],[114.27664,22.39019],[114.27643,22.39024],[114.27648,22.3911],[114.27655,22.39141],[114.27669,22.39176],[114.27709,22.39228],[114.27724,22.39261],[114.27753,22.39297],[114.27759,22.39327],[114.27752,22.39384],[114.27775,22.39403],[114.27786,22.39411],[114.27842,22.39443],[114.27846,22.39455],[114.27875,22.39484],[114.2797,22.39465],[114.28005,22.39441],[114.28025,22.39412],[114.28042,22.39395],[114.28057,22.3937],[114.28081,22.39357],[114.28081,22.39351],[114.2807,22.39344],[114.28053,22.39323],[114.28052,22.39315],[114.28062,22.39305],[114.28064,22.39298],[114.28073,22.39295],[114.28079,22.39282],[114.28092,22.39272],[114.28106,22.39282],[114.28128,22.39288],[114.28124,22.39308],[114.28141,22.39325],[114.28161,22.39373],[114.28197,22.39411],[114.28248,22.39443],[114.28265,22.39461],[114.28271,22.39491],[114.28271,22.39525],[114.28278,22.39531],[114.28279,22.39516],[114.28286,22.39509],[114.2832,22.39523],[114.28422,22.39524],[114.28429,22.39533],[114.28468,22.39558],[114.28483,22.39572],[114.28502,22.39581],[114.28507,22.39579],[114.28542,22.39602],[114.28538,22.39622],[114.28539,22.39627],[114.28543,22.39628],[114.28548,22.39619],[114.28558,22.39594],[114.28581,22.3957],[114.28589,22.3957],[114.28596,22.39575],[114.28623,22.39615],[114.28632,22.39618],[114.2864,22.39616],[114.28644,22.3961],[114.28634,22.39591],[114.28638,22.39559],[114.28689,22.39514],[114.28698,22.39519],[114.28703,22.39518],[114.28735,22.39495],[114.28741,22.3945],[114.28749,22.3944],[114.28741,22.39427],[114.28742,22.39421],[114.28754,22.39425],[114.28761,22.39438],[114.28785,22.39424],[114.28811,22.39432],[114.28836,22.39426],[114.28893,22.394],[114.28894,22.39399],[114.28896,22.39397],[114.28896,22.39392],[114.28903,22.39372],[114.28907,22.39315],[114.28908,22.3931],[114.28916,22.3929],[114.28918,22.3927],[114.28912,22.39271],[114.28911,22.39267],[114.28917,22.39266],[114.28917,22.39264],[114.28891,22.39254],[114.2887,22.39228],[114.28868,22.3923],[114.28844,22.39206],[114.28851,22.39201],[114.28894,22.39249],[114.28919,22.39259],[114.28934,22.39224],[114.28942,22.39169],[114.2897,22.3912],[114.28978,22.39092],[114.29002,22.39072],[114.29012,22.39059],[114.29022,22.39025],[114.2903,22.39018],[114.29041,22.38992],[114.29044,22.38977],[114.29049,22.38975],[114.29057,22.3898],[114.29068,22.38972],[114.29074,22.38945],[114.29089,22.38937],[114.29107,22.38916],[114.29119,22.38911],[114.29141,22.38918],[114.29157,22.38912],[114.29227,22.38862],[114.29253,22.38851],[114.29277,22.38832],[114.29305,22.38818],[114.29338,22.38814],[114.29368,22.38815],[114.29414,22.38822],[114.29426,22.38827],[114.29439,22.38839],[114.29455,22.38843],[114.29473,22.38859],[114.29527,22.38964],[114.29539,22.39042],[114.29546,22.39044],[114.29549,22.39037],[114.29555,22.39035],[114.2956,22.39034],[114.29561,22.39034],[114.29562,22.39035],[114.29563,22.39036],[114.29563,22.39038],[114.29566,22.39046],[114.29579,22.39031],[114.29583,22.39033],[114.29572,22.39046],[114.29573,22.39048],[114.29574,22.39056],[114.29574,22.3906],[114.29572,22.3906],[114.29587,22.39072],[114.29623,22.3908],[114.29649,22.39079],[114.29648,22.39073],[114.29665,22.39072],[114.29657,22.39044],[114.29662,22.39042],[114.29666,22.39039],[114.2968,22.39023],[114.29689,22.39009],[114.29694,22.39005],[114.29695,22.38984],[114.29698,22.38965],[114.29695,22.38954],[114.29689,22.38948],[114.29678,22.38942],[114.29676,22.38918],[114.29673,22.38912],[114.29665,22.389],[114.29664,22.38881],[114.29659,22.38875],[114.29668,22.38869],[114.29669,22.38857],[114.29658,22.38856],[114.2965,22.38856],[114.2965,22.38855],[114.29659,22.38855],[114.29669,22.38856],[114.29674,22.3885],[114.29683,22.38851],[114.29698,22.38842],[114.29699,22.38839],[114.29691,22.38827],[114.29715,22.38814],[114.2971,22.38806],[114.29713,22.38804],[114.29724,22.38822],[114.29741,22.38811],[114.29769,22.38805],[114.29777,22.3881],[114.29788,22.38821],[114.29798,22.38826],[114.29819,22.38825],[114.29826,22.38823],[114.29839,22.38823],[114.29845,22.3882],[114.29854,22.38818],[114.29867,22.38798],[114.29906,22.38777],[114.29911,22.38767],[114.29889,22.38758],[114.29891,22.38755],[114.29906,22.38761],[114.29914,22.3876],[114.29917,22.3876],[114.29918,22.38759],[114.29921,22.3874],[114.29921,22.38732],[114.29923,22.38725],[114.29806,22.38683],[114.29808,22.38679],[114.29919,22.38719],[114.29953,22.38675],[114.2997,22.38636],[114.29972,22.38582],[114.29931,22.38547],[114.29925,22.38536],[114.29925,22.3852],[114.29908,22.3849],[114.29863,22.38452],[114.29868,22.38425],[114.29875,22.38411],[114.29879,22.3841],[114.29925,22.38415],[114.29937,22.38421],[114.29937,22.38433],[114.29953,22.38462],[114.29973,22.38485],[114.29989,22.38493],[114.30009,22.38496],[114.30034,22.38488],[114.30066,22.38496],[114.3012,22.38491],[114.30166,22.38509],[114.30186,22.3851],[114.30209,22.38521],[114.30218,22.38521],[114.30239,22.38539],[114.30246,22.38555],[114.30248,22.38601],[114.30243,22.38611],[114.30199,22.38652],[114.30189,22.38666],[114.3018,22.38698],[114.30178,22.38711],[114.30181,22.38731],[114.30177,22.38748],[114.30152,22.38807],[114.30155,22.38822],[114.3016,22.3882],[114.30169,22.38797],[114.3018,22.38785],[114.30189,22.38767],[114.30213,22.38742],[114.30217,22.38746],[114.30204,22.38766],[114.30199,22.3878],[114.30191,22.38795],[114.30175,22.38818],[114.30172,22.38822],[114.30166,22.38836],[114.30163,22.38843],[114.3016,22.38845],[114.30165,22.38864],[114.30174,22.38858],[114.30181,22.38845],[114.30213,22.388],[114.30211,22.38799],[114.30228,22.38775],[114.30229,22.38776],[114.30242,22.3876],[114.30243,22.38745],[114.30244,22.38744],[114.30249,22.38739],[114.3025,22.38738],[114.30255,22.38733],[114.30257,22.38735],[114.30264,22.38727],[114.30267,22.38725],[114.3027,22.38726],[114.30274,22.38722],[114.30269,22.38718],[114.30274,22.38708],[114.30275,22.38704],[114.30274,22.38703],[114.30277,22.38687],[114.30284,22.38688],[114.30281,22.38701],[114.30287,22.38705],[114.30294,22.38694],[114.30294,22.38681],[114.30301,22.38668],[114.30302,22.38661],[114.30305,22.38655],[114.30312,22.38649],[114.30318,22.3864],[114.30336,22.3863],[114.30342,22.38624],[114.30344,22.38625],[114.30347,22.38627],[114.3035,22.38627],[114.3036,22.38618],[114.30386,22.38601],[114.30399,22.386],[114.304,22.38601],[114.30424,22.38593],[114.30426,22.38594],[114.30447,22.38583],[114.30452,22.38573],[114.30451,22.38565],[114.3045,22.38556],[114.30445,22.38543],[114.30435,22.38527],[114.30435,22.38525],[114.30429,22.38504],[114.30424,22.38432],[114.30428,22.3842],[114.30437,22.38409],[114.30446,22.38404],[114.30475,22.38401],[114.3049,22.38403],[114.30502,22.38409],[114.30546,22.38415],[114.30557,22.3842],[114.3057,22.3844],[114.30584,22.38449],[114.30596,22.38445],[114.30597,22.38451],[114.30613,22.38476],[114.30607,22.38506],[114.30603,22.38533],[114.30608,22.38562],[114.30641,22.38587],[114.30653,22.38582],[114.30661,22.38572],[114.30671,22.38574],[114.30685,22.38572],[114.30689,22.3856],[114.3071,22.38576],[114.30737,22.38571],[114.30768,22.38575],[114.30752,22.38541],[114.3076,22.38533],[114.30775,22.38526],[114.30794,22.38506],[114.30804,22.38486],[114.30818,22.3848],[114.3084,22.38494],[114.30859,22.38525],[114.30872,22.38537],[114.3088,22.38538],[114.30901,22.38532],[114.30928,22.38533],[114.30956,22.3853],[114.30971,22.3852],[114.30969,22.38504],[114.30973,22.38498],[114.30986,22.38489],[114.31008,22.38485],[114.31017,22.38494],[114.31013,22.38522],[114.31016,22.38531],[114.31026,22.38541],[114.3104,22.38545],[114.31046,22.38544],[114.31053,22.3855],[114.31049,22.38558],[114.31049,22.3859],[114.31045,22.38602],[114.31039,22.3861],[114.31028,22.38612],[114.31017,22.3862],[114.30991,22.38626],[114.30985,22.38635],[114.30988,22.38642],[114.3098,22.38657],[114.30973,22.38661],[114.30971,22.38655],[114.30958,22.38654],[114.30927,22.3867],[114.30927,22.38667],[114.30921,22.3867],[114.30878,22.38665],[114.30867,22.38672],[114.30858,22.38688],[114.30866,22.38719],[114.30859,22.38723],[114.30842,22.38722],[114.30839,22.38732],[114.30854,22.38748],[114.30868,22.38751],[114.30873,22.38756],[114.30875,22.38771],[114.30871,22.3881],[114.30885,22.38854],[114.30878,22.38865],[114.3087,22.3887],[114.30871,22.38855],[114.3085,22.38842],[114.30818,22.38834],[114.30811,22.38834],[114.30806,22.38838],[114.30817,22.38856],[114.30833,22.38867],[114.30846,22.38892],[114.30849,22.38931],[114.30831,22.38976],[114.30846,22.3899],[114.3086,22.38982],[114.30857,22.38978],[114.30861,22.38975],[114.30864,22.38979],[114.30866,22.38974],[114.30882,22.38971],[114.30898,22.38954],[114.3091,22.3895],[114.30922,22.3894],[114.30931,22.38925],[114.30933,22.38957],[114.30937,22.38965],[114.30981,22.38977],[114.31008,22.38995],[114.3101,22.39009],[114.31003,22.3903],[114.30979,22.39056],[114.30981,22.39077],[114.30981,22.39111],[114.30984,22.39137],[114.3099,22.39204],[114.3099,22.39226],[114.31003,22.39229],[114.31009,22.39238],[114.3101,22.39249],[114.31022,22.3926],[114.31035,22.3926],[114.31049,22.39264],[114.31066,22.39259],[114.31077,22.3926],[114.31097,22.39256],[114.31107,22.39248],[114.31113,22.39256],[114.31121,22.39261],[114.3113,22.39252],[114.31132,22.39253],[114.31124,22.39263],[114.31136,22.39273],[114.31149,22.39278],[114.31166,22.3928],[114.31171,22.39282],[114.31189,22.39283],[114.31201,22.39287],[114.31223,22.393],[114.31228,22.39311],[114.31236,22.39315],[114.31249,22.39316],[114.31336,22.39312],[114.31356,22.39304],[114.31367,22.39289],[114.31378,22.39285],[114.31396,22.39285],[114.31417,22.39291],[114.31428,22.39277],[114.3143,22.39278],[114.3142,22.39292],[114.31426,22.39296],[114.31433,22.39296],[114.31441,22.39298],[114.31447,22.393],[114.31451,22.39306],[114.31459,22.3931],[114.31463,22.39311],[114.31475,22.39307],[114.31485,22.39309],[114.3149,22.39314],[114.31503,22.39303],[114.315,22.393],[114.31501,22.393],[114.31506,22.39304],[114.31502,22.39307],[114.31503,22.39309],[114.31504,22.3931],[114.31503,22.39316],[114.31505,22.39318],[114.31495,22.3933],[114.31506,22.39336],[114.31507,22.3934],[114.31516,22.39341],[114.31524,22.39337],[114.31534,22.39334],[114.31556,22.39329],[114.31561,22.39329],[114.31573,22.39335],[114.31573,22.39338],[114.31567,22.39349],[114.31569,22.39355],[114.31582,22.39369],[114.3161,22.39385],[114.31619,22.39395],[114.31629,22.3941],[114.31651,22.39414],[114.31666,22.39429],[114.31671,22.39436],[114.31691,22.39444],[114.31702,22.39444],[114.31711,22.39438],[114.31713,22.39434],[114.31718,22.39416],[114.31721,22.39408],[114.31707,22.39385],[114.31709,22.39384],[114.31723,22.39406],[114.31739,22.394],[114.31747,22.39396],[114.31749,22.39396],[114.31753,22.39401],[114.31756,22.39398],[114.31762,22.39395],[114.31765,22.39387],[114.3177,22.3938],[114.31777,22.39374],[114.31788,22.39366],[114.31792,22.39366],[114.31802,22.39363],[114.31811,22.39357],[114.31814,22.3936],[114.31838,22.39353],[114.3185,22.39352],[114.31863,22.39355],[114.31884,22.39367],[114.31894,22.39376],[114.31913,22.3938],[114.3193,22.39378],[114.31966,22.39362],[114.31974,22.39362],[114.31997,22.39367],[114.32002,22.39357],[114.32094,22.3937],[114.32103,22.39375],[114.32109,22.39383],[114.32137,22.39382],[114.32129,22.39327],[114.32123,22.39313],[114.32122,22.39278],[114.32112,22.39244],[114.32088,22.3926],[114.32082,22.39253],[114.32108,22.39236],[114.32095,22.39222],[114.32097,22.39208],[114.32092,22.3919],[114.32089,22.39187],[114.32084,22.39183],[114.3208,22.3918],[114.32076,22.39177],[114.32073,22.39173],[114.32073,22.39169],[114.32079,22.39164],[114.32079,22.39163],[114.32077,22.39161],[114.32068,22.39157],[114.32048,22.39218],[114.32033,22.39239],[114.31994,22.3927],[114.31985,22.39274],[114.31968,22.39273],[114.31943,22.39282],[114.31934,22.39275],[114.31928,22.39275],[114.31917,22.39283],[114.31911,22.39281],[114.31905,22.39257],[114.31894,22.39243],[114.31846,22.39219],[114.31829,22.39219],[114.31817,22.39214],[114.31779,22.39183],[114.31763,22.39182],[114.31747,22.39176],[114.31738,22.39168],[114.31719,22.39138],[114.3172,22.39112],[114.31733,22.39097],[114.31732,22.39083],[114.3171,22.39082],[114.3171,22.39075],[114.31734,22.39076],[114.3174,22.39068],[114.3174,22.39053],[114.31746,22.39042],[114.31754,22.39041],[114.3176,22.39062],[114.31774,22.39068],[114.31825,22.39055],[114.31834,22.39035],[114.31824,22.39005],[114.31793,22.39],[114.31785,22.39009],[114.31778,22.3901],[114.31764,22.39001],[114.31756,22.38989],[114.31763,22.38957],[114.31777,22.38923],[114.31773,22.38895],[114.31773,22.38886],[114.31775,22.38879],[114.31781,22.38869],[114.31786,22.38863],[114.3179,22.3886],[114.31796,22.38858],[114.31801,22.38857],[114.31831,22.38854],[114.31841,22.38853],[114.31856,22.38852],[114.31866,22.38848],[114.31867,22.38847],[114.31867,22.38846],[114.31868,22.38845],[114.31869,22.38844],[114.31869,22.38844],[114.31871,22.38842],[114.31871,22.38841],[114.31872,22.3884],[114.31874,22.38837],[114.31875,22.38836],[114.31876,22.38835],[114.31879,22.38833],[114.31881,22.38833],[114.31882,22.38833],[114.31884,22.38833],[114.31884,22.38834],[114.31886,22.38836],[114.31887,22.38836],[114.31888,22.38836],[114.31893,22.38834],[114.31897,22.38833],[114.31901,22.38833],[114.31904,22.38832],[114.31909,22.38829],[114.31914,22.38827],[114.3192,22.38826],[114.31934,22.38826],[114.31945,22.38831],[114.31952,22.38842],[114.3196,22.38861],[114.31958,22.38868],[114.31966,22.38882],[114.31972,22.38881],[114.31976,22.38866],[114.31982,22.38861],[114.31989,22.38861],[114.32001,22.38867],[114.32018,22.38872],[114.32025,22.38872],[114.32029,22.38867],[114.32025,22.3886],[114.32017,22.3886],[114.32006,22.38854],[114.32001,22.38848],[114.31999,22.38839],[114.31979,22.38826],[114.31982,22.38822],[114.32,22.38835],[114.32003,22.38831],[114.32002,22.38812],[114.32005,22.38798],[114.32007,22.38774],[114.32005,22.38756],[114.32002,22.38753],[114.31999,22.38745],[114.31994,22.38739],[114.31973,22.3873],[114.31957,22.3873],[114.31947,22.38727],[114.31925,22.38713],[114.31914,22.387],[114.31919,22.38686],[114.31917,22.3868],[114.31911,22.3867],[114.31908,22.38639],[114.31916,22.38593],[114.31909,22.38558],[114.31897,22.38547],[114.31891,22.38542],[114.31877,22.38527],[114.31873,22.38495],[114.31847,22.38426],[114.31808,22.38383],[114.31804,22.38348],[114.31801,22.38344],[114.31804,22.38288],[114.31801,22.38262],[114.31806,22.38229],[114.31829,22.38215],[114.31852,22.38208],[114.31875,22.38188],[114.3189,22.38163],[114.31916,22.38159],[114.3195,22.38171],[114.31956,22.38186],[114.31963,22.38211],[114.31964,22.38233],[114.31979,22.38253],[114.31993,22.38259],[114.32048,22.38272],[114.32079,22.38253],[114.32111,22.3824],[114.32139,22.38245],[114.3215,22.38259],[114.32155,22.38273],[114.32159,22.38272],[114.32177,22.38265],[114.32193,22.38262],[114.322,22.38261],[114.32217,22.38265],[114.32233,22.38272],[114.32244,22.38279],[114.32256,22.38288],[114.32264,22.38296],[114.32269,22.38301],[114.32272,22.38307],[114.32274,22.38314],[114.32275,22.3832],[114.32277,22.38327],[114.32278,22.38335],[114.32277,22.38342],[114.32276,22.38348],[114.32274,22.38354],[114.32281,22.38359],[114.3229,22.38356],[114.32297,22.38358],[114.32315,22.38372],[114.32318,22.38382],[114.32317,22.38399],[114.32314,22.38408],[114.32307,22.38415],[114.32319,22.38424],[114.3234,22.38426],[114.32369,22.38392],[114.32381,22.3836],[114.32401,22.38356],[114.32403,22.3835],[114.32403,22.38349],[114.32399,22.38343],[114.32382,22.38331],[114.32356,22.38297],[114.32343,22.3829],[114.32338,22.3829],[114.32322,22.38275],[114.3229,22.38232],[114.32278,22.38193],[114.32278,22.38139],[114.3232,22.38115],[114.32335,22.38101],[114.32343,22.38097],[114.32347,22.38075],[114.3237,22.3806],[114.32394,22.38032],[114.32433,22.38],[114.3248,22.37993],[114.32516,22.37969],[114.32548,22.3793],[114.32601,22.37898],[114.32645,22.3788],[114.32674,22.37873],[114.32704,22.37874],[114.32732,22.37866],[114.32744,22.37868],[114.32788,22.37859],[114.32871,22.37821],[114.32894,22.3782],[114.33015,22.37771],[114.33036,22.37768],[114.3305,22.37762],[114.33078,22.37763],[114.33107,22.3775],[114.33125,22.37751],[114.33144,22.37746],[114.33155,22.3774],[114.33173,22.37719],[114.33199,22.37702],[114.33233,22.37668],[114.33246,22.37668],[114.33261,22.37662],[114.33267,22.37661],[114.33287,22.37663],[114.33296,22.37667],[114.33328,22.37698],[114.33433,22.3778],[114.33449,22.37806],[114.33469,22.37827],[114.33485,22.37858],[114.3349,22.37863],[114.33494,22.37861],[114.33523,22.37861],[114.33531,22.3786],[114.33539,22.3786],[114.33543,22.37856],[114.33544,22.37824],[114.33547,22.3781],[114.33547,22.37793],[114.33546,22.37755],[114.33521,22.37725],[114.33517,22.37698],[114.33518,22.37696],[114.33535,22.37685],[114.33539,22.37676],[114.33478,22.37521],[114.33458,22.37455],[114.33457,22.37357],[114.33455,22.37348],[114.33456,22.37339],[114.33458,22.37333],[114.33452,22.37185],[114.33456,22.37159],[114.33455,22.37095],[114.33448,22.37092],[114.33433,22.37085],[114.33417,22.37082],[114.33415,22.37076],[114.33421,22.37035],[114.33427,22.37029],[114.33448,22.37009],[114.33449,22.37008],[114.33477,22.36987],[114.3348,22.3697],[114.33502,22.36963],[114.33501,22.36958],[114.33504,22.36957],[114.33503,22.36954],[114.33507,22.36952],[114.3351,22.36959],[114.33534,22.36946],[114.33532,22.36943],[114.33542,22.36938],[114.33564,22.36923],[114.33574,22.36919],[114.33577,22.36909],[114.33585,22.36902],[114.33614,22.36893],[114.33634,22.36901],[114.3366,22.36897],[114.33668,22.36899],[114.33678,22.36912],[114.33683,22.36911],[114.33692,22.36904],[114.33713,22.36865],[114.33751,22.36851],[114.33744,22.36846],[114.33752,22.36838],[114.33748,22.36833],[114.33736,22.36834],[114.33718,22.36831],[114.33706,22.36823],[114.33693,22.36824],[114.33655,22.36806],[114.33639,22.36804],[114.33585,22.36807],[114.3356,22.36803],[114.33542,22.36796],[114.33523,22.36797],[114.33508,22.36788],[114.33501,22.36779],[114.33481,22.36768],[114.33448,22.36774],[114.33413,22.3678],[114.33403,22.36774],[114.33402,22.36769],[114.33373,22.36781],[114.3336,22.36798],[114.33334,22.36808],[114.33318,22.36792],[114.33305,22.36776],[114.33295,22.36746],[114.33294,22.36732],[114.33298,22.36725],[114.33295,22.36719],[114.33272,22.36706],[114.33268,22.36688],[114.33264,22.3668],[114.3326,22.3668],[114.33258,22.36627],[114.33248,22.36612],[114.3326,22.36595],[114.33241,22.36589],[114.33232,22.36565],[114.33215,22.36556],[114.33213,22.36543],[114.33216,22.36532],[114.33213,22.3652],[114.33196,22.36509],[114.33169,22.36501],[114.33142,22.36483],[114.3312,22.36435],[114.33115,22.36425],[114.33105,22.36398],[114.3311,22.36373],[114.33112,22.36367],[114.3312,22.36352],[114.33121,22.36346],[114.33113,22.36343],[114.33115,22.36339],[114.33121,22.36341],[114.33122,22.36331],[114.3313,22.36315],[114.33143,22.36305],[114.33152,22.36291],[114.3316,22.36282],[114.3316,22.3627],[114.33169,22.36248],[114.33186,22.36226],[114.3318,22.36223],[114.33177,22.36213],[114.33181,22.36205],[114.33188,22.36194],[114.33197,22.36186],[114.33201,22.36191],[114.33216,22.36185],[114.33222,22.36179],[114.33255,22.36161],[114.33253,22.36154],[114.33264,22.36152],[114.33283,22.36138],[114.33305,22.3612],[114.33306,22.36112],[114.33314,22.36114],[114.33324,22.36102],[114.33337,22.36089],[114.33347,22.36072],[114.33359,22.36062],[114.33354,22.36054],[114.33359,22.3605],[114.3337,22.36035],[114.3338,22.36026],[114.33388,22.36017],[114.3339,22.36008],[114.33401,22.35996],[114.33417,22.35987],[114.33427,22.35982],[114.33425,22.35976],[114.33432,22.35969],[114.33442,22.35971],[114.33447,22.35969],[114.33452,22.35967],[114.33463,22.35964],[114.33466,22.3596],[114.33473,22.35949],[114.33476,22.35935],[114.33481,22.35928],[114.3349,22.35921],[114.33505,22.35923],[114.33513,22.35917],[114.33526,22.35914],[114.3354,22.35915],[114.33553,22.35915],[114.33552,22.35909],[114.33555,22.35902],[114.33566,22.35894],[114.3359,22.35892],[114.33598,22.35889],[114.33614,22.3588],[114.33621,22.35879],[114.33631,22.35887],[114.33635,22.35897],[114.33641,22.35911],[114.33644,22.35933],[114.33656,22.35957],[114.33659,22.35974],[114.33669,22.35979],[114.33692,22.35979],[114.33721,22.35959],[114.3373,22.35968],[114.3374,22.35967],[114.33745,22.35963],[114.33743,22.35956],[114.33754,22.35945],[114.33768,22.35937],[114.33773,22.35941],[114.33778,22.35938],[114.3379,22.35914],[114.33804,22.35903],[114.33816,22.35846],[114.33824,22.35835],[114.33832,22.35834],[114.33836,22.35823],[114.33828,22.35811],[114.33823,22.35804],[114.33824,22.358],[114.33834,22.35796],[114.33837,22.35783],[114.33842,22.35778],[114.33847,22.35778],[114.33858,22.35775],[114.33866,22.35774],[114.33874,22.35769],[114.33882,22.35745],[114.339,22.35742],[114.33902,22.35741],[114.3391,22.35743],[114.3392,22.35744],[114.33922,22.35754],[114.33923,22.35758],[114.33929,22.35757],[114.33955,22.35749],[114.33981,22.35723],[114.3401,22.35708],[114.34032,22.35696],[114.34053,22.35685],[114.34074,22.35681],[114.34077,22.35687],[114.34094,22.35676],[114.34105,22.35647],[114.34105,22.35636],[114.34119,22.35621],[114.34121,22.35616],[114.34135,22.35611],[114.34154,22.35595],[114.34168,22.35573],[114.34153,22.35565],[114.34158,22.35558],[114.34199,22.35504],[114.34211,22.35488],[114.34202,22.35454],[114.34203,22.35422],[114.34196,22.35414],[114.34195,22.35412],[114.34176,22.35414],[114.34139,22.3542],[114.34125,22.35426],[114.3409,22.3545],[114.34076,22.35453],[114.34066,22.35467],[114.34055,22.35472],[114.34038,22.35474],[114.34016,22.35468],[114.34006,22.35482],[114.34,22.35475],[114.33967,22.35468],[114.33948,22.35467],[114.33926,22.35467],[114.33922,22.3547],[114.33907,22.3546],[114.33883,22.3545],[114.33858,22.35451],[114.33847,22.35461],[114.33843,22.3547],[114.33834,22.35471],[114.33825,22.35463],[114.33815,22.35463],[114.33813,22.35454],[114.33807,22.35447],[114.33811,22.35423],[114.33817,22.35422],[114.33816,22.35434],[114.33825,22.3543],[114.33831,22.35429],[114.33838,22.35427],[114.33837,22.35406],[114.33846,22.35395],[114.33848,22.35394],[114.33853,22.35388],[114.33865,22.35384],[114.33866,22.35395],[114.33881,22.35397],[114.339,22.3539],[114.33938,22.35365],[114.3394,22.35359],[114.33935,22.35341],[114.33939,22.3534],[114.33943,22.35347],[114.33951,22.35321],[114.33939,22.353],[114.33921,22.35279],[114.33915,22.35267],[114.3391,22.35262],[114.33902,22.35241],[114.33896,22.35213],[114.33897,22.35202],[114.33899,22.35189],[114.33908,22.35176],[114.33904,22.35164],[114.33907,22.35155],[114.33914,22.35143],[114.33925,22.3513],[114.3394,22.35123],[114.33938,22.3512],[114.33939,22.35119],[114.33943,22.35119],[114.33944,22.35122],[114.33949,22.35123],[114.33952,22.3512],[114.33954,22.3512],[114.33949,22.35125],[114.3396,22.35122],[114.33979,22.35106],[114.33981,22.35099],[114.34006,22.351],[114.34008,22.35093],[114.33993,22.35081],[114.34,22.35074],[114.34009,22.35074],[114.34022,22.35086],[114.34028,22.35085],[114.3403,22.35078],[114.34018,22.35056],[114.34028,22.35045],[114.34044,22.35043],[114.34049,22.35047],[114.34057,22.35041],[114.34051,22.3504],[114.34049,22.35034],[114.34054,22.35029],[114.34062,22.35023],[114.34075,22.35026],[114.34082,22.35033],[114.34084,22.35014],[114.34093,22.3501],[114.34093,22.35005],[114.34087,22.34997],[114.34074,22.34997],[114.34069,22.34989],[114.34069,22.34981],[114.34073,22.34965],[114.3409,22.34951],[114.34098,22.3495],[114.34102,22.34934],[114.34097,22.3493],[114.34095,22.34923],[114.34098,22.34916],[114.34104,22.34917],[114.3411,22.34911],[114.34101,22.3491],[114.34098,22.34906],[114.34108,22.34881],[114.34111,22.34879],[114.34112,22.34881],[114.34114,22.34886],[114.34118,22.34875],[114.34128,22.3487],[114.34132,22.34875],[114.34129,22.34883],[114.34136,22.34889],[114.34152,22.34887],[114.34162,22.34883],[114.34177,22.3488],[114.34179,22.34874],[114.34173,22.34865],[114.34179,22.34848],[114.34187,22.34836],[114.34192,22.34832],[114.34204,22.3484],[114.34208,22.3483],[114.3421,22.34825],[114.34213,22.34816],[114.34246,22.34808],[114.34245,22.34803],[114.3423,22.34799],[114.34225,22.34792],[114.34227,22.34778],[114.34232,22.34765],[114.34269,22.34735],[114.34281,22.34735],[114.34312,22.34751],[114.34292,22.34727],[114.3429,22.34717],[114.34303,22.34713],[114.3431,22.34715],[114.34313,22.34705],[114.34322,22.347],[114.34329,22.34701],[114.34368,22.34689],[114.34373,22.34691],[114.34376,22.34698],[114.34394,22.347],[114.34402,22.34707],[114.34428,22.34722],[114.34432,22.34728],[114.34425,22.3475],[114.34419,22.34761],[114.3441,22.34768],[114.34407,22.34774],[114.34412,22.34775],[114.34416,22.34773],[114.34437,22.34775],[114.34451,22.3479],[114.34441,22.34805],[114.34449,22.3481],[114.34463,22.34802],[114.3448,22.34816],[114.3448,22.34832],[114.34491,22.34848],[114.34492,22.34864],[114.34488,22.34874],[114.34477,22.34886],[114.34482,22.34892],[114.3449,22.34891],[114.34488,22.34898],[114.34495,22.34898],[114.34499,22.34891],[114.34508,22.34896],[114.34506,22.34908],[114.34485,22.34913],[114.34499,22.34914],[114.34503,22.3492],[114.34511,22.34919],[114.34508,22.34938],[114.34513,22.34947],[114.3452,22.34938],[114.34523,22.34944],[114.34522,22.34955],[114.34513,22.3497],[114.34535,22.34984],[114.34527,22.34987],[114.34523,22.34993],[114.3453,22.35],[114.34531,22.35014],[114.34527,22.35016],[114.34529,22.35022],[114.34538,22.35034],[114.34556,22.35049],[114.3457,22.35047],[114.34579,22.35055],[114.34603,22.35042],[114.34602,22.3505],[114.34612,22.35054],[114.34633,22.35028],[114.34635,22.35026],[114.34637,22.35026],[114.34638,22.35028],[114.34633,22.35035],[114.34643,22.35034],[114.34651,22.35037],[114.34663,22.35052],[114.34657,22.35039],[114.34664,22.35038],[114.34658,22.35028],[114.34664,22.35023],[114.34674,22.35033],[114.34671,22.35041],[114.34695,22.35058],[114.34702,22.35069],[114.34707,22.35073],[114.3472,22.35067],[114.34719,22.35059],[114.34729,22.35059],[114.34733,22.35064],[114.34746,22.3506],[114.3474,22.35041],[114.34752,22.35033],[114.34761,22.35034],[114.34776,22.35049],[114.34775,22.3504],[114.34774,22.35031],[114.34764,22.35027],[114.34761,22.3502],[114.34773,22.35015],[114.3478,22.35022],[114.3478,22.35029],[114.3479,22.35017],[114.34818,22.35032],[114.34832,22.35042],[114.34844,22.35062],[114.34847,22.35055],[114.34857,22.35051],[114.34855,22.35069],[114.34848,22.35066],[114.34852,22.35078],[114.34859,22.35087],[114.34869,22.35086],[114.3487,22.35093],[114.34875,22.35099],[114.3488,22.35098],[114.34887,22.35105],[114.34882,22.35142],[114.34895,22.35151],[114.34897,22.35147],[114.34901,22.35148],[114.34906,22.35156],[114.34921,22.35165],[114.34935,22.35177],[114.34941,22.35184],[114.34943,22.35194],[114.34941,22.35203],[114.3494,22.35218],[114.34937,22.35224],[114.34932,22.35228],[114.34934,22.3523],[114.34935,22.35232],[114.34936,22.35234],[114.34936,22.35257],[114.34929,22.3527],[114.34932,22.3528],[114.34932,22.35281],[114.34933,22.35281],[114.34965,22.35278],[114.34964,22.35268],[114.34969,22.35267],[114.34971,22.35282],[114.34934,22.35286],[114.34933,22.3529],[114.34924,22.35301],[114.3493,22.35324],[114.34939,22.35335],[114.34944,22.35339],[114.34944,22.35341],[114.34943,22.35345],[114.34938,22.35351],[114.34943,22.35379],[114.34968,22.35406],[114.34984,22.35412],[114.34999,22.35419],[114.35029,22.35413],[114.35034,22.35418],[114.35035,22.35492],[114.35042,22.35437],[114.35054,22.35434],[114.35084,22.35439],[114.35095,22.35435],[114.35109,22.35408],[114.35125,22.35398],[114.3513,22.35392],[114.35127,22.35388],[114.3513,22.35387],[114.35132,22.35392],[114.35119,22.35429],[114.35127,22.35471],[114.35116,22.35481],[114.3512,22.35491],[114.35145,22.35495],[114.35153,22.35493],[114.35155,22.35481],[114.35163,22.3548],[114.35167,22.35485],[114.35164,22.35503],[114.35163,22.35508],[114.35162,22.35511],[114.3516,22.35514],[114.35159,22.35521],[114.35165,22.35515],[114.35168,22.35506],[114.35172,22.35504],[114.35173,22.35503],[114.35181,22.35465],[114.35185,22.35459],[114.35182,22.35445],[114.35207,22.35408],[114.35231,22.35299],[114.35245,22.35281],[114.35259,22.35252],[114.35261,22.35235],[114.35275,22.35214],[114.35268,22.35192],[114.35276,22.35178],[114.35275,22.3517],[114.35287,22.35151],[114.35306,22.35134],[114.35316,22.35118],[114.35314,22.35112],[114.35292,22.35091],[114.35291,22.35087],[114.35293,22.35082],[114.35291,22.35076],[114.35292,22.35072],[114.353,22.35068],[114.35299,22.35063],[114.35312,22.35054],[114.35317,22.35052],[114.35316,22.35045],[114.353,22.35044],[114.35294,22.3505],[114.35292,22.35047],[114.353,22.3504],[114.35303,22.35042],[114.35319,22.35043],[114.35339,22.35027],[114.35344,22.35027],[114.35343,22.35033],[114.35348,22.35035],[114.35362,22.35029],[114.35362,22.35021],[114.35362,22.34987],[114.35353,22.34987],[114.35353,22.34991],[114.35349,22.34991],[114.35349,22.34983],[114.35362,22.34983],[114.35361,22.34979],[114.35362,22.34979],[114.35361,22.34976],[114.35364,22.34976],[114.35365,22.34978],[114.35382,22.34974],[114.35375,22.34952],[114.35373,22.34951],[114.35375,22.34942],[114.35374,22.34936],[114.35377,22.34936],[114.35377,22.34935],[114.35381,22.34928],[114.35392,22.34918],[114.35393,22.34915],[114.35394,22.34912],[114.35392,22.34911],[114.3539,22.34904],[114.35393,22.34902],[114.35403,22.34889],[114.35418,22.34874],[114.35425,22.34869],[114.35427,22.34864],[114.35434,22.34857],[114.35441,22.34852],[114.35451,22.34843],[114.35459,22.34837],[114.35464,22.34835],[114.35475,22.34833],[114.35483,22.3483],[114.35495,22.34819],[114.35498,22.3481],[114.35484,22.3478],[114.35461,22.34789],[114.35444,22.34792],[114.35435,22.34788],[114.35413,22.34797],[114.35399,22.34797],[114.35356,22.34816],[114.35321,22.34824],[114.35309,22.34823],[114.35292,22.34813],[114.35287,22.34816],[114.35279,22.3481],[114.35278,22.34812],[114.35276,22.34828],[114.35283,22.34829],[114.35282,22.34834],[114.35263,22.34831],[114.35264,22.34826],[114.35271,22.34827],[114.35274,22.34809],[114.35277,22.34799],[114.35273,22.34782],[114.35248,22.34782],[114.35246,22.34782],[114.35223,22.34778],[114.35222,22.34778],[114.35205,22.34776],[114.35199,22.34777],[114.35198,22.34787],[114.35186,22.34803],[114.35171,22.34803],[114.35157,22.34797],[114.35148,22.34803],[114.35118,22.34806],[114.35118,22.348],[114.35107,22.34797],[114.35105,22.34785],[114.35109,22.3478],[114.35123,22.34778],[114.35125,22.34767],[114.35123,22.34764],[114.35128,22.34755],[114.35133,22.34753],[114.35139,22.34757],[114.35141,22.34757],[114.35141,22.34753],[114.35134,22.34746],[114.35136,22.34745],[114.3514,22.34743],[114.35146,22.3474],[114.35151,22.34736],[114.35149,22.34734],[114.35132,22.34736],[114.35131,22.34732],[114.35137,22.34719],[114.35144,22.34714],[114.35164,22.34709],[114.3517,22.34708],[114.35183,22.34702],[114.35191,22.34696],[114.35204,22.34698],[114.35214,22.34707],[114.35214,22.34728],[114.3524,22.34727],[114.3525,22.34721],[114.35242,22.3469],[114.35246,22.3467],[114.35244,22.34653],[114.35277,22.34603],[114.35274,22.34579],[114.35263,22.34576],[114.35252,22.34577],[114.35247,22.34573],[114.35244,22.34546],[114.35238,22.34567],[114.35229,22.34567],[114.35222,22.34554],[114.35221,22.34529],[114.35225,22.34513],[114.35233,22.34494],[114.35245,22.34483],[114.35252,22.34481],[114.35255,22.34474],[114.35258,22.34448],[114.35266,22.3442],[114.35268,22.34389],[114.35277,22.34375],[114.35275,22.34353],[114.3529,22.34332],[114.35284,22.3432],[114.35277,22.34299],[114.35278,22.34285],[114.35277,22.34272],[114.35289,22.34256],[114.35304,22.34237],[114.35318,22.34231],[114.35328,22.3423],[114.35336,22.34233],[114.35339,22.3424],[114.35348,22.3424],[114.3535,22.34224],[114.35396,22.34217],[114.35433,22.34189],[114.35447,22.34174],[114.35446,22.34172],[114.35443,22.34171],[114.35425,22.3414],[114.35428,22.34129],[114.3544,22.3414],[114.35445,22.34136],[114.3543,22.34116],[114.35432,22.3411],[114.35437,22.34109],[114.35446,22.34119],[114.35444,22.34106],[114.35432,22.34094],[114.35428,22.3409],[114.35436,22.34082],[114.35448,22.34081],[114.35447,22.34077],[114.3545,22.34071],[114.35432,22.34068],[114.35439,22.34045],[114.35447,22.34034],[114.35454,22.34015],[114.35479,22.33999],[114.35467,22.33998],[114.35486,22.33965],[114.35459,22.33934],[114.35449,22.33944],[114.35441,22.33944],[114.35439,22.33939],[114.35448,22.33923],[114.35444,22.33917],[114.35441,22.33915],[114.35424,22.33927],[114.3542,22.33925],[114.35419,22.3391],[114.3543,22.33889],[114.35449,22.33873],[114.35458,22.33853],[114.35455,22.33848],[114.35457,22.33841],[114.35461,22.33835],[114.35467,22.33829],[114.35471,22.33829],[114.35483,22.33808],[114.35483,22.33803],[114.35476,22.33796],[114.35476,22.33776],[114.35484,22.33765],[114.35489,22.33765],[114.35504,22.33744],[114.35489,22.33743],[114.35487,22.33738],[114.35503,22.33735],[114.35504,22.33728],[114.35501,22.33722],[114.35495,22.33717],[114.35491,22.33712],[114.35487,22.33708],[114.35486,22.337],[114.35492,22.3369],[114.35483,22.33685],[114.35503,22.33668],[114.35498,22.33662],[114.35489,22.3366],[114.35486,22.33648],[114.3549,22.33638],[114.35495,22.33629],[114.35505,22.33621],[114.35522,22.33616],[114.35545,22.33613],[114.35572,22.33617],[114.35589,22.33615],[114.35578,22.3361],[114.3558,22.336],[114.35565,22.33598],[114.35565,22.33591],[114.35567,22.33588],[114.35579,22.33571],[114.35594,22.33569],[114.35609,22.33573],[114.3561,22.33569],[114.35602,22.33559],[114.35609,22.3355],[114.35635,22.33537],[114.35653,22.33536],[114.35674,22.33531],[114.3568,22.33532],[114.35704,22.33534],[114.35706,22.33537],[114.3571,22.33552],[114.357,22.33563],[114.35697,22.33574],[114.357,22.33578],[114.35712,22.33563],[114.35723,22.33555],[114.35728,22.33555],[114.3574,22.33563],[114.35752,22.33588],[114.35749,22.33611],[114.35743,22.33617],[114.35756,22.33608],[114.35763,22.33614],[114.35761,22.33619],[114.35765,22.33628],[114.35774,22.33627],[114.35783,22.33627],[114.35784,22.33623],[114.358,22.33622],[114.35815,22.3363],[114.35815,22.33638],[114.35829,22.33645],[114.35832,22.3364],[114.35828,22.33631],[114.35821,22.33624],[114.35837,22.33621],[114.35853,22.3363],[114.35855,22.33636],[114.35849,22.33645],[114.3584,22.3365],[114.3584,22.33655],[114.35856,22.33645],[114.35871,22.33649],[114.35876,22.33639],[114.35874,22.33633],[114.35882,22.33629],[114.35898,22.33633],[114.35918,22.33648],[114.35923,22.3371],[114.35908,22.33714],[114.35926,22.33734],[114.35934,22.33789],[114.35939,22.33804],[114.35939,22.33814],[114.35947,22.33847],[114.35942,22.33858],[114.3594,22.33873],[114.35937,22.33884],[114.35933,22.33903],[114.3593,22.33914],[114.35926,22.3392],[114.35922,22.33925],[114.35914,22.33937],[114.35901,22.33944],[114.35891,22.33948],[114.35868,22.33946],[114.35889,22.33955],[114.35904,22.33969],[114.35908,22.33977],[114.35918,22.33979],[114.35939,22.33997],[114.35939,22.34017],[114.35963,22.34021],[114.35977,22.34032],[114.35991,22.34044],[114.35993,22.34052],[114.35996,22.34061],[114.35984,22.34066],[114.36008,22.34081],[114.36026,22.34107],[114.36034,22.34113],[114.36034,22.34147],[114.36052,22.34144],[114.36054,22.34132],[114.36067,22.34123],[114.36071,22.34126],[114.36068,22.34137],[114.36072,22.34137],[114.36077,22.34138],[114.36097,22.34115],[114.36114,22.34108],[114.36139,22.34112],[114.36152,22.34122],[114.36135,22.34133],[114.36133,22.34149],[114.36123,22.34159],[114.3611,22.34167],[114.36087,22.34182],[114.36081,22.3419],[114.36084,22.34197],[114.36089,22.34197],[114.36097,22.34185],[114.36102,22.34182],[114.36116,22.342],[114.36125,22.34206],[114.36131,22.34221],[114.3613,22.34232],[114.36126,22.34244],[114.36124,22.34259],[114.36082,22.34272],[114.36075,22.34268],[114.36073,22.34257],[114.36062,22.34257],[114.36043,22.34275],[114.36033,22.34297],[114.36038,22.34326],[114.36036,22.34346],[114.36016,22.344],[114.36006,22.34417],[114.36004,22.34425],[114.3598,22.34448],[114.35939,22.34476],[114.35927,22.34488],[114.35916,22.34502],[114.35917,22.34504],[114.35923,22.3451],[114.35933,22.34507],[114.35942,22.3449],[114.35951,22.34493],[114.35957,22.34482],[114.35965,22.34483],[114.35961,22.34494],[114.35951,22.34503],[114.35951,22.34508],[114.35955,22.34511],[114.35949,22.34519],[114.35939,22.34512],[114.35932,22.34514],[114.35927,22.3452],[114.35921,22.34528],[114.35916,22.3455],[114.35918,22.34599],[114.35925,22.34615],[114.35936,22.34624],[114.35941,22.34637],[114.35957,22.34654],[114.35961,22.34656],[114.35963,22.3465],[114.35971,22.3465],[114.35975,22.34665],[114.35971,22.34676],[114.35971,22.3469],[114.35979,22.3469],[114.35999,22.34695],[114.36008,22.3471],[114.36007,22.34736],[114.35993,22.34751],[114.35969,22.34757],[114.35971,22.34766],[114.35976,22.34777],[114.35984,22.34775],[114.3599,22.34773],[114.35998,22.34774],[114.36008,22.34777],[114.36016,22.34783],[114.36021,22.34794],[114.36019,22.34808],[114.3601,22.34814],[114.36017,22.3482],[114.36014,22.34831],[114.35991,22.34862],[114.35996,22.34864],[114.35992,22.34878],[114.35983,22.34884],[114.35979,22.34881],[114.3598,22.34891],[114.35976,22.34898],[114.35967,22.349],[114.35961,22.34897],[114.35954,22.34926],[114.35948,22.34929],[114.35945,22.34927],[114.35941,22.34915],[114.35941,22.34922],[114.35941,22.34938],[114.35944,22.34939],[114.35931,22.34978],[114.35936,22.3499],[114.35941,22.34981],[114.35949,22.34984],[114.35955,22.35012],[114.35951,22.35021],[114.35938,22.35025],[114.35941,22.35034],[114.35947,22.35036],[114.35953,22.3505],[114.35943,22.3506],[114.35948,22.35073],[114.35939,22.35113],[114.35948,22.35119],[114.35955,22.35134],[114.3596,22.35137],[114.36031,22.35173],[114.36077,22.35189],[114.36136,22.35204],[114.36166,22.35207],[114.36174,22.35204],[114.36195,22.35188],[114.36198,22.35173],[114.36203,22.35163],[114.36219,22.35142],[114.36228,22.35139],[114.36232,22.35143],[114.36239,22.35143],[114.36254,22.35134],[114.36248,22.35122],[114.36255,22.35117],[114.36259,22.35105],[114.3627,22.35095],[114.36295,22.35098],[114.36301,22.35073],[114.36309,22.35061],[114.36316,22.35059],[114.36321,22.35063],[114.36318,22.35073],[114.36306,22.35086],[114.36315,22.35084],[114.36322,22.35076],[114.36336,22.35069],[114.36344,22.35072],[114.36351,22.35054],[114.36367,22.35039],[114.36378,22.35019],[114.36393,22.34998],[114.36404,22.34984],[114.36412,22.3496],[114.36412,22.3495],[114.36414,22.34946],[114.36421,22.3495],[114.36422,22.34956],[114.36429,22.34923],[114.36441,22.34914],[114.36475,22.34907],[114.36481,22.34905],[114.36493,22.34907],[114.36503,22.3491],[114.36519,22.34911],[114.36553,22.34916],[114.36556,22.34921],[114.36547,22.34939],[114.36539,22.34968],[114.3653,22.34972],[114.36529,22.34978],[114.36544,22.34976],[114.36561,22.34977],[114.36557,22.34992],[114.3657,22.35003],[114.36602,22.35026],[114.36622,22.35036],[114.36627,22.35036],[114.36639,22.35019],[114.3665,22.35016],[114.36657,22.35015],[114.36658,22.35012],[114.36663,22.34997],[114.36677,22.34982],[114.36695,22.34981],[114.36712,22.34971],[114.36712,22.34966],[114.36729,22.3496],[114.36731,22.34965],[114.36743,22.34963],[114.36754,22.3495],[114.36759,22.34955],[114.36763,22.34975],[114.3676,22.3498],[114.36748,22.34982],[114.36714,22.34979],[114.36711,22.34982],[114.36713,22.3499],[114.36707,22.34997],[114.36682,22.34994],[114.36694,22.35009],[114.36717,22.35012],[114.36733,22.35021],[114.36736,22.35032],[114.36753,22.35052],[114.3675,22.35065],[114.36767,22.35074],[114.36759,22.3508],[114.36749,22.35078],[114.36724,22.35054],[114.36706,22.35051],[114.36706,22.35064],[114.36725,22.35073],[114.36735,22.35091],[114.36737,22.35101],[114.36726,22.35111],[114.36714,22.35111],[114.3669,22.35092],[114.36657,22.35077],[114.36654,22.35094],[114.3669,22.35111],[114.36714,22.35135],[114.36691,22.35141],[114.36684,22.35147],[114.36664,22.35151],[114.36677,22.35174],[114.36669,22.35188],[114.36654,22.35188],[114.36647,22.35196],[114.36596,22.35218],[114.36583,22.35226],[114.36581,22.35229],[114.36557,22.35229],[114.36491,22.35258],[114.36473,22.35262],[114.36459,22.3526],[114.36437,22.35268],[114.36414,22.35264],[114.36388,22.35266],[114.36382,22.35299],[114.36383,22.35323],[114.36394,22.35351],[114.36404,22.35351],[114.36411,22.3535],[114.36425,22.35347],[114.36436,22.35347],[114.36442,22.35348],[114.36449,22.35348],[114.36463,22.35359],[114.36459,22.35372],[114.36462,22.35375],[114.36467,22.35379],[114.36477,22.35387],[114.36492,22.35374],[114.36494,22.35362],[114.36515,22.35357],[114.36521,22.3536],[114.3652,22.3537],[114.36511,22.35379],[114.36495,22.35374],[114.36506,22.35388],[114.36503,22.35395],[114.36494,22.35398],[114.3648,22.35405],[114.36482,22.3541],[114.36504,22.35407],[114.36511,22.35402],[114.36512,22.35413],[114.36492,22.35426],[114.3651,22.35422],[114.36508,22.35434],[114.36479,22.35447],[114.36476,22.35453],[114.36484,22.35476],[114.36501,22.35492],[114.36521,22.35502],[114.36525,22.35503],[114.36559,22.35508],[114.36571,22.35501],[114.36591,22.3549],[114.36587,22.35486],[114.36595,22.35471],[114.36592,22.35466],[114.36603,22.35458],[114.36604,22.35449],[114.36617,22.35437],[114.36628,22.35442],[114.36638,22.35469],[114.36636,22.35444],[114.36643,22.35426],[114.36646,22.35425],[114.36653,22.35419],[114.36662,22.35408],[114.36693,22.35385],[114.36714,22.35378],[114.36719,22.35368],[114.36737,22.35368],[114.36744,22.35371],[114.36736,22.35384],[114.36735,22.3539],[114.36722,22.35405],[114.36731,22.3541],[114.36744,22.35402],[114.36733,22.35417],[114.3674,22.35427],[114.36773,22.35393],[114.36782,22.35398],[114.36781,22.35394],[114.36789,22.35385],[114.36794,22.3539],[114.36795,22.35408],[114.36802,22.35415],[114.36806,22.35388],[114.3681,22.35387],[114.36816,22.35395],[114.3682,22.35409],[114.36822,22.35393],[114.36825,22.35384],[114.3684,22.35381],[114.36844,22.3539],[114.36842,22.35399],[114.36845,22.35402],[114.36887,22.35407],[114.36893,22.35403],[114.36909,22.35402],[114.36911,22.35397],[114.36925,22.35398],[114.36934,22.35391],[114.36926,22.35378],[114.36928,22.35374],[114.3697,22.35342],[114.36973,22.35335],[114.36927,22.35363],[114.36949,22.35337],[114.36951,22.35327],[114.36954,22.3532],[114.36957,22.35313],[114.36963,22.35298],[114.3699,22.35268],[114.37002,22.35264],[114.37011,22.35255],[114.37018,22.3526],[114.37023,22.35252],[114.3702,22.35247],[114.37026,22.35239],[114.37031,22.35241],[114.37038,22.35247],[114.37049,22.35257],[114.37041,22.35235],[114.37049,22.35233],[114.37051,22.35217],[114.37066,22.35205],[114.37083,22.35175],[114.37089,22.35177],[114.37107,22.35177],[114.37115,22.35181],[114.37124,22.35191],[114.37123,22.352],[114.3714,22.35266],[114.37137,22.35276],[114.37126,22.35284],[114.37109,22.35289],[114.37106,22.35291],[114.37113,22.35292],[114.3711,22.353],[114.37109,22.35302],[114.37099,22.35305],[114.37093,22.35306],[114.37093,22.35309],[114.37113,22.35308],[114.37128,22.35311],[114.37126,22.35325],[114.37107,22.35336],[114.37124,22.35357],[114.3713,22.3536],[114.37132,22.35358],[114.37158,22.35383],[114.3717,22.35386],[114.37183,22.35403],[114.37197,22.35393],[114.37217,22.35386],[114.37224,22.35378],[114.37268,22.35359],[114.3728,22.35357],[114.37292,22.3536],[114.37314,22.35349],[114.37342,22.35348],[114.37379,22.35331],[114.37394,22.35336],[114.37397,22.35347],[114.37394,22.35368],[114.37368,22.35385],[114.37377,22.35392],[114.37394,22.35395],[114.37416,22.35385],[114.37417,22.35396],[114.37413,22.35412],[114.37395,22.35444],[114.37395,22.35446],[114.37396,22.35447],[114.37398,22.35448],[114.37399,22.35448],[114.37404,22.35446],[114.37407,22.35446],[114.37408,22.35447],[114.37408,22.35449],[114.37407,22.35452],[114.37405,22.35454],[114.37386,22.35468],[114.37379,22.35481],[114.37379,22.35488],[114.37368,22.35501],[114.37363,22.35508],[114.3735,22.35516],[114.37334,22.35524],[114.37321,22.35523],[114.37317,22.35528],[114.37322,22.35545],[114.37346,22.3557],[114.37357,22.35574],[114.3736,22.35567],[114.37366,22.35566],[114.37367,22.35575],[114.37373,22.35576],[114.37369,22.35579],[114.37396,22.35577],[114.37399,22.35584],[114.37413,22.35589],[114.37416,22.35593],[114.37432,22.35581],[114.37434,22.35573],[114.3744,22.35568],[114.37469,22.35571],[114.37473,22.35575],[114.37486,22.35581],[114.37468,22.35599],[114.37472,22.35613],[114.37484,22.35613],[114.37504,22.35599],[114.37513,22.35598],[114.37523,22.3559],[114.37545,22.35594],[114.37552,22.35599],[114.37553,22.35603],[114.37542,22.35604],[114.37555,22.35617],[114.37555,22.35621],[114.37525,22.3562],[114.37526,22.35629],[114.37508,22.35632],[114.37496,22.35639],[114.37502,22.35644],[114.37495,22.35653],[114.37508,22.35655],[114.37508,22.35658],[114.37499,22.35661],[114.37474,22.35664],[114.37466,22.35664],[114.37469,22.35705],[114.3748,22.35734],[114.37499,22.35762],[114.37517,22.35775],[114.37523,22.35775],[114.37534,22.35766],[114.37537,22.35767],[114.37528,22.35781],[114.3753,22.35785],[114.37541,22.35786],[114.37558,22.35771],[114.37561,22.35763],[114.37571,22.35756],[114.37596,22.35762],[114.37583,22.35774],[114.37582,22.35781],[114.37598,22.35777],[114.37616,22.35769],[114.37615,22.35762],[114.37621,22.35757],[114.37623,22.3575],[114.37631,22.35745],[114.37638,22.35735],[114.37654,22.35728],[114.37687,22.35732],[114.37685,22.35741],[114.37693,22.35753],[114.37699,22.35774],[114.37705,22.35779],[114.37745,22.35785],[114.37759,22.35779],[114.37772,22.35763],[114.37779,22.35765],[114.37776,22.35771],[114.37763,22.35781],[114.37759,22.35799],[114.3776,22.35802],[114.37765,22.35813],[114.37777,22.35831],[114.37717,22.35897],[114.37703,22.35902],[114.37684,22.35914],[114.37669,22.35921],[114.37656,22.35921],[114.37645,22.3591],[114.37629,22.35913],[114.37622,22.3594],[114.37566,22.35967],[114.37552,22.35963],[114.37537,22.3596],[114.37516,22.35954],[114.37504,22.35938],[114.37495,22.35935],[114.37491,22.35951],[114.37506,22.35963],[114.37495,22.35971],[114.37491,22.3597],[114.3747,22.35954],[114.37461,22.35946],[114.37461,22.35935],[114.37442,22.35937],[114.37425,22.35949],[114.37425,22.35954],[114.37447,22.35977],[114.37452,22.35994],[114.37488,22.36042],[114.37708,22.36352],[114.37716,22.36354],[114.37716,22.36337],[114.37741,22.36322],[114.37767,22.3632],[114.37772,22.36324],[114.37793,22.36327],[114.37802,22.36331],[114.378,22.36313],[114.37811,22.36299],[114.37886,22.36302],[114.37935,22.36297],[114.37937,22.36301],[114.37962,22.36301],[114.37995,22.36314],[114.37994,22.36317],[114.38001,22.36319],[114.38,22.36322],[114.38013,22.36324],[114.38039,22.36342],[114.38069,22.36386],[114.38088,22.36437],[114.38099,22.36501],[114.38111,22.36549],[114.38102,22.36598],[114.38064,22.36592],[114.3809,22.36624],[114.38092,22.36639],[114.3809,22.3665],[114.38071,22.36668],[114.38037,22.36686],[114.38018,22.36689],[114.37998,22.36682],[114.37981,22.36676],[114.37969,22.36676],[114.37958,22.36669],[114.37931,22.36663],[114.37961,22.36688],[114.37981,22.3671],[114.37986,22.36723],[114.37979,22.3674],[114.37942,22.36752],[114.3795,22.36772],[114.37946,22.36782],[114.37937,22.36788],[114.37936,22.36793],[114.37886,22.3682],[114.37829,22.36851],[114.37798,22.36872],[114.37778,22.3688],[114.37754,22.36895],[114.37689,22.3691],[114.37647,22.36904],[114.37651,22.36909],[114.37646,22.36911],[114.37631,22.36908],[114.37623,22.36911],[114.37601,22.36912],[114.37595,22.36949],[114.37598,22.36959],[114.37598,22.36968],[114.376,22.36975],[114.37597,22.36979],[114.37589,22.36984],[114.37585,22.37],[114.3757,22.37011],[114.37574,22.37027],[114.37585,22.37023],[114.37598,22.37024],[114.37609,22.37052],[114.37604,22.37049],[114.37588,22.37063],[114.37574,22.37062],[114.37589,22.37074],[114.37588,22.37085],[114.37585,22.37093],[114.37551,22.37097],[114.37552,22.37116],[114.37557,22.37117],[114.37556,22.37121],[114.37566,22.3712],[114.37575,22.37126],[114.37579,22.37161],[114.37572,22.37174],[114.37549,22.3719],[114.37529,22.3719],[114.37532,22.37197],[114.3752,22.37204],[114.3752,22.37206],[114.3752,22.37209],[114.37521,22.3721],[114.37522,22.37211],[114.37523,22.37212],[114.37525,22.37213],[114.37533,22.37213],[114.37539,22.37214],[114.37542,22.37215],[114.37545,22.37233],[114.37534,22.37241],[114.37528,22.37245],[114.37524,22.37247],[114.37519,22.37248],[114.3752,22.37256],[114.37525,22.37273],[114.37586,22.37366],[114.37657,22.37428],[114.37698,22.37473],[114.37734,22.3749],[114.37753,22.37494],[114.37774,22.37492],[114.37786,22.37498],[114.37793,22.37496],[114.37806,22.3748],[114.37822,22.37447],[114.37818,22.37428],[114.37827,22.37415],[114.37833,22.37419],[114.37827,22.37432],[114.37831,22.37444],[114.37835,22.37448],[114.37838,22.37439],[114.37854,22.3744],[114.37894,22.37406],[114.37923,22.37391],[114.37926,22.37392],[114.37927,22.37406],[114.37935,22.37423],[114.37937,22.37406],[114.37949,22.37393],[114.37974,22.37392],[114.37972,22.37398],[114.37975,22.37406],[114.37983,22.37398],[114.37998,22.37399],[114.38012,22.37406],[114.38012,22.374],[114.38003,22.37389],[114.38031,22.37378],[114.38045,22.37373],[114.38049,22.37378],[114.38057,22.37384],[114.38071,22.37393],[114.38071,22.37404],[114.38081,22.37418],[114.38093,22.37407],[114.38122,22.37407],[114.38132,22.37418],[114.38141,22.37428],[114.38159,22.37442],[114.38162,22.3749],[114.38166,22.37506],[114.38169,22.37553],[114.38164,22.37575],[114.38169,22.37581],[114.38202,22.37592],[114.38222,22.37595],[114.38243,22.3759],[114.38244,22.37572],[114.3826,22.37551],[114.38262,22.37544],[114.3827,22.37523],[114.38277,22.37521],[114.3828,22.37513],[114.38283,22.37492],[114.38288,22.37475],[114.38295,22.37464],[114.38311,22.3746],[114.3831,22.37457],[114.38309,22.37446],[114.38318,22.37434],[114.38308,22.37428],[114.38297,22.37413],[114.38296,22.37408],[114.38293,22.37384],[114.38306,22.37338],[114.38322,22.37333],[114.38324,22.37334],[114.38334,22.37333],[114.38316,22.37325],[114.38306,22.37312],[114.3831,22.37297],[114.38315,22.37293],[114.38336,22.37293],[114.38325,22.37288],[114.38322,22.37279],[114.38328,22.37271],[114.38337,22.37233],[114.38352,22.37222],[114.38355,22.37209],[114.38352,22.37204],[114.38361,22.37196],[114.3836,22.37191],[114.3837,22.37174],[114.38367,22.3717],[114.3838,22.3715],[114.38398,22.37133],[114.38406,22.37127],[114.38419,22.37123],[114.38426,22.37115],[114.38435,22.37112],[114.38446,22.37121],[114.38461,22.3712],[114.38466,22.37114],[114.38465,22.37106],[114.38455,22.37096],[114.38461,22.3709],[114.38475,22.37085],[114.38476,22.37075],[114.38485,22.37056],[114.38505,22.37033],[114.38507,22.37023],[114.3852,22.37002],[114.38537,22.36983],[114.38557,22.36952],[114.38567,22.36944],[114.38576,22.36927],[114.38569,22.36922],[114.38564,22.36923],[114.38558,22.36926],[114.38551,22.36917],[114.38545,22.36912],[114.38555,22.3689],[114.38568,22.36865],[114.38544,22.36868],[114.38533,22.36865],[114.38529,22.36856],[114.38532,22.36848],[114.38537,22.36833],[114.38546,22.36828],[114.3855,22.36815],[114.38558,22.36805],[114.38565,22.36791],[114.38573,22.36775],[114.38578,22.36766],[114.38581,22.36763],[114.3859,22.36749],[114.38609,22.36731],[114.38639,22.36711],[114.38588,22.36736],[114.38583,22.3673],[114.38588,22.36728],[114.38598,22.36704],[114.3864,22.36645],[114.38648,22.36637],[114.38659,22.36639],[114.3866,22.36631],[114.38671,22.36618],[114.38697,22.36592],[114.38723,22.36576],[114.3877,22.36566],[114.38776,22.36567],[114.3878,22.36567],[114.38804,22.36585],[114.3879,22.36599],[114.38798,22.36621],[114.38801,22.36612],[114.38819,22.36592],[114.38834,22.36582],[114.38843,22.36575],[114.38824,22.36578],[114.38827,22.36564],[114.3885,22.36549],[114.38855,22.36549],[114.38882,22.3653],[114.38888,22.36531],[114.3892,22.36512],[114.38948,22.36502],[114.38976,22.36509],[114.38984,22.36515],[114.38987,22.36532],[114.38964,22.36553],[114.38922,22.36576],[114.38925,22.36581],[114.38932,22.3658],[114.38963,22.36569],[114.38985,22.36578],[114.38992,22.36576],[114.38999,22.36584],[114.38969,22.36625],[114.38946,22.36634],[114.38947,22.36641],[114.38939,22.36656],[114.38944,22.36656],[114.38987,22.36626],[114.39003,22.36614],[114.3902,22.36589],[114.39037,22.36583],[114.39049,22.36584],[114.39061,22.3659],[114.39079,22.36622],[114.39081,22.36634],[114.39069,22.36652],[114.39046,22.36674],[114.39025,22.36687],[114.38998,22.36695],[114.38976,22.36707],[114.38983,22.3672],[114.38995,22.36723],[114.39,22.36741],[114.38973,22.36775],[114.3896,22.36785],[114.38953,22.36795],[114.38954,22.36805],[114.38985,22.3678],[114.38996,22.36777],[114.39005,22.3677],[114.39009,22.36773],[114.38999,22.3679],[114.39039,22.36761],[114.39047,22.36757],[114.3905,22.36754],[114.39065,22.36746],[114.3908,22.36746],[114.39094,22.36741],[114.39118,22.3674],[114.39121,22.36745],[114.39121,22.36746],[114.39146,22.36767],[114.39145,22.36786],[114.39155,22.3682],[114.39154,22.36832],[114.39157,22.36858],[114.39152,22.36867],[114.39142,22.36868],[114.39149,22.36887],[114.39146,22.36911],[114.39135,22.36921],[114.39131,22.3693],[114.39108,22.36942],[114.39129,22.36992],[114.39123,22.37003],[114.3912,22.37018],[114.39102,22.37042],[114.39101,22.37059],[114.39089,22.37077],[114.39069,22.37089],[114.39044,22.37081],[114.39032,22.3707],[114.3901,22.3704],[114.38986,22.36972],[114.38978,22.36975],[114.38976,22.36983],[114.38999,22.37046],[114.39011,22.37107],[114.3901,22.37114],[114.39012,22.37122],[114.39008,22.37142],[114.38995,22.37164],[114.38994,22.37175],[114.38978,22.37189],[114.38945,22.37207],[114.38959,22.37231],[114.38957,22.37238],[114.38952,22.37247],[114.38935,22.37262],[114.38926,22.37266],[114.38902,22.37289],[114.3889,22.37305],[114.38872,22.37328],[114.38863,22.37375],[114.38851,22.37391],[114.38843,22.37421],[114.38837,22.37431],[114.38829,22.37443],[114.38796,22.37467],[114.3878,22.37467],[114.38743,22.37454],[114.3874,22.37456],[114.38743,22.37463],[114.38758,22.37469],[114.38769,22.37485],[114.38771,22.37499],[114.38766,22.37507],[114.38768,22.37511],[114.3876,22.37518],[114.38748,22.37523],[114.38722,22.37516],[114.38735,22.37548],[114.38736,22.3757],[114.38714,22.37591],[114.38685,22.37597],[114.38696,22.37611],[114.38706,22.37613],[114.38713,22.37622],[114.38707,22.37633],[114.38695,22.37648],[114.38694,22.37657],[114.38656,22.37674],[114.38646,22.37682],[114.38644,22.37695],[114.38659,22.37693],[114.3868,22.37683],[114.38685,22.37684],[114.38679,22.37711],[114.38676,22.37713],[114.38675,22.3772],[114.38667,22.37727],[114.38675,22.37742],[114.38685,22.37746],[114.38691,22.37732],[114.38698,22.37723],[114.38704,22.37715],[114.38715,22.37702],[114.38727,22.37695],[114.38746,22.3769],[114.38751,22.37704],[114.38751,22.37693],[114.38756,22.37682],[114.38784,22.37678],[114.38788,22.37679],[114.38799,22.37685],[114.38795,22.377],[114.38789,22.37705],[114.38795,22.37711],[114.38801,22.3771],[114.38801,22.37698],[114.38805,22.37693],[114.38806,22.37703],[114.38828,22.37702],[114.38828,22.37697],[114.3883,22.37693],[114.38833,22.37692],[114.38842,22.37701],[114.38846,22.37693],[114.38841,22.37684],[114.38845,22.37676],[114.38843,22.37675],[114.3884,22.37678],[114.38838,22.37679],[114.38836,22.37677],[114.3884,22.37669],[114.38859,22.37646],[114.38872,22.37645],[114.3888,22.37649],[114.38881,22.3766],[114.3886,22.37674],[114.38867,22.37681],[114.38874,22.37674],[114.38891,22.37673],[114.38902,22.37665],[114.38904,22.37669],[114.38894,22.37682],[114.38908,22.37676],[114.38915,22.37674],[114.38946,22.37665],[114.3896,22.37677],[114.38971,22.3768],[114.38975,22.37654],[114.38981,22.37646],[114.38991,22.37644],[114.38997,22.37636],[114.39003,22.37639],[114.39006,22.37646],[114.39,22.3767],[114.3899,22.37684],[114.38989,22.37695],[114.38978,22.37701],[114.3898,22.37707],[114.38988,22.37721],[114.38998,22.37709],[114.39007,22.37693],[114.39003,22.37688],[114.39006,22.37683],[114.39015,22.37674],[114.39027,22.37675],[114.39046,22.377],[114.39047,22.37705],[114.39052,22.37716],[114.39049,22.37733],[114.39051,22.37742],[114.39056,22.37741],[114.39059,22.37729],[114.39065,22.37725],[114.39071,22.37725],[114.3907,22.377],[114.39065,22.37688],[114.39072,22.37676],[114.39087,22.37669],[114.39097,22.37673],[114.39099,22.37677],[114.39086,22.37686],[114.39117,22.37681],[114.39133,22.37696],[114.39135,22.37702],[114.39128,22.37707],[114.39148,22.3771],[114.39158,22.37721],[114.39159,22.37737],[114.39159,22.37746],[114.39147,22.37755],[114.39139,22.37755],[114.39143,22.37759],[114.39145,22.37782],[114.39169,22.37777],[114.39183,22.37784],[114.39185,22.37797],[114.39179,22.37805],[114.39168,22.3781],[114.3916,22.37827],[114.39153,22.37833],[114.39147,22.37831],[114.39137,22.37822],[114.3913,22.37822],[114.39129,22.37835],[114.39141,22.37865],[114.3914,22.37874],[114.39116,22.37897],[114.39112,22.37914],[114.39101,22.37921],[114.39089,22.3794],[114.39092,22.3795],[114.39099,22.37949],[114.39103,22.3795],[114.39107,22.37957],[114.3913,22.3795],[114.39146,22.37948],[114.39151,22.37951],[114.3914,22.37969],[114.39117,22.37995],[114.39086,22.38029],[114.3909,22.38035],[114.39098,22.38037],[114.39116,22.38031],[114.39124,22.38022],[114.39136,22.38022],[114.3914,22.38031],[114.39133,22.38054],[114.39118,22.3806],[114.39109,22.38078],[114.39099,22.38085],[114.39054,22.38084],[114.39058,22.38091],[114.39068,22.38096],[114.39061,22.38106],[114.39058,22.38109],[114.39059,22.38116],[114.39048,22.38129],[114.39034,22.38131],[114.39027,22.38127],[114.39026,22.38119],[114.39006,22.38131],[114.39004,22.38145],[114.39004,22.3815],[114.3901,22.3815],[114.39022,22.38161],[114.39008,22.38165],[114.39002,22.3816],[114.38994,22.3816],[114.38985,22.38163],[114.38982,22.38167],[114.38985,22.38175],[114.38987,22.38181],[114.39007,22.3818],[114.3902,22.38184],[114.38987,22.38199],[114.38985,22.38205],[114.38982,22.38212],[114.38999,22.38216],[114.38999,22.38226],[114.3901,22.38233],[114.39018,22.38234],[114.39023,22.38224],[114.39029,22.38229],[114.39017,22.38247],[114.39024,22.38251],[114.39022,22.38258],[114.39021,22.38262],[114.3902,22.3831],[114.39031,22.38302],[114.39035,22.38315],[114.39012,22.38337],[114.39013,22.38347],[114.39012,22.38352],[114.39016,22.3837],[114.39005,22.38379],[114.39014,22.3838],[114.39015,22.38383],[114.39013,22.38395],[114.39022,22.38393],[114.39031,22.38397],[114.39038,22.38418],[114.39037,22.38427],[114.39027,22.38434],[114.39036,22.3845],[114.39028,22.38481],[114.39015,22.38484],[114.3901,22.38489],[114.39037,22.38493],[114.39028,22.38506],[114.39023,22.38511],[114.3902,22.38519],[114.39022,22.38525],[114.39028,22.38521],[114.39038,22.38531],[114.38976,22.38559],[114.39012,22.38562],[114.39022,22.38567],[114.3903,22.38585],[114.3905,22.38598],[114.39053,22.38607],[114.39064,22.38621],[114.3907,22.38642],[114.39064,22.38653],[114.39053,22.38659],[114.39062,22.38666],[114.39059,22.38678],[114.39054,22.38685],[114.39045,22.38689],[114.39028,22.3872],[114.39023,22.3873],[114.3901,22.38735],[114.38994,22.3875],[114.38992,22.38761],[114.39018,22.38766],[114.39044,22.38751],[114.39062,22.38746],[114.39073,22.38751],[114.39076,22.38761],[114.39074,22.38774],[114.39068,22.38776],[114.39065,22.38784],[114.39012,22.38818],[114.38972,22.38811],[114.38982,22.38824],[114.38977,22.38829],[114.38964,22.38833],[114.38953,22.38856],[114.38967,22.38854],[114.38973,22.3886],[114.3897,22.38872],[114.38967,22.38878],[114.38944,22.38882],[114.38943,22.38897],[114.38934,22.38898],[114.3891,22.38892],[114.38883,22.38891],[114.38887,22.38915],[114.38869,22.38925],[114.38858,22.38925],[114.38843,22.38919],[114.38834,22.38916],[114.38818,22.38903],[114.38805,22.38916],[114.38792,22.38916],[114.38786,22.38917],[114.38775,22.38921],[114.38788,22.3894],[114.38787,22.38943],[114.38723,22.38971],[114.38708,22.38962],[114.38705,22.3896],[114.38701,22.38965],[114.38705,22.38977],[114.3871,22.38991],[114.38713,22.38999],[114.38701,22.39002],[114.38696,22.39013],[114.38683,22.39009],[114.38672,22.39014],[114.38688,22.39028],[114.38693,22.39038],[114.38679,22.39051],[114.38678,22.39057],[114.38669,22.3906],[114.38652,22.39058],[114.38631,22.39058],[114.38614,22.39055],[114.38597,22.39035],[114.38597,22.39022],[114.38586,22.39029],[114.38584,22.39026],[114.38579,22.39008],[114.38573,22.39009],[114.38559,22.39006],[114.38548,22.38996],[114.38545,22.38988],[114.38541,22.38976],[114.38522,22.38966],[114.38525,22.38961],[114.38541,22.38935],[114.38534,22.38928],[114.38533,22.38927],[114.38525,22.38925],[114.38516,22.38928],[114.38517,22.38932],[114.38505,22.38946],[114.38505,22.38936],[114.38504,22.38931],[114.38499,22.38925],[114.38483,22.38923],[114.38473,22.38926],[114.3846,22.38935],[114.38457,22.38932],[114.38454,22.38931],[114.38443,22.38926],[114.38441,22.38936],[114.38438,22.38954],[114.38427,22.38979],[114.38418,22.38992],[114.38406,22.38996],[114.38416,22.38999],[114.38416,22.39004],[114.384,22.39031],[114.38391,22.39048],[114.38391,22.39062],[114.3838,22.3907],[114.38375,22.39092],[114.38346,22.39117],[114.38337,22.3912],[114.38318,22.39144],[114.3831,22.39159],[114.38292,22.39173],[114.3826,22.3917],[114.38258,22.39155],[114.38245,22.39164],[114.38241,22.39155],[114.38229,22.39151],[114.38229,22.39148],[114.38235,22.39143],[114.38224,22.3914],[114.3822,22.39143],[114.38219,22.39154],[114.38196,22.39153],[114.38186,22.39161],[114.38167,22.39163],[114.38162,22.39168],[114.38157,22.39168],[114.38146,22.39157],[114.38137,22.39157],[114.38151,22.39172],[114.38154,22.39179],[114.38163,22.39193],[114.38167,22.39221],[114.38157,22.39262],[114.38164,22.39293],[114.3816,22.3932],[114.38144,22.39348],[114.38138,22.39368],[114.38124,22.39377],[114.38112,22.39381],[114.38093,22.39391],[114.38071,22.3939],[114.38062,22.39398],[114.38092,22.39405],[114.38092,22.39418],[114.38075,22.39438],[114.38059,22.39444],[114.38025,22.39512],[114.37983,22.39535],[114.38003,22.39545],[114.38006,22.39554],[114.3799,22.39575],[114.37984,22.39591],[114.37964,22.3961],[114.37959,22.39613],[114.37939,22.39607],[114.37928,22.39609],[114.37922,22.39605],[114.37901,22.39579],[114.37907,22.3961],[114.37884,22.39599],[114.37881,22.39613],[114.37873,22.39615],[114.37869,22.39606],[114.37863,22.39595],[114.37858,22.39594],[114.37858,22.396],[114.37855,22.39617],[114.37845,22.3959],[114.37847,22.39583],[114.37844,22.39577],[114.37839,22.39581],[114.37825,22.39626],[114.3781,22.39651],[114.37802,22.39659],[114.37788,22.39661],[114.37761,22.39696],[114.37755,22.39699],[114.37741,22.397],[114.37714,22.39693],[114.37701,22.39694],[114.37668,22.39659],[114.37669,22.39649],[114.37659,22.39648],[114.37648,22.39653],[114.37669,22.3972],[114.3767,22.3974],[114.37668,22.39777],[114.37657,22.39809],[114.37647,22.39806],[114.37653,22.39823],[114.37645,22.39828],[114.3763,22.39818],[114.37623,22.39828],[114.37609,22.39832],[114.37588,22.39833],[114.37573,22.39813],[114.37572,22.39818],[114.37564,22.39822],[114.3754,22.39827],[114.37538,22.39823],[114.37518,22.39823],[114.37499,22.39818],[114.37483,22.39812],[114.37471,22.39796],[114.37461,22.39793],[114.37454,22.39798],[114.37444,22.39788],[114.37436,22.39774],[114.37436,22.39754],[114.37427,22.39748],[114.37407,22.39734],[114.37401,22.39728],[114.37407,22.39714],[114.374,22.39706],[114.37374,22.3968],[114.37352,22.39674],[114.37341,22.39664],[114.37321,22.39664],[114.37307,22.39655],[114.37287,22.39641],[114.37274,22.39641],[114.37261,22.3965],[114.37239,22.39663],[114.37217,22.3969],[114.37172,22.39721],[114.37141,22.39751],[114.37132,22.39766],[114.37131,22.39774],[114.37146,22.39781],[114.37138,22.39792],[114.37149,22.39798],[114.37163,22.39799],[114.37158,22.39816],[114.37129,22.3981],[114.37117,22.39813],[114.37095,22.39803],[114.37085,22.39814],[114.37063,22.39814],[114.37041,22.39823],[114.37038,22.39843],[114.37015,22.39891],[114.37006,22.3994],[114.36999,22.39963],[114.36997,22.39973],[114.36994,22.39991],[114.36989,22.40001],[114.36984,22.40006],[114.36973,22.40008],[114.36971,22.40021],[114.3698,22.40022],[114.36987,22.40025],[114.36996,22.40027],[114.37003,22.40027],[114.3702,22.4003],[114.37023,22.40035],[114.37035,22.40031],[114.37067,22.40036],[114.37077,22.40041],[114.37069,22.40047],[114.37084,22.40056],[114.37083,22.40061],[114.37124,22.40056],[114.37134,22.40059],[114.37137,22.40065],[114.37152,22.40073],[114.37155,22.40064],[114.37149,22.40059],[114.37155,22.40053],[114.37166,22.40055],[114.37167,22.40062],[114.37191,22.4007],[114.37199,22.40061],[114.37211,22.40062],[114.37223,22.40075],[114.37222,22.40085],[114.37209,22.40095],[114.3719,22.40097],[114.37195,22.40105],[114.37195,22.40123],[114.37191,22.40134],[114.37193,22.40138],[114.372,22.40141],[114.37208,22.40136],[114.37223,22.40136],[114.37258,22.40144],[114.37247,22.40133],[114.37247,22.40127],[114.37251,22.40123],[114.37272,22.40127],[114.37288,22.40119],[114.3731,22.40118],[114.37326,22.40126],[114.37326,22.40137],[114.37309,22.40148],[114.3732,22.40154],[114.37344,22.40159],[114.37362,22.40169],[114.37383,22.40171],[114.3739,22.40176],[114.37375,22.40194],[114.37331,22.402],[114.37311,22.40209],[114.37305,22.40216],[114.37362,22.40211],[114.37372,22.40214],[114.37374,22.40216],[114.37373,22.40218],[114.37362,22.40224],[114.37348,22.40232],[114.37382,22.40222],[114.37406,22.40222],[114.37423,22.40232],[114.37428,22.40246],[114.3745,22.40252],[114.37448,22.40257],[114.37413,22.40279],[114.37391,22.4028],[114.37379,22.40301],[114.37365,22.40315],[114.3739,22.40355],[114.37416,22.40364],[114.37427,22.40346],[114.37439,22.40349],[114.37465,22.40348],[114.37472,22.40328],[114.37482,22.40324],[114.37493,22.4031],[114.37514,22.4031],[114.3752,22.40315],[114.37519,22.40325],[114.37515,22.40332],[114.37516,22.40342],[114.37509,22.40344],[114.375,22.40353],[114.37477,22.40356],[114.37463,22.40356],[114.37448,22.40367],[114.37433,22.40372],[114.37427,22.40377],[114.37427,22.4038],[114.37437,22.4038],[114.37448,22.40383],[114.37459,22.40387],[114.37464,22.40397],[114.37463,22.4041],[114.37458,22.40421],[114.37444,22.40427],[114.37453,22.40431],[114.37447,22.40436],[114.37434,22.40437],[114.37436,22.4046],[114.37459,22.40505],[114.37467,22.40509],[114.37458,22.40516],[114.37485,22.40525],[114.37492,22.40534],[114.37494,22.40546],[114.37499,22.4055],[114.37504,22.40549],[114.37508,22.40555],[114.37509,22.40573],[114.37502,22.40577],[114.37491,22.40573],[114.37484,22.40566],[114.37491,22.4058],[114.37482,22.40597],[114.37485,22.40606],[114.37477,22.40614],[114.37457,22.40622],[114.37432,22.40625],[114.37426,22.40624],[114.37414,22.40626],[114.37419,22.40663],[114.37425,22.4066],[114.37434,22.40661],[114.37441,22.40666],[114.37441,22.40671],[114.37443,22.40679],[114.37446,22.40672],[114.37455,22.40673],[114.3746,22.40681],[114.37458,22.4069],[114.3745,22.40694],[114.37468,22.40697],[114.37471,22.40698],[114.37468,22.40711],[114.37463,22.40713],[114.37456,22.40711],[114.37463,22.40721],[114.37455,22.4073],[114.37453,22.40742],[114.37463,22.40745],[114.37473,22.40733],[114.3748,22.40735],[114.3748,22.40757],[114.37483,22.40761],[114.37488,22.40756],[114.37491,22.40764],[114.37483,22.40783],[114.37477,22.40784],[114.3747,22.40794],[114.37471,22.40803],[114.37452,22.40823],[114.37442,22.40823],[114.37431,22.40836],[114.37409,22.40843],[114.37438,22.40843],[114.37436,22.4085],[114.37443,22.40862],[114.37448,22.40854],[114.37455,22.40862],[114.37488,22.40874],[114.37499,22.40897],[114.37516,22.40919],[114.37524,22.40932],[114.37536,22.40935],[114.37546,22.40951],[114.37558,22.40954],[114.37574,22.40951],[114.37584,22.40957],[114.37594,22.40953],[114.3761,22.40968],[114.37615,22.40995],[114.37613,22.41004],[114.37605,22.41013],[114.37601,22.41037],[114.37607,22.41045],[114.3761,22.41059],[114.37603,22.4106],[114.37569,22.41047],[114.37536,22.41047],[114.37537,22.41055],[114.37524,22.41057],[114.37524,22.41058],[114.37527,22.41061],[114.37527,22.41062],[114.37523,22.41063],[114.37519,22.41067],[114.37509,22.41078],[114.37499,22.41091],[114.37495,22.41095],[114.37493,22.41095],[114.37491,22.41093],[114.37491,22.41091],[114.37492,22.41089],[114.37491,22.41086],[114.37484,22.41081],[114.37476,22.41077],[114.37474,22.41075],[114.37474,22.41073],[114.37475,22.4107],[114.37476,22.41069],[114.37476,22.41062],[114.37458,22.41047],[114.3744,22.41039],[114.37435,22.41038],[114.37427,22.4104],[114.37419,22.41037],[114.37412,22.4103],[114.37417,22.4104],[114.37423,22.41043],[114.37438,22.4104],[114.37444,22.41047],[114.37459,22.41053],[114.37461,22.41056],[114.37463,22.41059],[114.37464,22.41062],[114.37464,22.41064],[114.37463,22.41067],[114.37464,22.41069],[114.37464,22.41071],[114.37465,22.41074],[114.37467,22.41076],[114.3747,22.41081],[114.37472,22.41088],[114.37469,22.41088],[114.37467,22.41087],[114.37463,22.41085],[114.37461,22.41081],[114.37458,22.41074],[114.37456,22.41071],[114.37452,22.4107],[114.37451,22.4107],[114.3745,22.4107],[114.37448,22.41073],[114.37445,22.41075],[114.37442,22.41076],[114.37439,22.41077],[114.37436,22.41079],[114.37445,22.41079],[114.37447,22.41078],[114.37448,22.41077],[114.3745,22.41075],[114.37452,22.41075],[114.37453,22.41077],[114.37452,22.41083],[114.37454,22.41086],[114.37457,22.41087],[114.3746,22.4109],[114.37462,22.41093],[114.37465,22.41095],[114.3747,22.41097],[114.37472,22.41097],[114.37474,22.41099],[114.3748,22.41105],[114.37483,22.4111],[114.37482,22.41111],[114.37476,22.41115],[114.37468,22.41122],[114.3746,22.41125],[114.37447,22.4113],[114.37443,22.41132],[114.37434,22.41142],[114.37429,22.41145],[114.37424,22.41149],[114.37417,22.41152],[114.37414,22.41155],[114.37411,22.41159],[114.37404,22.41167],[114.37399,22.41169],[114.37397,22.41172],[114.37396,22.41175],[114.37395,22.4118],[114.37391,22.41187],[114.37393,22.412],[114.37392,22.41204],[114.37393,22.41216],[114.37393,22.41226],[114.37392,22.41231],[114.37393,22.41235],[114.37393,22.41237],[114.37395,22.41239],[114.37396,22.4124],[114.37397,22.41243],[114.37396,22.4125],[114.37396,22.4126],[114.37395,22.41272],[114.37393,22.41282],[114.37391,22.41291],[114.3739,22.41293],[114.37388,22.41295],[114.37386,22.41297],[114.37381,22.413],[114.37376,22.41303],[114.3737,22.41307],[114.37365,22.41311],[114.37355,22.41323],[114.3735,22.41329],[114.37348,22.41335],[114.37347,22.4134],[114.37347,22.41348],[114.37348,22.41353],[114.37351,22.4135],[114.37354,22.41344],[114.37356,22.41337],[114.37357,22.41332],[114.37359,22.41328],[114.37363,22.41323],[114.37373,22.41314],[114.37379,22.4131],[114.37383,22.41307],[114.37386,22.41305],[114.37389,22.41304],[114.37392,22.41303],[114.37396,22.413],[114.37406,22.41288],[114.37408,22.41284],[114.37409,22.41277],[114.3741,22.41271],[114.3741,22.4126],[114.37409,22.41255],[114.37407,22.41245],[114.37408,22.4124],[114.3741,22.41226],[114.37411,22.41216],[114.3741,22.41209],[114.37408,22.41198],[114.37409,22.4119],[114.37411,22.41181],[114.37413,22.41177],[114.37415,22.41174],[114.37417,22.41172],[114.37421,22.41172],[114.37424,22.41171],[114.37425,22.41169],[114.37428,22.41165],[114.37438,22.41157],[114.3745,22.41149],[114.3749,22.41132],[114.37494,22.41128],[114.37498,22.41124],[114.37506,22.41113],[114.37508,22.41109],[114.37516,22.411],[114.37543,22.41077],[114.37566,22.41073],[114.37621,22.41083],[114.37638,22.41092],[114.37656,22.41094],[114.37658,22.41105],[114.37661,22.41106],[114.37668,22.41096],[114.37677,22.41093],[114.37695,22.41074],[114.37704,22.41071],[114.37722,22.41054],[114.37727,22.41046],[114.37728,22.41034],[114.37741,22.41019],[114.37764,22.41006],[114.37775,22.40987],[114.37792,22.40966],[114.37807,22.40953],[114.37812,22.40945],[114.37816,22.40939],[114.37827,22.40929],[114.37834,22.40929],[114.3784,22.40932],[114.37858,22.40924],[114.37856,22.40935],[114.37868,22.40932],[114.3789,22.40926],[114.37903,22.40928],[114.37905,22.40932],[114.37912,22.40953],[114.37907,22.4097],[114.37894,22.40987],[114.37905,22.40984],[114.37904,22.40999],[114.37884,22.41005],[114.37908,22.41013],[114.37907,22.41026],[114.37892,22.41045],[114.37855,22.41071],[114.37853,22.41075],[114.37861,22.41076],[114.37895,22.41055],[114.3791,22.41059],[114.37914,22.41051],[114.37922,22.41051],[114.37922,22.4106],[114.3792,22.41063],[114.37907,22.41062],[114.37907,22.4107],[114.37897,22.41079],[114.37893,22.41082],[114.37892,22.41087],[114.37883,22.41094],[114.37851,22.41099],[114.37828,22.41114],[114.37834,22.41134],[114.37829,22.4114],[114.37834,22.41145],[114.37835,22.41153],[114.37832,22.41159],[114.37831,22.4117],[114.37819,22.4117],[114.37815,22.41174],[114.37828,22.41177],[114.37831,22.41183],[114.37799,22.41194],[114.37795,22.41198],[114.37806,22.41214],[114.37888,22.41393],[114.3792,22.41447],[114.37965,22.41495],[114.37984,22.41542],[114.38025,22.41591],[114.38064,22.41652],[114.38116,22.41707],[114.38144,22.4173],[114.38149,22.4173],[114.3816,22.4172],[114.38174,22.417],[114.38194,22.41692],[114.38192,22.4171],[114.38209,22.41696],[114.38229,22.41698],[114.38232,22.41708],[114.38239,22.41695],[114.38245,22.41695],[114.38262,22.41705],[114.38268,22.41721],[114.38267,22.41731],[114.38277,22.41752],[114.38272,22.41763],[114.38278,22.41772],[114.38275,22.4178],[114.38256,22.41794],[114.38269,22.41792],[114.38267,22.4181],[114.38271,22.41812],[114.38297,22.41788],[114.38301,22.41794],[114.38305,22.41797],[114.38295,22.41809],[114.38279,22.41816],[114.38277,22.41824],[114.38288,22.4183],[114.383,22.41824],[114.38312,22.41823],[114.38333,22.41837],[114.38331,22.41854],[114.3832,22.41856],[114.38335,22.41863],[114.38334,22.41878],[114.38338,22.4189],[114.38339,22.41873],[114.38345,22.41863],[114.3836,22.41866],[114.3837,22.41881],[114.38351,22.4189],[114.38352,22.41893],[114.38381,22.41905],[114.38394,22.41903],[114.38395,22.41908],[114.38404,22.41912],[114.38398,22.4192],[114.384,22.41924],[114.38415,22.41924],[114.38438,22.41938],[114.38452,22.41937],[114.38455,22.4195],[114.38459,22.41956],[114.38464,22.41965],[114.38466,22.4198],[114.38471,22.41983],[114.3849,22.41985],[114.38491,22.41993],[114.385,22.42],[114.38499,22.4201],[114.38517,22.42024],[114.38567,22.4205],[114.38595,22.42069],[114.38654,22.42079],[114.38664,22.42087],[114.38682,22.4209],[114.38694,22.42086],[114.387,22.42077],[114.38697,22.42066],[114.38712,22.42061],[114.38711,22.42049],[114.38724,22.42042],[114.38737,22.42049],[114.38747,22.42038],[114.38757,22.42036],[114.38786,22.42042],[114.38793,22.42031],[114.38804,22.42026],[114.38817,22.42017],[114.38839,22.42015],[114.38848,22.42012],[114.38874,22.42014],[114.38878,22.4202],[114.3889,22.42014],[114.38909,22.42001],[114.3893,22.4199],[114.38941,22.41991],[114.38964,22.42003],[114.38956,22.41994],[114.38965,22.41981],[114.38978,22.41981],[114.39,22.41987],[114.39004,22.41988],[114.39009,22.41985],[114.39019,22.41995],[114.39016,22.42],[114.39021,22.42012],[114.39037,22.42001],[114.3903,22.41996],[114.39059,22.41981],[114.39068,22.41987],[114.39065,22.41995],[114.39079,22.42007],[114.39092,22.41998],[114.39131,22.42018],[114.39131,22.42026],[114.39136,22.42031],[114.39143,22.4203],[114.39142,22.42023],[114.39145,22.4202],[114.39154,22.42018],[114.39175,22.42024],[114.39179,22.42031],[114.3917,22.42038],[114.3919,22.42036],[114.39201,22.42039],[114.39207,22.42052],[114.39221,22.42063],[114.39228,22.42054],[114.3924,22.42052],[114.39261,22.42039],[114.39256,22.42032],[114.39265,22.42028],[114.39258,22.42013],[114.3926,22.42008],[114.39271,22.42009],[114.3928,22.42015],[114.3928,22.42034],[114.39283,22.42036],[114.39293,22.42032],[114.39287,22.42025],[114.39293,22.42019],[114.39303,22.42023],[114.39306,22.42019],[114.39294,22.42015],[114.39293,22.42008],[114.39298,22.42001],[114.39325,22.42004],[114.39336,22.41995],[114.39325,22.41995],[114.39317,22.41985],[114.39329,22.41968],[114.39319,22.41958],[114.39316,22.41948],[114.39337,22.41925],[114.39337,22.4192],[114.3933,22.41914],[114.39332,22.41909],[114.39338,22.41904],[114.39346,22.41903],[114.39361,22.41909],[114.39367,22.41901],[114.39346,22.41897],[114.39345,22.41891],[114.39349,22.41885],[114.39352,22.41885],[114.39354,22.41882],[114.39349,22.41873],[114.3937,22.41864],[114.39384,22.41848],[114.39417,22.41841],[114.39418,22.41836],[114.39452,22.41831],[114.39461,22.41836],[114.39463,22.41824],[114.39471,22.41813],[114.3949,22.418],[114.39499,22.4178],[114.39506,22.4176],[114.39504,22.41745],[114.39491,22.41732],[114.39476,22.41727],[114.39473,22.41716],[114.39469,22.41727],[114.3946,22.41725],[114.39462,22.4172],[114.39456,22.41711],[114.3947,22.41701],[114.39474,22.41692],[114.39472,22.41675],[114.39478,22.41654],[114.39482,22.4163],[114.39472,22.41624],[114.39484,22.41618],[114.39466,22.41604],[114.39464,22.41587],[114.39489,22.41548],[114.39497,22.41542],[114.39546,22.41524],[114.39552,22.41515],[114.39575,22.41503],[114.39584,22.41491],[114.3959,22.4149],[114.39598,22.41499],[114.39619,22.41508],[114.3961,22.41485],[114.39639,22.41454],[114.39637,22.41443],[114.3964,22.41434],[114.39652,22.41428],[114.39659,22.41422],[114.39687,22.41421],[114.39696,22.4143],[114.39752,22.41429],[114.39777,22.41415],[114.39778,22.41412],[114.39767,22.41405],[114.3977,22.41398],[114.39784,22.4139],[114.39809,22.41383],[114.3982,22.41376],[114.39841,22.41372],[114.39844,22.41366],[114.39827,22.41339],[114.39839,22.41301],[114.39831,22.41264],[114.39888,22.41211],[114.39918,22.41194],[114.39929,22.41193],[114.39966,22.41177],[114.3997,22.41175],[114.40066,22.41172],[114.40098,22.41182],[114.40107,22.41194],[114.40113,22.41222],[114.40086,22.41265],[114.40094,22.41273],[114.40111,22.41282],[114.40121,22.41265],[114.40129,22.41262],[114.40153,22.41262],[114.40163,22.41272],[114.40169,22.41258],[114.40172,22.4122],[114.40179,22.41213],[114.4019,22.41205],[114.40203,22.41202],[114.40217,22.41197],[114.40228,22.41183],[114.40245,22.4118],[114.40251,22.4119],[114.40264,22.412],[114.40279,22.41227],[114.40285,22.4123],[114.40305,22.41223],[114.40323,22.41211],[114.40352,22.41212],[114.40373,22.41209],[114.40396,22.41205],[114.40398,22.41214],[114.40408,22.4122],[114.40425,22.41208],[114.40443,22.41213],[114.40447,22.4122],[114.40453,22.41259],[114.40449,22.41271],[114.40436,22.41287],[114.40425,22.41316],[114.40417,22.4135],[114.40419,22.41352],[114.40428,22.41355],[114.40451,22.41334],[114.40471,22.41302],[114.40503,22.41268],[114.40526,22.41258],[114.40531,22.4126],[114.40532,22.41279],[114.40551,22.41279],[114.40558,22.41267],[114.40567,22.4128],[114.4054,22.41336],[114.40523,22.4134],[114.4052,22.41344],[114.40518,22.41403],[114.40512,22.41419],[114.40497,22.41442],[114.40465,22.41467],[114.40434,22.41482],[114.40417,22.41485],[114.40389,22.41509],[114.40378,22.41514],[114.40384,22.41521],[114.40384,22.41529],[114.40377,22.41543],[114.40372,22.4155],[114.40361,22.41557],[114.4034,22.41558],[114.40344,22.41566],[114.40371,22.41567],[114.40379,22.41582],[114.40389,22.4158],[114.404,22.41576],[114.40406,22.41574],[114.40421,22.41568],[114.40432,22.41569],[114.40445,22.41585],[114.40446,22.41593],[114.40445,22.41608],[114.40431,22.41628],[114.4041,22.41642],[114.40412,22.41648],[114.40435,22.41638],[114.40442,22.41639],[114.40443,22.41644],[114.40427,22.41669],[114.40407,22.41684],[114.40406,22.41707],[114.40391,22.41711],[114.40375,22.41709],[114.40352,22.4172],[114.40344,22.41728],[114.40349,22.41739],[114.40339,22.41754],[114.40329,22.41747],[114.40331,22.41734],[114.40321,22.41733],[114.40297,22.41755],[114.40285,22.41776],[114.40286,22.41794],[114.40297,22.41801],[114.40294,22.41813],[114.40304,22.41823],[114.40295,22.41834],[114.40303,22.41856],[114.40319,22.41861],[114.40326,22.41856],[114.40332,22.41857],[114.40336,22.41866],[114.4035,22.41879],[114.40353,22.41892],[114.40355,22.41906],[114.40344,22.41919],[114.40328,22.41925],[114.4034,22.41935],[114.4034,22.41954],[114.40335,22.41963],[114.40328,22.41965],[114.40313,22.41967],[114.4029,22.41958],[114.4028,22.41963],[114.40275,22.41974],[114.40268,22.41975],[114.40252,22.41971],[114.40244,22.41963],[114.4024,22.41954],[114.40243,22.41931],[114.40239,22.41926],[114.40234,22.41926],[114.40227,22.41961],[114.40219,22.41979],[114.40209,22.41987],[114.40176,22.41991],[114.40181,22.41999],[114.40185,22.42006],[114.40175,22.42023],[114.40169,22.42035],[114.40156,22.42042],[114.40153,22.42042],[114.4015,22.42035],[114.40137,22.42033],[114.40131,22.42039],[114.40109,22.42045],[114.40093,22.42044],[114.4009,22.42057],[114.40076,22.42058],[114.40057,22.42047],[114.4005,22.42037],[114.40035,22.4205],[114.4001,22.42047],[114.40012,22.42061],[114.39999,22.42069],[114.39988,22.42062],[114.39983,22.42063],[114.39979,22.42083],[114.39977,22.42094],[114.39963,22.42102],[114.39954,22.42102],[114.39942,22.42093],[114.39943,22.42085],[114.39938,22.42074],[114.39937,22.4209],[114.39925,22.42099],[114.39906,22.42127],[114.39914,22.42143],[114.39911,22.42154],[114.39899,22.4217],[114.39892,22.42184],[114.39866,22.422],[114.39839,22.422],[114.39821,22.42219],[114.39805,22.42215],[114.39749,22.4226],[114.39748,22.42263],[114.39751,22.42267],[114.39771,22.42269],[114.3974,22.42298],[114.39732,22.42301],[114.3971,22.42307],[114.39681,22.42316],[114.39681,22.42322],[114.39704,22.42334],[114.3971,22.42355],[114.39729,22.42374],[114.39748,22.42406],[114.39745,22.42423],[114.39735,22.42445],[114.39717,22.4245],[114.3971,22.42467],[114.39696,22.42481],[114.3971,22.42485],[114.39738,22.42464],[114.39757,22.42461],[114.39765,22.4248],[114.39781,22.42517],[114.39781,22.42526],[114.39783,22.42547],[114.39801,22.42545],[114.39803,22.42556],[114.39778,22.42575],[114.39766,22.42602],[114.39767,22.42613],[114.39786,22.42605],[114.39791,22.42607],[114.39791,22.42617],[114.39778,22.42646],[114.3978,22.42652],[114.39784,22.42662],[114.39788,22.4267],[114.39796,22.42674],[114.39798,22.42682],[114.39791,22.42688],[114.39779,22.42683],[114.39764,22.42693],[114.39736,22.427],[114.3972,22.42702],[114.39696,22.42695],[114.39671,22.42705],[114.39669,22.42723],[114.39667,22.42737],[114.39685,22.4274],[114.39673,22.42758],[114.39661,22.42762],[114.39659,22.42765],[114.39688,22.42777],[114.39693,22.42794],[114.39679,22.42808],[114.39673,22.42827],[114.39662,22.42841],[114.39655,22.42846],[114.39637,22.42859],[114.3961,22.42879],[114.39606,22.42889],[114.39603,22.429],[114.39535,22.42917],[114.39526,22.4296],[114.39533,22.42982],[114.39551,22.42987],[114.39542,22.43],[114.39574,22.42995],[114.39582,22.42999],[114.39591,22.43014],[114.39592,22.43021],[114.39614,22.43016],[114.39631,22.43017],[114.39645,22.43021],[114.39663,22.43036],[114.39669,22.43043],[114.39659,22.43053],[114.39655,22.43068],[114.3966,22.43081],[114.3971,22.43057],[114.39729,22.43059],[114.39743,22.43066],[114.39749,22.43074],[114.39746,22.4308],[114.39756,22.43086],[114.39773,22.43093],[114.39776,22.43093],[114.39779,22.43067],[114.39794,22.43063],[114.39808,22.43069],[114.3981,22.43075],[114.39801,22.43083],[114.39803,22.43086],[114.39828,22.43091],[114.39826,22.43113],[114.39833,22.43119],[114.39849,22.43125],[114.39857,22.43117],[114.39861,22.43119],[114.39866,22.4313],[114.39861,22.43139],[114.39864,22.43157],[114.39845,22.43179],[114.39851,22.43187],[114.3987,22.43189],[114.39876,22.43194],[114.39871,22.43199],[114.39862,22.43197],[114.39859,22.432],[114.39861,22.43216],[114.39866,22.43213],[114.39873,22.43218],[114.39871,22.43226],[114.39867,22.43227],[114.39876,22.4327],[114.39873,22.43285],[114.39879,22.43293],[114.39874,22.43316],[114.39872,22.43324],[114.39861,22.43333],[114.39842,22.43328],[114.39821,22.43339],[114.39868,22.43371],[114.39877,22.43369],[114.39886,22.43376],[114.39877,22.434],[114.39865,22.43414],[114.39869,22.43423],[114.39896,22.43433],[114.39907,22.43445],[114.39914,22.43445],[114.39913,22.43439],[114.39923,22.43412],[114.39942,22.43385],[114.39958,22.43381],[114.39978,22.43398],[114.3998,22.43412],[114.39979,22.43417],[114.39982,22.43444],[114.39992,22.43457],[114.39989,22.43439],[114.39991,22.43428],[114.40001,22.43422],[114.40012,22.43421],[114.4002,22.43437],[114.40004,22.43446],[114.39998,22.43455],[114.40002,22.43458],[114.40008,22.43464],[114.40038,22.43476],[114.40046,22.4349],[114.40064,22.435],[114.40063,22.43525],[114.40045,22.4352],[114.40039,22.43539],[114.40041,22.43543],[114.40054,22.43538],[114.40061,22.4354],[114.4009,22.43559],[114.40107,22.43581],[114.40123,22.43589],[114.4012,22.43599],[114.40109,22.43598],[114.40107,22.4361],[114.40112,22.43621],[114.40101,22.43629],[114.40092,22.43629],[114.40084,22.43627],[114.40083,22.43613],[114.40068,22.43617],[114.40056,22.43608],[114.40049,22.43611],[114.40035,22.43641],[114.4002,22.43636],[114.40009,22.43625],[114.39986,22.43615],[114.39971,22.4361],[114.39952,22.43613],[114.39937,22.43615],[114.39928,22.43618],[114.39923,22.4361],[114.39921,22.43598],[114.39911,22.43617],[114.39897,22.43617],[114.39888,22.43616],[114.39877,22.43602],[114.39859,22.43602],[114.39839,22.43609],[114.39821,22.43623],[114.39808,22.43621],[114.39799,22.4362],[114.39789,22.43601],[114.39787,22.4359],[114.39782,22.43594],[114.39776,22.43612],[114.39755,22.43604],[114.39744,22.43601],[114.39732,22.43588],[114.39715,22.43575],[114.39694,22.43561],[114.39683,22.4356],[114.39677,22.43533],[114.39688,22.43484],[114.39685,22.43474],[114.39694,22.43445],[114.3969,22.43449],[114.39648,22.43528],[114.39639,22.43558],[114.39629,22.43572],[114.39613,22.43581],[114.39591,22.43585],[114.39567,22.43578],[114.3956,22.43596],[114.39559,22.43606],[114.39569,22.43613],[114.39577,22.43631],[114.3956,22.43648],[114.39551,22.43645],[114.39548,22.43648],[114.3956,22.43662],[114.39557,22.43699],[114.39554,22.43702],[114.39545,22.43705],[114.39534,22.43711],[114.39522,22.43709],[114.39512,22.437],[114.39505,22.43687],[114.39496,22.43706],[114.39493,22.43709],[114.39502,22.4372],[114.395,22.43736],[114.39508,22.43751],[114.39507,22.43773],[114.395,22.43782],[114.39498,22.4379],[114.3949,22.43792],[114.39487,22.43786],[114.39478,22.4378],[114.39472,22.43796],[114.3947,22.43809],[114.39466,22.43815],[114.39456,22.43823],[114.39435,22.43829],[114.39411,22.43825],[114.39404,22.43817],[114.39403,22.4381],[114.39377,22.43818],[114.39354,22.4378],[114.39347,22.43772],[114.39336,22.43769],[114.39322,22.43749],[114.39314,22.43744],[114.39292,22.43709],[114.39279,22.43701],[114.39269,22.43701],[114.39259,22.43695],[114.3925,22.43697],[114.392,22.43729],[114.39206,22.43734],[114.39203,22.43748],[114.39194,22.43759],[114.39166,22.43782],[114.39171,22.43793],[114.39177,22.43795],[114.39176,22.43798],[114.39152,22.43819],[114.3917,22.43835],[114.39175,22.43869],[114.39172,22.43882],[114.39166,22.43881],[114.39163,22.43892],[114.39176,22.4389],[114.39194,22.439],[114.39195,22.43902],[114.39205,22.43923],[114.39207,22.43931],[114.39217,22.43938],[114.39214,22.43943],[114.39184,22.43957],[114.39204,22.43965],[114.39184,22.43985],[114.39208,22.43978],[114.39204,22.43987],[114.39205,22.43992],[114.39206,22.43995],[114.3921,22.44005],[114.39213,22.4401],[114.39237,22.44007],[114.39247,22.44011],[114.39251,22.44019],[114.39246,22.44031],[114.39244,22.4404],[114.39242,22.44043],[114.39232,22.44049],[114.39222,22.44054],[114.39219,22.44056],[114.39193,22.4406],[114.39181,22.44084],[114.3917,22.44083],[114.39165,22.44079],[114.39164,22.44071],[114.39157,22.44067],[114.39159,22.44059],[114.39172,22.44056],[114.39162,22.44052],[114.39152,22.44054],[114.39155,22.44045],[114.39152,22.44036],[114.39145,22.44031],[114.39125,22.4402],[114.39127,22.44013],[114.39121,22.44001],[114.39124,22.43989],[114.39132,22.43984],[114.39133,22.43978],[114.39131,22.43971],[114.39122,22.43967],[114.39122,22.43961],[114.39132,22.43956],[114.39128,22.43936],[114.39122,22.43925],[114.39109,22.43915],[114.39089,22.43905],[114.39076,22.43912],[114.3907,22.43909],[114.39057,22.43918],[114.39051,22.4391],[114.39064,22.43893],[114.3906,22.43888],[114.39033,22.43885],[114.39033,22.43891],[114.39029,22.43891],[114.39024,22.43886],[114.39029,22.43877],[114.39019,22.43871],[114.39008,22.43879],[114.38992,22.4388],[114.3897,22.43877],[114.38967,22.43858],[114.38949,22.4386],[114.38926,22.43869],[114.38911,22.43868],[114.3889,22.43853],[114.38886,22.43875],[114.38879,22.4389],[114.38871,22.43882],[114.38867,22.43896],[114.38867,22.43902],[114.38838,22.43906],[114.38834,22.43901],[114.38825,22.439],[114.38806,22.43905],[114.38787,22.43902],[114.38777,22.43895],[114.38782,22.43886],[114.38781,22.43875],[114.38775,22.43881],[114.38752,22.43886],[114.38745,22.43878],[114.38737,22.43872],[114.38712,22.43869],[114.38694,22.43867],[114.38688,22.4386],[114.38664,22.43842],[114.38646,22.43839],[114.38625,22.43841],[114.38613,22.43832],[114.38608,22.43833],[114.38607,22.43841],[114.38601,22.4384],[114.38598,22.43838],[114.38583,22.43833],[114.38572,22.43832],[114.38551,22.43819],[114.38538,22.43817],[114.38533,22.43816],[114.38511,22.43818],[114.38491,22.43832],[114.38481,22.4383],[114.38474,22.43823],[114.38484,22.43816],[114.38468,22.4381],[114.38447,22.43814],[114.38438,22.43799],[114.38439,22.43792],[114.38431,22.43782],[114.38424,22.43774],[114.3841,22.43762],[114.38409,22.43753],[114.38404,22.43744],[114.38371,22.43711],[114.38358,22.437],[114.38323,22.43685],[114.3831,22.43671],[114.38294,22.43662],[114.38246,22.43643],[114.3823,22.43631],[114.3822,22.43628],[114.38128,22.43629],[114.38019,22.43648],[114.37917,22.4368],[114.37891,22.4369],[114.3788,22.43699],[114.3786,22.43706],[114.37851,22.43701],[114.37844,22.43703],[114.37824,22.43709],[114.37795,22.43723],[114.37791,22.43728],[114.37793,22.43739],[114.37783,22.43734],[114.3777,22.4374],[114.37692,22.43797],[114.37687,22.4381],[114.37677,22.43823],[114.3768,22.43847],[114.37668,22.4386],[114.37658,22.43861],[114.37649,22.43861],[114.37644,22.43843],[114.37639,22.43848],[114.37621,22.43851],[114.37616,22.43854],[114.37591,22.43859],[114.37575,22.43858],[114.3757,22.43863],[114.37565,22.43855],[114.37554,22.43851],[114.37545,22.43843],[114.37539,22.43837],[114.37531,22.43837],[114.3751,22.43847],[114.37512,22.43858],[114.37505,22.43874],[114.37498,22.43861],[114.37499,22.43843],[114.3749,22.43837],[114.37487,22.43825],[114.37466,22.43802],[114.37438,22.43796],[114.37437,22.43798],[114.37444,22.43802],[114.37445,22.43806],[114.37444,22.43813],[114.37436,22.43813],[114.37423,22.43806],[114.37428,22.43797],[114.37426,22.4379],[114.37417,22.43792],[114.37414,22.43798],[114.37404,22.43797],[114.37405,22.43799],[114.37398,22.438],[114.374,22.43802],[114.37383,22.43806],[114.37365,22.43804],[114.37356,22.438],[114.37356,22.43797],[114.37349,22.43792],[114.37339,22.43801],[114.37314,22.43797],[114.37304,22.43793],[114.37291,22.43787],[114.37276,22.4378],[114.37267,22.43765],[114.37248,22.43753],[114.37235,22.43735],[114.37213,22.43723],[114.37205,22.43714],[114.37194,22.43708],[114.37194,22.43711],[114.37186,22.43709],[114.37179,22.43693],[114.37174,22.4369],[114.37163,22.43687],[114.37137,22.43689],[114.37068,22.43715],[114.37027,22.43744],[114.36982,22.43771],[114.36971,22.43776],[114.36966,22.43779],[114.36959,22.43785],[114.36953,22.43788],[114.3695,22.43795],[114.36951,22.43798],[114.36951,22.438],[114.3695,22.43803],[114.36947,22.43807],[114.36945,22.43811],[114.36944,22.43814],[114.36945,22.43816],[114.3695,22.4382],[114.36953,22.43823],[114.36957,22.43837],[114.36952,22.43864],[114.36953,22.43886],[114.36933,22.4391],[114.36934,22.43916],[114.3692,22.4393],[114.36933,22.43933],[114.36932,22.43945],[114.36922,22.43956],[114.3691,22.4395],[114.36914,22.4396],[114.36917,22.43982],[114.36913,22.43987],[114.36902,22.43983],[114.36908,22.43995],[114.369,22.44026],[114.3689,22.44051],[114.36876,22.44077],[114.36862,22.44092],[114.3685,22.44097],[114.36848,22.44112],[114.36851,22.44122],[114.36837,22.44132],[114.36838,22.44139],[114.36835,22.44156],[114.36835,22.44161],[114.36819,22.4418],[114.36775,22.44271],[114.36766,22.44319],[114.36762,22.44339],[114.36737,22.44397],[114.36721,22.44429],[114.36702,22.44447],[114.36677,22.4448],[114.3667,22.44496],[114.36659,22.44538],[114.36652,22.44588],[114.36656,22.44704],[114.36664,22.44734],[114.36707,22.44774],[114.36715,22.44785],[114.36721,22.44784],[114.36727,22.44781],[114.36746,22.44783],[114.36776,22.44783],[114.36815,22.44791],[114.36831,22.44807],[114.36822,22.44814],[114.36822,22.44822],[114.36836,22.44845],[114.36881,22.44884],[114.36901,22.4491],[114.36913,22.44913],[114.36924,22.44926],[114.36962,22.4496],[114.36968,22.4498],[114.36978,22.4512],[114.36999,22.45246],[114.37014,22.45294],[114.37013,22.45312],[114.37019,22.45347],[114.37017,22.45384],[114.37016,22.45409],[114.37013,22.45421],[114.37,22.45435],[114.36977,22.45461],[114.36968,22.45474],[114.36964,22.45527],[114.36968,22.45533],[114.36962,22.45542],[114.36956,22.45545],[114.36941,22.4555],[114.36912,22.45562],[114.3689,22.45581],[114.36821,22.45624],[114.36802,22.45643],[114.36785,22.45657],[114.36767,22.45684],[114.36745,22.45732],[114.36728,22.45781],[114.3673,22.45798],[114.3671,22.45808],[114.36705,22.45831],[114.36692,22.45844],[114.36693,22.45859],[114.36674,22.45851],[114.3666,22.45864],[114.36632,22.45883],[114.36627,22.45885],[114.36611,22.45888],[114.36599,22.45896],[114.36586,22.45897],[114.36563,22.45911],[114.36542,22.45912],[114.36484,22.45933],[114.36408,22.45952],[114.36347,22.45982],[114.36316,22.45993],[114.36304,22.46002],[114.36294,22.46004],[114.36257,22.46024],[114.36208,22.4604],[114.36113,22.46086],[114.36105,22.46086],[114.36075,22.46068],[114.36071,22.46056],[114.36085,22.46041],[114.36078,22.4603],[114.36077,22.46029],[114.36084,22.46025],[114.36092,22.46039],[114.36096,22.46037],[114.36095,22.46034],[114.36108,22.46028],[114.36121,22.46021],[114.36116,22.46013],[114.3612,22.4601],[114.36124,22.46016],[114.36128,22.46026],[114.36141,22.46018],[114.36141,22.46018],[114.36144,22.46015],[114.36146,22.46018],[114.36151,22.46015],[114.36145,22.46008],[114.36148,22.46005],[114.36147,22.46004],[114.3615,22.46002],[114.36153,22.46005],[114.36154,22.46003],[114.36154,22.46003],[114.36161,22.45997],[114.36167,22.46],[114.36171,22.45994],[114.36163,22.4599],[114.36164,22.45986],[114.36144,22.45977],[114.36146,22.45974],[114.36169,22.45983],[114.36164,22.45955],[114.36163,22.45954],[114.36162,22.45951],[114.36154,22.45953],[114.36153,22.45952],[114.3616,22.45949],[114.36157,22.45944],[114.36155,22.45945],[114.3615,22.45937],[114.36155,22.45935],[114.36153,22.45933],[114.36144,22.45938],[114.36141,22.45934],[114.36138,22.45926],[114.36132,22.45918],[114.36136,22.45916],[114.36135,22.45914],[114.36133,22.45916],[114.36126,22.45914],[114.36113,22.45897],[114.36108,22.45879],[114.36101,22.45864],[114.36109,22.45861],[114.36102,22.45847],[114.36061,22.45861],[114.36062,22.45863],[114.36052,22.45866],[114.36043,22.45842],[114.36052,22.45838],[114.3606,22.45858],[114.36101,22.45844],[114.36099,22.45838],[114.36098,22.45834],[114.36095,22.45804],[114.36064,22.45758],[114.36069,22.4574],[114.36065,22.45725],[114.36052,22.45705],[114.36054,22.4568],[114.36057,22.45637],[114.36062,22.45628],[114.36081,22.45567],[114.36077,22.45547],[114.36083,22.45525],[114.36097,22.45503],[114.36103,22.4548],[114.36122,22.45445],[114.36122,22.45433],[114.36158,22.45409],[114.3617,22.45393],[114.3617,22.45375],[114.36162,22.45374],[114.36163,22.4537],[114.36171,22.45371],[114.36176,22.45369],[114.36174,22.45362],[114.36186,22.45317],[114.36218,22.45261],[114.36226,22.45256],[114.36225,22.45247],[114.3622,22.45242],[114.36219,22.45234],[114.36202,22.45225],[114.36171,22.45191],[114.36152,22.45177],[114.36115,22.45156],[114.36089,22.45148],[114.36065,22.45154],[114.36026,22.45187],[114.35999,22.45204],[114.35974,22.45205],[114.35962,22.45216],[114.35928,22.45223],[114.35918,22.45229],[114.35907,22.45229],[114.35889,22.45242],[114.3586,22.45243],[114.35849,22.45251],[114.35832,22.45234],[114.35839,22.45229],[114.35838,22.45224],[114.35809,22.45184],[114.35785,22.45159],[114.35773,22.45151],[114.35762,22.4515],[114.35746,22.45132],[114.35735,22.45111],[114.35734,22.45102],[114.35726,22.45088],[114.35717,22.45065],[114.35711,22.45048],[114.3571,22.45017],[114.35722,22.44998],[114.35725,22.44993],[114.35718,22.44992],[114.35707,22.44978],[114.35693,22.44972],[114.35677,22.44978],[114.35671,22.44989],[114.35655,22.45001],[114.35646,22.45],[114.3563,22.44989],[114.35612,22.44993],[114.35596,22.44989],[114.35591,22.44969],[114.3558,22.44951],[114.35572,22.44937],[114.35566,22.44934],[114.35543,22.44923],[114.35518,22.4492],[114.35495,22.44938],[114.35488,22.44953],[114.35486,22.4497],[114.35496,22.44979],[114.35487,22.45055],[114.35466,22.45058],[114.35445,22.45067],[114.35421,22.45062],[114.35386,22.45047],[114.35358,22.45031],[114.35329,22.45023],[114.3529,22.44994],[114.3526,22.4495],[114.3525,22.44945],[114.35242,22.44908],[114.35242,22.44891],[114.35271,22.44866],[114.35301,22.44857],[114.353,22.44854],[114.35295,22.44844],[114.35297,22.44843],[114.35294,22.44836],[114.35292,22.44837],[114.3529,22.44833],[114.35297,22.4483],[114.35298,22.44834],[114.35295,22.44836],[114.35299,22.44842],[114.353,22.44842],[114.35306,22.44851],[114.35313,22.44859],[114.35318,22.44853],[114.35325,22.44848],[114.35353,22.44835],[114.35378,22.44795],[114.354,22.44781],[114.35415,22.44765],[114.35413,22.4475],[114.35408,22.44742],[114.35418,22.4471],[114.35418,22.44679],[114.35407,22.44657],[114.35403,22.4463],[114.35389,22.44598],[114.35373,22.44577],[114.35367,22.4455],[114.35377,22.44529],[114.35376,22.4452],[114.35397,22.44508],[114.35401,22.44507],[114.35434,22.44503],[114.35439,22.44502],[114.35445,22.44504],[114.35464,22.4451],[114.35493,22.44527],[114.35503,22.44549],[114.35501,22.44564],[114.35515,22.44577],[114.3552,22.44572],[114.35524,22.44574],[114.35523,22.44579],[114.35629,22.44604],[114.35653,22.44613],[114.35685,22.44607],[114.35672,22.44577],[114.35661,22.44561],[114.35663,22.44548],[114.35648,22.44543],[114.35644,22.4452],[114.35618,22.44494],[114.35611,22.44479],[114.35564,22.44416],[114.35559,22.44409],[114.35542,22.44343],[114.35532,22.44339],[114.35525,22.44321],[114.35521,22.44311],[114.35517,22.44289],[114.35504,22.44264],[114.35504,22.44244],[114.35529,22.44223],[114.35534,22.44199],[114.35533,22.44187],[114.35509,22.44122],[114.35493,22.44102],[114.35498,22.44082],[114.35506,22.44066],[114.35515,22.44062],[114.35522,22.44044],[114.35546,22.44033],[114.35569,22.44001],[114.35575,22.43998],[114.35589,22.43999],[114.35598,22.43994],[114.35605,22.43972],[114.356,22.4394],[114.3557,22.43911],[114.35562,22.43886],[114.35551,22.43868],[114.35551,22.43867],[114.35548,22.43852],[114.35508,22.43809],[114.35498,22.43795],[114.35491,22.43778],[114.35486,22.43763],[114.35466,22.43746],[114.35449,22.43724],[114.3545,22.4371],[114.35456,22.43695],[114.35457,22.43643],[114.35457,22.43619],[114.35453,22.43602],[114.35446,22.43592],[114.35447,22.43586],[114.3543,22.43553],[114.35425,22.43516],[114.35438,22.43496],[114.35467,22.43467],[114.35484,22.43472],[114.35506,22.43459],[114.35509,22.43448],[114.35521,22.43436],[114.35525,22.43423],[114.35527,22.43419],[114.35521,22.43389],[114.35518,22.43378],[114.3551,22.43372],[114.35502,22.43375],[114.35431,22.43338],[114.35391,22.43356],[114.3539,22.43355],[114.35395,22.43353],[114.35394,22.43352],[114.35426,22.43337],[114.35425,22.43335],[114.35428,22.43333],[114.35429,22.43328],[114.35419,22.43314],[114.35412,22.43291],[114.35411,22.43261],[114.35423,22.43246],[114.35409,22.43212],[114.35397,22.43197],[114.35394,22.43179],[114.354,22.43156],[114.35413,22.43148],[114.35416,22.43142],[114.35405,22.43091],[114.35409,22.43062],[114.35423,22.43051],[114.35425,22.4304],[114.35441,22.43032],[114.35454,22.43005],[114.35458,22.42962],[114.35459,22.42953],[114.35461,22.42937],[114.35445,22.42897],[114.35433,22.42879],[114.35414,22.42865],[114.35379,22.42853],[114.3536,22.42837],[114.35361,22.42801],[114.3537,22.42788],[114.35425,22.42774],[114.35452,22.42772],[114.35493,22.42762],[114.3553,22.42768],[114.35541,22.42762],[114.35547,22.42763],[114.35546,22.42759],[114.35557,22.42734],[114.35558,22.4273],[114.35558,22.42708],[114.35553,22.42705],[114.35521,22.42702],[114.35489,22.42691],[114.35472,22.42675],[114.35473,22.42663],[114.35474,22.42662],[114.35474,22.4266],[114.35499,22.42627],[114.35542,22.42604],[114.35558,22.42589],[114.35586,22.42587],[114.35601,22.42572],[114.35606,22.42546],[114.35621,22.4252],[114.35627,22.42491],[114.35625,22.4247],[114.35596,22.42472],[114.35572,22.42486],[114.35512,22.42479],[114.3549,22.42464],[114.35479,22.42461],[114.35481,22.42476],[114.35478,22.42483],[114.35454,22.42479],[114.35433,22.42467],[114.35413,22.42465],[114.35358,22.42498],[114.35351,22.42497],[114.35353,22.42493],[114.35349,22.42487],[114.35361,22.4248],[114.35365,22.42486],[114.35402,22.42464],[114.35385,22.42448],[114.35381,22.42434],[114.35414,22.42403],[114.35424,22.42386],[114.35429,22.42377],[114.35439,22.42364],[114.35444,22.42345],[114.35448,22.42342],[114.35462,22.42347],[114.35543,22.4232],[114.35562,22.42307],[114.3557,22.42278],[114.35587,22.42263],[114.35598,22.42247],[114.35602,22.42239],[114.35608,22.42229],[114.35603,22.42225],[114.35582,22.42238],[114.3556,22.42246],[114.3552,22.42201],[114.35477,22.42197],[114.35467,22.42202],[114.35421,22.42204],[114.35409,22.42209],[114.35399,22.42219],[114.35361,22.42233],[114.35346,22.4223],[114.35337,22.42238],[114.35333,22.42248],[114.35328,22.42249],[114.35318,22.42238],[114.3531,22.42213],[114.35302,22.42208],[114.35288,22.42232],[114.35284,22.42253],[114.35273,22.42271],[114.35276,22.422],[114.35263,22.422],[114.3526,22.42215],[114.35247,22.42237],[114.35242,22.42245],[114.35237,22.42249],[114.35232,22.42247],[114.35232,22.42239],[114.35224,22.42213],[114.35221,22.42211],[114.35211,22.42224],[114.35193,22.42236],[114.35171,22.42256],[114.35157,22.42262],[114.35153,22.42263],[114.35133,22.42259],[114.35113,22.42259],[114.35104,22.42251],[114.35092,22.42231],[114.3509,22.42229],[114.35086,22.42229],[114.35081,22.42232],[114.35078,22.42232],[114.35075,22.42229],[114.35074,22.42225],[114.3507,22.42225],[114.35041,22.42234],[114.3504,22.42232],[114.35068,22.42224],[114.35075,22.42223],[114.35076,22.42217],[114.35061,22.42165],[114.35049,22.42166],[114.35027,22.42156],[114.35025,22.42165],[114.35018,22.4217],[114.34996,22.4217],[114.34994,22.42158],[114.34983,22.4216],[114.34966,22.42163],[114.34972,22.42186],[114.34971,22.42186],[114.34966,22.4217],[114.34955,22.42174],[114.34953,22.42174],[114.34951,22.42174],[114.34951,22.42173],[114.3495,22.42173],[114.34949,22.42168],[114.34948,22.42168],[114.34947,22.42168],[114.34936,22.42172],[114.34922,22.42178],[114.34893,22.42205],[114.3489,22.42215],[114.34881,22.42225],[114.34863,22.42234],[114.34867,22.42263],[114.34857,22.42289],[114.34849,22.42278],[114.3483,22.42299],[114.34823,22.42292],[114.34812,22.42299],[114.34814,22.42309],[114.3481,22.42318],[114.34803,22.42324],[114.34796,22.42324],[114.34788,22.42314],[114.34788,22.42305],[114.34773,22.42311],[114.34762,22.42312],[114.34748,22.42288],[114.34753,22.4228],[114.34737,22.42276],[114.34731,22.42281],[114.34733,22.42294],[114.3473,22.42303],[114.34698,22.42308],[114.34682,22.42318],[114.34675,22.42328],[114.34667,22.42347],[114.34687,22.42345],[114.34693,22.42348],[114.34712,22.42382],[114.34726,22.4244],[114.34715,22.42461],[114.34706,22.42463],[114.34714,22.42471],[114.3472,22.42493],[114.34728,22.42508],[114.34727,22.42522],[114.34741,22.42521],[114.3476,22.42534],[114.3478,22.42537],[114.34798,22.42545],[114.34821,22.42562],[114.34824,22.42573],[114.34834,22.42569],[114.34867,22.4257],[114.34913,22.42593],[114.34932,22.42594],[114.35009,22.42632],[114.35036,22.42635],[114.35059,22.42639],[114.35087,22.42642],[114.35097,22.42651],[114.3506,22.42678],[114.35054,22.42714],[114.35001,22.42746],[114.34977,22.42766],[114.3496,22.42799],[114.34961,22.4281],[114.34947,22.42826],[114.34937,22.42864],[114.34942,22.42877],[114.3495,22.42887],[114.34953,22.42909],[114.34941,22.42933],[114.34932,22.42975],[114.3494,22.42987],[114.34966,22.43004],[114.34961,22.43008],[114.34956,22.43021],[114.34954,22.43041],[114.3493,22.43062],[114.34934,22.43084],[114.3492,22.43118],[114.34907,22.43133],[114.34901,22.43183],[114.34902,22.43205],[114.34893,22.43256],[114.34873,22.43282],[114.34828,22.43313],[114.34824,22.43321],[114.34818,22.43338],[114.348,22.43363],[114.34781,22.43412],[114.34762,22.43426],[114.3476,22.43441],[114.34763,22.43457],[114.34752,22.43475],[114.34744,22.43505],[114.34703,22.43531],[114.34703,22.43553],[114.3469,22.43605],[114.34691,22.43658],[114.34711,22.43696],[114.34724,22.43707],[114.34745,22.43715],[114.34754,22.43732],[114.34758,22.4375],[114.34743,22.43766],[114.34741,22.43787],[114.34734,22.43797],[114.34719,22.43809],[114.34704,22.43845],[114.34689,22.43862],[114.34674,22.43888],[114.34645,22.43909],[114.34646,22.4392],[114.34628,22.43918],[114.34621,22.43915],[114.34612,22.43911],[114.34589,22.4391],[114.34557,22.439],[114.34544,22.43894],[114.34538,22.43885],[114.3452,22.43874],[114.34507,22.4386],[114.34473,22.43852],[114.34464,22.43844],[114.34454,22.43828],[114.34441,22.43837],[114.34437,22.4384],[114.34435,22.43838],[114.34447,22.4383],[114.34452,22.43826],[114.34447,22.43816],[114.34413,22.43815],[114.34407,22.43807],[114.34383,22.43796],[114.34379,22.43788],[114.34364,22.43761],[114.34344,22.43742],[114.34339,22.43726],[114.34301,22.43701],[114.34288,22.43688],[114.34288,22.43655],[114.34282,22.43631],[114.3427,22.43612],[114.34265,22.4361],[114.34255,22.43587],[114.34237,22.43583],[114.34227,22.43566],[114.3421,22.43559],[114.34221,22.43556],[114.34218,22.43543],[114.34199,22.43528],[114.34208,22.43513],[114.34204,22.43497],[114.34219,22.43452],[114.34205,22.43442],[114.34203,22.43437],[114.34206,22.43431],[114.34195,22.43421],[114.34186,22.4342],[114.34184,22.43412],[114.34186,22.43409],[114.34197,22.43412],[114.34205,22.43405],[114.34216,22.43393],[114.34215,22.4339],[114.34208,22.43391],[114.3421,22.43354],[114.34232,22.43333],[114.34234,22.43322],[114.34239,22.43317],[114.34242,22.43315],[114.34242,22.43306],[114.34237,22.43295],[114.34236,22.43295],[114.34227,22.43289],[114.34227,22.43266],[114.34213,22.43256],[114.34196,22.43242],[114.34208,22.43234],[114.34215,22.43226],[114.34205,22.43205],[114.34214,22.43183],[114.34198,22.43171],[114.34191,22.43152],[114.34193,22.43136],[114.34177,22.43124],[114.3416,22.43114],[114.34143,22.43109],[114.34116,22.43086],[114.341,22.43087],[114.34099,22.43099],[114.34079,22.43106],[114.34061,22.43117],[114.34045,22.43121],[114.33989,22.43103],[114.3397,22.43106],[114.33946,22.43116],[114.33943,22.43141],[114.33923,22.43154],[114.33917,22.43164],[114.33888,22.43167],[114.33859,22.43176],[114.33819,22.43173],[114.33805,22.4316],[114.33801,22.4309],[114.33809,22.43084],[114.33825,22.43038],[114.33842,22.43018],[114.33849,22.4295],[114.33853,22.42941],[114.33886,22.42921],[114.33934,22.42911],[114.33953,22.42904],[114.33967,22.4289],[114.33965,22.42876],[114.3397,22.42872],[114.33979,22.42873],[114.33991,22.42883],[114.34011,22.42882],[114.34031,22.42888],[114.34054,22.42905],[114.34061,22.429],[114.3406,22.42887],[114.34069,22.4287],[114.34092,22.42875],[114.34128,22.42867],[114.34143,22.42869],[114.34158,22.42852],[114.34157,22.42843],[114.34141,22.42844],[114.34129,22.42837],[114.34127,22.42824],[114.3412,22.4283],[114.34106,22.42831],[114.3407,22.42813],[114.34022,22.42808],[114.34011,22.428],[114.34006,22.42782],[114.34003,22.42773],[114.33994,22.42768],[114.33983,22.42768],[114.33973,22.42781],[114.33945,22.42788],[114.33908,22.42806],[114.33896,22.42799],[114.33889,22.42787],[114.33882,22.42787],[114.33869,22.42795],[114.33858,22.4282],[114.33778,22.42852],[114.33749,22.42851],[114.33722,22.4284],[114.33679,22.42814],[114.3366,22.42815],[114.33658,22.42816],[114.3366,22.42857],[114.33656,22.42857],[114.33656,22.42856],[114.33659,22.42856],[114.33656,22.42816],[114.33635,22.42808],[114.33623,22.42796],[114.33599,22.42782],[114.33534,22.42768],[114.33517,22.4278],[114.33501,22.42786],[114.33454,22.42778],[114.33451,22.42778],[114.33396,22.42811],[114.33341,22.42833],[114.33331,22.42834],[114.3332,22.42831],[114.33302,22.42868],[114.33311,22.42878],[114.33314,22.42886],[114.33305,22.42892],[114.33299,22.42893],[114.33295,22.42895],[114.33302,22.42897],[114.33314,22.42897],[114.33322,22.42899],[114.33323,22.42906],[114.33308,22.42921],[114.33321,22.42942],[114.33327,22.42945],[114.33379,22.42909],[114.33403,22.42898],[114.33454,22.42899],[114.33473,22.42899],[114.335,22.42906],[114.3353,22.42919],[114.33563,22.4295],[114.33574,22.42981],[114.33577,22.43004],[114.33603,22.43046],[114.33638,22.43067],[114.3366,22.43095],[114.33672,22.43119],[114.33687,22.4316],[114.33688,22.43181],[114.33685,22.43225],[114.33691,22.43264],[114.33707,22.43313],[114.33707,22.43317],[114.33715,22.43317],[114.33723,22.43321],[114.33723,22.43312],[114.33731,22.43312],[114.3373,22.43319],[114.33736,22.43319],[114.33742,22.43323],[114.33753,22.43321],[114.33757,22.43343],[114.33745,22.43345],[114.33748,22.43356],[114.33747,22.43367],[114.33758,22.43371],[114.33754,22.4338],[114.33744,22.43376],[114.3373,22.43412],[114.33726,22.43416],[114.3372,22.4344],[114.33717,22.43455],[114.33707,22.43489],[114.33703,22.43498],[114.33694,22.43512],[114.33683,22.43536],[114.33681,22.43539],[114.33684,22.4354],[114.33714,22.43556],[114.33725,22.43561],[114.33736,22.43543],[114.33744,22.43547],[114.33729,22.43573],[114.3371,22.43563],[114.33681,22.43548],[114.33668,22.43574],[114.33635,22.43615],[114.33611,22.43635],[114.33555,22.43694],[114.33519,22.43711],[114.3349,22.43732],[114.33455,22.43737],[114.33452,22.43737],[114.33445,22.43749],[114.33415,22.438],[114.3341,22.43842],[114.3341,22.43894],[114.33409,22.43901],[114.33406,22.43906],[114.33386,22.43922],[114.33381,22.43924],[114.33374,22.43924],[114.33371,22.43922],[114.33356,22.43879],[114.33327,22.43849],[114.33285,22.43851],[114.3325,22.4384],[114.3326,22.43849],[114.33272,22.43854],[114.33288,22.43862],[114.33322,22.43869],[114.33325,22.43871],[114.33327,22.43873],[114.33328,22.43875],[114.33329,22.43877],[114.33329,22.43879],[114.33328,22.43881],[114.33327,22.43882],[114.33326,22.43883],[114.33325,22.43883],[114.33324,22.43883],[114.33319,22.43881],[114.33316,22.43883],[114.33319,22.439],[114.33319,22.43904],[114.33316,22.43908],[114.33298,22.43928],[114.33297,22.43931],[114.33297,22.43933],[114.33298,22.43936],[114.333,22.43937],[114.33303,22.43937],[114.33308,22.43937],[114.33325,22.43934],[114.33323,22.43945],[114.33304,22.43948],[114.33272,22.43939],[114.33271,22.43951],[114.33294,22.43978],[114.33293,22.4398],[114.33299,22.43985],[114.33305,22.43987],[114.33303,22.43991],[114.33297,22.43989],[114.3329,22.43985],[114.33285,22.4399],[114.33282,22.43998],[114.3329,22.44008],[114.33299,22.44013],[114.33311,22.44004],[114.33321,22.44002],[114.33349,22.44008],[114.33361,22.44014],[114.33379,22.44035],[114.33384,22.4405],[114.33384,22.44062],[114.33401,22.44093],[114.33411,22.44105],[114.33422,22.44106],[114.33453,22.44136],[114.33456,22.44136],[114.33457,22.44136],[114.33461,22.44124],[114.33468,22.44121],[114.33475,22.4413],[114.33477,22.4414],[114.33499,22.44119],[114.33497,22.44094],[114.33516,22.44082],[114.3353,22.44089],[114.33558,22.44113],[114.33594,22.44101],[114.33661,22.44097],[114.33668,22.44104],[114.33689,22.4411],[114.33701,22.44101],[114.33712,22.44076],[114.33708,22.44067],[114.33722,22.4405],[114.33726,22.4404],[114.33754,22.44034],[114.3379,22.44049],[114.33795,22.44027],[114.33808,22.44024],[114.33824,22.44038],[114.33842,22.44036],[114.33871,22.44042],[114.33896,22.4405],[114.33906,22.44058],[114.3392,22.44101],[114.33919,22.44111],[114.33931,22.44128],[114.33945,22.44135],[114.33956,22.44158],[114.33992,22.44174],[114.34014,22.4417],[114.3404,22.44178],[114.34048,22.4419],[114.34056,22.44208],[114.34071,22.44275],[114.34074,22.44286],[114.34082,22.44295],[114.34085,22.44311],[114.3409,22.44316],[114.34091,22.44322],[114.34099,22.44359],[114.34119,22.44381],[114.34128,22.44398],[114.34127,22.44434],[114.34133,22.44437],[114.34148,22.44436],[114.34155,22.44447],[114.34144,22.44466],[114.34149,22.44474],[114.34154,22.44548],[114.34143,22.44606],[114.34138,22.44627],[114.34112,22.44672],[114.34131,22.44683],[114.34134,22.44694],[114.34121,22.4471],[114.34109,22.44714],[114.34086,22.44702],[114.34061,22.44715],[114.33961,22.44747],[114.33923,22.44782],[114.33895,22.44793],[114.33883,22.44793],[114.33874,22.44801],[114.33829,22.44815],[114.33807,22.44844],[114.33796,22.44865],[114.33796,22.44879],[114.338,22.44888],[114.3382,22.44902],[114.33826,22.44916],[114.33851,22.44949],[114.33854,22.44986],[114.33871,22.44999],[114.33877,22.45009],[114.33878,22.45047],[114.33866,22.45094],[114.33858,22.45118],[114.3386,22.45132],[114.33847,22.45165],[114.33839,22.4518],[114.33822,22.45214],[114.33816,22.45229],[114.33809,22.45238],[114.33792,22.45262],[114.33788,22.45273],[114.33758,22.45309],[114.33746,22.45341],[114.33731,22.45356],[114.33719,22.45357],[114.33713,22.45362],[114.33703,22.45374],[114.33698,22.45411],[114.33699,22.45417],[114.33701,22.45422],[114.33706,22.45442],[114.3371,22.45457],[114.33703,22.45491],[114.33719,22.45523],[114.33719,22.45541],[114.33742,22.4555],[114.33755,22.45551],[114.33776,22.45566],[114.33778,22.45597],[114.33791,22.45614],[114.33797,22.4562],[114.33811,22.45659],[114.3382,22.45675],[114.33812,22.45689],[114.33806,22.45691],[114.33798,22.45699],[114.33804,22.45706],[114.33817,22.45702],[114.33826,22.45709],[114.33828,22.45767],[114.33832,22.45792],[114.33836,22.45799],[114.33853,22.45821],[114.33853,22.45841],[114.33847,22.45865],[114.33856,22.45878],[114.33867,22.45928],[114.33873,22.45936],[114.33874,22.45968],[114.33862,22.4599],[114.33844,22.46059],[114.33817,22.46115],[114.33806,22.46162],[114.33794,22.46189],[114.33775,22.4626],[114.33782,22.46274],[114.33828,22.46316],[114.33849,22.46318],[114.3387,22.46325],[114.33907,22.46327],[114.33938,22.46314],[114.3397,22.46307],[114.34018,22.46287],[114.34042,22.46261],[114.34049,22.46248],[114.34115,22.46244],[114.34149,22.46226],[114.34169,22.46157],[114.34171,22.46143],[114.34215,22.46122],[114.34227,22.4613],[114.34314,22.46123],[114.34368,22.46069],[114.34372,22.46066],[114.34383,22.46062],[114.34415,22.46061],[114.34438,22.46061],[114.34469,22.46065],[114.34488,22.46082],[114.34501,22.46085],[114.34508,22.46105],[114.34514,22.46108],[114.34536,22.46144],[114.34568,22.4616],[114.3459,22.46165],[114.34602,22.46156],[114.34627,22.46152],[114.34652,22.46156],[114.34658,22.46162],[114.34664,22.4618],[114.34661,22.46217],[114.34671,22.46243],[114.34683,22.46256],[114.34705,22.46268],[114.34708,22.46278],[114.34718,22.46288],[114.34721,22.46303],[114.34722,22.46318],[114.34718,22.4634],[114.34712,22.46366],[114.34715,22.46373],[114.34702,22.46401],[114.34694,22.46445],[114.34691,22.46453],[114.34668,22.46476],[114.34645,22.46487],[114.34618,22.46504],[114.34612,22.46514],[114.34606,22.46533],[114.34607,22.46557],[114.34594,22.46575],[114.34577,22.46613],[114.34586,22.46632],[114.34579,22.4665],[114.34563,22.46664],[114.34558,22.46704],[114.34557,22.46713],[114.34557,22.4673],[114.34545,22.46762],[114.34549,22.46774],[114.34539,22.46798],[114.34499,22.46842],[114.34486,22.46845],[114.3447,22.46854],[114.34451,22.46855],[114.3444,22.4686],[114.34433,22.46887],[114.34439,22.46907],[114.34429,22.46928],[114.34429,22.46946],[114.34404,22.46986],[114.34389,22.46998],[114.34378,22.47072],[114.34382,22.47107],[114.34385,22.47129],[114.34418,22.47183],[114.34437,22.47186],[114.34448,22.47193],[114.34442,22.47206],[114.34425,22.47221],[114.34407,22.47255],[114.34404,22.47277],[114.34409,22.47314],[114.34402,22.4732],[114.34395,22.47335],[114.34396,22.47341],[114.34386,22.4735],[114.34379,22.47366],[114.34366,22.47419],[114.34367,22.47431],[114.34361,22.47436],[114.34352,22.4746],[114.34345,22.47464],[114.34325,22.47487],[114.34305,22.47529],[114.34299,22.47569],[114.343,22.47579],[114.34309,22.47587],[114.34305,22.47593],[114.34308,22.47597],[114.34298,22.47617],[114.3429,22.47664],[114.34287,22.47679],[114.34273,22.47696],[114.34256,22.47728],[114.34246,22.47771],[114.34244,22.47808],[114.34247,22.47812],[114.3422,22.47843],[114.34198,22.47856],[114.34186,22.47871],[114.34179,22.47874],[114.34164,22.47881],[114.34138,22.47886],[114.3412,22.47883],[114.34106,22.47876],[114.34063,22.4781],[114.34046,22.47792],[114.34041,22.47791],[114.34041,22.47784],[114.34019,22.47756],[114.34016,22.47746],[114.34011,22.47745],[114.33982,22.4767],[114.33961,22.47648],[114.33956,22.47632],[114.33946,22.47614],[114.33944,22.47551],[114.33932,22.47526],[114.33901,22.47514],[114.33884,22.47498],[114.33862,22.47488],[114.33823,22.47505],[114.33784,22.47479],[114.33771,22.47462],[114.33761,22.47439],[114.33768,22.47418],[114.33787,22.47404],[114.33809,22.47399],[114.33843,22.47411],[114.33847,22.47406],[114.33852,22.47408],[114.3385,22.47403],[114.3386,22.47372],[114.33863,22.47338],[114.3393,22.47274],[114.33935,22.47249],[114.33938,22.472],[114.33946,22.47187],[114.3396,22.47178],[114.33969,22.47159],[114.33961,22.47122],[114.33953,22.47077],[114.33944,22.47054],[114.3394,22.47043],[114.33936,22.47014],[114.3389,22.46967],[114.33882,22.46944],[114.33881,22.46921],[114.33859,22.46889],[114.33858,22.4685],[114.33867,22.46825],[114.33867,22.46803],[114.33843,22.46739],[114.33829,22.46723],[114.3382,22.46721],[114.33813,22.46696],[114.33801,22.4668],[114.33774,22.46669],[114.33761,22.46671],[114.33717,22.46668],[114.33676,22.46674],[114.3366,22.46664],[114.33659,22.46657],[114.33643,22.46635],[114.33629,22.46637],[114.33627,22.46636],[114.33623,22.46636],[114.33621,22.46635],[114.3362,22.46633],[114.3362,22.46632],[114.33622,22.46631],[114.33622,22.4663],[114.33623,22.46629],[114.33625,22.46631],[114.33626,22.46634],[114.33627,22.46634],[114.33641,22.46623],[114.33644,22.46591],[114.3367,22.46534],[114.33671,22.46515],[114.33661,22.46477],[114.33665,22.46469],[114.3367,22.46468],[114.33674,22.46448],[114.33681,22.46416],[114.33699,22.46395],[114.33706,22.46362],[114.33715,22.46346],[114.33718,22.46341],[114.3372,22.46337],[114.33723,22.46313],[114.33721,22.46301],[114.33692,22.46294],[114.33676,22.46286],[114.33665,22.46285],[114.33658,22.46275],[114.33614,22.46242],[114.33596,22.46239],[114.3359,22.4624],[114.33577,22.46241],[114.33567,22.46254],[114.33575,22.46285],[114.33571,22.46296],[114.33538,22.463],[114.33518,22.46319],[114.3352,22.46324],[114.33517,22.46326],[114.3349,22.46327],[114.33484,22.46319],[114.33484,22.46304],[114.33494,22.46281],[114.33485,22.46266],[114.33458,22.46256],[114.33453,22.46254],[114.33402,22.46219],[114.33388,22.46218],[114.33379,22.46211],[114.33365,22.46208],[114.33317,22.46206],[114.3331,22.4621],[114.33294,22.4624],[114.3329,22.46261],[114.33288,22.46329],[114.33283,22.46342],[114.3328,22.46347],[114.33256,22.4637],[114.33217,22.4639],[114.33176,22.46393],[114.33143,22.46389],[114.33096,22.46352],[114.33089,22.46342],[114.33074,22.46319],[114.33054,22.463],[114.33038,22.46305],[114.33037,22.46301],[114.33053,22.46296],[114.33049,22.46288],[114.33049,22.46283],[114.33061,22.46272],[114.33053,22.46256],[114.33046,22.46219],[114.33014,22.46193],[114.33009,22.46183],[114.33009,22.46172],[114.32968,22.46136],[114.3296,22.46133],[114.32944,22.46135],[114.32906,22.4615],[114.32906,22.46155],[114.32903,22.46157],[114.32901,22.46158],[114.32898,22.46157],[114.32889,22.46151],[114.32886,22.46148],[114.32886,22.46144],[114.32888,22.4614],[114.32894,22.46137],[114.32896,22.46132],[114.32894,22.4613],[114.32888,22.46129],[114.32881,22.46124],[114.32861,22.46126],[114.32847,22.46131],[114.32827,22.46137],[114.32822,22.46136],[114.32816,22.46137],[114.3281,22.4614],[114.32796,22.46141],[114.3279,22.4614],[114.32775,22.46135],[114.32769,22.4613],[114.32758,22.46106],[114.32754,22.46093],[114.32756,22.46077],[114.32743,22.46066],[114.3273,22.46062],[114.32722,22.46078],[114.32697,22.46071],[114.32688,22.46084],[114.32705,22.46111],[114.32706,22.46119],[114.32702,22.46124],[114.3267,22.46134],[114.32684,22.4615],[114.32692,22.46144],[114.32711,22.46138],[114.32724,22.46129],[114.32726,22.46123],[114.32729,22.46123],[114.3273,22.46126],[114.32727,22.46137],[114.32711,22.46145],[114.3269,22.46165],[114.32705,22.4618],[114.32711,22.46194],[114.32702,22.46238],[114.32694,22.46255],[114.32688,22.46288],[114.32704,22.46342],[114.32743,22.46457],[114.32767,22.46508],[114.32779,22.46526],[114.3278,22.4654],[114.32788,22.46566],[114.32802,22.46588],[114.32822,22.46591],[114.32833,22.46596],[114.32844,22.46624],[114.32859,22.46642],[114.32862,22.4669],[114.32848,22.46712],[114.32846,22.46769],[114.3284,22.46798],[114.32845,22.46828],[114.32855,22.46841],[114.32865,22.46846],[114.32891,22.46843],[114.32904,22.46855],[114.329,22.46887],[114.32886,22.46907],[114.32895,22.46931],[114.32883,22.46965],[114.3289,22.47024],[114.32915,22.47055],[114.32935,22.47089],[114.32963,22.47099],[114.32989,22.47093],[114.33025,22.47094],[114.33077,22.47076],[114.33107,22.47049],[114.33108,22.47039],[114.33096,22.47027],[114.33098,22.4702],[114.33104,22.47017],[114.33113,22.47018],[114.3312,22.47032],[114.3313,22.47031],[114.33145,22.47023],[114.33152,22.47024],[114.33154,22.47028],[114.3315,22.4705],[114.33128,22.47069],[114.33091,22.47127],[114.33092,22.47143],[114.33109,22.47176],[114.3312,22.47283],[114.33126,22.47303],[114.33089,22.47353],[114.33046,22.47389],[114.33017,22.474],[114.32986,22.47397],[114.32971,22.47391],[114.32963,22.47384],[114.32928,22.47342],[114.32919,22.47322],[114.32918,22.47307],[114.32911,22.47297],[114.32903,22.47273],[114.32853,22.47241],[114.32841,22.47191],[114.32847,22.47167],[114.32842,22.47127],[114.32834,22.47115],[114.32796,22.47107],[114.32779,22.47108],[114.32706,22.4714],[114.32661,22.47151],[114.32613,22.4716],[114.32582,22.47141],[114.32562,22.47132],[114.32547,22.47119],[114.32516,22.47115],[114.32509,22.47117],[114.32513,22.47134],[114.32502,22.47147],[114.32448,22.47174],[114.32424,22.47203],[114.32387,22.47232],[114.32369,22.47269],[114.32371,22.47298],[114.32362,22.47316],[114.32347,22.47328],[114.32326,22.47323],[114.32305,22.4735],[114.323,22.47363],[114.32293,22.47399],[114.32284,22.47494],[114.32289,22.47502],[114.32296,22.47523],[114.32332,22.47558],[114.3235,22.47596],[114.32351,22.47613],[114.32366,22.4766],[114.32341,22.47773]]],[[[114.33412,22.47938],[114.33413,22.47945],[114.33422,22.47948],[114.33429,22.47959],[114.33429,22.47967],[114.33427,22.47976],[114.33432,22.47982],[114.33428,22.4799],[114.33429,22.48004],[114.33424,22.48008],[114.33415,22.48016],[114.33414,22.48025],[114.33406,22.48026],[114.33392,22.48041],[114.33394,22.48046],[114.33382,22.48049],[114.33361,22.48048],[114.33336,22.48036],[114.33334,22.48027],[114.33323,22.48021],[114.33325,22.47991],[114.33384,22.47945],[114.33391,22.4793],[114.33397,22.4793],[114.33412,22.47938]]],[[[114.33401,22.4805],[114.33402,22.48052],[114.33394,22.48056],[114.33392,22.48056],[114.33391,22.48052],[114.33393,22.48049],[114.33396,22.48048],[114.33401,22.4805]]],[[[114.33139,22.47684],[114.33149,22.47714],[114.3317,22.47754],[114.33174,22.47785],[114.33188,22.47824],[114.33188,22.47967],[114.33188,22.4798],[114.3318,22.48008],[114.33153,22.48044],[114.33128,22.48065],[114.33115,22.4807],[114.3309,22.48068],[114.33085,22.48058],[114.33077,22.48056],[114.33072,22.48047],[114.33062,22.47965],[114.33057,22.47947],[114.33062,22.47918],[114.33056,22.47882],[114.33065,22.47853],[114.33069,22.47798],[114.3308,22.47768],[114.33071,22.47737],[114.33071,22.47711],[114.33089,22.47682],[114.33101,22.47677],[114.33121,22.47676],[114.33139,22.47684]]],[[[114.36974,22.48275],[114.36974,22.48277],[114.36974,22.48279],[114.36973,22.4828],[114.3697,22.48281],[114.36968,22.48285],[114.36966,22.48287],[114.36963,22.48287],[114.36962,22.48288],[114.3696,22.48289],[114.36959,22.48289],[114.36958,22.48289],[114.36958,22.48288],[114.36956,22.48286],[114.36952,22.48286],[114.36951,22.48285],[114.36953,22.48284],[114.36955,22.48283],[114.36957,22.48282],[114.36958,22.48279],[114.36961,22.48278],[114.36964,22.48275],[114.36969,22.48275],[114.36974,22.48275]]],[[[114.37183,22.48278],[114.37184,22.48279],[114.37184,22.48281],[114.37184,22.48282],[114.37186,22.48285],[114.37186,22.48286],[114.37185,22.48288],[114.37185,22.48289],[114.37187,22.48289],[114.37195,22.48291],[114.37195,22.48292],[114.37193,22.48296],[114.37191,22.48298],[114.37186,22.48298],[114.37183,22.48302],[114.37179,22.48303],[114.37174,22.48301],[114.37172,22.48298],[114.37176,22.48289],[114.37176,22.48288],[114.37175,22.48288],[114.37172,22.48287],[114.37172,22.48285],[114.37175,22.48279],[114.37182,22.48278],[114.37183,22.48278]]],[[[114.33285,22.48317],[114.33286,22.48318],[114.33286,22.48319],[114.33286,22.48319],[114.33284,22.4832],[114.33281,22.4832],[114.33279,22.48319],[114.33278,22.48319],[114.33278,22.48318],[114.33278,22.48318],[114.33279,22.48318],[114.33284,22.48317],[114.33285,22.48317]]],[[[114.37206,22.48308],[114.37176,22.48321],[114.37161,22.48317],[114.3716,22.48307],[114.37161,22.48305],[114.37168,22.48302],[114.37182,22.48305],[114.37197,22.483],[114.37204,22.4829],[114.37208,22.48281],[114.37214,22.48276],[114.37222,22.48277],[114.37231,22.48273],[114.37228,22.48267],[114.3723,22.48263],[114.37238,22.48261],[114.37253,22.48264],[114.37258,22.48263],[114.37261,22.48259],[114.37275,22.48249],[114.3729,22.48243],[114.37294,22.48244],[114.37294,22.48249],[114.37286,22.48258],[114.37277,22.48264],[114.37272,22.48268],[114.37271,22.48277],[114.37267,22.48279],[114.37258,22.48278],[114.37252,22.4828],[114.37246,22.48278],[114.37243,22.48287],[114.37234,22.48293],[114.37227,22.48297],[114.37221,22.48297],[114.3722,22.48294],[114.37217,22.48294],[114.37206,22.48308]]],[[[114.36986,22.48362],[114.36985,22.48368],[114.36984,22.48368],[114.36978,22.48371],[114.36977,22.48371],[114.36976,22.4837],[114.36977,22.48369],[114.3698,22.48362],[114.36983,22.4836],[114.36986,22.48362]]],[[[114.3699,22.48374],[114.36989,22.48378],[114.36987,22.48378],[114.36986,22.48378],[114.36986,22.48377],[114.36986,22.48375],[114.36987,22.48372],[114.36989,22.48372],[114.3699,22.48374]]],[[[114.37,22.48376],[114.37,22.4838],[114.37,22.48382],[114.36998,22.48382],[114.36994,22.4838],[114.36993,22.48379],[114.36994,22.48376],[114.36996,22.48375],[114.37,22.48376]]],[[[114.37042,22.4842],[114.37039,22.4842],[114.37035,22.48416],[114.37028,22.48407],[114.37028,22.48405],[114.37023,22.48403],[114.37021,22.48404],[114.37002,22.48386],[114.37004,22.48379],[114.37005,22.48379],[114.37006,22.48378],[114.37007,22.48375],[114.37007,22.48373],[114.37008,22.48372],[114.37005,22.48365],[114.37006,22.48363],[114.37011,22.48359],[114.37014,22.48352],[114.37016,22.48349],[114.3702,22.48348],[114.3702,22.48343],[114.37022,22.48341],[114.37026,22.48339],[114.37034,22.48338],[114.37038,22.48335],[114.37045,22.48334],[114.37044,22.48341],[114.37046,22.48341],[114.37049,22.48338],[114.37053,22.48334],[114.37054,22.48333],[114.37057,22.48333],[114.37061,22.48334],[114.37062,22.48336],[114.37064,22.48335],[114.37067,22.48333],[114.3707,22.48334],[114.37071,22.48334],[114.37071,22.48331],[114.37071,22.48328],[114.37075,22.48324],[114.37078,22.48323],[114.37082,22.4832],[114.37088,22.4832],[114.37091,22.48318],[114.37095,22.48318],[114.37102,22.48313],[114.3711,22.48309],[114.37113,22.4831],[114.37115,22.48312],[114.37122,22.48311],[114.37125,22.48312],[114.37126,22.4831],[114.37123,22.48309],[114.37122,22.48308],[114.37131,22.483],[114.37135,22.483],[114.37137,22.48302],[114.37137,22.48304],[114.37139,22.48305],[114.37141,22.48303],[114.37149,22.48311],[114.37147,22.48313],[114.37145,22.48315],[114.37139,22.48316],[114.37147,22.48316],[114.37148,22.48316],[114.37153,22.48319],[114.37154,22.48321],[114.37152,22.4833],[114.3714,22.4834],[114.37137,22.48341],[114.37133,22.48341],[114.37122,22.48348],[114.37122,22.4835],[114.37121,22.48355],[114.37112,22.48365],[114.37098,22.48375],[114.37093,22.48378],[114.37092,22.48384],[114.37089,22.48389],[114.37085,22.48393],[114.37076,22.48394],[114.37069,22.48403],[114.3706,22.48405],[114.37058,22.48406],[114.37061,22.48411],[114.3706,22.48412],[114.37056,22.48414],[114.37053,22.48418],[114.37047,22.48419],[114.37044,22.48418],[114.37042,22.4842]]],[[[114.35977,22.48643],[114.35967,22.48645],[114.35961,22.4864],[114.35953,22.48639],[114.35942,22.48641],[114.35937,22.48633],[114.35927,22.48628],[114.35922,22.48612],[114.35887,22.48593],[114.35866,22.4859],[114.35854,22.48578],[114.35809,22.48558],[114.35801,22.48545],[114.35793,22.48539],[114.35789,22.48541],[114.35782,22.48522],[114.35749,22.48488],[114.35745,22.48472],[114.35733,22.48458],[114.35718,22.48421],[114.3572,22.48408],[114.35691,22.48357],[114.35679,22.48353],[114.35665,22.48341],[114.35664,22.48325],[114.35656,22.4831],[114.35658,22.48289],[114.35653,22.48281],[114.35638,22.48271],[114.35631,22.48258],[114.35619,22.48252],[114.35605,22.48251],[114.35603,22.48264],[114.356,22.48266],[114.35593,22.48264],[114.3559,22.48257],[114.35593,22.48255],[114.35593,22.48248],[114.3558,22.48242],[114.35574,22.48242],[114.35571,22.48248],[114.35557,22.4825],[114.35541,22.48243],[114.35536,22.48233],[114.35519,22.48223],[114.35482,22.48223],[114.35474,22.48228],[114.35464,22.48224],[114.3544,22.482],[114.35439,22.48192],[114.3542,22.48177],[114.35397,22.48165],[114.35385,22.48161],[114.35383,22.48144],[114.3537,22.48135],[114.35357,22.48116],[114.35355,22.48103],[114.35332,22.48086],[114.35331,22.48073],[114.35333,22.4807],[114.35343,22.48074],[114.35353,22.48062],[114.35353,22.48053],[114.35373,22.48035],[114.35382,22.48033],[114.35391,22.48034],[114.35398,22.48038],[114.35403,22.48046],[114.35412,22.48046],[114.3541,22.48024],[114.35419,22.48026],[114.35438,22.48009],[114.35461,22.48004],[114.35477,22.48023],[114.35494,22.48008],[114.35502,22.48009],[114.35499,22.4802],[114.35509,22.48025],[114.35529,22.48011],[114.35537,22.48012],[114.35548,22.48017],[114.35552,22.48004],[114.3556,22.47976],[114.35566,22.47973],[114.35566,22.47949],[114.35563,22.47947],[114.35565,22.47935],[114.35571,22.47917],[114.35589,22.47894],[114.35612,22.47854],[114.3562,22.47842],[114.35627,22.47829],[114.3566,22.47791],[114.35663,22.47784],[114.35677,22.47771],[114.35672,22.47746],[114.35668,22.4774],[114.35668,22.47731],[114.35668,22.4773],[114.35661,22.4772],[114.35662,22.47716],[114.35663,22.47708],[114.35624,22.47667],[114.3562,22.47658],[114.3562,22.47645],[114.35627,22.47621],[114.35635,22.47608],[114.35667,22.47598],[114.35675,22.47591],[114.35682,22.47593],[114.35714,22.47561],[114.35737,22.47553],[114.35737,22.47534],[114.35738,22.47513],[114.35745,22.47483],[114.35746,22.4747],[114.35745,22.4746],[114.35743,22.47444],[114.35742,22.47422],[114.35737,22.47376],[114.35749,22.47345],[114.35765,22.47333],[114.35778,22.47314],[114.35755,22.4724],[114.35763,22.47207],[114.35772,22.47192],[114.35778,22.47187],[114.35817,22.47169],[114.35822,22.47169],[114.35837,22.47178],[114.35849,22.47176],[114.35857,22.47187],[114.3586,22.47203],[114.3587,22.47214],[114.35874,22.47224],[114.35915,22.47252],[114.35921,22.47264],[114.35932,22.47273],[114.35945,22.47278],[114.35951,22.47283],[114.35966,22.47314],[114.3598,22.4732],[114.35996,22.4733],[114.35997,22.47338],[114.36019,22.47351],[114.36028,22.47352],[114.36045,22.47358],[114.36062,22.47354],[114.36073,22.47355],[114.36086,22.47359],[114.36096,22.47356],[114.36104,22.47365],[114.36115,22.47387],[114.36111,22.47404],[114.36115,22.47406],[114.36128,22.47398],[114.36128,22.47384],[114.36123,22.47384],[114.36127,22.47343],[114.36136,22.47313],[114.36133,22.47293],[114.36119,22.47286],[114.36104,22.47287],[114.36091,22.47282],[114.36084,22.47285],[114.36081,22.47284],[114.3608,22.47281],[114.36082,22.47278],[114.36085,22.47275],[114.36084,22.47251],[114.36078,22.4724],[114.36083,22.47229],[114.36082,22.47217],[114.36081,22.47217],[114.36079,22.47222],[114.36075,22.47226],[114.3606,22.4723],[114.36054,22.47229],[114.36052,22.47228],[114.36051,22.47229],[114.3605,22.47232],[114.36054,22.47244],[114.36052,22.47246],[114.36049,22.47247],[114.36042,22.47243],[114.3604,22.47244],[114.36032,22.4725],[114.36027,22.47251],[114.3602,22.47253],[114.36014,22.47251],[114.36006,22.47243],[114.35966,22.47244],[114.35964,22.47191],[114.35958,22.4719],[114.35953,22.47186],[114.35946,22.47174],[114.35941,22.47159],[114.35935,22.4716],[114.35933,22.47148],[114.35935,22.47148],[114.35935,22.47144],[114.35937,22.47136],[114.35936,22.47133],[114.35923,22.47133],[114.35923,22.4713],[114.35936,22.4713],[114.35939,22.47129],[114.3594,22.47114],[114.35939,22.47114],[114.35935,22.47107],[114.35934,22.47105],[114.35938,22.47103],[114.35936,22.47098],[114.35932,22.47099],[114.35931,22.47094],[114.35921,22.47097],[114.35918,22.47093],[114.3592,22.47092],[114.35917,22.47085],[114.35922,22.47083],[114.3592,22.47076],[114.35927,22.47073],[114.35924,22.47064],[114.35929,22.47063],[114.35922,22.47054],[114.359,22.47032],[114.35892,22.47029],[114.35873,22.47031],[114.35871,22.4703],[114.3587,22.47028],[114.3587,22.4703],[114.35864,22.47031],[114.35867,22.47048],[114.35861,22.47049],[114.35859,22.47035],[114.35858,22.47026],[114.3587,22.47025],[114.3587,22.47023],[114.35873,22.47021],[114.35888,22.4702],[114.35887,22.47009],[114.35889,22.47007],[114.35887,22.47001],[114.3589,22.47],[114.35887,22.46994],[114.35888,22.46993],[114.35888,22.46993],[114.35891,22.46992],[114.3589,22.4699],[114.3589,22.46988],[114.35886,22.46991],[114.35883,22.46985],[114.35883,22.46984],[114.35879,22.46984],[114.3588,22.46983],[114.35878,22.46983],[114.35878,22.46977],[114.35881,22.46977],[114.35881,22.46976],[114.35882,22.46976],[114.35882,22.46971],[114.35883,22.46971],[114.35883,22.46966],[114.35883,22.46966],[114.35888,22.46966],[114.35888,22.46962],[114.35884,22.46961],[114.35883,22.46957],[114.35884,22.46957],[114.35882,22.46948],[114.35886,22.46948],[114.35886,22.46936],[114.35875,22.46941],[114.35867,22.46924],[114.35865,22.4692],[114.35863,22.46921],[114.3586,22.46906],[114.35864,22.46904],[114.35867,22.46885],[114.35861,22.46871],[114.35856,22.46867],[114.35837,22.46863],[114.35828,22.46851],[114.3583,22.46809],[114.3581,22.46768],[114.3581,22.46758],[114.35809,22.46758],[114.35811,22.46738],[114.35809,22.46737],[114.3581,22.46726],[114.35818,22.46727],[114.35821,22.46708],[114.35822,22.46708],[114.35828,22.46663],[114.35825,22.46657],[114.35836,22.46636],[114.35838,22.46634],[114.35848,22.46627],[114.35851,22.46625],[114.35861,22.46618],[114.35866,22.46615],[114.35886,22.46603],[114.35929,22.46571],[114.35933,22.46557],[114.35939,22.46553],[114.36044,22.46514],[114.36091,22.46515],[114.36144,22.46534],[114.3617,22.46547],[114.36186,22.46546],[114.3621,22.4657],[114.36211,22.46576],[114.3622,22.46574],[114.36223,22.46576],[114.36224,22.46577],[114.36223,22.46578],[114.36228,22.4659],[114.36233,22.46598],[114.36239,22.46606],[114.36242,22.46614],[114.36245,22.46617],[114.36248,22.46619],[114.3625,22.46621],[114.3625,22.46623],[114.36248,22.46625],[114.36247,22.46627],[114.3625,22.46629],[114.36257,22.46641],[114.3626,22.46646],[114.3626,22.46646],[114.36261,22.46646],[114.36263,22.46645],[114.36265,22.46644],[114.36266,22.46644],[114.36267,22.46644],[114.36269,22.46645],[114.36284,22.46655],[114.3629,22.4666],[114.36298,22.46668],[114.36302,22.46675],[114.36309,22.46675],[114.36311,22.46673],[114.36314,22.46674],[114.36315,22.46671],[114.36316,22.4667],[114.36318,22.46667],[114.3632,22.46668],[114.36321,22.46673],[114.3632,22.46675],[114.36318,22.46678],[114.36328,22.46687],[114.36334,22.46703],[114.36353,22.46695],[114.36354,22.46695],[114.36356,22.46696],[114.36361,22.46696],[114.36365,22.46694],[114.36366,22.46694],[114.36366,22.46697],[114.36365,22.46697],[114.36363,22.46697],[114.36363,22.46697],[114.3636,22.46699],[114.3636,22.467],[114.36362,22.467],[114.36364,22.467],[114.36363,22.46703],[114.36369,22.46711],[114.36372,22.46712],[114.36372,22.46714],[114.36368,22.46715],[114.36369,22.46717],[114.36369,22.4672],[114.36372,22.4672],[114.36374,22.4672],[114.36374,22.46723],[114.36376,22.46722],[114.36378,22.46721],[114.36378,22.46723],[114.36378,22.46724],[114.36377,22.46724],[114.36375,22.46725],[114.36374,22.46727],[114.36368,22.4673],[114.36366,22.46732],[114.36374,22.46733],[114.36376,22.46734],[114.3638,22.46737],[114.36381,22.4674],[114.36382,22.46748],[114.36386,22.4675],[114.36388,22.46749],[114.36391,22.46754],[114.36392,22.4676],[114.3639,22.46762],[114.36394,22.4677],[114.36396,22.46769],[114.36402,22.46781],[114.364,22.46788],[114.36393,22.46795],[114.36389,22.46795],[114.3639,22.46799],[114.36393,22.46802],[114.36396,22.468],[114.36398,22.4681],[114.36407,22.46831],[114.36415,22.46837],[114.3642,22.46851],[114.36438,22.4685],[114.36442,22.46855],[114.36432,22.46866],[114.36427,22.46865],[114.36421,22.46866],[114.36421,22.46874],[114.36425,22.46871],[114.36435,22.46877],[114.36432,22.46886],[114.36427,22.46887],[114.36428,22.46891],[114.36431,22.46891],[114.36431,22.46893],[114.36424,22.46898],[114.36424,22.46908],[114.36419,22.46909],[114.36415,22.46926],[114.36409,22.46939],[114.36404,22.46948],[114.36414,22.46949],[114.36417,22.4695],[114.36416,22.46952],[114.36412,22.46953],[114.36405,22.46956],[114.36399,22.46959],[114.36391,22.46961],[114.3638,22.46976],[114.36374,22.46993],[114.36362,22.47039],[114.3638,22.47121],[114.36402,22.47157],[114.36421,22.47171],[114.36465,22.47185],[114.36474,22.47196],[114.36481,22.47194],[114.36492,22.47194],[114.36497,22.47198],[114.36506,22.47197],[114.36499,22.47194],[114.36499,22.47189],[114.36506,22.4719],[114.36513,22.47187],[114.36532,22.47189],[114.36541,22.47192],[114.36539,22.47205],[114.36537,22.47208],[114.36533,22.47209],[114.36534,22.47225],[114.36539,22.47211],[114.36559,22.47208],[114.36584,22.47217],[114.36586,22.47229],[114.36583,22.47231],[114.36579,22.47228],[114.36573,22.47227],[114.3657,22.47229],[114.36571,22.47235],[114.36579,22.47233],[114.36585,22.47235],[114.36586,22.47234],[114.36587,22.4723],[114.36599,22.4723],[114.36599,22.47232],[114.36596,22.47234],[114.36594,22.47235],[114.36586,22.47238],[114.3659,22.47248],[114.36596,22.47246],[114.36601,22.47254],[114.36601,22.47257],[114.36596,22.47257],[114.36603,22.47263],[114.36611,22.47266],[114.36618,22.47266],[114.36623,22.47274],[114.36627,22.47269],[114.36642,22.47271],[114.36644,22.47273],[114.36644,22.47291],[114.36646,22.47291],[114.36647,22.47277],[114.36657,22.47274],[114.36662,22.47274],[114.36668,22.47276],[114.36669,22.4728],[114.36669,22.4729],[114.36671,22.47291],[114.36674,22.4729],[114.36675,22.47293],[114.36675,22.47294],[114.36672,22.473],[114.36662,22.4731],[114.36658,22.47311],[114.36653,22.47308],[114.36647,22.47307],[114.36647,22.47309],[114.36636,22.47316],[114.36636,22.47317],[114.36641,22.47317],[114.36651,22.47316],[114.36648,22.47326],[114.36651,22.47328],[114.36651,22.47341],[114.36649,22.47343],[114.36645,22.47345],[114.36635,22.47343],[114.36635,22.47336],[114.36634,22.47336],[114.36629,22.47343],[114.36623,22.47346],[114.36618,22.47366],[114.3662,22.47386],[114.36636,22.47411],[114.36635,22.47414],[114.36631,22.47416],[114.36631,22.47418],[114.36635,22.47428],[114.36645,22.4744],[114.36647,22.47438],[114.36649,22.47436],[114.36654,22.47434],[114.36665,22.47434],[114.3667,22.47431],[114.36674,22.47433],[114.36677,22.47436],[114.36676,22.47442],[114.36673,22.47444],[114.36673,22.47445],[114.36674,22.47445],[114.36679,22.47441],[114.36681,22.4744],[114.36682,22.47441],[114.36679,22.47448],[114.36671,22.47454],[114.36668,22.47461],[114.36665,22.47461],[114.36661,22.47459],[114.36659,22.47467],[114.36668,22.47472],[114.36665,22.47487],[114.36663,22.47497],[114.36658,22.47501],[114.36653,22.475],[114.36649,22.47505],[114.36657,22.4753],[114.3666,22.47528],[114.36667,22.47525],[114.36672,22.47524],[114.36674,22.47523],[114.36677,22.47524],[114.36678,22.47525],[114.36677,22.47529],[114.36675,22.47531],[114.36657,22.47535],[114.36664,22.47551],[114.3667,22.47552],[114.36674,22.47552],[114.36679,22.47552],[114.36682,22.47554],[114.36681,22.47558],[114.36679,22.47559],[114.36669,22.4756],[114.36671,22.47562],[114.36678,22.4756],[114.3668,22.47562],[114.36685,22.47568],[114.36688,22.47572],[114.36684,22.47582],[114.36694,22.47589],[114.36694,22.47593],[114.36692,22.47597],[114.36685,22.47604],[114.36658,22.47616],[114.36658,22.47619],[114.36661,22.4762],[114.36668,22.47619],[114.36674,22.47613],[114.36676,22.47615],[114.36672,22.4762],[114.36676,22.47621],[114.36672,22.47622],[114.3667,22.47626],[114.36663,22.47632],[114.36655,22.47633],[114.3665,22.47639],[114.36654,22.47644],[114.36655,22.4765],[114.36661,22.47647],[114.3667,22.47644],[114.36671,22.47655],[114.36675,22.47652],[114.36678,22.47654],[114.36681,22.47659],[114.36677,22.4767],[114.3667,22.47679],[114.36659,22.47682],[114.36663,22.47686],[114.36652,22.47695],[114.36626,22.47706],[114.36623,22.47712],[114.36654,22.47698],[114.36661,22.47701],[114.36662,22.47704],[114.36647,22.47716],[114.36637,22.47715],[114.36624,22.47716],[114.36623,22.4772],[114.36632,22.47721],[114.36634,22.47723],[114.36632,22.4773],[114.36617,22.47742],[114.36612,22.47743],[114.36603,22.47746],[114.36575,22.47755],[114.36557,22.47778],[114.3655,22.47784],[114.3654,22.47789],[114.36515,22.47805],[114.36471,22.47824],[114.36426,22.47846],[114.36384,22.47869],[114.36356,22.47893],[114.36344,22.47917],[114.36331,22.47991],[114.36333,22.48055],[114.36358,22.48148],[114.36368,22.48164],[114.36385,22.48174],[114.36393,22.48188],[114.36411,22.48188],[114.36414,22.48199],[114.36423,22.48203],[114.36426,22.48194],[114.36438,22.48191],[114.3644,22.48194],[114.36444,22.48198],[114.36456,22.48211],[114.36456,22.48245],[114.36458,22.48317],[114.36458,22.48324],[114.36454,22.48358],[114.36445,22.48381],[114.36436,22.48387],[114.36429,22.48392],[114.36424,22.48395],[114.36429,22.48415],[114.36424,22.48427],[114.36439,22.48429],[114.3644,22.4843],[114.36437,22.4844],[114.36431,22.48444],[114.36416,22.48455],[114.36404,22.48457],[114.364,22.48464],[114.36397,22.48469],[114.36385,22.48481],[114.3638,22.48488],[114.36378,22.48499],[114.36375,22.48511],[114.36367,22.48512],[114.36347,22.48538],[114.36332,22.4854],[114.36303,22.48534],[114.36231,22.48518],[114.36172,22.48522],[114.3615,22.48532],[114.36138,22.48543],[114.36118,22.48569],[114.36114,22.48577],[114.36108,22.48585],[114.36095,22.48595],[114.36085,22.48598],[114.36082,22.48602],[114.36066,22.48613],[114.36055,22.48617],[114.36041,22.4862],[114.36033,22.48632],[114.36019,22.48627],[114.36003,22.48635],[114.35978,22.48638],[114.35977,22.48643]]],[[[114.36228,22.5016],[114.36229,22.50164],[114.36227,22.50166],[114.3622,22.50166],[114.36217,22.50165],[114.36218,22.50163],[114.3622,22.50161],[114.36225,22.5016],[114.36228,22.5016]]],[[[114.36397,22.50324],[114.36397,22.50331],[114.36392,22.50344],[114.36387,22.50329],[114.36394,22.50319],[114.36397,22.50324]]],[[[114.36431,22.50365],[114.36431,22.50371],[114.36426,22.50365],[114.36428,22.50363],[114.36431,22.50365]]],[[[114.36441,22.50368],[114.36442,22.50372],[114.36438,22.50373],[114.36438,22.50368],[114.3644,22.50366],[114.36441,22.50368]]],[[[114.36452,22.50372],[114.36453,22.50373],[114.36452,22.50374],[114.3645,22.50375],[114.36449,22.50375],[114.36449,22.50374],[114.36449,22.50372],[114.36452,22.50372]]],[[[114.3641,22.50375],[114.36411,22.50379],[114.36407,22.50386],[114.36398,22.50381],[114.364,22.50378],[114.36406,22.50377],[114.36404,22.50374],[114.36404,22.50371],[114.36401,22.5037],[114.36396,22.5036],[114.36399,22.50357],[114.36407,22.50356],[114.36408,22.50347],[114.36405,22.50339],[114.36416,22.50333],[114.36421,22.50334],[114.36422,22.50336],[114.36419,22.50348],[114.36411,22.50355],[114.36411,22.5036],[114.36407,22.50366],[114.36411,22.50369],[114.36412,22.50367],[114.36414,22.50369],[114.3641,22.50375]]],[[[114.36437,22.5038],[114.36434,22.50383],[114.36436,22.50385],[114.36433,22.50387],[114.36431,22.50385],[114.36431,22.50381],[114.36435,22.50373],[114.36437,22.5038]]],[[[114.3645,22.50396],[114.36451,22.50398],[114.36449,22.50401],[114.36447,22.50399],[114.36447,22.50395],[114.3645,22.50396]]],[[[114.36468,22.50394],[114.36469,22.504],[114.36467,22.50401],[114.36464,22.50396],[114.36466,22.50391],[114.36468,22.50394]]],[[[114.36399,22.50393],[114.36399,22.50397],[114.36395,22.50402],[114.36389,22.50402],[114.36391,22.50395],[114.36395,22.50392],[114.36399,22.50393]]],[[[114.36465,22.50408],[114.3646,22.50415],[114.36456,22.50408],[114.36452,22.50409],[114.36453,22.50399],[114.3645,22.50383],[114.36453,22.50377],[114.36457,22.50393],[114.36465,22.50408]]],[[[114.36454,22.5042],[114.36451,22.50424],[114.36439,22.50429],[114.3643,22.50424],[114.36432,22.50416],[114.36431,22.50413],[114.3643,22.50412],[114.36425,22.50419],[114.36416,22.50415],[114.36414,22.50408],[114.36422,22.50398],[114.3641,22.50394],[114.36409,22.50387],[114.36413,22.50386],[114.36418,22.50376],[114.36425,22.50375],[114.36428,22.50384],[114.3642,22.5039],[114.36423,22.50392],[114.36426,22.50388],[114.36431,22.50388],[114.3643,22.50396],[114.36446,22.50398],[114.36443,22.50406],[114.36449,22.50408],[114.36451,22.50412],[114.36453,22.5041],[114.36455,22.5041],[114.36454,22.5042]]],[[[114.36473,22.50449],[114.36468,22.50449],[114.36467,22.50449],[114.3645,22.50442],[114.36446,22.50438],[114.36452,22.50426],[114.36461,22.50422],[114.36464,22.50426],[114.36466,22.50426],[114.36468,22.50423],[114.36476,22.50428],[114.36478,22.50422],[114.36481,22.50421],[114.36484,22.50423],[114.36488,22.50427],[114.36489,22.50432],[114.36479,22.50429],[114.36478,22.50433],[114.36476,22.50434],[114.3647,22.50433],[114.36473,22.50446],[114.36473,22.50449]]],[[[114.36475,22.50458],[114.36476,22.50461],[114.36474,22.50464],[114.3647,22.50466],[114.3647,22.50459],[114.36473,22.50458],[114.36475,22.50458]]],[[[114.36475,22.50467],[114.36477,22.50476],[114.36475,22.50478],[114.36471,22.50468],[114.36474,22.50466],[114.36475,22.50467]]],[[[114.35974,22.50479],[114.35962,22.50476],[114.35958,22.50475],[114.35947,22.50471],[114.35933,22.5047],[114.35907,22.50468],[114.35899,22.50457],[114.359,22.50452],[114.35892,22.50448],[114.3589,22.50454],[114.35884,22.50456],[114.3588,22.50452],[114.35874,22.50449],[114.35867,22.50447],[114.35864,22.50442],[114.35853,22.50426],[114.35841,22.50414],[114.35807,22.50396],[114.35803,22.50389],[114.35781,22.50375],[114.35749,22.5037],[114.35744,22.50372],[114.3574,22.50377],[114.35725,22.5038],[114.3572,22.50375],[114.3569,22.5037],[114.35684,22.5034],[114.35681,22.5032],[114.3568,22.50287],[114.35677,22.50285],[114.35676,22.50277],[114.35676,22.50268],[114.35674,22.50259],[114.35673,22.50242],[114.35686,22.50213],[114.357,22.50179],[114.35703,22.50149],[114.35703,22.50141],[114.3571,22.50123],[114.35682,22.50091],[114.35652,22.50072],[114.3562,22.50062],[114.35608,22.50069],[114.35591,22.50063],[114.35578,22.50072],[114.35566,22.50062],[114.35553,22.50059],[114.35534,22.50038],[114.35525,22.50048],[114.35517,22.50045],[114.35515,22.50048],[114.35513,22.50048],[114.35511,22.50047],[114.35511,22.50044],[114.35514,22.50038],[114.35509,22.50038],[114.35508,22.50035],[114.35522,22.50024],[114.35522,22.50015],[114.35526,22.5001],[114.35531,22.50011],[114.35538,22.50004],[114.35544,22.49994],[114.35548,22.4999],[114.35551,22.49983],[114.35563,22.49973],[114.35562,22.49967],[114.35575,22.49962],[114.35614,22.49908],[114.35612,22.49898],[114.35628,22.49886],[114.35628,22.49872],[114.35635,22.4987],[114.35656,22.49863],[114.35661,22.49853],[114.35658,22.49849],[114.35664,22.49841],[114.3567,22.49826],[114.35677,22.49819],[114.35703,22.49793],[114.3571,22.49774],[114.35717,22.49771],[114.35734,22.49744],[114.35738,22.49725],[114.35744,22.49719],[114.35743,22.49715],[114.35734,22.4971],[114.3574,22.49685],[114.35744,22.4968],[114.3575,22.49666],[114.35756,22.49661],[114.35762,22.49655],[114.35766,22.49648],[114.35765,22.49623],[114.3577,22.49609],[114.35778,22.49622],[114.35784,22.49624],[114.35791,22.4962],[114.35792,22.49608],[114.35785,22.49595],[114.35795,22.49588],[114.35805,22.49608],[114.35815,22.49616],[114.3581,22.49633],[114.35815,22.49639],[114.35825,22.49644],[114.35826,22.49648],[114.35818,22.49653],[114.35822,22.49663],[114.35833,22.49673],[114.35842,22.49676],[114.35857,22.49676],[114.35871,22.49667],[114.35872,22.49687],[114.3588,22.49696],[114.35894,22.49699],[114.35905,22.49693],[114.35917,22.49688],[114.35925,22.49684],[114.35934,22.49667],[114.35941,22.49672],[114.35957,22.49666],[114.35957,22.49661],[114.35961,22.49656],[114.35955,22.49653],[114.35956,22.49651],[114.35961,22.4965],[114.35975,22.49637],[114.35981,22.4964],[114.35989,22.49668],[114.36001,22.49672],[114.36007,22.49666],[114.36012,22.49652],[114.36023,22.49646],[114.36021,22.49654],[114.36018,22.49668],[114.36019,22.49676],[114.36021,22.49685],[114.36026,22.49688],[114.36039,22.49683],[114.36042,22.4969],[114.36038,22.497],[114.36028,22.49705],[114.36031,22.49709],[114.36013,22.49714],[114.36009,22.49726],[114.36016,22.49734],[114.36039,22.49724],[114.36039,22.49734],[114.36054,22.49751],[114.36077,22.49738],[114.36084,22.49741],[114.36087,22.49748],[114.36083,22.49756],[114.36084,22.49764],[114.36087,22.49761],[114.3609,22.49762],[114.36088,22.49765],[114.36092,22.49767],[114.3609,22.49769],[114.36087,22.49769],[114.36085,22.49768],[114.36082,22.49768],[114.36077,22.49765],[114.36072,22.49769],[114.36077,22.49777],[114.36079,22.49783],[114.36091,22.49778],[114.36097,22.49785],[114.36094,22.49797],[114.36081,22.49797],[114.36075,22.49812],[114.36069,22.49838],[114.36069,22.49843],[114.36081,22.4984],[114.36089,22.49844],[114.36088,22.4985],[114.36077,22.49869],[114.36089,22.49871],[114.36088,22.49883],[114.36088,22.49919],[114.36083,22.49921],[114.36079,22.49931],[114.36093,22.49946],[114.36099,22.49958],[114.36111,22.4996],[114.36114,22.49961],[114.36116,22.4997],[114.3612,22.49975],[114.36122,22.49984],[114.36124,22.49994],[114.36119,22.50006],[114.36127,22.50041],[114.36137,22.5006],[114.36173,22.50091],[114.36188,22.50087],[114.36189,22.50075],[114.36184,22.50068],[114.36191,22.50057],[114.36199,22.50058],[114.36214,22.50092],[114.36216,22.50095],[114.36219,22.50101],[114.3622,22.50105],[114.36218,22.50116],[114.36205,22.5012],[114.36194,22.50128],[114.36196,22.50148],[114.36212,22.5017],[114.36231,22.50171],[114.3623,22.50182],[114.36241,22.50195],[114.36259,22.50178],[114.36258,22.50169],[114.36266,22.50174],[114.36272,22.50199],[114.36279,22.50219],[114.3628,22.50228],[114.36278,22.50234],[114.36284,22.50247],[114.36293,22.50258],[114.36287,22.50266],[114.3627,22.50271],[114.3628,22.50277],[114.36291,22.50272],[114.36303,22.50283],[114.36315,22.50279],[114.36317,22.50285],[114.36316,22.50297],[114.36309,22.50309],[114.36312,22.50314],[114.36314,22.50322],[114.36327,22.50332],[114.36347,22.50318],[114.36354,22.50319],[114.36359,22.50325],[114.36353,22.50345],[114.36369,22.50339],[114.36379,22.50344],[114.36392,22.50358],[114.36398,22.50376],[114.36375,22.50406],[114.36358,22.50408],[114.36347,22.50401],[114.36334,22.50391],[114.36321,22.50389],[114.36309,22.50409],[114.36301,22.50413],[114.36294,22.5041],[114.36278,22.50417],[114.36263,22.5042],[114.36257,22.50417],[114.36252,22.50417],[114.36243,22.50411],[114.36234,22.50397],[114.36227,22.50345],[114.36229,22.50337],[114.36219,22.50329],[114.36213,22.50337],[114.36199,22.50342],[114.36187,22.50359],[114.36184,22.50366],[114.36176,22.50393],[114.36158,22.50396],[114.3615,22.50397],[114.36141,22.50398],[114.36141,22.50404],[114.36148,22.50407],[114.36147,22.50415],[114.36142,22.50421],[114.36136,22.50433],[114.36133,22.50445],[114.36118,22.5045],[114.36089,22.50464],[114.36057,22.50458],[114.36049,22.50452],[114.36032,22.50455],[114.36033,22.50459],[114.36034,22.50461],[114.36032,22.50468],[114.36027,22.50467],[114.36008,22.50463],[114.36004,22.50464],[114.36004,22.50475],[114.35992,22.50478],[114.35988,22.50475],[114.35974,22.50479]]],[[[114.36514,22.50484],[114.36512,22.50492],[114.36508,22.50486],[114.36499,22.5048],[114.36494,22.50469],[114.36498,22.50463],[114.3651,22.50461],[114.36514,22.50484]]]]},"properties":{"M_NM_Eng":"Non-Metro","SR_Eng":"SENT","PDD_Cat_En":"Other Areas","PDD_Eng":"SENT (Other Area)","M_NM_Tc":"非都會區","SR_Tc":"新界東南","PDD_Cat_Tc":"其他地區","PDD_Tc":"新界東南 (其他地區)","M_NM_Sc":"非都会区","SR_Sc_1":"新界东南","PDD_Cat_Sc":"其他地区","PDD_Sc":"新界东南 (其他地区)","Y2019_Popu":68900,"Y2019_Empl":27250,"Y2026_Popu":65800,"Y2026_Empl":27750,"Y2031_Popu":59750,"Y2031_Empl":28100}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[113.92245,22.15344],[113.92252,22.1535],[113.92251,22.15359],[113.92246,22.15362],[113.92219,22.15353],[113.92226,22.15345],[113.92236,22.1534],[113.92245,22.15344]]],[[[113.9223,22.15362],[113.92231,22.15365],[113.92229,22.15368],[113.92221,22.15365],[113.9222,22.1536],[113.92222,22.15359],[113.9223,22.15362]]],[[[113.92403,22.15577],[113.92382,22.15586],[113.92384,22.15592],[113.92382,22.15605],[113.92376,22.15617],[113.92364,22.15621],[113.92352,22.15614],[113.92345,22.15611],[113.92335,22.15599],[113.9232,22.15588],[113.92277,22.15567],[113.92247,22.15575],[113.92246,22.15565],[113.92243,22.15552],[113.92239,22.15542],[113.92236,22.15537],[113.92218,22.15531],[113.92213,22.15519],[113.922,22.15521],[113.92199,22.15514],[113.9221,22.15502],[113.92208,22.15491],[113.92193,22.15489],[113.92187,22.15481],[113.92189,22.15477],[113.92197,22.15481],[113.92196,22.15469],[113.92199,22.15466],[113.92209,22.15471],[113.92214,22.15468],[113.922,22.15448],[113.92195,22.15433],[113.92198,22.15426],[113.92212,22.15419],[113.9221,22.15412],[113.92218,22.15402],[113.92238,22.15393],[113.92233,22.15387],[113.92241,22.15382],[113.9225,22.15378],[113.92259,22.15383],[113.92281,22.15386],[113.92302,22.15405],[113.92308,22.15409],[113.92313,22.15424],[113.92323,22.15428],[113.92333,22.15439],[113.92352,22.15477],[113.92358,22.15493],[113.92356,22.15516],[113.92364,22.15504],[113.92364,22.15484],[113.92375,22.15475],[113.92383,22.15473],[113.924,22.15485],[113.92409,22.15485],[113.92415,22.15481],[113.92421,22.15487],[113.92416,22.15494],[113.92423,22.15503],[113.92422,22.15514],[113.92412,22.15525],[113.92417,22.15536],[113.92407,22.15537],[113.92409,22.15549],[113.92389,22.1556],[113.9239,22.15564],[113.92396,22.15567],[113.92408,22.15561],[113.92411,22.15564],[113.92403,22.15577]]],[[[114.24971,22.15977],[114.24957,22.15973],[114.24951,22.15973],[114.2494,22.15968],[114.24939,22.15966],[114.24949,22.15961],[114.24946,22.15958],[114.24946,22.15957],[114.24952,22.15954],[114.24969,22.15954],[114.24985,22.15959],[114.24987,22.15962],[114.24992,22.15963],[114.24994,22.15965],[114.24992,22.15972],[114.24989,22.15973],[114.24977,22.15973],[114.24971,22.15977]]],[[[114.25134,22.16104],[114.25109,22.16123],[114.25107,22.16131],[114.25079,22.16132],[114.25074,22.1613],[114.25073,22.16123],[114.2505,22.16111],[114.25048,22.16104],[114.25045,22.16097],[114.25038,22.16094],[114.25024,22.16098],[114.25008,22.16095],[114.25002,22.16089],[114.24982,22.16088],[114.24953,22.16075],[114.24937,22.16064],[114.24937,22.16059],[114.24936,22.16049],[114.24913,22.16017],[114.24908,22.15999],[114.24911,22.15993],[114.24924,22.15987],[114.24953,22.1598],[114.24978,22.15982],[114.24993,22.15992],[114.24994,22.16],[114.25025,22.15991],[114.2503,22.15996],[114.25054,22.15991],[114.25091,22.16005],[114.25111,22.16007],[114.25131,22.16022],[114.25148,22.16054],[114.25144,22.16064],[114.25132,22.16072],[114.25136,22.16091],[114.25134,22.16104]]],[[[113.91728,22.16268],[113.91711,22.16277],[113.91728,22.16279],[113.91714,22.1629],[113.91721,22.16297],[113.91706,22.16311],[113.917,22.16317],[113.9169,22.1632],[113.91681,22.16324],[113.9167,22.16327],[113.91668,22.16337],[113.91663,22.1634],[113.9165,22.16335],[113.91643,22.16329],[113.91639,22.16319],[113.91642,22.16311],[113.91633,22.16303],[113.91635,22.16297],[113.91626,22.16292],[113.91626,22.16287],[113.91611,22.16284],[113.91618,22.16279],[113.91622,22.16267],[113.91623,22.16249],[113.91635,22.16231],[113.9163,22.16224],[113.91633,22.16208],[113.91636,22.16196],[113.91642,22.1619],[113.91667,22.16198],[113.91706,22.16202],[113.91708,22.16204],[113.91708,22.16212],[113.91708,22.16221],[113.91703,22.16225],[113.91716,22.16233],[113.91728,22.16232],[113.91728,22.16268]]],[[[113.91684,22.16336],[113.91682,22.16337],[113.9168,22.16337],[113.9168,22.16337],[113.9168,22.16338],[113.91679,22.16338],[113.9168,22.16339],[113.91679,22.16339],[113.91679,22.1634],[113.91679,22.1634],[113.91678,22.1634],[113.91678,22.1634],[113.91678,22.1634],[113.91678,22.1634],[113.91677,22.16338],[113.91677,22.16338],[113.91677,22.16338],[113.91677,22.16336],[113.91677,22.16336],[113.91677,22.16336],[113.91678,22.16336],[113.91678,22.16336],[113.91678,22.16336],[113.91679,22.16334],[113.91679,22.16333],[113.9168,22.16332],[113.91681,22.16332],[113.91682,22.16332],[113.91684,22.16332],[113.91685,22.16332],[113.91686,22.16333],[113.91687,22.16333],[113.91687,22.16334],[113.91687,22.16334],[113.91687,22.16334],[113.91686,22.16334],[113.91684,22.16336]]],[[[113.91533,22.16655],[113.91538,22.16658],[113.91539,22.16658],[113.91539,22.16659],[113.91539,22.16666],[113.91538,22.16667],[113.91537,22.16669],[113.91536,22.16669],[113.91531,22.16672],[113.91529,22.16673],[113.91527,22.16673],[113.91527,22.16673],[113.91526,22.16672],[113.91525,22.16671],[113.91525,22.16668],[113.91526,22.1666],[113.91527,22.16657],[113.91528,22.16656],[113.91529,22.16655],[113.91531,22.16655],[113.91533,22.16655]]],[[[113.91681,22.16695],[113.91683,22.16695],[113.91684,22.16696],[113.91684,22.16696],[113.91685,22.16697],[113.91685,22.16697],[113.91685,22.16698],[113.91684,22.16698],[113.91684,22.16698],[113.91681,22.16698],[113.9168,22.16699],[113.9168,22.16699],[113.91679,22.16699],[113.91679,22.16698],[113.91679,22.16698],[113.91679,22.16698],[113.91677,22.16697],[113.91676,22.16696],[113.91676,22.16696],[113.91676,22.16695],[113.91676,22.16695],[113.91677,22.16695],[113.91677,22.16695],[113.91678,22.16695],[113.9168,22.16695],[113.91681,22.16695]]],[[[113.91621,22.16701],[113.91623,22.16702],[113.91624,22.16703],[113.91623,22.16704],[113.91622,22.16705],[113.91621,22.16705],[113.91619,22.16704],[113.91619,22.16703],[113.91619,22.16702],[113.9162,22.16701],[113.91621,22.16701]]],[[[113.91635,22.16705],[113.91635,22.16706],[113.91631,22.16707],[113.91631,22.16707],[113.9163,22.16706],[113.91631,22.16705],[113.91632,22.16704],[113.91633,22.16704],[113.91635,22.16705]]],[[[113.91165,22.17005],[113.91148,22.17014],[113.91135,22.17013],[113.9113,22.17011],[113.91116,22.17011],[113.91094,22.17004],[113.91084,22.17],[113.91062,22.17],[113.91054,22.17],[113.91041,22.16986],[113.91028,22.16989],[113.91021,22.16986],[113.91021,22.16976],[113.91015,22.1697],[113.91006,22.16978],[113.90993,22.16983],[113.90987,22.16975],[113.90975,22.16974],[113.90965,22.16965],[113.90961,22.16954],[113.90954,22.1695],[113.90944,22.16946],[113.90919,22.16921],[113.90921,22.16898],[113.90932,22.16898],[113.90926,22.16886],[113.90918,22.16884],[113.90919,22.16859],[113.90926,22.16837],[113.90927,22.16832],[113.90918,22.16821],[113.90918,22.16809],[113.90909,22.16797],[113.90905,22.16795],[113.90895,22.16789],[113.90847,22.16789],[113.90847,22.16753],[113.90868,22.16733],[113.90885,22.16733],[113.90926,22.16686],[113.91061,22.16591],[113.91054,22.16545],[113.91002,22.16544],[113.90994,22.16542],[113.90988,22.16533],[113.90976,22.16519],[113.90979,22.16515],[113.90989,22.16511],[113.9098,22.16497],[113.90969,22.16494],[113.9094,22.16449],[113.90936,22.16441],[113.90936,22.16437],[113.90939,22.16431],[113.90939,22.1643],[113.90938,22.16427],[113.90919,22.16405],[113.90893,22.16379],[113.9089,22.16378],[113.90888,22.16375],[113.90871,22.16375],[113.90873,22.16378],[113.90865,22.16383],[113.90857,22.16391],[113.90855,22.1639],[113.90865,22.16378],[113.90862,22.16375],[113.90845,22.16372],[113.90831,22.16374],[113.90829,22.16379],[113.90819,22.16386],[113.90795,22.16382],[113.90781,22.16391],[113.90728,22.16396],[113.90724,22.16388],[113.90733,22.16377],[113.90714,22.16347],[113.90712,22.16327],[113.90701,22.16304],[113.90693,22.16275],[113.90687,22.16264],[113.90679,22.16261],[113.90677,22.16259],[113.90664,22.16252],[113.90656,22.16251],[113.90647,22.16248],[113.90615,22.16242],[113.90597,22.1624],[113.90579,22.16239],[113.90564,22.16241],[113.90554,22.16246],[113.90549,22.16258],[113.90551,22.16264],[113.90524,22.16279],[113.90511,22.1631],[113.9048,22.16325],[113.90472,22.16334],[113.9047,22.16342],[113.90467,22.16346],[113.90446,22.16361],[113.9043,22.16364],[113.90411,22.16362],[113.90406,22.16356],[113.90396,22.16351],[113.90384,22.16354],[113.90351,22.16349],[113.90323,22.16349],[113.90305,22.16354],[113.9029,22.16344],[113.9025,22.16335],[113.90237,22.16336],[113.90228,22.16339],[113.90212,22.16335],[113.90206,22.16329],[113.90206,22.16317],[113.90193,22.16312],[113.90157,22.16291],[113.90121,22.16274],[113.90114,22.16263],[113.90105,22.16259],[113.90093,22.16256],[113.90071,22.16227],[113.90052,22.1621],[113.90032,22.16206],[113.8999,22.16171],[113.89964,22.16154],[113.89955,22.1614],[113.89942,22.16126],[113.89938,22.16109],[113.89927,22.16089],[113.89917,22.1603],[113.89914,22.15989],[113.89916,22.15974],[113.89923,22.1597],[113.89932,22.15963],[113.89931,22.15946],[113.89939,22.15927],[113.8995,22.1591],[113.89953,22.15914],[113.89957,22.15905],[113.89956,22.15899],[113.89968,22.15887],[113.89977,22.15879],[113.89981,22.15878],[113.89983,22.15884],[113.8999,22.15881],[113.89994,22.15873],[113.90008,22.15863],[113.90013,22.15855],[113.90029,22.15855],[113.90056,22.15838],[113.90067,22.15838],[113.9009,22.15801],[113.90132,22.15792],[113.90136,22.15781],[113.90136,22.15774],[113.90145,22.15762],[113.90158,22.15771],[113.90172,22.15761],[113.90217,22.15747],[113.90225,22.15746],[113.90239,22.15741],[113.90247,22.15733],[113.90258,22.15725],[113.90263,22.15715],[113.90286,22.15711],[113.9027,22.15701],[113.90268,22.15683],[113.9027,22.15664],[113.90284,22.15654],[113.90288,22.15643],[113.90321,22.1563],[113.90335,22.15632],[113.90353,22.15645],[113.90361,22.1565],[113.90413,22.15646],[113.90431,22.15657],[113.90446,22.15661],[113.90458,22.15674],[113.90463,22.15676],[113.90465,22.15673],[113.90463,22.15668],[113.90467,22.15666],[113.9047,22.15674],[113.90467,22.15685],[113.90471,22.15692],[113.9047,22.15698],[113.90475,22.15698],[113.9048,22.15695],[113.90488,22.15696],[113.90483,22.15703],[113.90482,22.15708],[113.90487,22.15714],[113.90491,22.15709],[113.90498,22.15719],[113.90503,22.15718],[113.90501,22.15712],[113.90506,22.1571],[113.90508,22.15717],[113.90504,22.15722],[113.9052,22.15742],[113.90533,22.15742],[113.90533,22.1575],[113.9054,22.15757],[113.90533,22.15762],[113.90543,22.15769],[113.9055,22.15781],[113.90555,22.15782],[113.90558,22.15791],[113.90555,22.15809],[113.90562,22.15807],[113.90564,22.15813],[113.90562,22.1582],[113.90555,22.15824],[113.90559,22.15831],[113.90555,22.15855],[113.90567,22.15871],[113.90566,22.15879],[113.90575,22.159],[113.90583,22.15901],[113.90583,22.15908],[113.906,22.15922],[113.90606,22.15924],[113.90616,22.15924],[113.90614,22.15915],[113.90618,22.1591],[113.90624,22.15913],[113.90626,22.15919],[113.90628,22.15929],[113.90637,22.15928],[113.9064,22.15926],[113.90633,22.15914],[113.90634,22.15911],[113.90637,22.15911],[113.90652,22.15927],[113.90656,22.15925],[113.90655,22.15917],[113.90649,22.15916],[113.90648,22.15913],[113.90651,22.15911],[113.90655,22.15912],[113.90661,22.15909],[113.90664,22.1591],[113.90666,22.15911],[113.9066,22.15918],[113.90674,22.1592],[113.90693,22.15914],[113.90699,22.15913],[113.90721,22.15901],[113.90731,22.15898],[113.90733,22.15893],[113.90749,22.1589],[113.90765,22.15883],[113.9077,22.15883],[113.90775,22.15894],[113.90787,22.1589],[113.90798,22.15891],[113.908,22.15895],[113.90819,22.15896],[113.90851,22.15894],[113.90904,22.15901],[113.90922,22.15905],[113.90945,22.1591],[113.90971,22.15915],[113.90999,22.15902],[113.91026,22.15901],[113.91029,22.15897],[113.91043,22.15885],[113.91058,22.15879],[113.9107,22.15871],[113.91074,22.15866],[113.91075,22.15859],[113.91077,22.15858],[113.91093,22.15867],[113.91126,22.15877],[113.91142,22.15882],[113.91166,22.15891],[113.91174,22.15897],[113.91188,22.15918],[113.91199,22.15919],[113.91208,22.15924],[113.91211,22.15929],[113.91207,22.15938],[113.9122,22.15941],[113.91224,22.15939],[113.91226,22.15938],[113.91229,22.15938],[113.91231,22.1594],[113.91231,22.15941],[113.91229,22.15943],[113.91226,22.15944],[113.91223,22.15946],[113.91224,22.15947],[113.9123,22.15953],[113.9123,22.15963],[113.91226,22.15976],[113.91244,22.15972],[113.91243,22.15979],[113.91267,22.15989],[113.91272,22.15997],[113.9127,22.1601],[113.91274,22.16021],[113.91283,22.16033],[113.91293,22.16035],[113.91307,22.16033],[113.91328,22.16011],[113.91342,22.16009],[113.91355,22.16007],[113.91367,22.16014],[113.91381,22.16009],[113.91403,22.16013],[113.91424,22.16],[113.91445,22.15999],[113.91459,22.15994],[113.91493,22.16005],[113.91478,22.15985],[113.91479,22.15981],[113.91501,22.1597],[113.91517,22.1597],[113.91534,22.15969],[113.91549,22.15968],[113.91562,22.15977],[113.91565,22.15984],[113.9156,22.16001],[113.91555,22.16007],[113.91559,22.16029],[113.9155,22.16026],[113.91546,22.1605],[113.91534,22.16057],[113.91529,22.16066],[113.91536,22.16086],[113.91537,22.16096],[113.91535,22.16119],[113.91508,22.16151],[113.91477,22.16208],[113.91474,22.16224],[113.91476,22.16234],[113.91476,22.16241],[113.91475,22.16246],[113.91478,22.16256],[113.91488,22.16263],[113.91482,22.16284],[113.91467,22.16289],[113.91465,22.16298],[113.91454,22.16299],[113.91458,22.16308],[113.91443,22.16322],[113.91411,22.16305],[113.91405,22.16322],[113.9139,22.16328],[113.91383,22.16319],[113.91388,22.16313],[113.91387,22.16306],[113.91363,22.16293],[113.91357,22.16279],[113.91348,22.16276],[113.91338,22.16278],[113.91313,22.16292],[113.91306,22.16296],[113.91289,22.16314],[113.9128,22.16329],[113.91274,22.16344],[113.91273,22.1635],[113.91276,22.16352],[113.91283,22.16358],[113.91294,22.16369],[113.91309,22.16374],[113.91304,22.16382],[113.91311,22.1639],[113.91303,22.16392],[113.91303,22.16403],[113.91292,22.16396],[113.91286,22.164],[113.91299,22.16414],[113.91294,22.16421],[113.913,22.16424],[113.91296,22.16432],[113.91307,22.16446],[113.91304,22.16459],[113.9131,22.16465],[113.91302,22.16491],[113.91298,22.16492],[113.91294,22.16508],[113.91306,22.16585],[113.91307,22.16623],[113.91315,22.16647],[113.91331,22.16666],[113.91355,22.16678],[113.91369,22.16676],[113.91379,22.16684],[113.91392,22.16678],[113.91393,22.16678],[113.91404,22.16673],[113.91408,22.16666],[113.91417,22.16662],[113.91426,22.16661],[113.91426,22.16665],[113.91446,22.16666],[113.91447,22.16659],[113.91459,22.16655],[113.91463,22.16653],[113.91482,22.16649],[113.91498,22.16654],[113.91513,22.16653],[113.9152,22.16656],[113.91524,22.16681],[113.91522,22.16685],[113.91515,22.16688],[113.91518,22.16693],[113.91546,22.16671],[113.91554,22.16669],[113.91578,22.16669],[113.91581,22.16673],[113.91592,22.16676],[113.91591,22.16687],[113.91608,22.16689],[113.91623,22.16691],[113.91623,22.16696],[113.91615,22.16704],[113.91626,22.16714],[113.9164,22.16711],[113.91651,22.16704],[113.91656,22.16709],[113.91657,22.1672],[113.91678,22.16719],[113.9168,22.16713],[113.9169,22.1671],[113.91678,22.16706],[113.91672,22.16701],[113.91673,22.16699],[113.91691,22.16706],[113.91692,22.16711],[113.91701,22.16717],[113.91748,22.16743],[113.91754,22.16756],[113.91745,22.16762],[113.91738,22.16771],[113.91743,22.1678],[113.91744,22.16797],[113.91733,22.16803],[113.91734,22.16811],[113.91728,22.16828],[113.91709,22.16814],[113.91703,22.16834],[113.91697,22.16834],[113.91691,22.16842],[113.91688,22.16856],[113.91681,22.16856],[113.91668,22.16844],[113.9166,22.16842],[113.91656,22.16867],[113.91642,22.16872],[113.91642,22.16863],[113.91619,22.16884],[113.91599,22.16893],[113.91576,22.1689],[113.91574,22.16902],[113.91567,22.16914],[113.91556,22.1693],[113.91549,22.16935],[113.91538,22.16936],[113.9153,22.16948],[113.91522,22.16937],[113.91515,22.16938],[113.91505,22.16958],[113.91495,22.16964],[113.91476,22.16961],[113.91459,22.16956],[113.91442,22.16935],[113.91442,22.16945],[113.91427,22.16949],[113.91409,22.16917],[113.91386,22.16912],[113.91382,22.16911],[113.91378,22.1691],[113.91364,22.16911],[113.91351,22.16922],[113.91337,22.16928],[113.91347,22.16935],[113.91339,22.16945],[113.91332,22.16949],[113.91322,22.16955],[113.91313,22.16959],[113.91254,22.16946],[113.91256,22.16957],[113.91246,22.16958],[113.91239,22.1696],[113.91225,22.16968],[113.91215,22.16984],[113.91169,22.16993],[113.91165,22.17005]]],[[[113.9007,22.17227],[113.90071,22.17228],[113.90071,22.17229],[113.90068,22.17233],[113.90067,22.17233],[113.90066,22.17232],[113.90064,22.17229],[113.90065,22.17228],[113.90067,22.17226],[113.90069,22.17226],[113.9007,22.17227]]],[[[113.89895,22.17235],[113.89893,22.17236],[113.89892,22.17233],[113.89893,22.17231],[113.89896,22.17229],[113.89898,22.17229],[113.899,22.1723],[113.89901,22.17234],[113.89901,22.17235],[113.899,22.17236],[113.89898,22.17235],[113.89896,22.17234],[113.89895,22.17235]]],[[[113.90061,22.17237],[113.90062,22.17238],[113.90062,22.17239],[113.90062,22.1724],[113.90061,22.17241],[113.90059,22.17241],[113.90058,22.1724],[113.90057,22.17239],[113.90056,22.17238],[113.90057,22.17237],[113.90058,22.17236],[113.9006,22.17236],[113.90061,22.17237]]],[[[113.89863,22.17248],[113.89863,22.1725],[113.89863,22.17252],[113.89861,22.17254],[113.89863,22.17255],[113.89864,22.17257],[113.89863,22.17258],[113.8986,22.17258],[113.89859,22.17258],[113.89859,22.17256],[113.89859,22.17255],[113.89858,22.1725],[113.89859,22.17249],[113.89862,22.17248],[113.89863,22.17248]]],[[[114.27349,22.17279],[114.27349,22.17284],[114.27346,22.17284],[114.27337,22.17277],[114.27333,22.17278],[114.27327,22.17278],[114.27321,22.17281],[114.27289,22.17263],[114.27276,22.17237],[114.27276,22.17229],[114.27271,22.17222],[114.27269,22.17211],[114.27267,22.17207],[114.27266,22.17202],[114.27268,22.17184],[114.27276,22.17184],[114.27278,22.1719],[114.27288,22.17185],[114.2729,22.17187],[114.27293,22.17215],[114.27301,22.17219],[114.27307,22.17211],[114.27318,22.1721],[114.27318,22.1722],[114.27322,22.17226],[114.27326,22.17237],[114.27333,22.17232],[114.27336,22.17231],[114.27338,22.17234],[114.27337,22.1724],[114.27339,22.1724],[114.27346,22.17248],[114.27348,22.17254],[114.27348,22.17264],[114.27349,22.17279]]],[[[113.90392,22.17354],[113.90393,22.17355],[113.90393,22.17356],[113.90394,22.17358],[113.90393,22.17359],[113.90391,22.17359],[113.9039,22.17359],[113.90387,22.17358],[113.90386,22.17357],[113.90385,22.17356],[113.90386,22.17355],[113.90388,22.17354],[113.9039,22.17354],[113.90392,22.17354]]],[[[113.90278,22.17261],[113.90237,22.1727],[113.90235,22.17279],[113.90245,22.17297],[113.90239,22.17307],[113.9022,22.17321],[113.90202,22.17345],[113.90164,22.17364],[113.90155,22.17361],[113.90149,22.17347],[113.90138,22.17343],[113.90126,22.17331],[113.9012,22.17316],[113.90122,22.17274],[113.901,22.17247],[113.90075,22.17225],[113.9006,22.17224],[113.90046,22.17239],[113.90037,22.17243],[113.90032,22.17244],[113.90032,22.17247],[113.90036,22.17245],[113.90039,22.17245],[113.90042,22.17248],[113.90043,22.1725],[113.90043,22.17252],[113.90042,22.17254],[113.90035,22.17255],[113.90033,22.17255],[113.90029,22.17252],[113.90028,22.17249],[113.90028,22.17248],[113.90025,22.17246],[113.90025,22.17244],[113.9002,22.17241],[113.90016,22.17242],[113.89998,22.17245],[113.89967,22.17237],[113.89934,22.17241],[113.89916,22.17234],[113.89897,22.17228],[113.89888,22.17215],[113.89876,22.17216],[113.89873,22.17203],[113.89861,22.17206],[113.89849,22.17196],[113.8983,22.17201],[113.89818,22.17196],[113.89806,22.17206],[113.89795,22.17204],[113.8979,22.17202],[113.89786,22.17198],[113.89785,22.17195],[113.89786,22.17192],[113.89788,22.1719],[113.89789,22.17188],[113.89785,22.17186],[113.89783,22.17185],[113.89781,22.17183],[113.89782,22.17182],[113.89785,22.17182],[113.89788,22.17183],[113.89789,22.17181],[113.89792,22.17178],[113.89793,22.17176],[113.89794,22.17172],[113.89795,22.1717],[113.89808,22.17167],[113.89809,22.17155],[113.89816,22.1715],[113.89839,22.17147],[113.89846,22.1715],[113.89865,22.17141],[113.89867,22.17138],[113.89861,22.1713],[113.89876,22.17121],[113.89889,22.1712],[113.89893,22.17135],[113.89902,22.17139],[113.89898,22.1713],[113.89902,22.1711],[113.8992,22.17101],[113.89932,22.17102],[113.89932,22.17098],[113.89933,22.17096],[113.89935,22.17095],[113.89937,22.17096],[113.8994,22.17097],[113.8994,22.17099],[113.89937,22.171],[113.89936,22.17102],[113.89946,22.17098],[113.89955,22.17103],[113.89957,22.17125],[113.89966,22.17132],[113.89974,22.17132],[113.89982,22.17136],[113.89982,22.17144],[113.89988,22.17146],[113.89996,22.17141],[113.90004,22.17146],[113.90007,22.17157],[113.90058,22.17208],[113.90061,22.17218],[113.90079,22.17221],[113.90081,22.17215],[113.90116,22.17202],[113.90125,22.1719],[113.90134,22.17148],[113.90147,22.17134],[113.90175,22.17128],[113.90187,22.17132],[113.90192,22.17141],[113.90185,22.17168],[113.90186,22.1718],[113.90212,22.17198],[113.90216,22.172],[113.90217,22.17201],[113.90217,22.17202],[113.90215,22.17203],[113.90213,22.17202],[113.90211,22.17208],[113.90216,22.17207],[113.90217,22.17208],[113.90218,22.17209],[113.90217,22.1721],[113.90216,22.17211],[113.90211,22.17213],[113.90209,22.17213],[113.90204,22.17223],[113.90217,22.17242],[113.90234,22.17252],[113.9025,22.17239],[113.9028,22.1723],[113.90284,22.17232],[113.9029,22.17248],[113.90278,22.17261]]],[[[113.90698,22.17379],[113.90689,22.17375],[113.90686,22.17375],[113.90683,22.17373],[113.90684,22.17371],[113.90688,22.17369],[113.90689,22.17365],[113.90684,22.1736],[113.90676,22.17363],[113.9067,22.17362],[113.9067,22.17361],[113.90675,22.17359],[113.90679,22.17355],[113.90676,22.17351],[113.9068,22.17344],[113.90693,22.17336],[113.9071,22.17334],[113.90731,22.1732],[113.90738,22.17319],[113.90737,22.17316],[113.90739,22.17314],[113.90743,22.17314],[113.90746,22.17315],[113.90746,22.17311],[113.90744,22.1731],[113.90745,22.17306],[113.90746,22.17304],[113.9075,22.17304],[113.90755,22.17304],[113.90757,22.17304],[113.90758,22.17306],[113.90758,22.17307],[113.90754,22.17306],[113.90752,22.17307],[113.9075,22.1731],[113.90749,22.17312],[113.9075,22.17316],[113.90753,22.17317],[113.90757,22.1732],[113.90767,22.17328],[113.90766,22.17336],[113.90759,22.17343],[113.90763,22.17347],[113.90764,22.17349],[113.90763,22.1735],[113.9076,22.17349],[113.9076,22.17347],[113.90759,22.17346],[113.90757,22.17346],[113.90754,22.17346],[113.90744,22.17353],[113.90738,22.17352],[113.90733,22.17362],[113.90724,22.17367],[113.90704,22.17373],[113.90702,22.17373],[113.90698,22.17379]]],[[[113.90565,22.17444],[113.90566,22.17445],[113.90566,22.17446],[113.90565,22.1745],[113.90562,22.17453],[113.90559,22.17453],[113.90552,22.17449],[113.90552,22.17447],[113.90554,22.17445],[113.90561,22.17444],[113.90565,22.17444]]],[[[113.90473,22.1748],[113.90423,22.17465],[113.90415,22.17453],[113.9041,22.17411],[113.90403,22.17405],[113.90396,22.17398],[113.90395,22.17396],[113.90397,22.17389],[113.90392,22.17365],[113.90398,22.17355],[113.9042,22.17348],[113.90423,22.17343],[113.90421,22.1734],[113.90422,22.17337],[113.90432,22.17332],[113.90435,22.17334],[113.90434,22.17338],[113.90443,22.17337],[113.90445,22.17333],[113.90446,22.17331],[113.90451,22.1733],[113.90453,22.17333],[113.90451,22.17338],[113.9046,22.17334],[113.90485,22.17313],[113.905,22.17311],[113.90505,22.17316],[113.90529,22.17299],[113.90533,22.17276],[113.90541,22.17279],[113.90546,22.1729],[113.90534,22.17304],[113.90536,22.17311],[113.90542,22.17316],[113.90567,22.17317],[113.90577,22.17322],[113.90583,22.17334],[113.90584,22.17348],[113.90594,22.17365],[113.9059,22.17374],[113.9058,22.1737],[113.90566,22.17385],[113.90561,22.17394],[113.90552,22.17406],[113.90561,22.17409],[113.9056,22.17415],[113.90542,22.17426],[113.90547,22.17432],[113.90542,22.17448],[113.90532,22.17461],[113.90521,22.17465],[113.90505,22.17473],[113.90502,22.1748],[113.90497,22.1748],[113.90492,22.17477],[113.90473,22.1748]]],[[[113.90548,22.17481],[113.90546,22.17482],[113.90543,22.17481],[113.9054,22.17481],[113.90534,22.17481],[113.90533,22.17479],[113.90533,22.17477],[113.90538,22.17473],[113.90542,22.17468],[113.90545,22.17467],[113.9055,22.17468],[113.90552,22.17469],[113.90553,22.17473],[113.90551,22.17475],[113.9055,22.17475],[113.90548,22.17481]]],[[[114.23725,22.17543],[114.23721,22.17544],[114.23703,22.17552],[114.23692,22.17553],[114.23686,22.17559],[114.23673,22.17558],[114.23671,22.1755],[114.23663,22.17547],[114.23654,22.17537],[114.23647,22.1754],[114.23637,22.17533],[114.23649,22.17525],[114.23655,22.17528],[114.2366,22.17518],[114.23668,22.17512],[114.23674,22.17516],[114.23689,22.17513],[114.23708,22.17495],[114.23717,22.17494],[114.23726,22.17491],[114.23734,22.17496],[114.23739,22.17496],[114.23746,22.17507],[114.23737,22.17523],[114.23726,22.17525],[114.23725,22.17543]]],[[[113.92576,22.17612],[113.92567,22.17616],[113.92569,22.17625],[113.92561,22.17639],[113.92548,22.17638],[113.92537,22.1763],[113.92526,22.17614],[113.92531,22.17611],[113.92534,22.17608],[113.92539,22.17602],[113.92553,22.17597],[113.92554,22.17607],[113.92565,22.17601],[113.92576,22.17599],[113.9258,22.17602],[113.92576,22.17612]]],[[[113.92489,22.17688],[113.92475,22.17689],[113.92464,22.17682],[113.92458,22.17674],[113.9246,22.17665],[113.92471,22.17656],[113.92464,22.17657],[113.92469,22.1765],[113.92474,22.17651],[113.92479,22.17639],[113.92491,22.17647],[113.92487,22.17638],[113.92494,22.17633],[113.92502,22.17635],[113.92506,22.1764],[113.92502,22.17651],[113.9249,22.17659],[113.92502,22.17661],[113.925,22.17674],[113.92495,22.1767],[113.92489,22.17688]]],[[[113.92474,22.17712],[113.92459,22.1772],[113.92449,22.17721],[113.92439,22.17713],[113.92451,22.17708],[113.92452,22.17705],[113.92445,22.177],[113.92437,22.17706],[113.92429,22.17708],[113.92424,22.17703],[113.92425,22.17698],[113.92435,22.17693],[113.9244,22.17694],[113.9245,22.17686],[113.92471,22.17692],[113.9248,22.17697],[113.92484,22.17703],[113.92472,22.17701],[113.92474,22.17712]]],[[[113.91086,22.17781],[113.91084,22.17777],[113.91082,22.17771],[113.9108,22.17771],[113.9108,22.17767],[113.91083,22.17765],[113.91087,22.17763],[113.91089,22.17764],[113.91091,22.17765],[113.91095,22.17764],[113.91096,22.17766],[113.9109,22.17768],[113.91087,22.1777],[113.91093,22.17773],[113.91095,22.17778],[113.91093,22.1778],[113.91091,22.17779],[113.91086,22.17781]]],[[[113.91081,22.17779],[113.91081,22.17782],[113.91079,22.17783],[113.9107,22.1778],[113.91071,22.17778],[113.91072,22.17777],[113.91081,22.17779]]],[[[113.92548,22.17752],[113.92557,22.17757],[113.92569,22.17765],[113.9258,22.17771],[113.92597,22.17784],[113.92609,22.17804],[113.9261,22.17814],[113.92595,22.17818],[113.9258,22.17812],[113.92556,22.17798],[113.92552,22.17793],[113.92527,22.17775],[113.92525,22.17768],[113.92513,22.17759],[113.9252,22.17753],[113.92527,22.17749],[113.92548,22.17752]]],[[[113.91085,22.17813],[113.91085,22.17815],[113.91083,22.17816],[113.91083,22.17811],[113.91084,22.1781],[113.91085,22.1781],[113.91087,22.17809],[113.91089,22.17811],[113.91086,22.17811],[113.91085,22.17813]]],[[[113.91067,22.17823],[113.91068,22.17826],[113.91062,22.17828],[113.91061,22.17826],[113.91062,22.17824],[113.9106,22.17823],[113.91055,22.17825],[113.91056,22.17822],[113.91056,22.17821],[113.91062,22.17822],[113.91067,22.17823]]],[[[113.91036,22.17824],[113.9103,22.17828],[113.91029,22.17833],[113.91026,22.17837],[113.91021,22.17839],[113.91012,22.17842],[113.9101,22.17839],[113.9101,22.17836],[113.91019,22.17831],[113.9102,22.17816],[113.91014,22.17813],[113.91018,22.178],[113.91023,22.17798],[113.91025,22.17792],[113.9103,22.17783],[113.91042,22.17772],[113.91052,22.17773],[113.91062,22.17774],[113.91065,22.17784],[113.91074,22.17785],[113.91081,22.17791],[113.91088,22.17788],[113.9109,22.1779],[113.9109,22.17793],[113.91098,22.17796],[113.91102,22.17801],[113.91102,22.17804],[113.91098,22.17805],[113.9109,22.17805],[113.91087,22.178],[113.91082,22.17804],[113.91078,22.17807],[113.91072,22.17805],[113.91072,22.17807],[113.9107,22.17811],[113.91066,22.17812],[113.91066,22.17808],[113.91063,22.17807],[113.91056,22.1781],[113.91055,22.17818],[113.91049,22.17822],[113.91048,22.17828],[113.91046,22.17829],[113.91043,22.17827],[113.91042,22.17822],[113.91044,22.17818],[113.91041,22.17817],[113.91036,22.17824]]],[[[113.91344,22.17841],[113.91344,22.17843],[113.91343,22.17845],[113.91341,22.17846],[113.91338,22.17847],[113.91337,22.17842],[113.91339,22.17837],[113.91342,22.17837],[113.91344,22.17841]]],[[[113.91358,22.17817],[113.91361,22.1782],[113.91362,22.17824],[113.9136,22.17828],[113.91366,22.17834],[113.9136,22.17839],[113.9137,22.17841],[113.91375,22.17846],[113.91377,22.17851],[113.91376,22.17854],[113.9137,22.17856],[113.91357,22.17855],[113.91352,22.17852],[113.91351,22.17848],[113.91355,22.17843],[113.91347,22.17832],[113.91347,22.17827],[113.91351,22.17818],[113.91354,22.17817],[113.91358,22.17817]]],[[[113.92005,22.17859],[113.92002,22.17858],[113.92001,22.17858],[113.92,22.17857],[113.92,22.17856],[113.92,22.17853],[113.92,22.17849],[113.92,22.17848],[113.92,22.17847],[113.91997,22.17845],[113.91997,22.17844],[113.91999,22.17843],[113.91999,22.1784],[113.92,22.1784],[113.92001,22.1784],[113.92003,22.17844],[113.92003,22.17847],[113.92005,22.17848],[113.92006,22.17847],[113.92007,22.17846],[113.9201,22.17845],[113.92012,22.17846],[113.9202,22.1785],[113.92021,22.17851],[113.92022,22.17852],[113.92021,22.17854],[113.92019,22.17855],[113.92017,22.17855],[113.92015,22.17852],[113.92015,22.17851],[113.92014,22.1785],[113.92013,22.1785],[113.92011,22.1785],[113.92009,22.1785],[113.92008,22.17852],[113.92009,22.17855],[113.92008,22.17857],[113.92006,22.17857],[113.92005,22.17859]]],[[[113.91969,22.17901],[113.91968,22.17903],[113.91965,22.17906],[113.91962,22.17906],[113.91961,22.17906],[113.9196,22.17905],[113.91961,22.17899],[113.91963,22.17898],[113.91965,22.17899],[113.91966,22.17899],[113.91967,22.17898],[113.91969,22.17898],[113.9197,22.17899],[113.91969,22.17901]]],[[[113.91973,22.17908],[113.91974,22.17909],[113.91973,22.1791],[113.91969,22.17912],[113.91969,22.17913],[113.91969,22.17915],[113.91968,22.17916],[113.91966,22.17918],[113.91964,22.17919],[113.91962,22.1792],[113.91962,22.17919],[113.91963,22.17917],[113.91964,22.17916],[113.91966,22.17911],[113.91969,22.17909],[113.91972,22.17907],[113.91973,22.17908]]],[[[113.92008,22.17916],[113.92005,22.17919],[113.92004,22.17919],[113.92002,22.17921],[113.92,22.17923],[113.91999,22.17926],[113.91998,22.17928],[113.91997,22.17929],[113.91996,22.17928],[113.91996,22.17925],[113.91998,22.17922],[113.92003,22.17916],[113.92005,22.17915],[113.92008,22.17915],[113.92008,22.17916]]],[[[113.92678,22.17978],[113.92684,22.17991],[113.92682,22.17993],[113.92679,22.17993],[113.92674,22.17988],[113.92669,22.17978],[113.92663,22.17975],[113.92656,22.17968],[113.92656,22.17966],[113.9266,22.17962],[113.92665,22.17959],[113.9267,22.17956],[113.92673,22.17957],[113.92673,22.1796],[113.92668,22.17967],[113.92669,22.17972],[113.92673,22.17976],[113.92676,22.17975],[113.92678,22.17978]]],[[[113.92664,22.17989],[113.92665,22.17991],[113.92665,22.17993],[113.92663,22.17996],[113.92662,22.17995],[113.92659,22.17993],[113.92656,22.17989],[113.92657,22.17988],[113.92664,22.17989]]],[[[113.90933,22.18021],[113.90938,22.18022],[113.90939,22.18025],[113.90929,22.18025],[113.90929,22.1802],[113.90928,22.18016],[113.90923,22.18013],[113.90923,22.18007],[113.9092,22.18005],[113.9092,22.18002],[113.90923,22.18001],[113.90925,22.18005],[113.9093,22.18003],[113.9093,22.18],[113.90935,22.18002],[113.90938,22.17997],[113.90942,22.17998],[113.90946,22.17999],[113.90946,22.18002],[113.90944,22.18004],[113.90942,22.18005],[113.9094,22.18013],[113.90938,22.18014],[113.90932,22.18014],[113.90933,22.18021]]],[[[113.90904,22.18018],[113.90903,22.18021],[113.90899,22.18025],[113.90897,22.18025],[113.90896,22.18024],[113.909,22.1802],[113.90903,22.18018],[113.90904,22.18018]]],[[[113.92374,22.18023],[113.92378,22.18025],[113.9238,22.18028],[113.9238,22.18033],[113.92379,22.18035],[113.92378,22.18036],[113.92374,22.18034],[113.92371,22.18034],[113.92369,22.18034],[113.92368,22.18031],[113.92372,22.18029],[113.92369,22.18025],[113.92369,22.18024],[113.92372,22.18022],[113.92374,22.18023]]],[[[113.92399,22.18038],[113.92387,22.18037],[113.92386,22.18031],[113.92391,22.18032],[113.92369,22.18011],[113.92353,22.17978],[113.92355,22.1797],[113.92348,22.17963],[113.92351,22.17942],[113.92349,22.17932],[113.92358,22.17925],[113.92372,22.17933],[113.92364,22.17921],[113.92381,22.17912],[113.92381,22.17888],[113.92387,22.17889],[113.92394,22.17896],[113.92398,22.17881],[113.92397,22.17875],[113.92402,22.17864],[113.9245,22.17876],[113.92433,22.17848],[113.92434,22.17822],[113.92437,22.17804],[113.92449,22.17797],[113.92468,22.17795],[113.92472,22.17786],[113.92483,22.17785],[113.9249,22.17777],[113.92481,22.17766],[113.92497,22.17761],[113.92516,22.17775],[113.9254,22.17788],[113.92547,22.17796],[113.92574,22.17815],[113.926,22.17844],[113.92598,22.1785],[113.92573,22.17857],[113.92592,22.1786],[113.92612,22.1787],[113.92618,22.17875],[113.92619,22.17891],[113.92616,22.17895],[113.9261,22.17894],[113.92604,22.17911],[113.92593,22.17916],[113.92593,22.17931],[113.92583,22.17941],[113.92573,22.1794],[113.92552,22.17949],[113.92536,22.17951],[113.92523,22.17945],[113.92525,22.17958],[113.9252,22.17958],[113.92499,22.17968],[113.92484,22.17951],[113.9248,22.17951],[113.92479,22.17961],[113.92451,22.17952],[113.92461,22.17967],[113.92447,22.17973],[113.92438,22.17976],[113.92435,22.1798],[113.92432,22.17989],[113.92433,22.17995],[113.92447,22.18001],[113.92441,22.18014],[113.9243,22.18009],[113.92431,22.18017],[113.92421,22.18026],[113.92416,22.18037],[113.92402,22.18035],[113.92399,22.18038]]],[[[113.91812,22.18044],[113.9181,22.18046],[113.91809,22.18045],[113.91811,22.18039],[113.91807,22.18039],[113.91805,22.18037],[113.91807,22.18034],[113.9181,22.18032],[113.91812,22.18032],[113.91814,22.18037],[113.9182,22.18038],[113.91822,22.18039],[113.91825,22.18042],[113.91821,22.18044],[113.91815,22.18044],[113.91812,22.18044]]],[[[114.26622,22.1809],[114.26602,22.1809],[114.26594,22.18087],[114.26557,22.18079],[114.26553,22.18071],[114.26543,22.18063],[114.26487,22.18056],[114.26453,22.18048],[114.26417,22.18019],[114.26404,22.18001],[114.26383,22.17959],[114.26377,22.17928],[114.26381,22.17924],[114.26398,22.17922],[114.26386,22.17903],[114.26388,22.17885],[114.26382,22.17846],[114.26395,22.17795],[114.26376,22.17787],[114.26361,22.17791],[114.26349,22.17787],[114.26337,22.17778],[114.26329,22.17765],[114.26327,22.1776],[114.26319,22.17721],[114.26308,22.17735],[114.2628,22.17748],[114.26264,22.17742],[114.26214,22.1774],[114.26213,22.17762],[114.26201,22.17762],[114.26195,22.17761],[114.26184,22.17749],[114.26156,22.17733],[114.26158,22.17696],[114.26154,22.17692],[114.26149,22.17686],[114.26152,22.17682],[114.26122,22.17683],[114.26096,22.17701],[114.2606,22.17688],[114.26049,22.17693],[114.26039,22.17704],[114.2602,22.17709],[114.25994,22.17704],[114.25974,22.17686],[114.25964,22.17684],[114.25938,22.17689],[114.25925,22.17681],[114.25911,22.17681],[114.25883,22.17671],[114.2586,22.17656],[114.25849,22.17649],[114.25836,22.1764],[114.25802,22.17631],[114.25799,22.17623],[114.25788,22.1762],[114.25779,22.17611],[114.25769,22.17597],[114.25765,22.17581],[114.25742,22.17554],[114.25725,22.17559],[114.25717,22.17547],[114.25698,22.17535],[114.25683,22.17505],[114.25683,22.17483],[114.25663,22.17451],[114.25657,22.17456],[114.25638,22.17463],[114.25625,22.1749],[114.25617,22.17503],[114.25599,22.17502],[114.25591,22.17495],[114.25569,22.17485],[114.25557,22.17485],[114.25546,22.17469],[114.25541,22.17434],[114.25545,22.17425],[114.25557,22.17422],[114.25537,22.17407],[114.25536,22.17402],[114.25524,22.17385],[114.25517,22.17369],[114.25495,22.17346],[114.25483,22.17324],[114.25471,22.17296],[114.25462,22.1728],[114.25448,22.17268],[114.25427,22.17259],[114.25416,22.17247],[114.25402,22.1724],[114.25397,22.17238],[114.254,22.17238],[114.25376,22.17216],[114.25372,22.1722],[114.25355,22.17214],[114.25355,22.17207],[114.25337,22.17197],[114.25322,22.17178],[114.25297,22.17163],[114.25282,22.17146],[114.25278,22.17149],[114.25273,22.17148],[114.25257,22.17141],[114.25259,22.17133],[114.25258,22.17116],[114.25239,22.17099],[114.2521,22.17054],[114.25215,22.1704],[114.25212,22.17019],[114.252,22.16994],[114.25201,22.16982],[114.25201,22.16959],[114.252,22.16932],[114.25191,22.16926],[114.25164,22.16902],[114.25162,22.16895],[114.25149,22.1688],[114.25141,22.1687],[114.25133,22.16862],[114.25129,22.16859],[114.25127,22.16851],[114.25124,22.16837],[114.251,22.16818],[114.25092,22.16804],[114.25084,22.16787],[114.2508,22.16779],[114.25094,22.1677],[114.25094,22.16761],[114.25087,22.16741],[114.25035,22.16675],[114.25009,22.16649],[114.24996,22.16614],[114.24998,22.16602],[114.25015,22.16585],[114.25013,22.16569],[114.25021,22.16553],[114.25044,22.16523],[114.25038,22.16497],[114.25046,22.16475],[114.25028,22.16467],[114.25027,22.16463],[114.25036,22.16454],[114.25048,22.16436],[114.25053,22.16427],[114.25094,22.16394],[114.25113,22.16395],[114.25115,22.164],[114.25138,22.16411],[114.2515,22.16428],[114.2516,22.16436],[114.25178,22.16441],[114.25215,22.16479],[114.25222,22.16486],[114.25225,22.16488],[114.25235,22.16492],[114.25261,22.16489],[114.25265,22.1649],[114.25271,22.16492],[114.25277,22.16496],[114.25283,22.16499],[114.25288,22.16503],[114.25294,22.16507],[114.25296,22.16508],[114.25298,22.16507],[114.25301,22.16507],[114.25306,22.16511],[114.25311,22.16498],[114.25315,22.165],[114.2531,22.1651],[114.25311,22.16512],[114.25314,22.16515],[114.25317,22.16512],[114.25324,22.16515],[114.25324,22.16514],[114.2533,22.16517],[114.25335,22.16519],[114.25336,22.16528],[114.25335,22.16532],[114.25338,22.16533],[114.25342,22.16537],[114.25344,22.16541],[114.25356,22.16542],[114.25361,22.16541],[114.25369,22.16537],[114.25373,22.16533],[114.25392,22.16512],[114.25395,22.1651],[114.254,22.16505],[114.25403,22.16501],[114.25409,22.16495],[114.25404,22.16491],[114.25412,22.1648],[114.25415,22.16482],[114.2542,22.16477],[114.2543,22.1647],[114.25432,22.1647],[114.25434,22.1647],[114.25436,22.16469],[114.25423,22.16458],[114.25421,22.16455],[114.2542,22.16451],[114.2542,22.16451],[114.25419,22.16449],[114.25418,22.16447],[114.25417,22.16446],[114.25409,22.16433],[114.25384,22.16412],[114.25372,22.16378],[114.25372,22.16374],[114.25375,22.16371],[114.25375,22.16368],[114.25373,22.16365],[114.25372,22.16365],[114.2537,22.16365],[114.25368,22.16365],[114.25367,22.16362],[114.25367,22.16357],[114.2537,22.16353],[114.25375,22.16348],[114.25376,22.16343],[114.25373,22.16339],[114.25368,22.16334],[114.25356,22.16335],[114.25346,22.16341],[114.25288,22.16334],[114.25289,22.1633],[114.25345,22.16336],[114.25354,22.1633],[114.25365,22.1633],[114.25363,22.16326],[114.25366,22.16321],[114.25366,22.16319],[114.25365,22.16318],[114.25356,22.16316],[114.25347,22.16309],[114.25341,22.16311],[114.25337,22.16308],[114.25332,22.16299],[114.25343,22.16291],[114.25345,22.16286],[114.25326,22.16281],[114.25309,22.16251],[114.25275,22.16244],[114.25264,22.16256],[114.25241,22.16263],[114.2523,22.16271],[114.25245,22.16283],[114.25241,22.16289],[114.25219,22.16285],[114.2521,22.16278],[114.2521,22.16274],[114.25208,22.16267],[114.25208,22.16259],[114.25199,22.16255],[114.25197,22.16251],[114.25203,22.16245],[114.25219,22.16234],[114.2522,22.16231],[114.25209,22.16204],[114.25206,22.16192],[114.25205,22.16168],[114.25213,22.16157],[114.2523,22.1615],[114.25277,22.16143],[114.25283,22.16149],[114.25287,22.16164],[114.2527,22.16175],[114.25286,22.16176],[114.25307,22.16186],[114.25323,22.16178],[114.25326,22.16173],[114.25315,22.16169],[114.25316,22.16161],[114.25322,22.16158],[114.25334,22.16159],[114.25346,22.16148],[114.25359,22.16104],[114.25369,22.16104],[114.25379,22.16098],[114.25388,22.161],[114.25421,22.16132],[114.25431,22.16129],[114.25435,22.16129],[114.25439,22.16131],[114.25442,22.16131],[114.25449,22.16124],[114.2545,22.16118],[114.25451,22.16114],[114.25467,22.161],[114.25471,22.16098],[114.25475,22.16098],[114.25479,22.16099],[114.25482,22.16099],[114.25485,22.16097],[114.25498,22.16082],[114.25502,22.16081],[114.25507,22.16083],[114.25524,22.16095],[114.25525,22.16106],[114.25528,22.16108],[114.25541,22.16099],[114.25561,22.16093],[114.25575,22.1609],[114.25593,22.16085],[114.25603,22.16084],[114.25623,22.16089],[114.25629,22.16088],[114.25639,22.16077],[114.25658,22.16069],[114.25678,22.16065],[114.2571,22.16063],[114.25736,22.16061],[114.25754,22.1607],[114.2576,22.16043],[114.25752,22.16041],[114.25748,22.16031],[114.25759,22.16006],[114.25774,22.15991],[114.25787,22.15985],[114.25796,22.15985],[114.25814,22.15976],[114.25839,22.15971],[114.2584,22.15964],[114.25831,22.15957],[114.25817,22.15951],[114.25802,22.15949],[114.25763,22.15926],[114.25751,22.15885],[114.25749,22.15871],[114.25738,22.1585],[114.2572,22.15827],[114.25723,22.15819],[114.25718,22.15819],[114.25713,22.15822],[114.25712,22.15826],[114.2571,22.15828],[114.25706,22.15826],[114.25704,22.15821],[114.25702,22.15819],[114.25698,22.15821],[114.25699,22.15828],[114.25706,22.15833],[114.25702,22.15837],[114.25696,22.15838],[114.25693,22.15835],[114.25688,22.15823],[114.25677,22.15816],[114.2567,22.15806],[114.2567,22.1579],[114.2568,22.15781],[114.25647,22.15785],[114.25626,22.15766],[114.25627,22.15759],[114.25616,22.15746],[114.25634,22.15742],[114.256,22.15717],[114.25587,22.15698],[114.25589,22.15685],[114.25586,22.15678],[114.25566,22.15667],[114.25574,22.15656],[114.25576,22.15644],[114.25602,22.15648],[114.25608,22.15639],[114.25605,22.15636],[114.25592,22.15636],[114.25575,22.15629],[114.25566,22.1562],[114.25561,22.15606],[114.2555,22.15597],[114.25547,22.15598],[114.25531,22.15582],[114.25499,22.15553],[114.25494,22.15546],[114.25496,22.15542],[114.2552,22.15527],[114.25531,22.15534],[114.25551,22.15534],[114.2558,22.15546],[114.25606,22.15559],[114.2563,22.15565],[114.2564,22.15572],[114.25648,22.15586],[114.25661,22.15588],[114.25663,22.15594],[114.25641,22.15599],[114.25639,22.15602],[114.25731,22.15599],[114.25751,22.15605],[114.25757,22.15612],[114.25774,22.15616],[114.2579,22.15623],[114.25803,22.15635],[114.25827,22.15645],[114.25838,22.15645],[114.25851,22.15648],[114.25857,22.15651],[114.25858,22.15667],[114.25878,22.15681],[114.25893,22.15699],[114.25968,22.15748],[114.25976,22.15758],[114.25993,22.15763],[114.26011,22.15781],[114.26015,22.15791],[114.26072,22.15824],[114.26079,22.15824],[114.26093,22.15833],[114.26126,22.15863],[114.26126,22.15873],[114.26137,22.15879],[114.26146,22.15892],[114.26147,22.15921],[114.26135,22.1595],[114.26114,22.15955],[114.26106,22.15954],[114.26105,22.15961],[114.26091,22.15975],[114.26062,22.15978],[114.2605,22.15976],[114.26003,22.15979],[114.26001,22.15991],[114.26075,22.1602],[114.261,22.16037],[114.26115,22.1605],[114.26116,22.16063],[114.26136,22.16078],[114.26139,22.16086],[114.26153,22.16096],[114.26185,22.16118],[114.26218,22.16152],[114.2622,22.16159],[114.26245,22.16177],[114.26287,22.16216],[114.26342,22.16286],[114.26365,22.16326],[114.26402,22.1636],[114.26427,22.16396],[114.26438,22.16406],[114.26444,22.16414],[114.26465,22.16445],[114.26474,22.16472],[114.2648,22.16474],[114.26483,22.16469],[114.26483,22.16447],[114.2649,22.16415],[114.26505,22.16416],[114.26514,22.16411],[114.26532,22.16414],[114.26558,22.16422],[114.26564,22.16422],[114.26581,22.16439],[114.26587,22.16454],[114.26607,22.16466],[114.26616,22.16456],[114.26635,22.16446],[114.26628,22.16435],[114.26626,22.16416],[114.26622,22.16401],[114.26623,22.16389],[114.26618,22.16378],[114.26617,22.16371],[114.26624,22.16353],[114.26622,22.16345],[114.26624,22.16338],[114.26633,22.16337],[114.26639,22.16335],[114.26639,22.16315],[114.26625,22.16273],[114.26622,22.16255],[114.26632,22.16251],[114.26658,22.16246],[114.26661,22.16245],[114.26679,22.16239],[114.26693,22.16228],[114.2671,22.16225],[114.26721,22.1623],[114.26743,22.16251],[114.26773,22.16246],[114.26796,22.16243],[114.26802,22.16244],[114.26825,22.16257],[114.26861,22.16285],[114.26867,22.16297],[114.2688,22.16301],[114.26886,22.16292],[114.26885,22.16278],[114.26885,22.16267],[114.2689,22.16254],[114.26898,22.16252],[114.26901,22.16242],[114.26894,22.16239],[114.26895,22.16232],[114.26915,22.16222],[114.26906,22.16215],[114.26929,22.16207],[114.26946,22.16209],[114.26953,22.16214],[114.2697,22.16213],[114.26987,22.16218],[114.26992,22.16229],[114.27004,22.16245],[114.27016,22.16266],[114.27044,22.16249],[114.2706,22.16229],[114.27097,22.1622],[114.27135,22.1623],[114.27169,22.16239],[114.27181,22.16246],[114.27194,22.16262],[114.27211,22.16259],[114.27206,22.1624],[114.27202,22.16229],[114.27263,22.16236],[114.27283,22.16234],[114.27334,22.16251],[114.27362,22.16247],[114.27377,22.16239],[114.27406,22.16238],[114.27425,22.16245],[114.27448,22.16278],[114.27454,22.16296],[114.27454,22.16324],[114.27433,22.16351],[114.27438,22.16359],[114.27432,22.16367],[114.27421,22.16374],[114.27389,22.16389],[114.27371,22.16396],[114.27374,22.16414],[114.27387,22.16433],[114.27405,22.16502],[114.27399,22.16509],[114.27388,22.16512],[114.27378,22.16535],[114.2738,22.16559],[114.27379,22.16589],[114.27372,22.16601],[114.27363,22.16609],[114.27342,22.16618],[114.27326,22.16618],[114.2731,22.16612],[114.27302,22.16623],[114.27311,22.16653],[114.27301,22.16682],[114.27296,22.16686],[114.27292,22.16685],[114.27272,22.16706],[114.27259,22.16705],[114.27255,22.1671],[114.27282,22.16722],[114.27306,22.16721],[114.27319,22.16729],[114.27328,22.16749],[114.2731,22.16762],[114.27293,22.16776],[114.27277,22.1679],[114.2726,22.16794],[114.27252,22.16801],[114.27245,22.16813],[114.27233,22.16839],[114.27233,22.16842],[114.2721,22.1688],[114.27202,22.16879],[114.27186,22.16887],[114.27171,22.1689],[114.27173,22.16899],[114.27181,22.16909],[114.27174,22.16925],[114.27161,22.16927],[114.2715,22.16908],[114.27143,22.16909],[114.27155,22.16955],[114.27146,22.16968],[114.27158,22.17042],[114.27155,22.17059],[114.2715,22.17065],[114.27165,22.17075],[114.27185,22.17087],[114.27223,22.17138],[114.2726,22.17207],[114.27277,22.17266],[114.27276,22.17274],[114.27257,22.1729],[114.27257,22.17296],[114.27253,22.17309],[114.2725,22.17332],[114.27239,22.17339],[114.27228,22.17341],[114.27222,22.17349],[114.27214,22.17366],[114.27215,22.17377],[114.27216,22.17388],[114.27218,22.17393],[114.27212,22.17399],[114.27206,22.17399],[114.27187,22.17397],[114.27179,22.17402],[114.27172,22.17445],[114.27179,22.1753],[114.27178,22.17551],[114.27172,22.17573],[114.27159,22.17589],[114.27157,22.17609],[114.27153,22.17614],[114.27142,22.17608],[114.27124,22.17621],[114.27109,22.1764],[114.27104,22.1765],[114.27111,22.17674],[114.27108,22.17682],[114.27091,22.17698],[114.27069,22.17703],[114.27036,22.17722],[114.27026,22.1772],[114.2702,22.1772],[114.27019,22.17741],[114.27014,22.17748],[114.26988,22.17747],[114.26985,22.17745],[114.26986,22.17727],[114.26977,22.1772],[114.26971,22.17738],[114.2695,22.17773],[114.26925,22.17807],[114.26913,22.17814],[114.2691,22.1782],[114.26892,22.17823],[114.26881,22.1782],[114.26862,22.1782],[114.26836,22.17803],[114.26831,22.17794],[114.2682,22.17797],[114.26818,22.17805],[114.26823,22.17816],[114.26822,22.17832],[114.26824,22.17844],[114.26811,22.17863],[114.26797,22.17884],[114.26789,22.17882],[114.26768,22.17866],[114.26736,22.17865],[114.26726,22.17854],[114.26721,22.17855],[114.26715,22.17875],[114.26719,22.17896],[114.26709,22.17926],[114.26709,22.17949],[114.26693,22.17972],[114.26695,22.17981],[114.26683,22.18],[114.26687,22.18013],[114.26687,22.18017],[114.26665,22.18053],[114.26644,22.18067],[114.26635,22.18082],[114.26624,22.18082],[114.26622,22.1809]]],[[[113.91687,22.18269],[113.91688,22.18271],[113.91688,22.18272],[113.91686,22.18274],[113.91685,22.18274],[113.91682,22.18272],[113.91682,22.1827],[113.91683,22.18268],[113.91685,22.18268],[113.91687,22.18269]]],[[[113.91663,22.18328],[113.91664,22.18329],[113.91665,22.18332],[113.91665,22.18335],[113.91664,22.18337],[113.91663,22.18337],[113.91661,22.18335],[113.91658,22.18332],[113.91657,22.1833],[113.91657,22.18328],[113.91662,22.18328],[113.91663,22.18328]]],[[[114.3041,22.18367],[114.30407,22.18371],[114.30397,22.18371],[114.30387,22.18364],[114.30383,22.18361],[114.30378,22.18362],[114.30373,22.18355],[114.30356,22.18341],[114.30353,22.18333],[114.30341,22.18329],[114.30328,22.18319],[114.30322,22.18304],[114.30314,22.18305],[114.30306,22.18299],[114.30302,22.18304],[114.30298,22.18304],[114.30292,22.18298],[114.30284,22.18309],[114.30285,22.1831],[114.3028,22.18317],[114.30265,22.18307],[114.3027,22.183],[114.3028,22.18307],[114.30288,22.18295],[114.3027,22.18289],[114.30265,22.18284],[114.3025,22.18279],[114.30228,22.18264],[114.30218,22.1825],[114.30216,22.1823],[114.30208,22.18214],[114.3021,22.18204],[114.30208,22.18195],[114.30214,22.18193],[114.30214,22.18187],[114.30217,22.18169],[114.30223,22.18161],[114.30222,22.18133],[114.30229,22.18117],[114.30282,22.18099],[114.3029,22.18101],[114.30293,22.18098],[114.30296,22.18094],[114.30303,22.18095],[114.30312,22.18121],[114.30317,22.1812],[114.30318,22.18119],[114.30316,22.18106],[114.3033,22.18124],[114.30332,22.18127],[114.30336,22.18126],[114.30344,22.18127],[114.30359,22.18145],[114.30365,22.18165],[114.30369,22.18163],[114.30373,22.18163],[114.30376,22.18162],[114.30391,22.18188],[114.30393,22.18218],[114.30386,22.18235],[114.30377,22.18238],[114.30383,22.18242],[114.3039,22.18236],[114.30397,22.18213],[114.30403,22.1821],[114.3041,22.18213],[114.30415,22.18219],[114.30421,22.1822],[114.30431,22.18235],[114.3044,22.18264],[114.30442,22.18254],[114.30447,22.18255],[114.30457,22.18273],[114.30453,22.18272],[114.3045,22.18277],[114.30453,22.18279],[114.30455,22.18277],[114.30457,22.18283],[114.30455,22.18286],[114.3046,22.18298],[114.30457,22.18308],[114.30452,22.18306],[114.30453,22.18316],[114.30452,22.18324],[114.3045,22.18328],[114.3044,22.1834],[114.30423,22.18347],[114.30422,22.18353],[114.30416,22.18358],[114.30409,22.18353],[114.3041,22.18367]]],[[[114.28301,22.1862],[114.28302,22.18621],[114.283,22.18623],[114.28299,22.18624],[114.28299,22.18624],[114.28297,22.18621],[114.28297,22.1862],[114.283,22.1862],[114.28301,22.1862]]],[[[114.2832,22.18636],[114.28322,22.18638],[114.28324,22.18639],[114.28325,22.18642],[114.28322,22.18644],[114.2832,22.18644],[114.28316,22.18643],[114.28315,22.18641],[114.28317,22.18636],[114.28319,22.18636],[114.2832,22.18636]]],[[[114.24428,22.18647],[114.24427,22.18648],[114.24423,22.1865],[114.2442,22.18648],[114.24422,22.18645],[114.24426,22.18645],[114.24428,22.18647]]],[[[114.28342,22.18663],[114.28342,22.18665],[114.28339,22.18666],[114.28338,22.1866],[114.2834,22.18659],[114.28342,22.18663]]],[[[114.24399,22.18706],[114.24402,22.18708],[114.24397,22.18712],[114.2439,22.18721],[114.24384,22.18727],[114.24381,22.18723],[114.24383,22.1872],[114.24386,22.18717],[114.24386,22.18716],[114.24389,22.18711],[114.24388,22.18707],[114.24394,22.18705],[114.24399,22.18706]]],[[[113.90866,22.18738],[113.90863,22.1874],[113.90859,22.1874],[113.90857,22.18739],[113.90857,22.18736],[113.90862,22.18732],[113.90866,22.18727],[113.90869,22.18724],[113.90872,22.18725],[113.90873,22.18726],[113.90873,22.18731],[113.90875,22.1873],[113.90879,22.18727],[113.90885,22.18723],[113.90891,22.18722],[113.90895,22.18726],[113.90892,22.18732],[113.90885,22.18736],[113.90879,22.18739],[113.90875,22.18738],[113.90871,22.18737],[113.90869,22.18736],[113.90866,22.18738]]],[[[114.29034,22.18781],[114.29028,22.18782],[114.29023,22.18781],[114.29015,22.18781],[114.2901,22.18779],[114.29009,22.18777],[114.29009,22.18776],[114.29013,22.18775],[114.29015,22.18772],[114.29019,22.18769],[114.29025,22.18771],[114.29029,22.18774],[114.29033,22.18778],[114.29034,22.18781]]],[[[113.90698,22.18782],[113.90669,22.18801],[113.90645,22.18793],[113.90629,22.18776],[113.90631,22.18766],[113.90637,22.18762],[113.90632,22.18751],[113.90623,22.18751],[113.90623,22.18747],[113.90625,22.18743],[113.90619,22.18734],[113.90618,22.18723],[113.90622,22.18705],[113.90617,22.18681],[113.90619,22.18668],[113.90622,22.18663],[113.90624,22.18662],[113.90624,22.18659],[113.90623,22.18656],[113.90624,22.18653],[113.9062,22.18649],[113.90618,22.18644],[113.9062,22.18639],[113.90623,22.18638],[113.90621,22.18633],[113.9062,22.18627],[113.90617,22.18621],[113.90622,22.18618],[113.90623,22.18616],[113.90617,22.18607],[113.90616,22.18602],[113.90625,22.18573],[113.90621,22.18566],[113.90623,22.18547],[113.90621,22.18543],[113.90614,22.18537],[113.90608,22.18522],[113.90592,22.18518],[113.90571,22.18498],[113.90558,22.18464],[113.90573,22.1845],[113.90587,22.18436],[113.90584,22.18417],[113.90579,22.18408],[113.90594,22.18387],[113.90599,22.18366],[113.90607,22.18364],[113.90615,22.18347],[113.90614,22.1834],[113.90616,22.18332],[113.90627,22.18324],[113.90632,22.18287],[113.9062,22.18265],[113.906,22.18255],[113.90598,22.1826],[113.90591,22.18261],[113.90588,22.18264],[113.90585,22.18263],[113.90582,22.18258],[113.9058,22.18254],[113.90577,22.18251],[113.90577,22.18246],[113.90592,22.1824],[113.90588,22.18228],[113.90589,22.18213],[113.906,22.18212],[113.90607,22.18201],[113.90606,22.18197],[113.90606,22.18188],[113.90604,22.18184],[113.90599,22.18173],[113.90596,22.18165],[113.90593,22.1816],[113.90585,22.1816],[113.90578,22.18155],[113.90581,22.18151],[113.90589,22.1815],[113.9059,22.18138],[113.90579,22.18128],[113.90573,22.18105],[113.90552,22.18086],[113.90543,22.18085],[113.90532,22.18061],[113.9053,22.18041],[113.90525,22.18034],[113.90529,22.18027],[113.90524,22.17988],[113.90542,22.17961],[113.90542,22.17949],[113.90548,22.17938],[113.90538,22.17931],[113.90538,22.17924],[113.90553,22.17912],[113.90562,22.17895],[113.90576,22.17889],[113.9059,22.17905],[113.90589,22.1791],[113.90572,22.17933],[113.9057,22.17938],[113.90574,22.17943],[113.90596,22.17949],[113.90617,22.17949],[113.90628,22.17941],[113.90668,22.17934],[113.90672,22.1793],[113.90681,22.17923],[113.90707,22.17906],[113.9073,22.17904],[113.90739,22.17911],[113.90741,22.17922],[113.9075,22.17926],[113.9076,22.17924],[113.90772,22.17957],[113.90781,22.17957],[113.90791,22.17961],[113.90795,22.17964],[113.90805,22.17964],[113.90819,22.1797],[113.90823,22.17975],[113.90832,22.17976],[113.90852,22.17975],[113.90858,22.17966],[113.90864,22.17964],[113.90868,22.17971],[113.90868,22.17981],[113.90872,22.17984],[113.90874,22.17991],[113.9088,22.17994],[113.90881,22.17998],[113.90879,22.18003],[113.90892,22.18017],[113.90888,22.18033],[113.90894,22.1806],[113.90885,22.18085],[113.90887,22.18093],[113.90917,22.18126],[113.90947,22.18147],[113.9103,22.18183],[113.91062,22.18191],[113.91136,22.182],[113.91195,22.18196],[113.91232,22.18188],[113.91265,22.18176],[113.91306,22.18152],[113.91327,22.18127],[113.91326,22.18119],[113.91324,22.18109],[113.91324,22.18083],[113.91331,22.1808],[113.9134,22.18053],[113.91346,22.18034],[113.91348,22.18024],[113.91335,22.1799],[113.91313,22.17974],[113.91303,22.17972],[113.91296,22.17961],[113.9129,22.17953],[113.91294,22.17935],[113.91297,22.1792],[113.91313,22.17909],[113.9133,22.17886],[113.91322,22.17878],[113.91317,22.17869],[113.91338,22.17859],[113.91365,22.17859],[113.9138,22.17864],[113.9138,22.17867],[113.91372,22.17871],[113.91375,22.17875],[113.9137,22.17886],[113.91371,22.17888],[113.91375,22.17887],[113.91378,22.17886],[113.91379,22.17878],[113.91386,22.17871],[113.91404,22.17872],[113.91421,22.17878],[113.91421,22.17891],[113.91416,22.17898],[113.91414,22.17907],[113.91411,22.17917],[113.91412,22.17917],[113.91416,22.17909],[113.91421,22.17904],[113.91427,22.17892],[113.91433,22.17889],[113.91443,22.17888],[113.91446,22.17889],[113.91446,22.17894],[113.91443,22.17898],[113.91437,22.179],[113.91436,22.17906],[113.91441,22.17906],[113.91445,22.17909],[113.91446,22.17911],[113.91445,22.17915],[113.91442,22.17917],[113.91438,22.17917],[113.91436,22.17919],[113.91457,22.17932],[113.91462,22.17928],[113.91464,22.17925],[113.91469,22.17923],[113.91473,22.17923],[113.91474,22.17925],[113.9147,22.17929],[113.91471,22.17936],[113.91465,22.17943],[113.91474,22.17958],[113.91492,22.17968],[113.91523,22.17962],[113.91519,22.1795],[113.91523,22.17942],[113.91534,22.17944],[113.91531,22.17926],[113.91541,22.17909],[113.91554,22.17894],[113.91557,22.17884],[113.91554,22.17861],[113.91545,22.17845],[113.91546,22.17833],[113.9155,22.1783],[113.91552,22.17828],[113.91552,22.17816],[113.91552,22.17806],[113.91567,22.17788],[113.9157,22.17779],[113.91581,22.17779],[113.91589,22.17765],[113.916,22.17764],[113.9162,22.17749],[113.91639,22.17749],[113.9168,22.17761],[113.91678,22.17765],[113.91685,22.17767],[113.91686,22.17773],[113.91674,22.17786],[113.91675,22.17788],[113.91693,22.17778],[113.91702,22.17776],[113.91709,22.17781],[113.9171,22.17787],[113.91716,22.17791],[113.91697,22.17831],[113.91657,22.17866],[113.91652,22.17882],[113.91654,22.17902],[113.91659,22.17907],[113.9166,22.17912],[113.91658,22.17919],[113.91652,22.17938],[113.91635,22.17947],[113.91634,22.17951],[113.91629,22.17958],[113.9163,22.17967],[113.91637,22.1797],[113.91644,22.17971],[113.91662,22.17966],[113.91707,22.17952],[113.91706,22.17948],[113.91706,22.17948],[113.91711,22.17946],[113.91711,22.17947],[113.91715,22.17956],[113.91715,22.17956],[113.91678,22.17968],[113.91648,22.17976],[113.91649,22.17981],[113.9165,22.17988],[113.9165,22.17995],[113.91648,22.17998],[113.91649,22.18002],[113.91653,22.18008],[113.91674,22.18016],[113.91686,22.18021],[113.91699,22.18034],[113.917,22.18038],[113.91695,22.18042],[113.91707,22.18055],[113.91724,22.18065],[113.91736,22.18068],[113.91748,22.18068],[113.91756,22.18067],[113.91752,22.18062],[113.91752,22.1806],[113.91754,22.18059],[113.91757,22.18059],[113.91761,22.18063],[113.91762,22.18068],[113.91779,22.1807],[113.918,22.18067],[113.91825,22.18047],[113.91852,22.18037],[113.91859,22.18024],[113.91873,22.18015],[113.91886,22.18002],[113.91894,22.1799],[113.91901,22.17988],[113.91917,22.1799],[113.91932,22.17979],[113.91938,22.17967],[113.91936,22.17947],[113.91918,22.17926],[113.91907,22.1792],[113.91903,22.17908],[113.91894,22.17899],[113.91887,22.17883],[113.91898,22.17875],[113.91944,22.17889],[113.91956,22.17893],[113.91958,22.17902],[113.91951,22.17928],[113.9198,22.17937],[113.91999,22.17936],[113.92002,22.17929],[113.9202,22.17926],[113.92021,22.17932],[113.92016,22.17941],[113.92027,22.17942],[113.92032,22.17946],[113.92039,22.17948],[113.92041,22.1795],[113.9204,22.17956],[113.92045,22.17957],[113.92049,22.17951],[113.92058,22.17952],[113.9206,22.17955],[113.9206,22.17959],[113.92067,22.17966],[113.9207,22.17975],[113.92071,22.17975],[113.9207,22.17962],[113.92067,22.17956],[113.92067,22.17953],[113.9207,22.17953],[113.92092,22.17968],[113.9209,22.17992],[113.92074,22.18005],[113.92056,22.18003],[113.92033,22.17997],[113.92026,22.18001],[113.92016,22.17993],[113.9199,22.17982],[113.91982,22.17979],[113.91975,22.17982],[113.9197,22.17984],[113.91951,22.17976],[113.9194,22.17986],[113.91932,22.18005],[113.91945,22.18017],[113.9195,22.18029],[113.91957,22.18029],[113.9196,22.1803],[113.91959,22.18033],[113.91954,22.18034],[113.91959,22.18038],[113.9196,22.18043],[113.91963,22.18041],[113.91966,22.18042],[113.91969,22.18048],[113.91965,22.18052],[113.91972,22.18057],[113.91973,22.1806],[113.91967,22.18064],[113.9197,22.18076],[113.91981,22.1808],[113.91986,22.18078],[113.9199,22.18084],[113.92,22.18086],[113.92013,22.18098],[113.92014,22.18102],[113.92011,22.18105],[113.92006,22.18112],[113.92004,22.18121],[113.91997,22.18126],[113.91944,22.1815],[113.91942,22.18162],[113.9195,22.18163],[113.91958,22.18171],[113.91955,22.1818],[113.91948,22.18185],[113.9194,22.18186],[113.91937,22.18179],[113.91926,22.18181],[113.91907,22.18194],[113.91904,22.18203],[113.91893,22.18211],[113.91876,22.18213],[113.91835,22.18215],[113.91805,22.18215],[113.91786,22.18209],[113.91781,22.18196],[113.91757,22.18196],[113.91737,22.18207],[113.91729,22.18223],[113.9168,22.18265],[113.91659,22.18301],[113.91658,22.18321],[113.91633,22.18338],[113.9163,22.18344],[113.91605,22.18353],[113.91592,22.18365],[113.91581,22.18367],[113.91581,22.18375],[113.91577,22.18377],[113.91571,22.18376],[113.91567,22.1838],[113.91557,22.18385],[113.91533,22.18384],[113.91531,22.18388],[113.91532,22.18393],[113.91528,22.18395],[113.91526,22.18393],[113.91526,22.18389],[113.91522,22.18386],[113.91511,22.18385],[113.91483,22.18396],[113.91459,22.18401],[113.91415,22.18397],[113.91415,22.18385],[113.91408,22.18372],[113.91395,22.18357],[113.91376,22.18337],[113.91363,22.18336],[113.9136,22.18332],[113.91359,22.18325],[113.91365,22.18318],[113.91372,22.18316],[113.9137,22.18309],[113.91351,22.183],[113.91328,22.18296],[113.91295,22.18299],[113.91248,22.18313],[113.91214,22.18332],[113.91202,22.18344],[113.912,22.18353],[113.91205,22.18357],[113.91201,22.18372],[113.91195,22.1837],[113.9119,22.18362],[113.91193,22.18359],[113.91187,22.18355],[113.9117,22.18367],[113.9117,22.18378],[113.91164,22.1838],[113.91158,22.18376],[113.91154,22.18379],[113.9114,22.18401],[113.91139,22.18417],[113.91123,22.18479],[113.91114,22.18487],[113.91105,22.1851],[113.91094,22.18513],[113.91081,22.18524],[113.91058,22.18552],[113.91035,22.18593],[113.91039,22.18598],[113.91036,22.18604],[113.91008,22.18612],[113.90989,22.18635],[113.90978,22.18641],[113.90936,22.18648],[113.90932,22.18652],[113.90933,22.18659],[113.90928,22.18665],[113.90926,22.18666],[113.90922,22.18666],[113.90918,22.18664],[113.90918,22.18661],[113.90913,22.18661],[113.90903,22.18673],[113.90899,22.18687],[113.90883,22.18693],[113.90876,22.18706],[113.90852,22.18724],[113.9084,22.1874],[113.9084,22.18749],[113.90825,22.18765],[113.90803,22.1877],[113.90777,22.18763],[113.9076,22.1877],[113.90757,22.18776],[113.90749,22.1878],[113.90749,22.18785],[113.90746,22.18785],[113.90742,22.18783],[113.90737,22.1878],[113.90731,22.18784],[113.90719,22.1878],[113.90698,22.18782]]],[[[114.30591,22.18803],[114.3062,22.18831],[114.30631,22.18849],[114.30632,22.18862],[114.30638,22.18866],[114.30626,22.18877],[114.30631,22.1889],[114.30619,22.1889],[114.30612,22.18887],[114.30611,22.1887],[114.30587,22.1886],[114.30577,22.1885],[114.30568,22.18849],[114.30545,22.18836],[114.30536,22.18828],[114.30534,22.18824],[114.30528,22.18822],[114.30516,22.18793],[114.30518,22.18786],[114.30533,22.18789],[114.3054,22.18785],[114.3055,22.18787],[114.30552,22.18782],[114.3054,22.18769],[114.30533,22.18761],[114.30528,22.1875],[114.3053,22.18745],[114.30512,22.18719],[114.30514,22.18712],[114.30519,22.18706],[114.30519,22.18693],[114.30518,22.18686],[114.30523,22.18676],[114.30527,22.18676],[114.30533,22.18674],[114.3054,22.1868],[114.30541,22.18661],[114.30537,22.18659],[114.30531,22.1864],[114.30512,22.18617],[114.30512,22.18608],[114.30504,22.18594],[114.30498,22.18584],[114.30493,22.18556],[114.30495,22.18546],[114.30489,22.18535],[114.3047,22.18501],[114.30466,22.18501],[114.30464,22.18489],[114.30474,22.18486],[114.30458,22.18471],[114.30454,22.18462],[114.30451,22.18455],[114.30453,22.1845],[114.30447,22.18445],[114.30427,22.18431],[114.30416,22.18409],[114.30408,22.18413],[114.30409,22.18408],[114.30399,22.18398],[114.3041,22.1839],[114.30408,22.18386],[114.30411,22.18381],[114.30424,22.18375],[114.3043,22.18367],[114.30434,22.1837],[114.30443,22.18364],[114.3046,22.18361],[114.30472,22.1835],[114.30483,22.18347],[114.30496,22.18344],[114.30503,22.18364],[114.30509,22.18363],[114.30514,22.1837],[114.30512,22.18376],[114.30518,22.18377],[114.30517,22.18384],[114.30517,22.18388],[114.30509,22.18389],[114.30493,22.18377],[114.30486,22.18378],[114.30497,22.18384],[114.30507,22.18398],[114.3051,22.18393],[114.30514,22.18401],[114.30512,22.18405],[114.30524,22.18427],[114.30521,22.18437],[114.30529,22.18465],[114.30534,22.18465],[114.30544,22.18459],[114.30554,22.18479],[114.30562,22.18498],[114.30564,22.18505],[114.30552,22.18509],[114.30554,22.18513],[114.30556,22.18518],[114.30567,22.18529],[114.30588,22.1856],[114.30592,22.18564],[114.30593,22.18575],[114.30609,22.18568],[114.30619,22.18593],[114.30614,22.1861],[114.30582,22.18608],[114.30578,22.18614],[114.3058,22.18621],[114.30584,22.18636],[114.30596,22.18647],[114.30605,22.18653],[114.30611,22.18667],[114.30623,22.18684],[114.30633,22.1871],[114.30646,22.18712],[114.30656,22.18733],[114.30655,22.18742],[114.3065,22.1874],[114.30646,22.18753],[114.30649,22.18756],[114.30644,22.18763],[114.30633,22.1876],[114.30632,22.18754],[114.30615,22.18742],[114.30613,22.18736],[114.30609,22.18737],[114.30614,22.18756],[114.30602,22.18759],[114.30619,22.18784],[114.3062,22.18791],[114.30618,22.188],[114.30595,22.18798],[114.30591,22.18803]]],[[[114.29055,22.19001],[114.29049,22.19003],[114.29041,22.19],[114.29039,22.18994],[114.29031,22.18993],[114.29023,22.18988],[114.29022,22.18978],[114.2901,22.18968],[114.28992,22.18971],[114.28989,22.18969],[114.28987,22.18963],[114.28981,22.18963],[114.28975,22.18954],[114.28973,22.18942],[114.28964,22.18937],[114.28964,22.18929],[114.28956,22.18923],[114.28948,22.18913],[114.28949,22.18892],[114.28954,22.18873],[114.2895,22.18859],[114.28955,22.18844],[114.28968,22.18826],[114.2898,22.18819],[114.28983,22.18819],[114.2899,22.18806],[114.28996,22.18796],[114.28994,22.18785],[114.28999,22.18781],[114.29005,22.1878],[114.2901,22.18782],[114.29013,22.18787],[114.29021,22.18792],[114.29027,22.18805],[114.29029,22.18816],[114.29036,22.18828],[114.2904,22.1883],[114.29042,22.18833],[114.29042,22.18842],[114.29048,22.18847],[114.29056,22.18867],[114.29064,22.18875],[114.29068,22.18882],[114.2907,22.18894],[114.29067,22.18901],[114.29073,22.1891],[114.29078,22.18922],[114.29078,22.18928],[114.29074,22.18928],[114.29082,22.18938],[114.29081,22.18943],[114.29079,22.18946],[114.29074,22.18945],[114.29064,22.18927],[114.29061,22.18925],[114.29061,22.18936],[114.29063,22.18941],[114.29063,22.1895],[114.29065,22.18955],[114.29067,22.18966],[114.29065,22.18984],[114.29062,22.18992],[114.29055,22.18989],[114.29048,22.1899],[114.29045,22.18992],[114.29044,22.18994],[114.29045,22.18995],[114.29047,22.18995],[114.2905,22.18993],[114.29053,22.18992],[114.29054,22.18995],[114.29055,22.19001]]],[[[114.25332,22.18995],[114.25335,22.19002],[114.25332,22.19005],[114.25329,22.19006],[114.25326,22.19004],[114.25324,22.19],[114.25325,22.18996],[114.25328,22.18994],[114.25332,22.18995]]],[[[114.25398,22.19007],[114.25391,22.19009],[114.25383,22.19003],[114.25373,22.19007],[114.25356,22.19006],[114.25349,22.18999],[114.25317,22.18986],[114.25317,22.18989],[114.25315,22.1899],[114.2531,22.18988],[114.25306,22.18978],[114.25305,22.18969],[114.25291,22.18964],[114.25273,22.18964],[114.25269,22.18968],[114.25257,22.18972],[114.25241,22.18972],[114.25226,22.18963],[114.2522,22.18957],[114.25215,22.18954],[114.25204,22.18959],[114.25179,22.18948],[114.25162,22.18949],[114.25148,22.18945],[114.25131,22.18942],[114.2513,22.18947],[114.25126,22.18948],[114.25103,22.18939],[114.25093,22.18927],[114.2509,22.18919],[114.25088,22.18919],[114.25078,22.18929],[114.25063,22.18938],[114.25059,22.18938],[114.25058,22.18936],[114.25058,22.18933],[114.25045,22.18927],[114.25024,22.1891],[114.25016,22.18911],[114.25023,22.18917],[114.25027,22.18925],[114.25023,22.18931],[114.25025,22.18937],[114.25024,22.18946],[114.25019,22.18947],[114.25009,22.18938],[114.25002,22.18933],[114.24982,22.18931],[114.24955,22.18907],[114.24932,22.18891],[114.24906,22.18875],[114.24913,22.18897],[114.249,22.189],[114.24883,22.18875],[114.24883,22.18903],[114.24874,22.18907],[114.24851,22.18893],[114.24837,22.18894],[114.24835,22.18894],[114.24809,22.18888],[114.24791,22.18882],[114.24742,22.18877],[114.24715,22.18857],[114.24701,22.1886],[114.24689,22.1886],[114.24641,22.18862],[114.24627,22.18857],[114.24581,22.18852],[114.24557,22.18856],[114.24554,22.18856],[114.24548,22.18854],[114.24533,22.18849],[114.24522,22.18853],[114.24497,22.18853],[114.24476,22.18837],[114.24471,22.18838],[114.24469,22.18844],[114.24438,22.18844],[114.24425,22.1884],[114.24429,22.18832],[114.24409,22.18826],[114.24381,22.18807],[114.24373,22.18812],[114.24367,22.18803],[114.24368,22.18798],[114.24374,22.18796],[114.24369,22.18755],[114.24373,22.18752],[114.24381,22.18737],[114.24437,22.18671],[114.24432,22.18645],[114.24434,22.18625],[114.24428,22.18608],[114.24424,22.18588],[114.24413,22.18583],[114.2441,22.18571],[114.24411,22.18562],[114.2441,22.18534],[114.24425,22.18503],[114.24418,22.18461],[114.24422,22.18454],[114.24424,22.18448],[114.24419,22.18422],[114.24411,22.18415],[114.24424,22.18382],[114.24421,22.1837],[114.24413,22.18335],[114.24407,22.18339],[114.24396,22.18338],[114.24381,22.1833],[114.24377,22.18316],[114.24387,22.18301],[114.24387,22.18291],[114.24382,22.1828],[114.24374,22.18281],[114.24367,22.18276],[114.24362,22.18231],[114.24366,22.18223],[114.24369,22.18218],[114.24384,22.18213],[114.24396,22.18213],[114.2439,22.18202],[114.24383,22.18172],[114.24387,22.18138],[114.24409,22.18111],[114.24421,22.18104],[114.24426,22.181],[114.24436,22.18096],[114.2446,22.181],[114.24473,22.18112],[114.24483,22.18114],[114.24488,22.18112],[114.24487,22.18105],[114.24481,22.181],[114.24502,22.18097],[114.24504,22.18079],[114.24478,22.1802],[114.24465,22.17974],[114.24466,22.17965],[114.24457,22.17954],[114.24448,22.17926],[114.24445,22.17893],[114.24436,22.17876],[114.24449,22.17857],[114.24454,22.17856],[114.24478,22.17873],[114.24514,22.17887],[114.24528,22.17901],[114.24556,22.17925],[114.24565,22.17945],[114.24568,22.17994],[114.24559,22.18026],[114.24558,22.18065],[114.24554,22.1808],[114.24538,22.18095],[114.24536,22.18124],[114.24543,22.18143],[114.24542,22.18148],[114.24562,22.18158],[114.246,22.18157],[114.24625,22.1817],[114.24654,22.18172],[114.24657,22.18171],[114.24656,22.18164],[114.24657,22.18162],[114.24667,22.18161],[114.24672,22.18162],[114.24673,22.18166],[114.24679,22.18169],[114.2469,22.18161],[114.24719,22.18151],[114.24734,22.18156],[114.24752,22.18154],[114.24758,22.18158],[114.24765,22.1814],[114.24779,22.18129],[114.24774,22.18117],[114.24777,22.1811],[114.24806,22.18106],[114.24826,22.18102],[114.24842,22.18093],[114.24851,22.18088],[114.24864,22.18088],[114.24903,22.18073],[114.2492,22.18076],[114.24945,22.18078],[114.24964,22.18078],[114.24983,22.18073],[114.24989,22.18077],[114.2501,22.18073],[114.25019,22.18065],[114.25011,22.1806],[114.25013,22.18058],[114.25016,22.18055],[114.2501,22.18052],[114.25009,22.18051],[114.25019,22.18047],[114.25027,22.18045],[114.25036,22.18046],[114.25041,22.1805],[114.25045,22.18048],[114.25044,22.18044],[114.25045,22.18041],[114.25047,22.18039],[114.2505,22.18039],[114.25054,22.18042],[114.25059,22.1804],[114.25058,22.18036],[114.25065,22.18034],[114.25052,22.18028],[114.25056,22.18015],[114.25069,22.18008],[114.25063,22.18001],[114.25065,22.1799],[114.2505,22.17978],[114.25046,22.17968],[114.25044,22.1795],[114.25049,22.17945],[114.25055,22.17926],[114.25059,22.17924],[114.25084,22.17932],[114.25148,22.1796],[114.25193,22.17977],[114.25231,22.17993],[114.25328,22.18042],[114.25334,22.18054],[114.25349,22.18073],[114.25364,22.18079],[114.25373,22.18085],[114.25377,22.18089],[114.2538,22.18091],[114.254,22.18094],[114.25428,22.18103],[114.25432,22.18106],[114.25441,22.18112],[114.25443,22.18115],[114.2548,22.18143],[114.255,22.18169],[114.25527,22.18191],[114.2554,22.182],[114.25561,22.18223],[114.25562,22.18224],[114.25572,22.18232],[114.25579,22.18234],[114.25588,22.18237],[114.25604,22.1825],[114.25611,22.18273],[114.25628,22.18286],[114.2563,22.18292],[114.25647,22.18329],[114.25649,22.18352],[114.25656,22.18365],[114.25663,22.184],[114.25673,22.18405],[114.25672,22.18421],[114.25662,22.1843],[114.25657,22.18465],[114.25665,22.18482],[114.25673,22.18486],[114.25681,22.18512],[114.25683,22.18545],[114.25682,22.18554],[114.25684,22.18584],[114.25683,22.18611],[114.25686,22.18625],[114.25675,22.18644],[114.25671,22.18664],[114.25665,22.18671],[114.25657,22.18676],[114.25657,22.18704],[114.25642,22.18722],[114.25642,22.18733],[114.25656,22.1876],[114.25651,22.18778],[114.25642,22.18794],[114.25639,22.18806],[114.25645,22.18812],[114.25645,22.18821],[114.25633,22.18846],[114.25608,22.18882],[114.256,22.18889],[114.25597,22.18889],[114.25595,22.18886],[114.25602,22.18883],[114.25601,22.18881],[114.25581,22.18872],[114.25574,22.18879],[114.25563,22.18898],[114.25565,22.18923],[114.25558,22.18939],[114.25545,22.1896],[114.25542,22.18968],[114.25536,22.18976],[114.25509,22.18986],[114.25497,22.18982],[114.25476,22.18991],[114.25456,22.18993],[114.25425,22.18979],[114.25425,22.18982],[114.25421,22.18983],[114.25415,22.18981],[114.25403,22.1898],[114.25405,22.18983],[114.25405,22.18985],[114.25402,22.18986],[114.25399,22.18985],[114.25397,22.18986],[114.25397,22.18988],[114.25399,22.1899],[114.25406,22.18994],[114.25406,22.18995],[114.25398,22.19007]]],[[[114.28728,22.19013],[114.28723,22.1901],[114.28714,22.18997],[114.28706,22.18996],[114.28683,22.18981],[114.28674,22.18963],[114.28678,22.18954],[114.28668,22.18943],[114.28657,22.18949],[114.28646,22.18944],[114.28624,22.18902],[114.28608,22.18895],[114.28605,22.18889],[114.28609,22.18878],[114.28612,22.18874],[114.28616,22.18868],[114.28616,22.18861],[114.28622,22.18846],[114.28611,22.18835],[114.28597,22.18814],[114.28588,22.188],[114.28592,22.18785],[114.286,22.18771],[114.28598,22.18756],[114.286,22.18748],[114.28608,22.18713],[114.2861,22.18692],[114.28605,22.18684],[114.28591,22.18673],[114.2858,22.1867],[114.28572,22.18665],[114.28557,22.18662],[114.28536,22.18674],[114.28516,22.18677],[114.28511,22.18686],[114.28495,22.18697],[114.2849,22.18698],[114.28479,22.18691],[114.28457,22.18704],[114.28449,22.18704],[114.28433,22.1871],[114.28436,22.18721],[114.28434,22.18724],[114.28417,22.18726],[114.28406,22.18718],[114.2838,22.1871],[114.28374,22.18702],[114.28368,22.187],[114.28363,22.18694],[114.28366,22.18684],[114.28358,22.18665],[114.28345,22.18652],[114.28332,22.18651],[114.2833,22.18636],[114.28317,22.1863],[114.28315,22.18625],[114.28309,22.18612],[114.283,22.18592],[114.28308,22.18584],[114.2831,22.18572],[114.28294,22.18569],[114.28287,22.18559],[114.28284,22.18553],[114.28281,22.18547],[114.28271,22.18541],[114.2828,22.18532],[114.28292,22.18534],[114.28303,22.18528],[114.28302,22.18518],[114.28306,22.18513],[114.2832,22.18515],[114.28325,22.18509],[114.28334,22.18494],[114.28352,22.18484],[114.28364,22.18475],[114.28364,22.1845],[114.28358,22.18438],[114.28353,22.18434],[114.28358,22.18428],[114.28372,22.18422],[114.28365,22.18403],[114.28369,22.18391],[114.2837,22.18388],[114.28363,22.18366],[114.28363,22.18349],[114.28352,22.18339],[114.28351,22.18303],[114.28355,22.18297],[114.28372,22.18288],[114.28387,22.18289],[114.28394,22.18287],[114.28408,22.18283],[114.28408,22.18272],[114.28398,22.18268],[114.28391,22.18259],[114.2839,22.18244],[114.28386,22.18238],[114.28394,22.18229],[114.28401,22.18228],[114.28417,22.18232],[114.28428,22.18239],[114.28434,22.18236],[114.28408,22.18206],[114.28405,22.18179],[114.28398,22.18178],[114.28397,22.1817],[114.28401,22.18165],[114.28407,22.18171],[114.28416,22.18151],[114.28408,22.18151],[114.28409,22.18139],[114.28421,22.18139],[114.28452,22.18153],[114.28468,22.18157],[114.28471,22.18152],[114.28487,22.18145],[114.28496,22.18144],[114.28506,22.18147],[114.28513,22.18133],[114.28521,22.18137],[114.28541,22.18135],[114.28552,22.18127],[114.28559,22.18124],[114.28568,22.18118],[114.28571,22.18101],[114.28594,22.18102],[114.28604,22.18101],[114.28617,22.18101],[114.28636,22.181],[114.28654,22.18089],[114.28662,22.18085],[114.28669,22.18081],[114.28691,22.18078],[114.2871,22.18082],[114.28733,22.1807],[114.2876,22.18065],[114.28783,22.18063],[114.28795,22.18064],[114.28809,22.18073],[114.28828,22.18087],[114.2884,22.18088],[114.2885,22.18095],[114.28872,22.18124],[114.2889,22.18165],[114.28905,22.18166],[114.28917,22.18192],[114.28917,22.18212],[114.28924,22.18218],[114.28926,22.18224],[114.28926,22.18227],[114.28918,22.18228],[114.28917,22.18238],[114.28923,22.18251],[114.28919,22.1826],[114.28926,22.18265],[114.28926,22.18269],[114.2893,22.18279],[114.2893,22.18314],[114.28927,22.18322],[114.28914,22.18333],[114.28913,22.18355],[114.28923,22.1836],[114.28922,22.1837],[114.28923,22.18389],[114.2891,22.18394],[114.28896,22.18407],[114.28897,22.18414],[114.28897,22.18434],[114.28902,22.18445],[114.28899,22.18451],[114.28893,22.18459],[114.28887,22.18467],[114.28886,22.1848],[114.28875,22.18481],[114.28848,22.18472],[114.28846,22.18472],[114.28846,22.18473],[114.28845,22.18474],[114.28845,22.18475],[114.2887,22.18493],[114.28888,22.18536],[114.28893,22.18538],[114.28901,22.18563],[114.28907,22.18567],[114.28915,22.18564],[114.28929,22.18569],[114.28932,22.18572],[114.2894,22.18594],[114.28942,22.18604],[114.28943,22.18611],[114.28954,22.18636],[114.28955,22.18648],[114.28948,22.18671],[114.28955,22.18681],[114.28955,22.18697],[114.28944,22.18707],[114.28938,22.18699],[114.28934,22.18699],[114.28936,22.18713],[114.2894,22.18723],[114.28948,22.18746],[114.28953,22.18752],[114.28961,22.18757],[114.28962,22.18779],[114.28963,22.18794],[114.28959,22.18817],[114.28954,22.18836],[114.2895,22.18846],[114.28919,22.18861],[114.28914,22.18873],[114.28901,22.18885],[114.28895,22.18889],[114.28883,22.18882],[114.28866,22.18888],[114.28862,22.18909],[114.28869,22.1892],[114.28867,22.18927],[114.28857,22.18929],[114.28845,22.18937],[114.28835,22.18938],[114.28815,22.18963],[114.28807,22.18965],[114.288,22.18962],[114.28796,22.18966],[114.28792,22.18972],[114.28786,22.18977],[114.28774,22.18983],[114.28762,22.1899],[114.28764,22.19002],[114.2876,22.19006],[114.28758,22.19009],[114.28748,22.19006],[114.28741,22.19005],[114.28728,22.19013]]],[[[114.25373,22.19017],[114.25369,22.19019],[114.25365,22.19018],[114.25363,22.19017],[114.2536,22.19019],[114.25359,22.19015],[114.25361,22.19012],[114.25363,22.19009],[114.25371,22.19008],[114.2538,22.19009],[114.2538,22.19012],[114.25372,22.19012],[114.25371,22.19014],[114.25373,22.19017]]],[[[114.29056,22.19012],[114.29056,22.19014],[114.29047,22.1902],[114.29042,22.19023],[114.29037,22.19023],[114.29034,22.19022],[114.2903,22.19019],[114.2903,22.19017],[114.29035,22.1901],[114.29032,22.19009],[114.29029,22.19011],[114.29024,22.19011],[114.29024,22.1901],[114.29026,22.19007],[114.29022,22.19006],[114.29021,22.19005],[114.29025,22.19002],[114.29029,22.19],[114.29033,22.19],[114.29041,22.19006],[114.29048,22.19008],[114.29056,22.19012]]],[[[114.27986,22.19029],[114.27988,22.19031],[114.2799,22.19033],[114.2799,22.19034],[114.27987,22.19034],[114.27986,22.19034],[114.27985,22.19032],[114.27985,22.1903],[114.27985,22.19029],[114.27986,22.19029]]],[[[114.2797,22.19025],[114.27977,22.19028],[114.27983,22.19035],[114.27983,22.19038],[114.27984,22.19044],[114.27986,22.19047],[114.27987,22.19052],[114.27986,22.19054],[114.27985,22.19055],[114.27982,22.19055],[114.27978,22.19053],[114.27977,22.19049],[114.27969,22.19048],[114.2796,22.19046],[114.27958,22.19043],[114.27956,22.19031],[114.27952,22.19026],[114.27952,22.19023],[114.27953,22.19022],[114.2796,22.19022],[114.27967,22.19024],[114.27968,22.1902],[114.2797,22.1902],[114.27972,22.19021],[114.27972,22.19022],[114.2797,22.19025]]],[[[114.27979,22.19058],[114.27979,22.19061],[114.27982,22.19064],[114.27983,22.19064],[114.27985,22.19065],[114.27984,22.19066],[114.27983,22.19066],[114.27979,22.19065],[114.27978,22.19064],[114.27976,22.19062],[114.27974,22.19061],[114.27974,22.19059],[114.27975,22.19058],[114.27976,22.19058],[114.27977,22.19057],[114.27979,22.19058]]],[[[114.27993,22.1909],[114.27994,22.19094],[114.27992,22.19095],[114.27991,22.19095],[114.27988,22.19094],[114.27984,22.1909],[114.27982,22.19085],[114.27982,22.19083],[114.27987,22.19078],[114.27995,22.19076],[114.27999,22.19077],[114.28003,22.19079],[114.28005,22.19077],[114.28009,22.19077],[114.28011,22.19079],[114.28011,22.1908],[114.28009,22.19082],[114.28006,22.19082],[114.28004,22.19083],[114.28005,22.19087],[114.28007,22.19087],[114.28007,22.19088],[114.28006,22.1909],[114.28002,22.19092],[114.27999,22.19092],[114.27995,22.1909],[114.27993,22.1909]]],[[[113.98777,22.20182],[113.98771,22.20188],[113.98774,22.20195],[113.98771,22.20201],[113.98761,22.20207],[113.98758,22.20216],[113.98742,22.20224],[113.98724,22.20216],[113.98707,22.20204],[113.98699,22.20198],[113.98693,22.20189],[113.98678,22.20182],[113.98654,22.2013],[113.9864,22.20116],[113.98632,22.2011],[113.98603,22.20093],[113.98576,22.20078],[113.98556,22.20074],[113.98548,22.20066],[113.98528,22.20058],[113.98518,22.20049],[113.98507,22.20033],[113.98492,22.20014],[113.98488,22.20009],[113.98489,22.19995],[113.98479,22.19965],[113.98478,22.19948],[113.9847,22.1994],[113.98464,22.19936],[113.98459,22.19928],[113.98439,22.1991],[113.98421,22.19908],[113.98412,22.19913],[113.984,22.19913],[113.98397,22.19907],[113.98387,22.19894],[113.98373,22.19865],[113.9836,22.19855],[113.98342,22.19822],[113.98329,22.19809],[113.9832,22.1979],[113.98305,22.19777],[113.98292,22.19739],[113.98291,22.19714],[113.98283,22.19696],[113.98283,22.1968],[113.98277,22.19666],[113.98276,22.19657],[113.98275,22.19625],[113.98267,22.19614],[113.98266,22.19599],[113.98258,22.19594],[113.98251,22.19589],[113.98244,22.19584],[113.98246,22.19567],[113.98238,22.1956],[113.98242,22.1952],[113.98239,22.19512],[113.98243,22.19486],[113.9824,22.19468],[113.98233,22.19439],[113.98238,22.19426],[113.98244,22.19409],[113.98241,22.19392],[113.9824,22.19388],[113.98261,22.19366],[113.98271,22.1936],[113.9828,22.1936],[113.98305,22.19344],[113.9831,22.19322],[113.98322,22.19298],[113.9834,22.19285],[113.98363,22.19283],[113.98376,22.19275],[113.98386,22.19253],[113.98419,22.19254],[113.98436,22.19261],[113.98466,22.19265],[113.98466,22.19253],[113.98466,22.19248],[113.98468,22.19246],[113.98482,22.19227],[113.98488,22.19207],[113.98497,22.19197],[113.98499,22.19192],[113.98503,22.19187],[113.98512,22.19183],[113.98507,22.19177],[113.98514,22.19169],[113.98527,22.19167],[113.98534,22.1917],[113.98524,22.19151],[113.98525,22.19146],[113.98539,22.19142],[113.98546,22.19135],[113.98549,22.19136],[113.98567,22.1915],[113.98604,22.19136],[113.98614,22.19139],[113.9863,22.19135],[113.98652,22.19125],[113.9866,22.19124],[113.9867,22.19131],[113.98672,22.19146],[113.98681,22.19152],[113.98688,22.19145],[113.98716,22.19137],[113.98731,22.19129],[113.98752,22.19089],[113.98759,22.19081],[113.98768,22.19082],[113.98771,22.19077],[113.98771,22.1907],[113.98762,22.19069],[113.9875,22.19056],[113.98759,22.19049],[113.98773,22.19046],[113.98774,22.1903],[113.98792,22.19021],[113.98813,22.19012],[113.98829,22.19003],[113.98837,22.1899],[113.98849,22.18975],[113.98853,22.18952],[113.98863,22.18949],[113.98869,22.18938],[113.98879,22.18939],[113.98891,22.18937],[113.98899,22.18932],[113.98904,22.18915],[113.98905,22.18896],[113.98951,22.18855],[113.9895,22.18845],[113.98965,22.18842],[113.98972,22.18841],[113.98978,22.18845],[113.98989,22.18843],[113.98995,22.18841],[113.99019,22.18836],[113.99022,22.18841],[113.9903,22.1885],[113.99039,22.18856],[113.99046,22.18861],[113.99053,22.18863],[113.99062,22.18867],[113.99074,22.18861],[113.99078,22.18859],[113.99085,22.1886],[113.99085,22.18867],[113.99097,22.18884],[113.99105,22.189],[113.9911,22.18905],[113.99116,22.18907],[113.99123,22.18914],[113.99138,22.18918],[113.99151,22.18919],[113.99154,22.18921],[113.9917,22.18924],[113.99179,22.18934],[113.99184,22.1893],[113.99188,22.18926],[113.99196,22.18929],[113.99201,22.1893],[113.992,22.18938],[113.9919,22.18939],[113.99196,22.18953],[113.99204,22.1895],[113.99222,22.1896],[113.9924,22.18972],[113.99247,22.1897],[113.99255,22.18962],[113.99271,22.18972],[113.99292,22.18991],[113.99315,22.19005],[113.99366,22.19022],[113.99371,22.19027],[113.99367,22.19031],[113.99373,22.19034],[113.99383,22.19022],[113.9939,22.19023],[113.99383,22.19036],[113.99378,22.19038],[113.99408,22.19053],[113.99406,22.19057],[113.99397,22.19057],[113.99405,22.19062],[113.99405,22.19068],[113.99418,22.19076],[113.99433,22.19093],[113.99429,22.19098],[113.99437,22.19101],[113.99435,22.1911],[113.99423,22.19117],[113.9943,22.19128],[113.99435,22.19149],[113.9945,22.19162],[113.99459,22.19187],[113.99459,22.19202],[113.99439,22.19247],[113.99437,22.19247],[113.99437,22.19248],[113.99438,22.19254],[113.99428,22.19276],[113.99425,22.19288],[113.9943,22.19281],[113.99437,22.19273],[113.99442,22.1927],[113.99449,22.19275],[113.99461,22.19287],[113.99477,22.19315],[113.99463,22.19323],[113.99474,22.19327],[113.99492,22.19334],[113.99499,22.19343],[113.99493,22.19365],[113.99488,22.19407],[113.9949,22.19427],[113.9947,22.19439],[113.9946,22.19447],[113.99456,22.19456],[113.99454,22.19462],[113.99456,22.19468],[113.99453,22.19478],[113.99428,22.19495],[113.99411,22.19506],[113.99396,22.19509],[113.99384,22.19516],[113.99372,22.19519],[113.99362,22.19522],[113.99347,22.19515],[113.99331,22.19519],[113.99311,22.19515],[113.99294,22.19495],[113.99273,22.19516],[113.99264,22.19508],[113.99268,22.19505],[113.99275,22.19511],[113.99283,22.19502],[113.99277,22.19498],[113.99263,22.1948],[113.99261,22.19478],[113.99245,22.19458],[113.99235,22.19437],[113.9923,22.19435],[113.99212,22.19431],[113.99194,22.19439],[113.99188,22.19454],[113.99195,22.19456],[113.99193,22.19461],[113.99188,22.19459],[113.99177,22.19485],[113.99166,22.19497],[113.99136,22.19497],[113.99118,22.195],[113.99117,22.19507],[113.99131,22.19542],[113.99143,22.19555],[113.99144,22.19571],[113.99154,22.19593],[113.99156,22.19602],[113.99158,22.19611],[113.99165,22.19626],[113.99156,22.19642],[113.99142,22.19656],[113.99145,22.19668],[113.99152,22.19673],[113.99157,22.19672],[113.99172,22.19675],[113.99175,22.19683],[113.99181,22.19687],[113.99182,22.19692],[113.99188,22.19697],[113.99194,22.19695],[113.99207,22.19695],[113.99214,22.19698],[113.99224,22.197],[113.99233,22.19708],[113.99247,22.1971],[113.99249,22.19737],[113.9925,22.19743],[113.99233,22.19741],[113.99217,22.19746],[113.99215,22.1975],[113.99214,22.19757],[113.99218,22.19768],[113.99216,22.19784],[113.99213,22.19805],[113.99213,22.1982],[113.99206,22.19824],[113.99202,22.19823],[113.99195,22.1984],[113.99191,22.19846],[113.99186,22.19855],[113.99186,22.1986],[113.99186,22.19865],[113.99195,22.19872],[113.99201,22.19878],[113.99209,22.19891],[113.9922,22.19899],[113.99218,22.19908],[113.99209,22.19919],[113.99188,22.1993],[113.99176,22.19935],[113.9916,22.19934],[113.99166,22.1994],[113.99164,22.19945],[113.99148,22.19956],[113.99128,22.19954],[113.9911,22.19971],[113.99097,22.1997],[113.99076,22.19981],[113.99071,22.1999],[113.9907,22.20004],[113.99077,22.20015],[113.9908,22.20017],[113.99089,22.20032],[113.99093,22.20069],[113.99089,22.20077],[113.99092,22.20104],[113.99078,22.20121],[113.99058,22.20138],[113.99052,22.20137],[113.99041,22.20143],[113.99045,22.20152],[113.99037,22.20157],[113.99021,22.20157],[113.9901,22.20161],[113.98993,22.2016],[113.98981,22.20154],[113.98975,22.20153],[113.98964,22.20165],[113.98967,22.20189],[113.9895,22.20199],[113.98938,22.20203],[113.98929,22.20204],[113.98919,22.20199],[113.98911,22.20206],[113.98904,22.20205],[113.98899,22.20205],[113.98879,22.20204],[113.98857,22.202],[113.98856,22.20208],[113.98846,22.20205],[113.9884,22.20201],[113.98837,22.20192],[113.98818,22.20184],[113.98817,22.20175],[113.98811,22.20175],[113.98799,22.20182],[113.98792,22.20176],[113.98786,22.20176],[113.98777,22.20182]]],[[[113.93093,22.21025],[113.9309,22.21028],[113.93088,22.21028],[113.93087,22.21024],[113.93087,22.21015],[113.93088,22.21012],[113.93094,22.21006],[113.93098,22.21004],[113.931,22.21004],[113.93102,22.21005],[113.93101,22.21008],[113.93099,22.21009],[113.93099,22.21017],[113.931,22.21018],[113.93102,22.21017],[113.93103,22.21016],[113.93105,22.21018],[113.93107,22.21021],[113.931,22.21028],[113.93098,22.21028],[113.93097,22.21026],[113.93097,22.21024],[113.93095,22.21024],[113.93093,22.21025]]],[[[113.98668,22.21209],[113.98671,22.21211],[113.98672,22.21212],[113.98673,22.21213],[113.98673,22.21215],[113.98673,22.21216],[113.98671,22.21217],[113.9867,22.21217],[113.9867,22.21218],[113.9867,22.21218],[113.98671,22.2122],[113.98671,22.21222],[113.98669,22.21223],[113.98667,22.21226],[113.98665,22.21227],[113.98663,22.21228],[113.9866,22.21229],[113.98658,22.21228],[113.98656,22.21228],[113.98653,22.21226],[113.98652,22.21225],[113.98652,22.21225],[113.98652,22.21224],[113.98652,22.21222],[113.98653,22.21222],[113.98652,22.21221],[113.98652,22.2122],[113.98651,22.21219],[113.9865,22.21215],[113.9865,22.21213],[113.98651,22.21212],[113.98655,22.2121],[113.98657,22.21209],[113.9866,22.21209],[113.98668,22.21209]]],[[[113.99027,22.2124],[113.99027,22.2124],[113.99027,22.21241],[113.99027,22.21242],[113.99027,22.21242],[113.99027,22.21243],[113.99026,22.21244],[113.99022,22.21247],[113.9902,22.21249],[113.99017,22.21251],[113.99015,22.21252],[113.99015,22.21253],[113.99014,22.21253],[113.99014,22.21253],[113.99013,22.21253],[113.99011,22.21252],[113.9901,22.21252],[113.99009,22.2125],[113.99008,22.21249],[113.99008,22.21248],[113.99008,22.21247],[113.99008,22.21246],[113.99008,22.21245],[113.99008,22.21245],[113.99007,22.21244],[113.99004,22.21239],[113.99003,22.21238],[113.99002,22.21236],[113.99002,22.21234],[113.99002,22.21232],[113.99003,22.21231],[113.99003,22.21229],[113.99004,22.21228],[113.99004,22.21227],[113.99005,22.21227],[113.99005,22.21226],[113.99006,22.21226],[113.99007,22.21227],[113.99008,22.21228],[113.99009,22.21229],[113.99011,22.2123],[113.99011,22.2123],[113.99013,22.21229],[113.99013,22.21229],[113.99014,22.21229],[113.99014,22.21229],[113.99013,22.21229],[113.99012,22.21229],[113.99011,22.21228],[113.99011,22.21228],[113.9901,22.21228],[113.9901,22.21227],[113.99011,22.21227],[113.99011,22.21227],[113.99012,22.21227],[113.99013,22.21227],[113.99014,22.21228],[113.99016,22.21228],[113.99017,22.21229],[113.99019,22.2123],[113.9902,22.21232],[113.99021,22.21234],[113.99022,22.21236],[113.99022,22.21237],[113.99023,22.21238],[113.99023,22.21238],[113.99023,22.21239],[113.99023,22.21239],[113.99024,22.21239],[113.99024,22.21239],[113.99024,22.21238],[113.99025,22.21237],[113.99025,22.21237],[113.99026,22.21237],[113.99026,22.21237],[113.99026,22.21237],[113.99027,22.2124]]],[[[113.90212,22.21238],[113.90214,22.21239],[113.90214,22.2124],[113.90213,22.21241],[113.90212,22.21241],[113.9021,22.2124],[113.9021,22.21239],[113.9021,22.21239],[113.90211,22.21238],[113.90212,22.21238]]],[[[113.99007,22.21251],[113.99009,22.21253],[113.99011,22.21256],[113.99011,22.21258],[113.9901,22.21261],[113.99006,22.21263],[113.99005,22.21263],[113.99003,22.21262],[113.99001,22.21261],[113.99,22.2126],[113.98999,22.21258],[113.99,22.21255],[113.99001,22.21251],[113.99004,22.2125],[113.99007,22.21251]]],[[[113.90207,22.21246],[113.9021,22.21247],[113.90211,22.21249],[113.90212,22.21251],[113.9021,22.21253],[113.90208,22.21254],[113.90205,22.21252],[113.90202,22.21249],[113.90203,22.21247],[113.90202,22.21246],[113.902,22.21246],[113.90198,22.21245],[113.90196,22.21246],[113.90193,22.21248],[113.90192,22.21248],[113.9019,22.21245],[113.9019,22.21244],[113.90193,22.21242],[113.90195,22.2124],[113.90198,22.21239],[113.902,22.21238],[113.90201,22.21237],[113.90202,22.21237],[113.90203,22.21237],[113.90206,22.2124],[113.90207,22.21242],[113.90207,22.21244],[113.90207,22.21246]]],[[[113.8999,22.21382],[113.89988,22.21382],[113.89985,22.21381],[113.8998,22.21382],[113.89977,22.21382],[113.89976,22.2138],[113.89977,22.21374],[113.89977,22.21371],[113.8998,22.21369],[113.89984,22.21371],[113.8999,22.21376],[113.89991,22.2138],[113.8999,22.21382]]],[[[113.89955,22.21412],[113.89957,22.21414],[113.89959,22.21416],[113.89958,22.21418],[113.89958,22.21419],[113.89956,22.2142],[113.89955,22.2142],[113.89954,22.21419],[113.89953,22.21419],[113.89952,22.21417],[113.89952,22.21416],[113.89953,22.21415],[113.89953,22.21413],[113.89954,22.21412],[113.89954,22.21412],[113.89955,22.21412]]],[[[113.94641,22.21535],[113.94623,22.21535],[113.94615,22.21533],[113.946,22.21534],[113.94583,22.21531],[113.94573,22.21521],[113.94561,22.21513],[113.94551,22.21506],[113.9454,22.21494],[113.94534,22.21478],[113.94528,22.21473],[113.94523,22.21468],[113.94519,22.21458],[113.94517,22.21453],[113.94517,22.2144],[113.94525,22.21437],[113.94529,22.21431],[113.94529,22.21424],[113.94533,22.21424],[113.94537,22.21429],[113.94547,22.21425],[113.94556,22.21433],[113.94562,22.21428],[113.94571,22.21436],[113.94581,22.21431],[113.94591,22.21434],[113.94595,22.2143],[113.94597,22.21427],[113.94602,22.21427],[113.94606,22.21429],[113.94606,22.21432],[113.94604,22.21435],[113.94604,22.21439],[113.94607,22.2144],[113.94608,22.21437],[113.94611,22.21435],[113.94615,22.21438],[113.94623,22.21433],[113.94638,22.21438],[113.94633,22.21452],[113.94641,22.21456],[113.94642,22.21473],[113.94651,22.21471],[113.94657,22.21462],[113.94661,22.21464],[113.94657,22.21473],[113.94656,22.21483],[113.94661,22.21488],[113.94667,22.21497],[113.94667,22.21508],[113.94673,22.21513],[113.94673,22.21523],[113.94665,22.2153],[113.94656,22.21526],[113.94641,22.21535]]],[[[113.98039,22.21671],[113.98042,22.21674],[113.98042,22.21676],[113.98036,22.21677],[113.98029,22.21676],[113.98026,22.21674],[113.98024,22.21672],[113.98025,22.2167],[113.98032,22.2167],[113.98039,22.21671]]],[[[113.83552,22.21778],[113.8354,22.21765],[113.8353,22.21769],[113.83527,22.21767],[113.83526,22.2176],[113.8352,22.2175],[113.83525,22.21736],[113.83517,22.21741],[113.83512,22.21739],[113.83504,22.21713],[113.83503,22.21699],[113.8351,22.21686],[113.83511,22.21674],[113.83517,22.21657],[113.83526,22.21642],[113.83538,22.21637],[113.83566,22.21603],[113.83575,22.21603],[113.83584,22.21596],[113.83586,22.21592],[113.83575,22.21594],[113.83579,22.21584],[113.83586,22.21581],[113.83588,22.21577],[113.83599,22.21567],[113.83609,22.21565],[113.83604,22.21547],[113.83604,22.21529],[113.83618,22.21531],[113.83628,22.21544],[113.83639,22.21528],[113.83648,22.21524],[113.83651,22.21507],[113.83657,22.21509],[113.83669,22.215],[113.83682,22.21492],[113.83688,22.21489],[113.83712,22.21495],[113.83733,22.21516],[113.83748,22.21505],[113.83766,22.21498],[113.83773,22.21501],[113.83766,22.21512],[113.83786,22.21528],[113.83785,22.21542],[113.83777,22.21547],[113.83781,22.21562],[113.83786,22.21569],[113.838,22.21575],[113.838,22.21597],[113.83811,22.21612],[113.83818,22.21612],[113.83826,22.21628],[113.8384,22.21639],[113.83836,22.21657],[113.83843,22.21674],[113.83848,22.21678],[113.8385,22.21696],[113.83845,22.21704],[113.83846,22.21718],[113.83834,22.21725],[113.83819,22.21729],[113.83804,22.21734],[113.83796,22.2173],[113.83797,22.2172],[113.83785,22.21719],[113.83778,22.21726],[113.83747,22.21719],[113.83707,22.21736],[113.83695,22.2175],[113.83701,22.21757],[113.83687,22.21769],[113.83666,22.21763],[113.83638,22.21766],[113.83618,22.21773],[113.83603,22.21776],[113.83575,22.21774],[113.83563,22.21772],[113.83552,22.21778]]],[[[114.03439,22.22338],[114.03407,22.22334],[114.03392,22.22324],[114.03382,22.22318],[114.03375,22.22318],[114.03364,22.22311],[114.03357,22.22312],[114.03356,22.22307],[114.03346,22.22299],[114.03338,22.22294],[114.03328,22.22278],[114.03321,22.22277],[114.0332,22.22269],[114.03312,22.22263],[114.03304,22.22251],[114.033,22.22251],[114.03293,22.22243],[114.03284,22.22239],[114.03276,22.22244],[114.03266,22.22232],[114.03271,22.22226],[114.03268,22.22222],[114.03249,22.22208],[114.03243,22.22203],[114.03236,22.22204],[114.03216,22.22191],[114.03216,22.22187],[114.0319,22.22183],[114.03177,22.22177],[114.03167,22.22179],[114.03164,22.22183],[114.03157,22.22182],[114.03151,22.22188],[114.03147,22.22183],[114.03127,22.2219],[114.03116,22.2219],[114.03115,22.22196],[114.03097,22.2219],[114.03082,22.22192],[114.03073,22.22196],[114.03064,22.22203],[114.03061,22.22205],[114.03055,22.2221],[114.03033,22.22212],[114.03023,22.22216],[114.03007,22.22213],[114.02995,22.2221],[114.02969,22.22205],[114.02967,22.22201],[114.02944,22.22191],[114.02929,22.22196],[114.02897,22.22196],[114.02886,22.22202],[114.0287,22.22203],[114.02841,22.22191],[114.02823,22.22182],[114.02811,22.22186],[114.02807,22.22178],[114.02802,22.22177],[114.02794,22.22184],[114.0278,22.22162],[114.02768,22.22158],[114.02762,22.22157],[114.02744,22.22154],[114.02733,22.22153],[114.0271,22.2215],[114.02698,22.2216],[114.02693,22.22163],[114.02684,22.22163],[114.02665,22.22147],[114.02667,22.22141],[114.02663,22.22123],[114.02641,22.22108],[114.02642,22.22096],[114.02621,22.22075],[114.02614,22.22061],[114.02618,22.22046],[114.02612,22.22041],[114.02606,22.22025],[114.02604,22.22017],[114.02594,22.22016],[114.02591,22.22006],[114.02577,22.21986],[114.02572,22.21936],[114.02565,22.21934],[114.02549,22.21932],[114.02545,22.21928],[114.02543,22.21925],[114.02545,22.21919],[114.0255,22.21916],[114.02552,22.21879],[114.02546,22.21876],[114.02543,22.21871],[114.02546,22.21852],[114.02585,22.21835],[114.02599,22.2184],[114.02624,22.2183],[114.02648,22.21809],[114.02651,22.21792],[114.02654,22.21726],[114.02645,22.21673],[114.02641,22.21659],[114.02631,22.21641],[114.02619,22.21625],[114.02613,22.21621],[114.02607,22.21621],[114.02594,22.21624],[114.02574,22.21621],[114.02556,22.21614],[114.0254,22.21599],[114.02532,22.21593],[114.0253,22.21589],[114.02531,22.21584],[114.02543,22.21562],[114.02549,22.2154],[114.02536,22.21507],[114.02533,22.2149],[114.02532,22.2148],[114.02489,22.21441],[114.02473,22.21416],[114.02458,22.21411],[114.02449,22.21405],[114.02445,22.21392],[114.02441,22.21384],[114.02422,22.21373],[114.02412,22.21377],[114.02407,22.21372],[114.02413,22.21366],[114.02398,22.21353],[114.02298,22.21396],[114.02303,22.21405],[114.023,22.21406],[114.02295,22.21397],[114.02293,22.21398],[114.02294,22.21401],[114.02263,22.21414],[114.02258,22.21414],[114.02253,22.21412],[114.02249,22.21405],[114.02251,22.21401],[114.02239,22.21377],[114.02241,22.21377],[114.02219,22.21332],[114.02213,22.21334],[114.02208,22.21326],[114.02208,22.21318],[114.02214,22.21313],[114.02296,22.21277],[114.02312,22.21248],[114.02331,22.21233],[114.02315,22.21213],[114.02314,22.21208],[114.02317,22.21203],[114.02311,22.21202],[114.02308,22.21198],[114.02316,22.21189],[114.02336,22.21194],[114.02357,22.21189],[114.02355,22.21175],[114.02362,22.21145],[114.02363,22.21144],[114.02403,22.21147],[114.02531,22.21167],[114.02533,22.21155],[114.02531,22.21154],[114.02532,22.2115],[114.02538,22.21151],[114.02538,22.21155],[114.02535,22.21155],[114.02533,22.21168],[114.02637,22.21185],[114.0281,22.21043],[114.02831,22.21008],[114.02835,22.21005],[114.02849,22.20946],[114.02858,22.20875],[114.02802,22.20868],[114.02806,22.20841],[114.02864,22.20848],[114.02868,22.20805],[114.02824,22.20804],[114.02824,22.20793],[114.02869,22.20795],[114.02869,22.20778],[114.02868,22.20774],[114.02866,22.20772],[114.02863,22.2077],[114.02836,22.20761],[114.0283,22.20758],[114.02825,22.20751],[114.02824,22.20749],[114.02823,22.20747],[114.02809,22.20715],[114.02803,22.20711],[114.02794,22.20714],[114.0278,22.2068],[114.02789,22.20677],[114.02789,22.20666],[114.02755,22.20582],[114.02749,22.20575],[114.02745,22.20573],[114.02739,22.20571],[114.02568,22.20545],[114.02344,22.2054],[114.02344,22.20531],[114.02328,22.20518],[114.02301,22.20499],[114.02284,22.20489],[114.02275,22.20481],[114.02271,22.20476],[114.02266,22.20468],[114.02122,22.20145],[114.02119,22.20132],[114.0212,22.20055],[114.02118,22.20048],[114.02115,22.20044],[114.0211,22.20039],[114.02105,22.20037],[114.02096,22.20037],[114.0209,22.20038],[114.02004,22.20069],[114.02,22.20074],[114.01995,22.20099],[114.01998,22.2011],[114.01999,22.20114],[114.01995,22.2012],[114.02072,22.2012],[114.02072,22.20115],[114.02083,22.20115],[114.02083,22.2012],[114.02087,22.20122],[114.02088,22.20124],[114.02087,22.20127],[114.02085,22.20129],[114.01997,22.20128],[114.01989,22.20128],[114.01988,22.20131],[114.01984,22.20138],[114.01978,22.20141],[114.0198,22.20149],[114.01977,22.20155],[114.0197,22.20162],[114.01964,22.20166],[114.01956,22.20167],[114.01953,22.20165],[114.0195,22.20163],[114.01943,22.20165],[114.0194,22.20164],[114.01935,22.20164],[114.01932,22.20161],[114.01928,22.20163],[114.01918,22.20164],[114.01914,22.20164],[114.01911,22.20167],[114.01908,22.20168],[114.019,22.20169],[114.01894,22.20173],[114.01889,22.20176],[114.01875,22.20166],[114.01871,22.20161],[114.01868,22.20163],[114.01864,22.20163],[114.01859,22.20164],[114.01856,22.20166],[114.0185,22.20167],[114.01846,22.20166],[114.01843,22.20167],[114.01841,22.20164],[114.01844,22.20161],[114.01844,22.20156],[114.01838,22.20148],[114.01838,22.2014],[114.01812,22.20133],[114.01808,22.20135],[114.01806,22.2014],[114.01803,22.20141],[114.01799,22.2014],[114.01801,22.20137],[114.01802,22.20132],[114.01796,22.2013],[114.01793,22.20127],[114.0178,22.20124],[114.01776,22.20125],[114.01773,22.20124],[114.01769,22.20121],[114.01762,22.2012],[114.01758,22.20122],[114.01753,22.20121],[114.01753,22.20118],[114.01742,22.20117],[114.01741,22.20113],[114.0173,22.20112],[114.01728,22.20109],[114.01724,22.20108],[114.01724,22.20104],[114.01719,22.20104],[114.01716,22.201],[114.01718,22.20097],[114.01716,22.20093],[114.01721,22.20086],[114.01718,22.20083],[114.01735,22.20067],[114.01725,22.20061],[114.01726,22.20054],[114.01731,22.20051],[114.01727,22.20046],[114.01724,22.20046],[114.01724,22.2004],[114.01732,22.20039],[114.01716,22.2003],[114.01713,22.20024],[114.01718,22.20018],[114.01729,22.20013],[114.01732,22.20014],[114.01733,22.2001],[114.01739,22.20006],[114.01752,22.20006],[114.01757,22.20008],[114.01758,22.20004],[114.01767,22.2],[114.01772,22.20004],[114.0178,22.20007],[114.0178,22.20012],[114.01794,22.20006],[114.01805,22.20007],[114.018,22.2],[114.018,22.19993],[114.01793,22.20001],[114.01788,22.19997],[114.01793,22.19989],[114.01797,22.19978],[114.018,22.19977],[114.01802,22.19987],[114.01806,22.19975],[114.01804,22.19971],[114.01819,22.19949],[114.01823,22.19936],[114.01814,22.19928],[114.01816,22.19909],[114.01837,22.19908],[114.01843,22.19911],[114.01849,22.19899],[114.01856,22.19895],[114.01875,22.19888],[114.01884,22.19892],[114.01887,22.19899],[114.01891,22.1988],[114.0188,22.1987],[114.01878,22.19855],[114.0187,22.19856],[114.01868,22.19859],[114.0186,22.19862],[114.01858,22.19864],[114.01839,22.1986],[114.01833,22.19867],[114.01815,22.19869],[114.01817,22.19865],[114.01811,22.19854],[114.0181,22.19842],[114.01813,22.19832],[114.0181,22.19823],[114.01816,22.19812],[114.01817,22.19793],[114.01824,22.19788],[114.01837,22.19786],[114.0184,22.19783],[114.01853,22.19783],[114.01854,22.19777],[114.01863,22.19779],[114.01891,22.19751],[114.01909,22.19743],[114.01911,22.19736],[114.01923,22.19735],[114.01928,22.19734],[114.01938,22.19735],[114.01941,22.19739],[114.01949,22.19735],[114.01957,22.19742],[114.01973,22.19743],[114.01978,22.19747],[114.01998,22.19735],[114.02017,22.19732],[114.02038,22.19741],[114.02041,22.19751],[114.02038,22.19756],[114.02043,22.19758],[114.02049,22.19754],[114.02066,22.19756],[114.02071,22.19764],[114.02069,22.19767],[114.02075,22.19767],[114.02076,22.19772],[114.02082,22.19777],[114.021,22.19779],[114.02103,22.19777],[114.02119,22.19782],[114.02124,22.19779],[114.02128,22.19782],[114.02168,22.19769],[114.0217,22.19771],[114.02178,22.19766],[114.02186,22.19758],[114.02194,22.19747],[114.02202,22.19724],[114.02204,22.19712],[114.02197,22.19705],[114.02188,22.19699],[114.02178,22.19699],[114.02176,22.19698],[114.02166,22.19694],[114.02161,22.19683],[114.02151,22.19679],[114.02148,22.19678],[114.02145,22.19672],[114.02122,22.19667],[114.02121,22.19664],[114.02114,22.19665],[114.02111,22.19663],[114.02109,22.19658],[114.02105,22.19651],[114.02104,22.19641],[114.02108,22.19638],[114.02113,22.19641],[114.02112,22.1963],[114.02121,22.19613],[114.02131,22.19607],[114.02141,22.19609],[114.02141,22.19603],[114.02151,22.19596],[114.02152,22.19582],[114.02157,22.19575],[114.02164,22.19574],[114.02172,22.1958],[114.02175,22.19603],[114.022,22.19593],[114.02205,22.19595],[114.0221,22.19607],[114.02229,22.19607],[114.0223,22.19612],[114.02219,22.19612],[114.02234,22.19628],[114.02231,22.19638],[114.02243,22.19639],[114.02244,22.19652],[114.02254,22.19652],[114.02262,22.19656],[114.02262,22.19663],[114.02267,22.19667],[114.02272,22.19657],[114.02282,22.19647],[114.02292,22.1965],[114.02282,22.19657],[114.02279,22.19663],[114.02285,22.19659],[114.02291,22.19665],[114.02285,22.19669],[114.02301,22.19682],[114.02311,22.19675],[114.0232,22.19679],[114.02323,22.19683],[114.02325,22.19677],[114.02336,22.19673],[114.02334,22.19667],[114.02349,22.19664],[114.02343,22.19672],[114.02351,22.19676],[114.02357,22.19674],[114.02356,22.19668],[114.02368,22.19664],[114.02379,22.19664],[114.02382,22.19661],[114.0239,22.19673],[114.02393,22.19677],[114.02392,22.19684],[114.02396,22.19682],[114.02399,22.19679],[114.02404,22.19675],[114.02408,22.19675],[114.02411,22.19677],[114.02411,22.19681],[114.02413,22.19679],[114.02417,22.19677],[114.02423,22.19678],[114.02427,22.19681],[114.02425,22.19686],[114.02419,22.19694],[114.02418,22.19697],[114.0243,22.19687],[114.02435,22.19682],[114.0244,22.19679],[114.02447,22.19679],[114.0245,22.19679],[114.02452,22.19681],[114.02454,22.19683],[114.02454,22.19686],[114.02452,22.19687],[114.02448,22.19685],[114.02446,22.19683],[114.02445,22.19683],[114.02442,22.19686],[114.0244,22.19693],[114.0244,22.19696],[114.02441,22.19699],[114.02446,22.19696],[114.02454,22.19699],[114.02472,22.19694],[114.02484,22.19708],[114.02497,22.19717],[114.02496,22.19724],[114.02507,22.19727],[114.02555,22.19771],[114.02568,22.19785],[114.02567,22.1979],[114.02562,22.19791],[114.02567,22.19797],[114.02566,22.19817],[114.02553,22.19828],[114.02555,22.19833],[114.02542,22.19842],[114.02543,22.19846],[114.02551,22.19847],[114.02557,22.19841],[114.02565,22.19834],[114.02577,22.19833],[114.02582,22.19838],[114.02586,22.19835],[114.02596,22.1984],[114.02605,22.19846],[114.02606,22.19842],[114.0261,22.19843],[114.02616,22.19848],[114.02618,22.19858],[114.02631,22.19865],[114.02629,22.19857],[114.02633,22.19847],[114.02642,22.19843],[114.02645,22.19838],[114.02662,22.19836],[114.0267,22.19839],[114.02676,22.19845],[114.02671,22.19853],[114.02669,22.19868],[114.0266,22.19873],[114.02656,22.19883],[114.02648,22.19883],[114.02653,22.19891],[114.02647,22.19903],[114.0264,22.19905],[114.02627,22.19901],[114.02619,22.19909],[114.02634,22.19929],[114.0266,22.19949],[114.02664,22.19951],[114.02681,22.1996],[114.02691,22.19956],[114.02688,22.19953],[114.02695,22.19951],[114.02701,22.19954],[114.02708,22.19957],[114.02724,22.19952],[114.02732,22.19957],[114.02732,22.19949],[114.02734,22.1994],[114.02752,22.19932],[114.02766,22.19936],[114.02776,22.19943],[114.02785,22.19936],[114.02812,22.19935],[114.02822,22.19938],[114.02823,22.19942],[114.02832,22.1994],[114.02841,22.19959],[114.02847,22.19953],[114.02854,22.19957],[114.02857,22.19965],[114.02856,22.19978],[114.02849,22.19989],[114.02837,22.2001],[114.02836,22.20017],[114.02829,22.20026],[114.02833,22.20029],[114.02832,22.20035],[114.02822,22.20045],[114.02801,22.20056],[114.02821,22.20083],[114.02833,22.20087],[114.02832,22.20081],[114.02847,22.20078],[114.02879,22.20084],[114.02883,22.20078],[114.02895,22.20079],[114.02901,22.20088],[114.02908,22.2008],[114.02914,22.20083],[114.02924,22.20106],[114.0292,22.20111],[114.02925,22.20121],[114.0292,22.20129],[114.02915,22.20129],[114.02941,22.20158],[114.02941,22.20163],[114.02957,22.20181],[114.02961,22.20193],[114.02963,22.20189],[114.0297,22.20193],[114.02979,22.20195],[114.02978,22.20208],[114.02983,22.2021],[114.02986,22.20215],[114.02986,22.20237],[114.02985,22.20244],[114.02982,22.20254],[114.02983,22.20257],[114.02995,22.20265],[114.03008,22.20282],[114.03014,22.20287],[114.03016,22.20287],[114.03017,22.20283],[114.03013,22.20281],[114.0301,22.20278],[114.03003,22.20266],[114.02996,22.20255],[114.02993,22.20242],[114.02997,22.20232],[114.03007,22.20235],[114.03016,22.20246],[114.0302,22.20249],[114.03024,22.20245],[114.03032,22.2025],[114.03028,22.2024],[114.03033,22.2024],[114.03042,22.20251],[114.03049,22.20262],[114.03046,22.20265],[114.03055,22.20278],[114.03054,22.20283],[114.0306,22.20283],[114.03068,22.20279],[114.03057,22.20259],[114.03061,22.20247],[114.03077,22.20238],[114.03077,22.20235],[114.03088,22.20234],[114.03102,22.20245],[114.03115,22.20246],[114.03107,22.20237],[114.03119,22.20232],[114.03132,22.2023],[114.03138,22.20233],[114.03161,22.20227],[114.03163,22.20222],[114.03174,22.2021],[114.03176,22.20202],[114.03184,22.20205],[114.03179,22.20211],[114.0319,22.20212],[114.03196,22.20202],[114.0322,22.20196],[114.03239,22.20208],[114.03243,22.20217],[114.03239,22.2022],[114.03244,22.20221],[114.03244,22.20227],[114.03234,22.20263],[114.03227,22.2027],[114.0321,22.20282],[114.03209,22.20293],[114.03224,22.20316],[114.0324,22.20323],[114.0324,22.20316],[114.03248,22.20308],[114.03259,22.20307],[114.03272,22.20315],[114.03279,22.20332],[114.03285,22.20334],[114.03291,22.20334],[114.03305,22.20309],[114.03334,22.20314],[114.03336,22.20316],[114.0333,22.20319],[114.03359,22.20338],[114.03363,22.20349],[114.03384,22.20345],[114.03378,22.20339],[114.03379,22.20326],[114.03385,22.20318],[114.03404,22.20302],[114.03401,22.20295],[114.03388,22.20283],[114.03386,22.20275],[114.03395,22.2027],[114.03411,22.2027],[114.0341,22.20249],[114.03418,22.20228],[114.03412,22.20223],[114.03432,22.20216],[114.03431,22.20212],[114.03438,22.2021],[114.03438,22.20216],[114.03442,22.20215],[114.03449,22.20219],[114.03464,22.20216],[114.03473,22.2021],[114.0349,22.20187],[114.03498,22.20181],[114.035,22.20175],[114.03495,22.20169],[114.03504,22.20167],[114.03501,22.20161],[114.03495,22.20162],[114.03491,22.20153],[114.03514,22.20126],[114.03504,22.20129],[114.03503,22.20118],[114.03514,22.20109],[114.03517,22.20084],[114.03536,22.20073],[114.03543,22.2006],[114.03568,22.20025],[114.03579,22.20025],[114.03586,22.2002],[114.03589,22.20024],[114.03598,22.20017],[114.03608,22.20021],[114.03611,22.20025],[114.03617,22.20021],[114.03622,22.20018],[114.03624,22.20019],[114.03628,22.20028],[114.0363,22.20031],[114.0364,22.20032],[114.03646,22.20039],[114.03653,22.20052],[114.03659,22.20057],[114.03659,22.20059],[114.0367,22.20073],[114.03675,22.20078],[114.03676,22.20082],[114.03675,22.20089],[114.03663,22.20105],[114.03656,22.20108],[114.03646,22.20108],[114.03645,22.20116],[114.03636,22.20117],[114.03638,22.2012],[114.03636,22.20123],[114.03641,22.20128],[114.03646,22.20133],[114.03649,22.20142],[114.03658,22.20142],[114.03657,22.20151],[114.03661,22.20159],[114.03656,22.20165],[114.03659,22.2017],[114.03661,22.20176],[114.03667,22.20186],[114.03669,22.20196],[114.03676,22.20193],[114.03678,22.20202],[114.03675,22.20217],[114.03673,22.20221],[114.03677,22.20231],[114.03666,22.20235],[114.0367,22.20246],[114.03672,22.20252],[114.03692,22.20261],[114.03688,22.20265],[114.03692,22.20269],[114.03703,22.20272],[114.0372,22.20269],[114.03756,22.20277],[114.03784,22.20276],[114.03798,22.20284],[114.038,22.20279],[114.03817,22.2028],[114.03831,22.20274],[114.03834,22.20279],[114.03837,22.20272],[114.03846,22.20272],[114.03859,22.20277],[114.03858,22.20281],[114.03867,22.20287],[114.0389,22.20289],[114.03899,22.20304],[114.03907,22.2031],[114.03915,22.20307],[114.03924,22.20313],[114.03922,22.20319],[114.03933,22.20332],[114.03929,22.20342],[114.03923,22.20343],[114.03937,22.20356],[114.03926,22.20362],[114.03923,22.20365],[114.03924,22.20368],[114.03927,22.20371],[114.03936,22.20373],[114.03929,22.20378],[114.03927,22.20378],[114.03924,22.20378],[114.03922,22.20379],[114.03922,22.20382],[114.03918,22.2039],[114.03918,22.20393],[114.03917,22.20396],[114.0392,22.20401],[114.03922,22.20407],[114.03921,22.20414],[114.03924,22.20425],[114.03927,22.20425],[114.03929,22.20429],[114.03924,22.20432],[114.03927,22.20434],[114.03928,22.20437],[114.03931,22.20439],[114.03941,22.20439],[114.03948,22.20442],[114.03967,22.20445],[114.03962,22.20451],[114.03939,22.20449],[114.03942,22.20459],[114.03951,22.20461],[114.03947,22.20473],[114.03957,22.20486],[114.03965,22.20486],[114.03968,22.20497],[114.03973,22.20513],[114.03997,22.2053],[114.04014,22.20527],[114.04036,22.20532],[114.04051,22.20535],[114.04057,22.20535],[114.04061,22.20531],[114.04067,22.20531],[114.04085,22.20532],[114.04093,22.20537],[114.04108,22.20552],[114.04112,22.20562],[114.0412,22.20562],[114.04125,22.20569],[114.04127,22.20578],[114.04121,22.20587],[114.04113,22.20589],[114.04118,22.2058],[114.04111,22.20581],[114.04091,22.20588],[114.04085,22.20597],[114.04077,22.20607],[114.04065,22.20614],[114.04054,22.20617],[114.04047,22.20635],[114.04027,22.20632],[114.04023,22.20638],[114.04018,22.20645],[114.04008,22.20653],[114.03981,22.20659],[114.03981,22.20663],[114.03968,22.2068],[114.03952,22.2069],[114.03954,22.20697],[114.03945,22.20703],[114.03943,22.20715],[114.03936,22.20743],[114.03947,22.20746],[114.0394,22.20755],[114.03952,22.20766],[114.03943,22.2078],[114.03946,22.20784],[114.03962,22.2079],[114.03961,22.208],[114.03951,22.2081],[114.03947,22.20814],[114.03921,22.20812],[114.0392,22.20815],[114.03913,22.20818],[114.03892,22.20809],[114.0389,22.20812],[114.03873,22.20817],[114.03853,22.20824],[114.03827,22.20817],[114.03824,22.20823],[114.03816,22.20829],[114.03819,22.20837],[114.0384,22.20836],[114.03844,22.20841],[114.03841,22.20851],[114.03835,22.2086],[114.03829,22.2086],[114.03821,22.20867],[114.03818,22.20864],[114.0382,22.2086],[114.03811,22.20861],[114.03806,22.20863],[114.03801,22.20864],[114.03802,22.20867],[114.03797,22.20869],[114.03794,22.20867],[114.03793,22.20863],[114.03798,22.20852],[114.03788,22.20859],[114.03778,22.20864],[114.03776,22.20865],[114.03763,22.20863],[114.03756,22.2086],[114.03753,22.20853],[114.03741,22.2085],[114.03737,22.20849],[114.03736,22.20843],[114.03733,22.2084],[114.0373,22.2084],[114.03714,22.20839],[114.03712,22.2084],[114.03706,22.20836],[114.03691,22.2083],[114.03676,22.20829],[114.03661,22.20821],[114.03656,22.20815],[114.03651,22.20812],[114.0365,22.20807],[114.03635,22.2079],[114.0363,22.20791],[114.03631,22.20786],[114.03626,22.20782],[114.0362,22.20775],[114.03617,22.20771],[114.03603,22.20771],[114.03601,22.20768],[114.03604,22.20765],[114.03616,22.20761],[114.0361,22.2075],[114.03599,22.20736],[114.03577,22.2072],[114.03567,22.20717],[114.03556,22.20713],[114.03546,22.20704],[114.03541,22.20695],[114.03534,22.20694],[114.03508,22.20695],[114.03467,22.20706],[114.03421,22.20723],[114.03416,22.20727],[114.03397,22.20731],[114.03391,22.20739],[114.03382,22.20738],[114.03369,22.20743],[114.03348,22.20765],[114.03362,22.20786],[114.03368,22.20792],[114.03369,22.20801],[114.03364,22.20808],[114.03356,22.20811],[114.03349,22.2081],[114.03343,22.20806],[114.0334,22.208],[114.03341,22.20793],[114.03285,22.20794],[114.03274,22.20795],[114.03272,22.20796],[114.03276,22.20801],[114.03258,22.208],[114.03254,22.20797],[114.03245,22.20797],[114.03234,22.20795],[114.03226,22.208],[114.03119,22.20886],[114.03009,22.21016],[114.02974,22.21066],[114.02956,22.21098],[114.02928,22.21152],[114.02912,22.21192],[114.02901,22.21254],[114.029,22.21291],[114.02904,22.21346],[114.02912,22.21375],[114.02919,22.2138],[114.02923,22.2138],[114.02926,22.21384],[114.02923,22.21386],[114.0294,22.21415],[114.02942,22.2143],[114.02954,22.21447],[114.02963,22.21454],[114.0297,22.21454],[114.02974,22.21456],[114.02973,22.2147],[114.02996,22.21492],[114.02999,22.21492],[114.03002,22.21489],[114.03005,22.21489],[114.03008,22.21492],[114.03004,22.21496],[114.03009,22.21502],[114.03018,22.21501],[114.03019,22.21504],[114.03024,22.21504],[114.03026,22.21505],[114.03019,22.21509],[114.03021,22.21515],[114.03024,22.21519],[114.03034,22.21518],[114.03035,22.21521],[114.03032,22.21523],[114.03039,22.2153],[114.03043,22.21541],[114.0307,22.21567],[114.03078,22.21567],[114.03083,22.21563],[114.03108,22.2158],[114.03138,22.21589],[114.03163,22.21592],[114.03179,22.21582],[114.03186,22.21585],[114.0319,22.21598],[114.03194,22.21599],[114.03205,22.2159],[114.03223,22.21584],[114.0326,22.21586],[114.0327,22.21588],[114.03305,22.21591],[114.03317,22.21604],[114.03329,22.21616],[114.0333,22.21623],[114.03336,22.21622],[114.03357,22.21633],[114.03358,22.21639],[114.03368,22.21644],[114.03373,22.21658],[114.0337,22.21698],[114.03377,22.21689],[114.03388,22.21692],[114.03391,22.21689],[114.03402,22.21697],[114.034,22.21699],[114.03414,22.21706],[114.0342,22.21695],[114.03429,22.21688],[114.03464,22.21687],[114.03501,22.21698],[114.03553,22.21704],[114.03585,22.21714],[114.03587,22.21729],[114.03575,22.21745],[114.03555,22.2176],[114.03535,22.21769],[114.03526,22.21776],[114.03521,22.2178],[114.03505,22.21792],[114.03485,22.21799],[114.03479,22.21798],[114.03474,22.21792],[114.03466,22.21792],[114.03464,22.21797],[114.03458,22.21799],[114.03441,22.21794],[114.03436,22.21773],[114.0343,22.21771],[114.03421,22.2178],[114.03415,22.21777],[114.03404,22.2179],[114.03386,22.21785],[114.03371,22.21778],[114.03361,22.21773],[114.03353,22.21765],[114.03354,22.21757],[114.03359,22.21754],[114.03343,22.21751],[114.03332,22.21763],[114.03309,22.21772],[114.03303,22.21777],[114.03299,22.21778],[114.03294,22.21782],[114.0329,22.21783],[114.03289,22.21781],[114.03285,22.21783],[114.03285,22.21788],[114.03282,22.2179],[114.03267,22.21778],[114.0326,22.21776],[114.03249,22.21778],[114.03241,22.21784],[114.03228,22.21812],[114.03216,22.21868],[114.03231,22.21884],[114.03233,22.21898],[114.03242,22.21911],[114.03262,22.21912],[114.03272,22.21919],[114.03278,22.21912],[114.03291,22.21913],[114.03307,22.21919],[114.03308,22.21925],[114.03321,22.21932],[114.03328,22.21935],[114.0334,22.21929],[114.0335,22.21925],[114.03356,22.21926],[114.03368,22.21936],[114.03401,22.21952],[114.034,22.2196],[114.03427,22.21976],[114.0343,22.21985],[114.03444,22.21996],[114.03444,22.22011],[114.03456,22.22013],[114.03459,22.22014],[114.03462,22.22006],[114.03475,22.22002],[114.03493,22.22016],[114.03506,22.22019],[114.03511,22.22032],[114.0351,22.22041],[114.03517,22.2204],[114.0352,22.22042],[114.03516,22.22044],[114.0352,22.22051],[114.03521,22.22064],[114.03533,22.22076],[114.03537,22.22089],[114.03541,22.22088],[114.03542,22.22092],[114.03546,22.22093],[114.03544,22.22095],[114.03538,22.22095],[114.03541,22.22105],[114.03552,22.22108],[114.03552,22.22116],[114.0355,22.22119],[114.03549,22.22113],[114.03547,22.22115],[114.03547,22.22117],[114.03547,22.2212],[114.03549,22.22131],[114.03556,22.22133],[114.03558,22.22135],[114.03565,22.22136],[114.03565,22.22139],[114.03569,22.22143],[114.0357,22.2216],[114.03569,22.22179],[114.03569,22.22188],[114.03574,22.2219],[114.0357,22.22199],[114.03571,22.22213],[114.03562,22.22234],[114.03558,22.22235],[114.03556,22.22246],[114.03534,22.22259],[114.03518,22.22263],[114.03496,22.22309],[114.03483,22.22315],[114.03477,22.22321],[114.03475,22.22328],[114.03468,22.2233],[114.03465,22.22327],[114.03457,22.22336],[114.03453,22.22335],[114.03439,22.22338]]],[[[113.92858,22.2241],[113.92856,22.2241],[113.92854,22.22409],[113.92854,22.22406],[113.92852,22.22405],[113.9285,22.22405],[113.92846,22.22407],[113.92844,22.22408],[113.92843,22.22406],[113.92842,22.22404],[113.92843,22.22401],[113.92841,22.22399],[113.92843,22.22396],[113.92844,22.22394],[113.92847,22.22393],[113.92847,22.22392],[113.92846,22.2239],[113.92847,22.22387],[113.92851,22.22384],[113.92853,22.22382],[113.92855,22.22381],[113.92858,22.22382],[113.92858,22.22386],[113.9286,22.22385],[113.92861,22.22392],[113.92863,22.22392],[113.92864,22.22393],[113.92862,22.22395],[113.92865,22.22398],[113.92866,22.22397],[113.92867,22.22397],[113.92868,22.22398],[113.92866,22.224],[113.92865,22.22401],[113.92864,22.22401],[113.92865,22.22404],[113.92864,22.22408],[113.92862,22.22409],[113.9286,22.22409],[113.92859,22.22408],[113.92858,22.2241]]],[[[113.9286,22.22416],[113.92861,22.22417],[113.92861,22.22417],[113.92861,22.22419],[113.92862,22.22419],[113.92862,22.2242],[113.92863,22.22421],[113.92863,22.22423],[113.92862,22.22424],[113.92861,22.22424],[113.92861,22.22424],[113.9286,22.22424],[113.92859,22.22424],[113.92857,22.22423],[113.92857,22.22423],[113.92856,22.22421],[113.92857,22.22421],[113.92857,22.2242],[113.92857,22.2242],[113.92857,22.22419],[113.92857,22.22418],[113.92858,22.22417],[113.92859,22.22416],[113.9286,22.22416],[113.9286,22.22416]]],[[[113.9824,22.22481],[113.98239,22.22483],[113.98234,22.22485],[113.98231,22.22485],[113.98226,22.22484],[113.98224,22.22482],[113.98224,22.2248],[113.98226,22.2248],[113.98232,22.22481],[113.98239,22.2248],[113.9824,22.22481]]],[[[114.13503,22.22631],[114.13502,22.22637],[114.13493,22.22638],[114.13485,22.22633],[114.1349,22.22625],[114.1348,22.22626],[114.1347,22.22618],[114.13464,22.22601],[114.13443,22.22593],[114.13431,22.2259],[114.13402,22.2257],[114.1339,22.22559],[114.1338,22.22551],[114.13367,22.22536],[114.13362,22.22523],[114.1334,22.22526],[114.13327,22.22516],[114.13317,22.22516],[114.13312,22.2251],[114.13311,22.22494],[114.13315,22.22483],[114.13318,22.22455],[114.13316,22.22436],[114.13305,22.2241],[114.13314,22.2238],[114.13326,22.2236],[114.13318,22.22357],[114.13318,22.22346],[114.13333,22.22335],[114.13332,22.22315],[114.13333,22.22308],[114.13342,22.22298],[114.13347,22.22299],[114.13348,22.22311],[114.13356,22.22314],[114.13371,22.22311],[114.13384,22.22314],[114.13422,22.22308],[114.13428,22.22324],[114.13464,22.22336],[114.13472,22.22353],[114.13478,22.22354],[114.13494,22.22359],[114.13509,22.22357],[114.13528,22.22363],[114.13557,22.22376],[114.13574,22.22377],[114.13585,22.2237],[114.13589,22.22359],[114.13596,22.22355],[114.13608,22.22361],[114.13607,22.22369],[114.13604,22.22382],[114.13587,22.22385],[114.13585,22.22392],[114.13589,22.22399],[114.13594,22.22397],[114.13602,22.22405],[114.13599,22.22416],[114.13585,22.22415],[114.13598,22.22429],[114.13595,22.2247],[114.13611,22.22476],[114.13619,22.22489],[114.13616,22.2251],[114.13612,22.22533],[114.13609,22.22554],[114.13609,22.22565],[114.13603,22.22573],[114.13591,22.22581],[114.13582,22.22593],[114.13575,22.22607],[114.13529,22.22625],[114.13527,22.22629],[114.13523,22.2263],[114.13514,22.22629],[114.135,22.22626],[114.13503,22.22631]]],[[[114.02062,22.23058],[114.0206,22.23059],[114.02058,22.2306],[114.02056,22.2306],[114.02055,22.23059],[114.02053,22.23057],[114.02053,22.23054],[114.02052,22.23051],[114.02052,22.23049],[114.02053,22.23048],[114.02054,22.23047],[114.02057,22.23047],[114.02059,22.23047],[114.0206,22.23048],[114.02061,22.23049],[114.02063,22.2305],[114.02065,22.23049],[114.02068,22.23049],[114.02069,22.23049],[114.02071,22.2305],[114.02071,22.23052],[114.0207,22.23054],[114.02069,22.23055],[114.02069,22.23057],[114.02068,22.23058],[114.02066,22.23058],[114.02063,22.23058],[114.02062,22.23057],[114.02062,22.23058]]],[[[114.11812,22.24119],[114.11804,22.24118],[114.11796,22.24115],[114.11786,22.24106],[114.11784,22.24093],[114.11776,22.24086],[114.11776,22.24074],[114.11769,22.24078],[114.11768,22.24073],[114.11775,22.24072],[114.11773,22.2407],[114.11763,22.24063],[114.11755,22.24071],[114.11745,22.24072],[114.11745,22.24068],[114.11753,22.24064],[114.11748,22.2406],[114.11748,22.2405],[114.11755,22.24044],[114.11765,22.24045],[114.11765,22.24037],[114.11763,22.2403],[114.11752,22.24029],[114.11749,22.24025],[114.11749,22.2402],[114.11738,22.24013],[114.11725,22.23992],[114.11708,22.23986],[114.11705,22.23981],[114.11699,22.23987],[114.1169,22.23982],[114.11686,22.23976],[114.11691,22.23964],[114.11698,22.23961],[114.11701,22.23961],[114.11709,22.23951],[114.11719,22.23949],[114.11725,22.23942],[114.11731,22.23939],[114.11732,22.23938],[114.11731,22.23936],[114.1173,22.23933],[114.11731,22.23929],[114.11734,22.23929],[114.11736,22.23931],[114.11738,22.23934],[114.11735,22.23937],[114.11736,22.23938],[114.1174,22.23937],[114.11743,22.23935],[114.11744,22.23933],[114.11744,22.23931],[114.11745,22.23929],[114.11745,22.23928],[114.11745,22.23925],[114.11744,22.23922],[114.11743,22.23919],[114.11742,22.23917],[114.11742,22.23915],[114.11743,22.23911],[114.11743,22.23908],[114.11739,22.239],[114.11735,22.23895],[114.1173,22.23895],[114.11727,22.23896],[114.11725,22.23895],[114.1172,22.2389],[114.11717,22.23887],[114.11713,22.23885],[114.11708,22.23883],[114.11704,22.2388],[114.11701,22.23878],[114.11698,22.23875],[114.11695,22.23873],[114.11693,22.2387],[114.11692,22.23867],[114.11693,22.23863],[114.11694,22.23861],[114.11695,22.23859],[114.11693,22.23859],[114.1169,22.2386],[114.11688,22.2386],[114.11684,22.23859],[114.1168,22.23858],[114.11676,22.23859],[114.11671,22.2386],[114.11666,22.23863],[114.11651,22.23868],[114.11647,22.23868],[114.11642,22.23866],[114.11638,22.23864],[114.11631,22.2386],[114.11625,22.23857],[114.11618,22.23852],[114.11607,22.23847],[114.11607,22.23847],[114.11605,22.23846],[114.11602,22.23845],[114.11599,22.23843],[114.11597,22.23842],[114.11596,22.23839],[114.11598,22.23836],[114.116,22.23833],[114.11603,22.23831],[114.11606,22.23828],[114.11607,22.23826],[114.11606,22.23826],[114.11571,22.23822],[114.11536,22.2381],[114.11528,22.2381],[114.11526,22.23814],[114.11516,22.23817],[114.11515,22.23822],[114.11507,22.23824],[114.11493,22.23823],[114.1148,22.23816],[114.11478,22.23814],[114.11479,22.23809],[114.1146,22.23791],[114.11448,22.23794],[114.11414,22.23794],[114.1141,22.23801],[114.11388,22.23805],[114.1135,22.23799],[114.11347,22.23794],[114.1134,22.2379],[114.11341,22.23784],[114.11322,22.2377],[114.11317,22.23759],[114.11295,22.23739],[114.11282,22.23722],[114.11262,22.23712],[114.11246,22.23717],[114.11242,22.23709],[114.11225,22.23706],[114.11203,22.23716],[114.11203,22.23711],[114.11183,22.2371],[114.11159,22.23699],[114.11155,22.23704],[114.11138,22.23692],[114.11117,22.23691],[114.11109,22.23682],[114.11091,22.23674],[114.11037,22.23667],[114.11004,22.23657],[114.11001,22.23657],[114.10999,22.23668],[114.10989,22.23666],[114.10993,22.2365],[114.10987,22.23636],[114.10996,22.23627],[114.10984,22.23627],[114.10987,22.23623],[114.10978,22.23612],[114.10972,22.23609],[114.10956,22.23616],[114.10946,22.23613],[114.10946,22.23608],[114.10937,22.23608],[114.10937,22.23604],[114.10946,22.23603],[114.10948,22.23598],[114.10944,22.23594],[114.10933,22.23588],[114.10929,22.23581],[114.10903,22.23575],[114.10903,22.23546],[114.10876,22.23532],[114.10853,22.23528],[114.1083,22.23531],[114.10826,22.23534],[114.10823,22.23542],[114.10826,22.23544],[114.10819,22.23549],[114.10824,22.23554],[114.1082,22.23565],[114.10822,22.23569],[114.10808,22.23573],[114.10802,22.2357],[114.10788,22.23574],[114.10781,22.23572],[114.10776,22.2357],[114.1079,22.23564],[114.10769,22.2356],[114.10773,22.23553],[114.1078,22.23552],[114.1078,22.23548],[114.10762,22.23534],[114.10748,22.23532],[114.10746,22.23529],[114.1075,22.23526],[114.10745,22.23523],[114.10726,22.23533],[114.10719,22.23532],[114.10719,22.23523],[114.10729,22.23517],[114.10728,22.2351],[114.10721,22.23494],[114.10704,22.23476],[114.10681,22.23464],[114.10673,22.23467],[114.10652,22.23459],[114.10648,22.23451],[114.10637,22.23449],[114.10633,22.23435],[114.10624,22.23433],[114.10617,22.23438],[114.10612,22.23435],[114.10615,22.23431],[114.10607,22.23422],[114.10592,22.23422],[114.1058,22.23413],[114.10578,22.23404],[114.1058,22.23391],[114.10583,22.2338],[114.10578,22.23352],[114.10579,22.23331],[114.10586,22.23315],[114.10601,22.23309],[114.10622,22.23283],[114.10694,22.2324],[114.1071,22.23238],[114.10704,22.23232],[114.10707,22.23227],[114.10715,22.23226],[114.10718,22.23228],[114.10717,22.23241],[114.10736,22.23258],[114.10755,22.23252],[114.10764,22.23247],[114.10763,22.23237],[114.10775,22.23218],[114.10768,22.23205],[114.10778,22.23206],[114.10779,22.23198],[114.10789,22.23193],[114.10789,22.23188],[114.10797,22.23188],[114.10797,22.23191],[114.10806,22.23191],[114.10841,22.23187],[114.10848,22.2318],[114.10843,22.23174],[114.10872,22.23162],[114.10876,22.23164],[114.1087,22.23176],[114.1089,22.23169],[114.10914,22.23169],[114.10919,22.23168],[114.10927,22.23154],[114.10953,22.23141],[114.10985,22.23145],[114.11008,22.23126],[114.1102,22.23107],[114.1103,22.23077],[114.11029,22.23067],[114.11037,22.23055],[114.1103,22.23038],[114.11034,22.23032],[114.11027,22.23027],[114.11026,22.23024],[114.11025,22.23009],[114.11026,22.22988],[114.11021,22.22971],[114.11016,22.22966],[114.11013,22.22968],[114.11005,22.22967],[114.11004,22.22963],[114.1101,22.22962],[114.11002,22.22959],[114.10996,22.22959],[114.1099,22.22957],[114.10989,22.22955],[114.10987,22.22943],[114.10991,22.22932],[114.10989,22.22928],[114.10966,22.22926],[114.10944,22.22918],[114.10936,22.22912],[114.10927,22.22909],[114.10918,22.22908],[114.10913,22.22909],[114.10909,22.22904],[114.10908,22.22899],[114.10909,22.22886],[114.10902,22.22862],[114.10904,22.2285],[114.10891,22.22821],[114.10882,22.22814],[114.10866,22.22817],[114.10856,22.22815],[114.10833,22.2282],[114.10826,22.22814],[114.10828,22.22806],[114.10825,22.22803],[114.10826,22.22801],[114.10837,22.22785],[114.10846,22.22777],[114.10846,22.22765],[114.10856,22.22751],[114.10862,22.22745],[114.10868,22.22743],[114.1087,22.22746],[114.10876,22.22743],[114.10885,22.22745],[114.1089,22.22742],[114.10892,22.22743],[114.10896,22.22746],[114.10897,22.2275],[114.10911,22.22748],[114.10915,22.22748],[114.10917,22.22749],[114.10917,22.22751],[114.10916,22.22752],[114.1091,22.22753],[114.109,22.22755],[114.10899,22.22756],[114.10897,22.22762],[114.10891,22.22766],[114.10891,22.22768],[114.10896,22.22774],[114.10894,22.22791],[114.10898,22.22797],[114.1091,22.22801],[114.10928,22.22802],[114.10929,22.22793],[114.10927,22.22794],[114.10926,22.22786],[114.10928,22.22779],[114.1093,22.2278],[114.10928,22.22775],[114.10925,22.22771],[114.10923,22.22769],[114.10922,22.22768],[114.10922,22.22766],[114.10923,22.22764],[114.10925,22.22763],[114.10926,22.22763],[114.10925,22.22759],[114.10925,22.22756],[114.10926,22.22754],[114.10928,22.22751],[114.1093,22.22747],[114.10938,22.22737],[114.10942,22.22734],[114.10945,22.22725],[114.10943,22.22724],[114.10957,22.227],[114.10967,22.22706],[114.10973,22.22703],[114.10981,22.22699],[114.10993,22.22698],[114.10924,22.22662],[114.10923,22.22664],[114.10884,22.22644],[114.10835,22.22618],[114.10845,22.22602],[114.10895,22.22629],[114.109,22.22643],[114.11001,22.22696],[114.11012,22.22695],[114.11017,22.22693],[114.11023,22.2269],[114.11021,22.22681],[114.11039,22.22678],[114.11039,22.22679],[114.11059,22.22684],[114.11067,22.22684],[114.11084,22.22689],[114.11083,22.22686],[114.11104,22.22681],[114.11107,22.2268],[114.1111,22.22679],[114.11114,22.22678],[114.1112,22.22678],[114.11121,22.22678],[114.11128,22.22688],[114.1113,22.22684],[114.11135,22.22675],[114.11146,22.22642],[114.11148,22.226],[114.11147,22.22589],[114.11144,22.22589],[114.1114,22.22579],[114.11138,22.22579],[114.11137,22.22575],[114.11133,22.22576],[114.11132,22.22574],[114.11071,22.22591],[114.11069,22.22587],[114.11133,22.22569],[114.11131,22.22556],[114.11136,22.22556],[114.11135,22.22547],[114.11131,22.22548],[114.11129,22.22539],[114.11132,22.22538],[114.11125,22.2251],[114.1112,22.22512],[114.11119,22.22508],[114.11123,22.22506],[114.1112,22.22499],[114.11117,22.22498],[114.11114,22.22501],[114.11089,22.22509],[114.11084,22.22508],[114.11077,22.22505],[114.11074,22.22502],[114.11037,22.22525],[114.11033,22.22519],[114.11057,22.22504],[114.11037,22.22476],[114.10944,22.225],[114.10909,22.22482],[114.10885,22.22488],[114.10885,22.2249],[114.10884,22.22492],[114.10884,22.22493],[114.10883,22.22495],[114.10882,22.22496],[114.10882,22.22497],[114.1088,22.22499],[114.10878,22.225],[114.10875,22.22501],[114.10873,22.22501],[114.10871,22.22501],[114.1087,22.22501],[114.10868,22.225],[114.10867,22.225],[114.10864,22.22498],[114.10863,22.22497],[114.10863,22.22497],[114.10862,22.22495],[114.10861,22.22494],[114.1086,22.22493],[114.1086,22.22491],[114.1086,22.2249],[114.1086,22.22489],[114.1086,22.22487],[114.10862,22.22484],[114.10863,22.22482],[114.10864,22.22481],[114.10868,22.22479],[114.10871,22.22478],[114.10874,22.22478],[114.10876,22.22478],[114.10879,22.2248],[114.10882,22.22482],[114.10883,22.22485],[114.10905,22.22479],[114.10782,22.22413],[114.10774,22.22417],[114.1077,22.22423],[114.10758,22.22412],[114.10754,22.22418],[114.1075,22.22418],[114.10752,22.22423],[114.1075,22.22428],[114.10747,22.22425],[114.10744,22.22417],[114.10739,22.22414],[114.1074,22.22406],[114.10744,22.22402],[114.10742,22.22393],[114.10731,22.22404],[114.10728,22.224],[114.10728,22.22394],[114.10735,22.2239],[114.10733,22.22384],[114.10728,22.22383],[114.10725,22.22378],[114.10732,22.2237],[114.10725,22.22352],[114.10716,22.22341],[114.10701,22.22336],[114.1069,22.22325],[114.10681,22.22309],[114.10673,22.22305],[114.10658,22.22313],[114.10647,22.22311],[114.10647,22.22301],[114.1064,22.22307],[114.10636,22.22306],[114.10629,22.22312],[114.10628,22.22317],[114.10626,22.22315],[114.10626,22.22311],[114.10624,22.22309],[114.10611,22.22308],[114.10606,22.22293],[114.10614,22.22268],[114.106,22.22276],[114.10593,22.22279],[114.1059,22.2228],[114.10588,22.2228],[114.10587,22.22279],[114.10584,22.22278],[114.10568,22.22261],[114.10558,22.22248],[114.10557,22.22244],[114.10558,22.22239],[114.10557,22.2223],[114.10561,22.22226],[114.1056,22.22218],[114.10566,22.22218],[114.10569,22.22219],[114.10574,22.22215],[114.10563,22.22205],[114.10559,22.22195],[114.10561,22.22186],[114.10548,22.22165],[114.10542,22.2216],[114.10533,22.22163],[114.1053,22.22153],[114.10518,22.22153],[114.10512,22.22148],[114.10511,22.22145],[114.10513,22.2214],[114.10505,22.22136],[114.10506,22.22125],[114.105,22.22124],[114.10498,22.22131],[114.10495,22.22129],[114.10494,22.2213],[114.10494,22.22137],[114.10465,22.22147],[114.10461,22.22146],[114.10457,22.22142],[114.10391,22.22153],[114.1039,22.22148],[114.10457,22.22139],[114.10457,22.22135],[114.10459,22.22134],[114.10487,22.22125],[114.1049,22.2212],[114.10486,22.22115],[114.10482,22.22115],[114.10481,22.22111],[114.10483,22.22104],[114.1048,22.22104],[114.10476,22.22099],[114.10473,22.2208],[114.10466,22.2207],[114.10461,22.22069],[114.10462,22.22073],[114.10456,22.22072],[114.10456,22.22077],[114.10448,22.22077],[114.10446,22.22073],[114.1045,22.22069],[114.10453,22.22069],[114.10456,22.22063],[114.10453,22.22057],[114.10448,22.22054],[114.10445,22.2204],[114.10449,22.22037],[114.10448,22.22033],[114.10442,22.22035],[114.10442,22.22025],[114.10449,22.22012],[114.10452,22.22011],[114.10456,22.22015],[114.10455,22.22006],[114.10456,22.22],[114.10464,22.21989],[114.10466,22.21985],[114.10465,22.2198],[114.10464,22.21971],[114.10456,22.21949],[114.1045,22.21936],[114.10435,22.21944],[114.10425,22.21952],[114.10419,22.21954],[114.10414,22.21955],[114.10409,22.21952],[114.10358,22.21986],[114.1032,22.22083],[114.10317,22.22082],[114.10316,22.22084],[114.10314,22.22095],[114.10314,22.22101],[114.10315,22.2211],[114.10319,22.2212],[114.10345,22.22172],[114.1035,22.2218],[114.10356,22.22187],[114.10362,22.22193],[114.10367,22.22196],[114.10365,22.22199],[114.10358,22.22195],[114.10353,22.22189],[114.10347,22.22182],[114.10341,22.22174],[114.10314,22.2212],[114.10311,22.22112],[114.1031,22.22104],[114.1031,22.22094],[114.10312,22.22086],[114.10334,22.22028],[114.10324,22.22015],[114.10321,22.22005],[114.10321,22.22001],[114.10325,22.21995],[114.1033,22.21987],[114.1034,22.21978],[114.10341,22.21976],[114.10342,22.21974],[114.10342,22.21971],[114.10342,22.2197],[114.10341,22.21968],[114.10337,22.21965],[114.1031,22.21944],[114.10308,22.21946],[114.10306,22.21947],[114.10304,22.21947],[114.10302,22.21946],[114.103,22.21944],[114.10299,22.21942],[114.103,22.2194],[114.10307,22.21931],[114.10312,22.21926],[114.10314,22.21923],[114.10315,22.2192],[114.10311,22.21908],[114.10317,22.21902],[114.10315,22.21893],[114.10303,22.21864],[114.103,22.21863],[114.10297,22.21856],[114.10288,22.2186],[114.10278,22.21856],[114.10284,22.21849],[114.10283,22.21843],[114.10103,22.21864],[114.101,22.21878],[114.10075,22.21874],[114.10167,22.21339],[114.10177,22.2134],[114.10186,22.21287],[114.10191,22.21287],[114.10181,22.21341],[114.10192,22.21342],[114.10164,22.21507],[114.10162,22.21518],[114.10146,22.21608],[114.10145,22.21617],[114.10131,22.21698],[114.10136,22.21699],[114.10131,22.21726],[114.10126,22.21725],[114.10105,22.21847],[114.10114,22.21855],[114.10281,22.21836],[114.10281,22.2183],[114.10282,22.21827],[114.10285,22.21824],[114.10287,22.21821],[114.1029,22.2182],[114.10293,22.21819],[114.10312,22.21816],[114.10314,22.21815],[114.10315,22.21813],[114.10318,22.21806],[114.10315,22.21784],[114.10301,22.21784],[114.103,22.21714],[114.10318,22.21714],[114.10318,22.21712],[114.10318,22.21708],[114.10318,22.21662],[114.10319,22.21657],[114.10321,22.21651],[114.10324,22.21646],[114.1033,22.2164],[114.10332,22.21638],[114.10338,22.21634],[114.10345,22.21631],[114.1035,22.2163],[114.10405,22.2163],[114.10405,22.21594],[114.10359,22.21594],[114.10346,22.21591],[114.10336,22.21582],[114.10332,22.21582],[114.1033,22.21581],[114.10327,22.2158],[114.10325,22.21577],[114.10324,22.21571],[114.10323,22.21555],[114.10321,22.2155],[114.1032,22.21543],[114.10322,22.21528],[114.10319,22.21476],[114.10319,22.21457],[114.1032,22.21432],[114.10321,22.21398],[114.10319,22.21392],[114.1032,22.21377],[114.10316,22.21327],[114.10318,22.2131],[114.10319,22.21296],[114.1032,22.21264],[114.10319,22.21245],[114.1032,22.21232],[114.10321,22.21212],[114.1032,22.21195],[114.10322,22.21185],[114.10321,22.21173],[114.10322,22.21167],[114.10324,22.21163],[114.10331,22.2115],[114.10335,22.21145],[114.10339,22.21141],[114.10348,22.21136],[114.1036,22.2113],[114.10373,22.21127],[114.10395,22.21125],[114.10426,22.21125],[114.10468,22.21124],[114.10485,22.21125],[114.10499,22.21124],[114.10514,22.21125],[114.10525,22.21124],[114.10558,22.21126],[114.10571,22.21125],[114.10575,22.21125],[114.10599,22.21124],[114.10613,22.21124],[114.10622,22.21123],[114.10629,22.21125],[114.10639,22.21123],[114.10653,22.21125],[114.10662,22.21123],[114.10673,22.21125],[114.10697,22.21125],[114.10705,22.21125],[114.10715,22.21125],[114.10732,22.21129],[114.1074,22.21129],[114.10769,22.21131],[114.10774,22.21133],[114.10781,22.21142],[114.10791,22.2115],[114.10794,22.21162],[114.10794,22.2124],[114.10793,22.21395],[114.1079,22.21416],[114.10781,22.21438],[114.10776,22.21447],[114.10768,22.21458],[114.1076,22.21467],[114.10742,22.21482],[114.10719,22.21494],[114.10694,22.21502],[114.10672,22.21504],[114.10667,22.21505],[114.10515,22.21504],[114.10515,22.21571],[114.10511,22.21583],[114.10502,22.21592],[114.1049,22.21595],[114.10482,22.21595],[114.10482,22.2163],[114.10986,22.2163],[114.10986,22.21453],[114.1099,22.2143],[114.11,22.21406],[114.11016,22.21387],[114.11038,22.21371],[114.11063,22.21362],[114.11087,22.21359],[114.11138,22.2136],[114.11172,22.21364],[114.11211,22.21374],[114.11242,22.21386],[114.11277,22.21404],[114.11319,22.21432],[114.11344,22.2146],[114.11347,22.21471],[114.11347,22.21477],[114.11344,22.21482],[114.11346,22.21488],[114.11346,22.21783],[114.1135,22.21783],[114.1135,22.21791],[114.11346,22.21791],[114.11346,22.21947],[114.11343,22.21947],[114.11343,22.21951],[114.11342,22.21959],[114.11343,22.21971],[114.11343,22.21979],[114.11343,22.21982],[114.11343,22.21991],[114.11342,22.21995],[114.11342,22.22001],[114.11343,22.22005],[114.11344,22.22006],[114.11347,22.22007],[114.11369,22.2201],[114.11377,22.22011],[114.11385,22.22012],[114.114,22.2202],[114.11407,22.22024],[114.1141,22.22025],[114.11412,22.22026],[114.11414,22.22026],[114.11422,22.22026],[114.11431,22.22027],[114.11439,22.22026],[114.11444,22.22026],[114.1145,22.22026],[114.11455,22.22026],[114.1146,22.22028],[114.11467,22.2203],[114.11471,22.22031],[114.11472,22.22031],[114.11475,22.22031],[114.11481,22.22029],[114.11489,22.22027],[114.11493,22.22026],[114.11497,22.22027],[114.11511,22.22024],[114.11521,22.22025],[114.11523,22.22026],[114.11526,22.2203],[114.11527,22.2203],[114.11528,22.2203],[114.11529,22.2203],[114.1153,22.22029],[114.11531,22.22026],[114.11534,22.22025],[114.11538,22.22023],[114.11546,22.22021],[114.11557,22.22019],[114.11562,22.22018],[114.11578,22.22016],[114.11583,22.22015],[114.11591,22.22013],[114.11594,22.22014],[114.11596,22.22014],[114.11605,22.22013],[114.11608,22.22013],[114.11623,22.22009],[114.11636,22.22004],[114.11661,22.21993],[114.11683,22.21985],[114.11706,22.21973],[114.11744,22.21958],[114.11756,22.21941],[114.11791,22.21905],[114.11806,22.21876],[114.118,22.21871],[114.11818,22.21844],[114.11822,22.21841],[114.1182,22.21848],[114.11835,22.2185],[114.11848,22.21861],[114.11856,22.21861],[114.11852,22.21866],[114.11857,22.21869],[114.11875,22.21874],[114.11886,22.21871],[114.11893,22.21886],[114.11888,22.21889],[114.119,22.21892],[114.11907,22.21892],[114.11915,22.2189],[114.11924,22.21887],[114.11932,22.21883],[114.11934,22.21881],[114.11936,22.21878],[114.11949,22.21876],[114.11952,22.21876],[114.1196,22.21872],[114.11967,22.21868],[114.11975,22.21863],[114.11982,22.21857],[114.11988,22.2185],[114.11994,22.21842],[114.11994,22.2184],[114.11994,22.21838],[114.11993,22.21837],[114.11987,22.2183],[114.11988,22.21819],[114.11994,22.21802],[114.11997,22.21783],[114.12011,22.21762],[114.12016,22.21757],[114.12011,22.21737],[114.1202,22.21736],[114.12016,22.2173],[114.12013,22.21723],[114.12019,22.21725],[114.12022,22.21721],[114.12024,22.21728],[114.12033,22.21723],[114.12033,22.21709],[114.12023,22.21711],[114.12024,22.21699],[114.12031,22.21689],[114.12034,22.21692],[114.12033,22.21706],[114.12035,22.21706],[114.12042,22.21695],[114.12041,22.21683],[114.12035,22.21681],[114.12033,22.21679],[114.12031,22.21685],[114.12024,22.21684],[114.12023,22.21672],[114.12033,22.2166],[114.12038,22.21662],[114.1204,22.21659],[114.12045,22.21659],[114.12051,22.21643],[114.12049,22.21628],[114.12055,22.21618],[114.12053,22.2161],[114.12049,22.21612],[114.12046,22.21609],[114.12057,22.21591],[114.12061,22.21575],[114.12048,22.21569],[114.12043,22.21575],[114.12038,22.21578],[114.12033,22.21578],[114.12029,22.21567],[114.12032,22.2156],[114.12041,22.21558],[114.12045,22.21552],[114.12048,22.21536],[114.12053,22.21536],[114.12055,22.21544],[114.12066,22.2154],[114.12074,22.21546],[114.12074,22.21549],[114.12077,22.21546],[114.1208,22.2154],[114.12075,22.21538],[114.12065,22.2152],[114.12069,22.21518],[114.12083,22.21518],[114.12088,22.21515],[114.12093,22.21504],[114.12082,22.215],[114.12081,22.21491],[114.12076,22.21491],[114.12072,22.21486],[114.1208,22.21477],[114.12091,22.21475],[114.1213,22.21433],[114.12128,22.2139],[114.12124,22.21373],[114.12112,22.21366],[114.12101,22.2136],[114.12085,22.21357],[114.12054,22.21314],[114.12055,22.21301],[114.12067,22.21282],[114.12067,22.2127],[114.12077,22.21261],[114.12082,22.21263],[114.12105,22.21254],[114.1212,22.21234],[114.12133,22.21224],[114.12174,22.21155],[114.12186,22.21116],[114.12189,22.21079],[114.12186,22.21068],[114.12185,22.21058],[114.12181,22.21043],[114.12169,22.21025],[114.12143,22.21005],[114.12124,22.21006],[114.12109,22.21011],[114.12099,22.21014],[114.12089,22.21012],[114.12085,22.20999],[114.12081,22.20986],[114.12087,22.20976],[114.12103,22.20962],[114.12118,22.20938],[114.1213,22.20904],[114.12141,22.2089],[114.12144,22.20872],[114.12132,22.20831],[114.12122,22.20812],[114.1211,22.20801],[114.121,22.20796],[114.12083,22.20801],[114.12064,22.20798],[114.12036,22.20792],[114.12019,22.20786],[114.11989,22.2077],[114.11963,22.20743],[114.11977,22.20727],[114.11981,22.20715],[114.11981,22.20693],[114.11974,22.20689],[114.1197,22.20672],[114.11989,22.20663],[114.12033,22.20603],[114.12034,22.20598],[114.12046,22.20588],[114.12058,22.20588],[114.12076,22.20577],[114.12089,22.20569],[114.12108,22.20556],[114.12117,22.20554],[114.12159,22.20537],[114.12175,22.20539],[114.12201,22.20528],[114.1224,22.20502],[114.12263,22.20459],[114.12268,22.20426],[114.12262,22.20393],[114.12251,22.20371],[114.12217,22.20357],[114.1221,22.2036],[114.12209,22.20365],[114.12201,22.20367],[114.12187,22.20365],[114.12176,22.20364],[114.12168,22.20355],[114.12168,22.20344],[114.12176,22.20339],[114.12183,22.20344],[114.1219,22.20344],[114.122,22.20348],[114.12199,22.20337],[114.12192,22.20329],[114.12198,22.20321],[114.12191,22.20313],[114.12206,22.20308],[114.12214,22.20314],[114.12221,22.20311],[114.12226,22.20299],[114.12218,22.20268],[114.12183,22.20245],[114.12179,22.20254],[114.12173,22.20252],[114.12176,22.20236],[114.12183,22.20236],[114.12185,22.20221],[114.12197,22.20217],[114.12207,22.20207],[114.1221,22.20181],[114.12203,22.20157],[114.12207,22.20145],[114.12206,22.20129],[114.122,22.20109],[114.12173,22.2008],[114.12154,22.20085],[114.12152,22.20076],[114.12165,22.20064],[114.12157,22.20039],[114.12146,22.20006],[114.12152,22.2],[114.12152,22.19975],[114.12147,22.19953],[114.12143,22.19932],[114.12156,22.19908],[114.12157,22.19891],[114.12159,22.19866],[114.12152,22.19861],[114.12152,22.19857],[114.12151,22.19853],[114.1215,22.19836],[114.12157,22.19822],[114.12145,22.19804],[114.12147,22.19774],[114.12133,22.19757],[114.12128,22.19746],[114.12122,22.19739],[114.12103,22.19731],[114.12095,22.19726],[114.1209,22.19719],[114.1208,22.19703],[114.12081,22.19688],[114.12081,22.19673],[114.12072,22.19624],[114.12071,22.19606],[114.12092,22.19583],[114.12091,22.1957],[114.12084,22.19565],[114.12076,22.19528],[114.12079,22.1952],[114.12082,22.19491],[114.12082,22.19463],[114.12086,22.19414],[114.12085,22.19403],[114.12086,22.19396],[114.12081,22.19388],[114.12076,22.19367],[114.12081,22.19344],[114.12078,22.1932],[114.12065,22.19276],[114.12052,22.19256],[114.12049,22.19251],[114.12035,22.19245],[114.12021,22.19256],[114.12013,22.19262],[114.12009,22.19256],[114.12007,22.19254],[114.12009,22.19251],[114.12017,22.19253],[114.12019,22.19245],[114.12027,22.19243],[114.12029,22.19235],[114.12038,22.19234],[114.1204,22.19229],[114.12035,22.19222],[114.12042,22.1922],[114.1204,22.19207],[114.12045,22.19195],[114.12039,22.19171],[114.12028,22.19172],[114.12022,22.19164],[114.12015,22.19171],[114.1201,22.19167],[114.12015,22.1916],[114.12023,22.19161],[114.1202,22.19153],[114.12023,22.19149],[114.1203,22.19151],[114.12032,22.19155],[114.12035,22.19149],[114.12042,22.19152],[114.12044,22.19147],[114.12048,22.1915],[114.12064,22.19129],[114.12058,22.19124],[114.12056,22.1911],[114.12046,22.19095],[114.12043,22.19079],[114.12034,22.1907],[114.12003,22.19065],[114.11978,22.19045],[114.11944,22.19043],[114.11927,22.19031],[114.11893,22.19017],[114.11888,22.19017],[114.11887,22.19021],[114.11882,22.1902],[114.11879,22.19024],[114.11872,22.19019],[114.11884,22.19012],[114.11878,22.19005],[114.11881,22.19003],[114.1185,22.18963],[114.11845,22.18943],[114.11836,22.18941],[114.11836,22.18932],[114.11824,22.18911],[114.11801,22.18898],[114.1179,22.18889],[114.11767,22.18875],[114.11772,22.18871],[114.1177,22.18865],[114.11761,22.18851],[114.11732,22.18838],[114.11716,22.18841],[114.11706,22.18832],[114.11677,22.18831],[114.11655,22.18839],[114.11635,22.18832],[114.11618,22.18834],[114.11609,22.18831],[114.11577,22.1882],[114.11569,22.18809],[114.11556,22.18819],[114.11546,22.18801],[114.11553,22.18802],[114.11552,22.18794],[114.11539,22.18785],[114.11524,22.18767],[114.11517,22.18779],[114.115,22.18773],[114.11492,22.18769],[114.11494,22.18761],[114.11485,22.18747],[114.11476,22.18731],[114.11465,22.18709],[114.11463,22.18694],[114.11459,22.18687],[114.11458,22.18682],[114.11451,22.18673],[114.1144,22.18675],[114.11434,22.18683],[114.11429,22.1868],[114.1143,22.18674],[114.11438,22.18672],[114.11443,22.18656],[114.1143,22.18649],[114.11427,22.18644],[114.11429,22.18626],[114.11426,22.18614],[114.11419,22.18608],[114.11414,22.18589],[114.11417,22.18576],[114.11401,22.18576],[114.11398,22.18575],[114.11392,22.1855],[114.11391,22.18543],[114.11395,22.18538],[114.11405,22.18536],[114.11405,22.18532],[114.11401,22.18515],[114.11401,22.18508],[114.11425,22.18524],[114.11424,22.18509],[114.11402,22.1849],[114.11402,22.18458],[114.11399,22.18454],[114.11397,22.18425],[114.11383,22.18416],[114.11382,22.18402],[114.11397,22.18402],[114.1139,22.18385],[114.11413,22.18391],[114.11411,22.18348],[114.11416,22.18341],[114.11427,22.18319],[114.1143,22.18312],[114.11439,22.18307],[114.11449,22.18307],[114.11463,22.18316],[114.11466,22.18323],[114.1147,22.18322],[114.11469,22.18275],[114.11477,22.18268],[114.11481,22.18267],[114.11492,22.18231],[114.11499,22.1823],[114.11517,22.18212],[114.11508,22.18202],[114.1152,22.18179],[114.11534,22.18177],[114.11544,22.18182],[114.11541,22.18164],[114.11564,22.18164],[114.11573,22.1816],[114.11583,22.18156],[114.11591,22.18139],[114.11596,22.1814],[114.1161,22.18141],[114.11623,22.18141],[114.11636,22.18145],[114.11642,22.18148],[114.11649,22.18148],[114.11656,22.18148],[114.11663,22.18144],[114.11674,22.18148],[114.11676,22.18137],[114.11694,22.18128],[114.11708,22.18121],[114.11735,22.18121],[114.1175,22.18101],[114.11763,22.18099],[114.1176,22.18064],[114.11766,22.1806],[114.11774,22.18058],[114.11777,22.18053],[114.11776,22.18047],[114.11785,22.18034],[114.11794,22.18029],[114.1179,22.18025],[114.11793,22.1802],[114.11799,22.18016],[114.11806,22.18016],[114.11825,22.18],[114.11846,22.17999],[114.11844,22.1801],[114.11852,22.18012],[114.11858,22.18001],[114.11869,22.18005],[114.11869,22.18018],[114.11884,22.1801],[114.1188,22.18002],[114.11892,22.18001],[114.11914,22.17993],[114.11929,22.17993],[114.11934,22.17988],[114.11949,22.17984],[114.11961,22.17985],[114.11963,22.17987],[114.11978,22.17982],[114.11981,22.17988],[114.11988,22.1799],[114.12034,22.17975],[114.12054,22.17983],[114.12084,22.17985],[114.121,22.17991],[114.12105,22.17994],[114.12114,22.17995],[114.12118,22.1799],[114.12124,22.1799],[114.12124,22.18],[114.12134,22.18001],[114.12141,22.17987],[114.12176,22.17978],[114.12186,22.18001],[114.12192,22.18],[114.12204,22.18007],[114.12211,22.18028],[114.12226,22.18039],[114.1223,22.18052],[114.12228,22.18061],[114.12243,22.18069],[114.12247,22.18077],[114.12238,22.18104],[114.12258,22.18109],[114.12252,22.18116],[114.12255,22.1812],[114.12294,22.18114],[114.12304,22.18121],[114.12313,22.18121],[114.12316,22.18133],[114.1232,22.18124],[114.12326,22.18119],[114.12341,22.18122],[114.12347,22.18121],[114.12356,22.18106],[114.12355,22.18102],[114.12387,22.18074],[114.124,22.18052],[114.12419,22.18042],[114.1242,22.18032],[114.1242,22.18026],[114.1243,22.18001],[114.12446,22.17992],[114.12457,22.17986],[114.12466,22.17983],[114.12486,22.17974],[114.12483,22.17965],[114.12494,22.17956],[114.12513,22.17958],[114.12523,22.17953],[114.12545,22.17952],[114.1255,22.17949],[114.12553,22.17939],[114.1254,22.17929],[114.12531,22.17907],[114.12532,22.17874],[114.12529,22.17871],[114.12524,22.17864],[114.12528,22.17854],[114.12537,22.17853],[114.12548,22.17836],[114.12553,22.17827],[114.12555,22.17824],[114.12573,22.17826],[114.12574,22.17833],[114.12583,22.17845],[114.12618,22.17847],[114.1265,22.17843],[114.12674,22.17848],[114.127,22.17859],[114.1271,22.17858],[114.12719,22.17858],[114.12723,22.17859],[114.12727,22.17855],[114.12728,22.17848],[114.12744,22.17846],[114.12744,22.17868],[114.12767,22.17857],[114.12787,22.17865],[114.1279,22.17871],[114.12782,22.17879],[114.12787,22.17888],[114.12822,22.1792],[114.12829,22.17925],[114.12828,22.17933],[114.12825,22.17949],[114.12813,22.17965],[114.12812,22.17979],[114.12818,22.18002],[114.12826,22.18008],[114.12848,22.18022],[114.12871,22.18026],[114.12885,22.18026],[114.12897,22.18017],[114.12898,22.18012],[114.12914,22.18018],[114.1292,22.18027],[114.12925,22.18038],[114.12933,22.18063],[114.12936,22.18077],[114.12937,22.18083],[114.12939,22.18097],[114.12954,22.18099],[114.12985,22.18145],[114.1299,22.18157],[114.12997,22.18172],[114.13001,22.18185],[114.13006,22.18194],[114.13021,22.18195],[114.1303,22.18197],[114.13031,22.18207],[114.13014,22.18216],[114.13012,22.18224],[114.13011,22.18228],[114.13032,22.1823],[114.13053,22.18233],[114.13075,22.18237],[114.1308,22.18242],[114.1307,22.18263],[114.13099,22.18268],[114.13125,22.18278],[114.13137,22.18279],[114.13152,22.18281],[114.13159,22.18279],[114.13171,22.18286],[114.13183,22.18306],[114.13185,22.18314],[114.13194,22.18334],[114.13201,22.18338],[114.13224,22.18336],[114.13244,22.18333],[114.13257,22.18316],[114.13268,22.18305],[114.13282,22.18289],[114.13282,22.18279],[114.13297,22.18265],[114.13302,22.18232],[114.13302,22.18224],[114.133,22.18205],[114.13305,22.182],[114.13312,22.18187],[114.13319,22.18175],[114.13332,22.18155],[114.13334,22.18147],[114.13335,22.18129],[114.1334,22.18119],[114.13343,22.18116],[114.13353,22.18117],[114.13357,22.18111],[114.13375,22.1809],[114.13386,22.18053],[114.1341,22.18027],[114.13409,22.18004],[114.13415,22.17969],[114.1346,22.17957],[114.13471,22.17953],[114.13487,22.17944],[114.13505,22.17924],[114.13514,22.17917],[114.13527,22.17908],[114.13537,22.17903],[114.13554,22.17889],[114.13558,22.17886],[114.13583,22.17874],[114.13623,22.17843],[114.13639,22.17816],[114.1366,22.17802],[114.13664,22.17792],[114.13669,22.17787],[114.13691,22.17777],[114.13709,22.17771],[114.13723,22.17772],[114.13729,22.17778],[114.1373,22.17789],[114.13734,22.17797],[114.13736,22.17814],[114.13741,22.17815],[114.1375,22.17825],[114.13762,22.17845],[114.13758,22.17856],[114.13746,22.17856],[114.13749,22.17877],[114.13746,22.17904],[114.13742,22.17919],[114.13742,22.17932],[114.13752,22.17941],[114.1376,22.17948],[114.13767,22.17963],[114.13773,22.17997],[114.13775,22.18018],[114.13772,22.1807],[114.13776,22.18087],[114.13769,22.18115],[114.13759,22.18123],[114.13754,22.1812],[114.13739,22.18153],[114.13752,22.18165],[114.13749,22.18175],[114.1374,22.18179],[114.13729,22.18201],[114.13729,22.18209],[114.13735,22.18207],[114.13732,22.18224],[114.1373,22.18235],[114.13723,22.18239],[114.13723,22.18245],[114.13727,22.18245],[114.13731,22.18253],[114.13729,22.18275],[114.13726,22.18281],[114.13716,22.18273],[114.13712,22.18282],[114.13704,22.18287],[114.13701,22.18305],[114.13708,22.18304],[114.13706,22.18317],[114.137,22.18313],[114.1369,22.18318],[114.13681,22.18329],[114.13674,22.18369],[114.13667,22.1838],[114.1366,22.18384],[114.13662,22.18386],[114.13657,22.18395],[114.1366,22.18399],[114.13653,22.1841],[114.13646,22.18427],[114.13641,22.18432],[114.13628,22.18431],[114.13631,22.18438],[114.13635,22.18441],[114.13635,22.18445],[114.13632,22.18448],[114.13627,22.18446],[114.13622,22.18451],[114.13614,22.18454],[114.13612,22.18488],[114.13604,22.18495],[114.13604,22.18502],[114.13605,22.18509],[114.13609,22.18518],[114.13596,22.18548],[114.13585,22.18552],[114.13591,22.18556],[114.13585,22.18565],[114.13585,22.18577],[114.13574,22.18593],[114.13559,22.18596],[114.13567,22.18599],[114.13568,22.18611],[114.13546,22.18648],[114.13536,22.18656],[114.13511,22.18658],[114.13499,22.18671],[114.13489,22.18667],[114.13469,22.18679],[114.13462,22.18675],[114.13443,22.18677],[114.13424,22.18689],[114.13412,22.18705],[114.1341,22.18731],[114.13423,22.18751],[114.13422,22.18759],[114.13445,22.18789],[114.13446,22.18793],[114.13439,22.18799],[114.13435,22.1881],[114.13435,22.18817],[114.13443,22.18826],[114.13434,22.1883],[114.13435,22.18836],[114.13424,22.18857],[114.13435,22.18865],[114.13438,22.1888],[114.13441,22.18888],[114.13443,22.18894],[114.13451,22.18908],[114.13438,22.1892],[114.13437,22.1894],[114.13442,22.18957],[114.13436,22.18952],[114.13431,22.18959],[114.13436,22.18977],[114.13419,22.18996],[114.13434,22.18988],[114.13454,22.18996],[114.13452,22.19008],[114.13446,22.19012],[114.13449,22.19023],[114.13439,22.19061],[114.13447,22.19089],[114.13451,22.19093],[114.13458,22.19089],[114.13465,22.1909],[114.13463,22.19098],[114.13483,22.19102],[114.13485,22.19113],[114.13489,22.19117],[114.13506,22.19114],[114.13525,22.19121],[114.13531,22.19126],[114.13536,22.19132],[114.13545,22.19144],[114.13556,22.19149],[114.1356,22.1916],[114.13583,22.1917],[114.13601,22.19168],[114.13608,22.19166],[114.13612,22.19165],[114.13619,22.19165],[114.13627,22.19164],[114.13633,22.19162],[114.13639,22.1916],[114.13653,22.19159],[114.1366,22.19157],[114.1369,22.19148],[114.13706,22.19142],[114.13716,22.19136],[114.13725,22.1913],[114.13728,22.19128],[114.1373,22.19125],[114.13748,22.19045],[114.13738,22.19035],[114.13736,22.19025],[114.13728,22.19018],[114.13732,22.19006],[114.13717,22.18988],[114.13718,22.18974],[114.13722,22.18967],[114.13721,22.18959],[114.13731,22.18955],[114.13728,22.18943],[114.1373,22.1894],[114.13768,22.1894],[114.13776,22.18935],[114.13771,22.1893],[114.13776,22.18926],[114.13795,22.18927],[114.13799,22.18923],[114.138,22.18928],[114.1381,22.1893],[114.13821,22.18928],[114.13821,22.18904],[114.13817,22.18902],[114.13817,22.18882],[114.13813,22.1887],[114.13817,22.18865],[114.1381,22.18855],[114.13811,22.1885],[114.13823,22.18851],[114.13826,22.18845],[114.13835,22.18839],[114.13846,22.18843],[114.13846,22.18836],[114.13852,22.18832],[114.13861,22.18839],[114.13865,22.18846],[114.1387,22.18836],[114.13875,22.1883],[114.13886,22.18824],[114.13894,22.18825],[114.13909,22.18816],[114.13912,22.18811],[114.1392,22.18808],[114.13929,22.188],[114.13926,22.18796],[114.1393,22.18794],[114.13934,22.18796],[114.13934,22.18797],[114.1393,22.188],[114.1393,22.18804],[114.13943,22.18803],[114.13945,22.18801],[114.13948,22.18801],[114.13946,22.18799],[114.13952,22.18797],[114.13954,22.18798],[114.13954,22.188],[114.1395,22.18801],[114.13949,22.18802],[114.13949,22.18803],[114.1395,22.18803],[114.13951,22.18802],[114.13953,22.18801],[114.13954,22.18801],[114.13962,22.18806],[114.13964,22.18806],[114.13964,22.18802],[114.13965,22.188],[114.13969,22.18799],[114.13969,22.18801],[114.13971,22.18801],[114.13971,22.18797],[114.13969,22.18797],[114.1397,22.18796],[114.13976,22.18794],[114.13977,22.18795],[114.13992,22.18793],[114.1399,22.18791],[114.1399,22.18789],[114.13987,22.18791],[114.13984,22.18787],[114.13987,22.18783],[114.13989,22.18784],[114.13991,22.18788],[114.13994,22.18788],[114.13995,22.1879],[114.13995,22.18792],[114.14,22.18791],[114.14005,22.18789],[114.1401,22.18789],[114.1404,22.18766],[114.14053,22.1876],[114.14073,22.1873],[114.14074,22.18723],[114.14082,22.18717],[114.14084,22.18704],[114.14107,22.18694],[114.14127,22.18679],[114.1415,22.18665],[114.14171,22.18655],[114.14188,22.18638],[114.14204,22.18633],[114.14212,22.18618],[114.14233,22.18617],[114.14252,22.18608],[114.14256,22.18602],[114.14279,22.18577],[114.14308,22.18559],[114.14319,22.18548],[114.14335,22.18513],[114.14337,22.18505],[114.14331,22.185],[114.14332,22.18495],[114.14335,22.18491],[114.14342,22.18491],[114.14339,22.18465],[114.14351,22.18445],[114.1434,22.18436],[114.14341,22.18431],[114.14354,22.18417],[114.14361,22.18412],[114.14376,22.18412],[114.14385,22.18405],[114.14399,22.18402],[114.1441,22.18376],[114.14415,22.18373],[114.14441,22.18366],[114.14437,22.1836],[114.14442,22.18354],[114.1444,22.18349],[114.14448,22.18349],[114.14455,22.18353],[114.14464,22.18356],[114.14466,22.18361],[114.1447,22.18364],[114.14473,22.18362],[114.14475,22.18363],[114.14479,22.18357],[114.14489,22.18355],[114.14494,22.18351],[114.14496,22.18354],[114.14492,22.18358],[114.14497,22.18359],[114.14507,22.18357],[114.1451,22.18355],[114.14502,22.18344],[114.1451,22.18337],[114.14544,22.18333],[114.14552,22.1834],[114.14553,22.18344],[114.14561,22.18349],[114.14557,22.18342],[114.14561,22.18343],[114.14572,22.18353],[114.1458,22.18348],[114.14581,22.18344],[114.14586,22.18342],[114.1459,22.18346],[114.14588,22.18349],[114.14593,22.18351],[114.14603,22.18361],[114.14608,22.18362],[114.14621,22.18357],[114.14629,22.18358],[114.14652,22.18346],[114.14652,22.18343],[114.1464,22.18341],[114.14638,22.18333],[114.14674,22.18327],[114.14681,22.1833],[114.1469,22.18328],[114.14715,22.18317],[114.14723,22.18305],[114.14757,22.18292],[114.14768,22.18292],[114.14774,22.18298],[114.14778,22.18301],[114.14783,22.18297],[114.14793,22.18286],[114.14802,22.1828],[114.1481,22.1827],[114.14815,22.18252],[114.14821,22.18245],[114.14806,22.18228],[114.14809,22.18224],[114.14815,22.18219],[114.14807,22.182],[114.14799,22.18184],[114.14792,22.18176],[114.14786,22.18154],[114.14786,22.18136],[114.148,22.18124],[114.14895,22.18116],[114.14924,22.18121],[114.14927,22.18132],[114.14942,22.18137],[114.14965,22.18169],[114.14966,22.18199],[114.14961,22.18224],[114.14961,22.18224],[114.14958,22.18235],[114.14946,22.18245],[114.14931,22.18246],[114.14884,22.1826],[114.14884,22.18266],[114.14891,22.18278],[114.14895,22.18288],[114.149,22.18288],[114.14898,22.18293],[114.14897,22.18301],[114.14886,22.18303],[114.14883,22.18309],[114.14909,22.18306],[114.14927,22.18321],[114.14923,22.18333],[114.14911,22.18341],[114.14889,22.18345],[114.14889,22.1836],[114.14888,22.18366],[114.1486,22.18374],[114.14851,22.18383],[114.14852,22.1839],[114.14833,22.18394],[114.14817,22.18413],[114.14807,22.18413],[114.14796,22.18424],[114.14789,22.18434],[114.14781,22.18442],[114.14752,22.18447],[114.14746,22.18453],[114.14744,22.18467],[114.14755,22.1849],[114.14757,22.18487],[114.14759,22.18491],[114.14754,22.18493],[114.14753,22.18506],[114.14747,22.18517],[114.14735,22.18529],[114.14736,22.18538],[114.14724,22.18555],[114.14722,22.18562],[114.14709,22.18562],[114.14706,22.18566],[114.14711,22.18572],[114.14708,22.186],[114.14692,22.18644],[114.14692,22.18648],[114.14694,22.18654],[114.14706,22.18661],[114.14709,22.18693],[114.14713,22.1871],[114.14696,22.18727],[114.14686,22.18729],[114.1469,22.18732],[114.14677,22.18764],[114.14663,22.18766],[114.14656,22.18774],[114.14671,22.18779],[114.14671,22.18791],[114.14665,22.18797],[114.14655,22.188],[114.14644,22.18809],[114.14634,22.18827],[114.14628,22.1883],[114.14619,22.18828],[114.14619,22.18842],[114.1463,22.18843],[114.14633,22.18854],[114.14624,22.18855],[114.14618,22.1886],[114.14624,22.18868],[114.14612,22.18878],[114.14609,22.18871],[114.14599,22.1889],[114.14598,22.18903],[114.14597,22.18916],[114.14586,22.18937],[114.14592,22.18944],[114.14585,22.18953],[114.14567,22.18956],[114.14576,22.18969],[114.14558,22.18997],[114.14511,22.19015],[114.14471,22.19021],[114.14462,22.19018],[114.14457,22.19013],[114.14403,22.19019],[114.14391,22.19016],[114.14358,22.19032],[114.14347,22.19039],[114.14325,22.19059],[114.14316,22.19093],[114.14316,22.19113],[114.14345,22.19129],[114.14346,22.19143],[114.14388,22.19177],[114.14403,22.19207],[114.14404,22.19232],[114.14413,22.19237],[114.14407,22.19257],[114.1439,22.19275],[114.14386,22.19298],[114.14386,22.1932],[114.14376,22.19341],[114.14357,22.19363],[114.14337,22.19368],[114.14321,22.19386],[114.14306,22.19384],[114.14301,22.19397],[114.14283,22.1941],[114.14282,22.19415],[114.14286,22.1942],[114.14284,22.19427],[114.14273,22.19432],[114.14258,22.19479],[114.14238,22.19498],[114.14224,22.1951],[114.14214,22.19506],[114.14212,22.19501],[114.14193,22.19507],[114.14192,22.19514],[114.1418,22.19525],[114.14176,22.19537],[114.14153,22.19558],[114.14147,22.19552],[114.14148,22.19545],[114.14142,22.19542],[114.14136,22.19553],[114.14128,22.19554],[114.14129,22.19546],[114.14135,22.19536],[114.14115,22.19527],[114.14095,22.19523],[114.14087,22.19523],[114.14076,22.19526],[114.14061,22.19532],[114.14043,22.19544],[114.14033,22.19553],[114.1401,22.19581],[114.14004,22.1959],[114.13994,22.19611],[114.13985,22.19646],[114.13978,22.19663],[114.14009,22.19672],[114.14007,22.19677],[114.13977,22.19667],[114.13966,22.19688],[114.1396,22.1971],[114.13959,22.19728],[114.1396,22.19775],[114.13963,22.19786],[114.13971,22.198],[114.13982,22.19826],[114.14002,22.19845],[114.14006,22.1985],[114.14011,22.19858],[114.14022,22.19869],[114.14028,22.19876],[114.14059,22.19902],[114.14076,22.19908],[114.14082,22.19909],[114.14088,22.19909],[114.14091,22.19909],[114.14095,22.19909],[114.14099,22.19906],[114.14101,22.19905],[114.14109,22.19904],[114.14112,22.19905],[114.14122,22.19908],[114.14123,22.19909],[114.14124,22.19912],[114.14124,22.19913],[114.14125,22.19914],[114.14125,22.19916],[114.14127,22.19917],[114.14129,22.19919],[114.1413,22.1992],[114.1413,22.19921],[114.1413,22.19923],[114.14129,22.19924],[114.14127,22.19927],[114.14125,22.19928],[114.14123,22.1993],[114.14138,22.19933],[114.14151,22.1994],[114.14149,22.19931],[114.1414,22.1992],[114.14129,22.19916],[114.14128,22.19907],[114.14132,22.19895],[114.14164,22.1988],[114.142,22.19885],[114.14199,22.1987],[114.14203,22.19855],[114.14209,22.19856],[114.14209,22.19862],[114.14204,22.19868],[114.14212,22.19873],[114.14215,22.1989],[114.14232,22.19892],[114.14237,22.19899],[114.14252,22.199],[114.14268,22.19889],[114.1428,22.19873],[114.1428,22.19864],[114.14274,22.19855],[114.14291,22.1985],[114.14297,22.19845],[114.14296,22.19823],[114.14306,22.19818],[114.14311,22.19831],[114.14321,22.19838],[114.14335,22.19849],[114.1434,22.19852],[114.14352,22.19852],[114.14366,22.19838],[114.14374,22.19835],[114.14391,22.1984],[114.14414,22.19856],[114.14417,22.19876],[114.14414,22.19894],[114.14405,22.19907],[114.14394,22.1991],[114.14383,22.19908],[114.1437,22.19899],[114.14359,22.19888],[114.14356,22.19891],[114.14356,22.19898],[114.14336,22.19916],[114.1432,22.19918],[114.14316,22.19922],[114.14321,22.19931],[114.14329,22.19935],[114.14337,22.19956],[114.14356,22.19971],[114.14392,22.19981],[114.144,22.19982],[114.14403,22.19977],[114.14409,22.19976],[114.14444,22.19992],[114.1445,22.19983],[114.14439,22.19975],[114.14438,22.19969],[114.1444,22.19966],[114.14452,22.19966],[114.14456,22.19954],[114.1446,22.19951],[114.14466,22.1995],[114.14465,22.19939],[114.14468,22.19939],[114.14472,22.19947],[114.14471,22.19963],[114.14466,22.19972],[114.14464,22.19981],[114.14459,22.19981],[114.14457,22.19986],[114.14459,22.19992],[114.14454,22.19995],[114.14478,22.20007],[114.14482,22.20013],[114.14494,22.20015],[114.14497,22.20014],[114.14498,22.20009],[114.14496,22.20004],[114.14502,22.19998],[114.14535,22.19975],[114.14546,22.19971],[114.14556,22.19974],[114.1456,22.19986],[114.14577,22.19989],[114.14591,22.19984],[114.14604,22.20004],[114.14646,22.19996],[114.1469,22.20017],[114.1469,22.20036],[114.1468,22.20049],[114.14689,22.20059],[114.14689,22.20065],[114.14663,22.20082],[114.14662,22.20091],[114.14653,22.20096],[114.14657,22.20103],[114.14658,22.20113],[114.14663,22.2012],[114.14663,22.20126],[114.14662,22.20139],[114.14654,22.20144],[114.14676,22.20149],[114.1468,22.20155],[114.14687,22.20152],[114.14692,22.20154],[114.14692,22.20159],[114.14687,22.20163],[114.14676,22.20179],[114.14695,22.20199],[114.14691,22.20209],[114.14693,22.20217],[114.14699,22.2022],[114.14697,22.20248],[114.14717,22.20273],[114.14736,22.20278],[114.14752,22.20259],[114.14765,22.2027],[114.14762,22.20276],[114.14764,22.20284],[114.14783,22.20273],[114.14796,22.2027],[114.14801,22.20274],[114.14799,22.20278],[114.14788,22.20294],[114.14765,22.20301],[114.1478,22.20303],[114.14792,22.20299],[114.14804,22.20309],[114.14796,22.20316],[114.14794,22.20331],[114.14781,22.20343],[114.1479,22.20351],[114.14809,22.20357],[114.14824,22.20356],[114.14826,22.2035],[114.14849,22.20359],[114.1486,22.20351],[114.14867,22.2036],[114.14867,22.20369],[114.14886,22.20353],[114.14907,22.20345],[114.14907,22.20353],[114.14916,22.20368],[114.14953,22.20374],[114.14953,22.2038],[114.14942,22.20386],[114.14946,22.20392],[114.14961,22.20397],[114.14978,22.20384],[114.14988,22.20381],[114.14991,22.20383],[114.14993,22.2039],[114.15002,22.20395],[114.15005,22.20403],[114.15004,22.20409],[114.15,22.20415],[114.14987,22.20448],[114.14973,22.20468],[114.14957,22.20478],[114.1495,22.20501],[114.14926,22.20521],[114.14937,22.2053],[114.14944,22.20515],[114.1496,22.20501],[114.14963,22.20506],[114.14975,22.20509],[114.14976,22.20517],[114.14988,22.20509],[114.14997,22.20512],[114.14986,22.20528],[114.14984,22.20544],[114.14963,22.20556],[114.14974,22.20569],[114.14987,22.20575],[114.15007,22.20564],[114.15015,22.20551],[114.15024,22.20549],[114.1504,22.20537],[114.15065,22.2054],[114.15079,22.20549],[114.15075,22.20555],[114.15086,22.2056],[114.15085,22.20571],[114.15123,22.20591],[114.15127,22.20597],[114.15141,22.20605],[114.15143,22.20616],[114.15137,22.20619],[114.15122,22.2062],[114.15126,22.20624],[114.15162,22.20634],[114.15171,22.20631],[114.15185,22.20634],[114.15213,22.20633],[114.15245,22.20626],[114.15267,22.20616],[114.1529,22.20595],[114.15304,22.20556],[114.15313,22.20534],[114.15331,22.20498],[114.15341,22.20494],[114.15341,22.20488],[114.15343,22.20486],[114.15347,22.20482],[114.15353,22.2048],[114.15357,22.20478],[114.15362,22.20472],[114.15365,22.20469],[114.15368,22.20469],[114.1538,22.20467],[114.15381,22.20454],[114.15401,22.20435],[114.15412,22.20432],[114.15421,22.20421],[114.15427,22.20424],[114.15432,22.20427],[114.15447,22.20423],[114.15438,22.2044],[114.15457,22.2042],[114.15466,22.20413],[114.1556,22.20376],[114.15572,22.20363],[114.15581,22.20361],[114.1559,22.20364],[114.15582,22.20376],[114.1564,22.20384],[114.15649,22.2039],[114.15654,22.20381],[114.15659,22.20394],[114.15665,22.20386],[114.15672,22.20386],[114.15685,22.20395],[114.15702,22.20405],[114.1572,22.20407],[114.15722,22.20405],[114.15736,22.20398],[114.15749,22.20401],[114.15757,22.20408],[114.15759,22.20422],[114.15748,22.20426],[114.15781,22.20445],[114.15788,22.20453],[114.15795,22.20474],[114.15794,22.20499],[114.1579,22.20508],[114.15789,22.20512],[114.15781,22.20523],[114.15765,22.20529],[114.15764,22.20535],[114.15774,22.20574],[114.15775,22.20598],[114.15784,22.20601],[114.15795,22.20612],[114.15802,22.20625],[114.15808,22.20619],[114.15819,22.20619],[114.15833,22.20622],[114.15838,22.20613],[114.15853,22.20614],[114.1586,22.20621],[114.15855,22.20633],[114.15858,22.20644],[114.15856,22.20647],[114.15853,22.20648],[114.15844,22.20645],[114.15839,22.20647],[114.15838,22.20649],[114.15838,22.20652],[114.1584,22.20654],[114.15865,22.20652],[114.15901,22.20655],[114.15911,22.20658],[114.15923,22.20665],[114.15928,22.20658],[114.15958,22.20665],[114.15987,22.20686],[114.15983,22.20693],[114.16014,22.20721],[114.1601,22.20746],[114.16024,22.20749],[114.16023,22.2076],[114.16018,22.20769],[114.16015,22.2079],[114.16009,22.20804],[114.15992,22.20821],[114.16007,22.20816],[114.16017,22.20817],[114.16024,22.20808],[114.1603,22.20809],[114.16033,22.20814],[114.16026,22.20823],[114.16034,22.2083],[114.16023,22.20839],[114.16,22.20844],[114.16022,22.20852],[114.16029,22.20861],[114.15982,22.20916],[114.15951,22.20937],[114.15964,22.2095],[114.15955,22.20963],[114.15948,22.20965],[114.15945,22.20962],[114.15941,22.20975],[114.15933,22.20979],[114.15917,22.20978],[114.15896,22.21],[114.15878,22.21002],[114.15862,22.21012],[114.1586,22.21026],[114.15851,22.21031],[114.15838,22.21032],[114.15838,22.21026],[114.15822,22.21026],[114.15849,22.21012],[114.15846,22.21009],[114.15831,22.21014],[114.15807,22.21014],[114.15799,22.21011],[114.15787,22.21015],[114.15783,22.21012],[114.1579,22.21006],[114.15762,22.21007],[114.15754,22.21009],[114.15713,22.21001],[114.15704,22.20994],[114.15693,22.20996],[114.1567,22.20985],[114.1565,22.2099],[114.15642,22.20986],[114.15633,22.20986],[114.15612,22.20972],[114.15606,22.20971],[114.15601,22.20972],[114.15596,22.2098],[114.15583,22.20979],[114.15573,22.20976],[114.15574,22.2097],[114.15555,22.20971],[114.15547,22.20968],[114.15548,22.20951],[114.15524,22.20945],[114.15512,22.20928],[114.15477,22.20926],[114.15434,22.20931],[114.15428,22.20933],[114.15428,22.20938],[114.15414,22.2094],[114.15412,22.20942],[114.15407,22.20941],[114.15406,22.20947],[114.15396,22.20945],[114.15392,22.20938],[114.15388,22.20938],[114.15385,22.20946],[114.15372,22.20949],[114.15356,22.20942],[114.15291,22.20931],[114.15263,22.20945],[114.15259,22.20951],[114.15257,22.20969],[114.15233,22.20979],[114.15225,22.20992],[114.15221,22.21022],[114.15225,22.21033],[114.15219,22.21042],[114.15226,22.21049],[114.15238,22.21048],[114.15239,22.21055],[114.15225,22.21064],[114.15218,22.21063],[114.15214,22.2109],[114.15229,22.21128],[114.15223,22.21147],[114.15224,22.21163],[114.15209,22.21176],[114.15201,22.21191],[114.15175,22.21198],[114.15152,22.21191],[114.15148,22.21193],[114.15122,22.21188],[114.15092,22.21186],[114.15075,22.21191],[114.15059,22.21188],[114.15054,22.21194],[114.15034,22.21202],[114.15027,22.21201],[114.15024,22.2119],[114.1502,22.21187],[114.15024,22.21182],[114.15009,22.21174],[114.15005,22.21163],[114.14985,22.21151],[114.14979,22.21138],[114.14964,22.21121],[114.14965,22.21127],[114.14954,22.21116],[114.14948,22.21118],[114.14905,22.21094],[114.14892,22.21097],[114.14877,22.2109],[114.14866,22.21098],[114.14871,22.211],[114.14869,22.21104],[114.1485,22.211],[114.14849,22.21103],[114.14841,22.21102],[114.14824,22.21106],[114.14817,22.21112],[114.14805,22.21113],[114.14779,22.21113],[114.14766,22.21104],[114.14743,22.21097],[114.14733,22.21089],[114.1473,22.21073],[114.14717,22.2107],[114.14717,22.21057],[114.14716,22.21047],[114.14705,22.2103],[114.14702,22.21032],[114.147,22.21031],[114.14691,22.21023],[114.14696,22.2102],[114.14691,22.21012],[114.14681,22.21006],[114.14667,22.20992],[114.14665,22.20986],[114.14665,22.20976],[114.1468,22.20956],[114.14659,22.2092],[114.1464,22.20913],[114.1462,22.20918],[114.14613,22.20924],[114.14592,22.20925],[114.14579,22.20919],[114.14551,22.2093],[114.14549,22.20926],[114.14574,22.20916],[114.14569,22.20895],[114.14564,22.20864],[114.14565,22.2086],[114.14569,22.20855],[114.1457,22.20851],[114.14562,22.20853],[114.14545,22.20864],[114.14544,22.20863],[114.1456,22.20851],[114.14575,22.20848],[114.14575,22.20843],[114.14575,22.20838],[114.14569,22.20821],[114.14561,22.20813],[114.1455,22.20805],[114.14543,22.20801],[114.14534,22.20798],[114.14497,22.20785],[114.14484,22.20781],[114.14469,22.20779],[114.1443,22.20777],[114.14419,22.20778],[114.14406,22.20774],[114.14389,22.20773],[114.14376,22.20775],[114.14366,22.20778],[114.14363,22.20778],[114.14355,22.20781],[114.14351,22.20784],[114.14344,22.20786],[114.14324,22.20789],[114.14317,22.20793],[114.14307,22.20798],[114.14306,22.20801],[114.14303,22.20818],[114.14298,22.20831],[114.14293,22.20835],[114.14275,22.20844],[114.14254,22.20846],[114.14248,22.20848],[114.14244,22.20854],[114.1424,22.2086],[114.14234,22.20862],[114.14224,22.20868],[114.14216,22.20871],[114.14214,22.20876],[114.14187,22.20883],[114.14158,22.20884],[114.14146,22.20887],[114.14122,22.20885],[114.14109,22.2088],[114.14085,22.20889],[114.14088,22.20897],[114.14076,22.20904],[114.14059,22.20898],[114.14055,22.20889],[114.14046,22.20886],[114.14021,22.20895],[114.14012,22.20903],[114.13997,22.20909],[114.13984,22.20919],[114.13975,22.20922],[114.13967,22.20918],[114.13963,22.20908],[114.13938,22.2089],[114.13901,22.209],[114.13877,22.20888],[114.13836,22.20879],[114.13808,22.20877],[114.13781,22.20881],[114.13714,22.20873],[114.13674,22.20874],[114.13666,22.20874],[114.1366,22.20873],[114.13655,22.20871],[114.13652,22.20867],[114.13649,22.20866],[114.13638,22.20864],[114.13633,22.20864],[114.13629,22.20865],[114.13627,22.20865],[114.13625,22.20864],[114.13622,22.20863],[114.13616,22.20858],[114.13614,22.20857],[114.13595,22.20854],[114.13581,22.20853],[114.13574,22.20852],[114.1357,22.20858],[114.1357,22.20858],[114.13566,22.20859],[114.13564,22.20858],[114.13563,22.20857],[114.13562,22.20855],[114.13561,22.20853],[114.13562,22.20852],[114.13563,22.2085],[114.13564,22.20848],[114.13567,22.20846],[114.13568,22.20845],[114.1357,22.20838],[114.13571,22.20837],[114.13572,22.20836],[114.13565,22.20823],[114.13547,22.20806],[114.1354,22.20804],[114.13537,22.20801],[114.13527,22.20797],[114.13521,22.20796],[114.13517,22.20795],[114.13512,22.20795],[114.13508,22.20796],[114.13505,22.20799],[114.13503,22.20801],[114.13502,22.20805],[114.13501,22.20809],[114.135,22.20812],[114.13498,22.20815],[114.13496,22.20816],[114.13493,22.20829],[114.13491,22.20829],[114.1349,22.2083],[114.13488,22.2083],[114.13485,22.20829],[114.13484,22.20827],[114.13484,22.20823],[114.13488,22.20806],[114.13487,22.20804],[114.13484,22.20802],[114.13482,22.208],[114.1348,22.20796],[114.13478,22.20794],[114.13475,22.20793],[114.13463,22.20792],[114.1346,22.20792],[114.13455,22.20791],[114.13451,22.20791],[114.13443,22.20793],[114.1343,22.20791],[114.13421,22.20783],[114.13419,22.20777],[114.13417,22.20775],[114.13416,22.20772],[114.13416,22.2077],[114.13415,22.20769],[114.13413,22.20768],[114.13408,22.20768],[114.13406,22.20768],[114.13395,22.20758],[114.1339,22.20742],[114.13387,22.20738],[114.13383,22.20733],[114.13376,22.20729],[114.13366,22.20725],[114.13352,22.20719],[114.13348,22.20718],[114.13344,22.20727],[114.13329,22.20722],[114.13328,22.20725],[114.13322,22.20723],[114.13321,22.20725],[114.13302,22.20719],[114.13304,22.20713],[114.13268,22.207],[114.13269,22.20697],[114.13263,22.20695],[114.13267,22.20687],[114.13259,22.2068],[114.13237,22.20668],[114.13233,22.20665],[114.13228,22.20665],[114.13219,22.2066],[114.13217,22.20657],[114.13216,22.20654],[114.13211,22.20654],[114.13211,22.20652],[114.13216,22.20651],[114.13216,22.20649],[114.13215,22.20647],[114.13213,22.20646],[114.13211,22.20645],[114.13201,22.20643],[114.13168,22.20624],[114.13157,22.20613],[114.13097,22.20648],[114.13091,22.2064],[114.1315,22.20604],[114.13145,22.20598],[114.1314,22.206],[114.13125,22.2056],[114.13077,22.20573],[114.13075,22.20564],[114.13123,22.20552],[114.13118,22.20541],[114.13106,22.20507],[114.13097,22.20482],[114.1309,22.20468],[114.13086,22.2046],[114.13078,22.20446],[114.13075,22.20441],[114.13065,22.20425],[114.13073,22.20421],[114.13071,22.20418],[114.1307,22.20414],[114.1307,22.20406],[114.13069,22.20403],[114.13069,22.20403],[114.13067,22.20397],[114.13066,22.20388],[114.13071,22.20388],[114.1307,22.20381],[114.13069,22.20374],[114.13074,22.2035],[114.13067,22.20326],[114.13056,22.20301],[114.13046,22.2028],[114.13045,22.20277],[114.13043,22.20268],[114.13051,22.20264],[114.13049,22.20259],[114.13047,22.20249],[114.13048,22.20241],[114.1305,22.20233],[114.13043,22.20229],[114.13041,22.20227],[114.13025,22.2023],[114.13018,22.20195],[114.13011,22.20159],[114.13018,22.20158],[114.13015,22.20156],[114.13013,22.20153],[114.13013,22.20151],[114.13013,22.20149],[114.13014,22.20148],[114.13015,22.20147],[114.13017,22.20147],[114.1302,22.20147],[114.13024,22.20148],[114.13026,22.20147],[114.13027,22.20146],[114.13027,22.20145],[114.13024,22.20146],[114.13022,22.20146],[114.13019,22.20145],[114.13017,22.20144],[114.13015,22.20141],[114.13015,22.20139],[114.13016,22.20138],[114.13018,22.20136],[114.13019,22.20134],[114.1302,22.20131],[114.1302,22.20128],[114.13018,22.20129],[114.13017,22.20131],[114.13015,22.20135],[114.13012,22.20137],[114.13011,22.20136],[114.13008,22.20133],[114.13003,22.2013],[114.13001,22.20127],[114.13,22.20125],[114.13,22.20118],[114.13,22.20117],[114.13,22.20115],[114.12999,22.20115],[114.12999,22.20115],[114.12998,22.20116],[114.12999,22.20119],[114.12998,22.20121],[114.12996,22.20125],[114.12995,22.2013],[114.12996,22.20134],[114.12995,22.20137],[114.12994,22.20142],[114.12981,22.20145],[114.12997,22.20148],[114.13,22.20174],[114.13,22.20191],[114.12998,22.20196],[114.12991,22.20205],[114.12986,22.20215],[114.12971,22.20243],[114.12969,22.20251],[114.12963,22.20263],[114.12957,22.20273],[114.12917,22.20301],[114.12913,22.20329],[114.12904,22.2034],[114.12902,22.20367],[114.12875,22.20389],[114.12868,22.20395],[114.12861,22.20406],[114.12851,22.2041],[114.12832,22.20415],[114.12802,22.2042],[114.12776,22.20429],[114.12735,22.20477],[114.1273,22.20488],[114.12728,22.20518],[114.1272,22.20526],[114.12713,22.20529],[114.12726,22.20535],[114.12745,22.20527],[114.12761,22.20526],[114.12764,22.20532],[114.12782,22.20546],[114.12783,22.2055],[114.12781,22.20554],[114.12769,22.20561],[114.1276,22.20561],[114.12747,22.2056],[114.12734,22.20545],[114.12721,22.20545],[114.1272,22.20537],[114.12708,22.20539],[114.12694,22.20544],[114.12688,22.20548],[114.12682,22.20555],[114.12675,22.20567],[114.12667,22.20583],[114.12656,22.20601],[114.12656,22.20604],[114.12658,22.20611],[114.1266,22.20615],[114.12661,22.20619],[114.12663,22.20625],[114.12663,22.20629],[114.12663,22.20633],[114.12672,22.20635],[114.12681,22.2064],[114.12681,22.20641],[114.12678,22.20641],[114.12678,22.20643],[114.1268,22.20646],[114.12682,22.20649],[114.12684,22.2065],[114.12686,22.20651],[114.12686,22.20653],[114.12687,22.20655],[114.12689,22.20655],[114.12691,22.20655],[114.12693,22.20658],[114.12687,22.20667],[114.12684,22.20668],[114.12678,22.2067],[114.12674,22.20674],[114.12653,22.20718],[114.12654,22.20726],[114.12657,22.20732],[114.12662,22.20738],[114.12665,22.20754],[114.12676,22.20765],[114.12695,22.20775],[114.12702,22.20786],[114.12698,22.20795],[114.12706,22.20813],[114.12705,22.2082],[114.12695,22.20836],[114.12695,22.20907],[114.12685,22.20919],[114.12684,22.20951],[114.12693,22.20956],[114.12703,22.20978],[114.12734,22.20994],[114.12771,22.21003],[114.12801,22.21],[114.12814,22.20984],[114.12799,22.20933],[114.1281,22.2093],[114.12817,22.20964],[114.12822,22.20969],[114.12846,22.2097],[114.12857,22.20966],[114.12858,22.20962],[114.12852,22.20958],[114.12854,22.20954],[114.12859,22.20956],[114.12865,22.20961],[114.12883,22.20955],[114.12895,22.20955],[114.12911,22.20957],[114.12923,22.20961],[114.12932,22.20966],[114.12943,22.20974],[114.1295,22.20982],[114.1296,22.20995],[114.12965,22.21006],[114.12972,22.21024],[114.12997,22.21044],[114.13044,22.21074],[114.13141,22.21133],[114.13191,22.21164],[114.1324,22.21195],[114.13283,22.21222],[114.13355,22.21269],[114.13391,22.21292],[114.13417,22.21309],[114.13418,22.21311],[114.13422,22.21308],[114.1343,22.21311],[114.13437,22.21315],[114.13451,22.21315],[114.13459,22.21315],[114.13463,22.21319],[114.13467,22.21324],[114.13467,22.21326],[114.13467,22.21327],[114.13464,22.21329],[114.13464,22.21331],[114.13463,22.21336],[114.13462,22.21339],[114.13461,22.21341],[114.13462,22.21342],[114.1347,22.21349],[114.13477,22.21353],[114.13477,22.21356],[114.13477,22.21359],[114.13481,22.21364],[114.13484,22.21378],[114.13488,22.21381],[114.13494,22.21386],[114.13499,22.21387],[114.13506,22.21389],[114.13514,22.21393],[114.13518,22.21399],[114.13521,22.21409],[114.13523,22.21415],[114.13524,22.21422],[114.13521,22.21425],[114.13518,22.21426],[114.13525,22.2144],[114.13532,22.21439],[114.13538,22.21447],[114.13547,22.21451],[114.13552,22.2145],[114.1356,22.21448],[114.13567,22.2145],[114.13577,22.21459],[114.13582,22.21463],[114.1359,22.21472],[114.13595,22.21477],[114.13597,22.21483],[114.13599,22.21486],[114.13604,22.21488],[114.13608,22.2149],[114.13611,22.21493],[114.13612,22.21495],[114.13612,22.21498],[114.13612,22.21504],[114.13616,22.21509],[114.13621,22.21512],[114.13627,22.21514],[114.13639,22.21523],[114.1364,22.21527],[114.13639,22.21534],[114.13639,22.21538],[114.13639,22.21541],[114.13649,22.21553],[114.1365,22.21561],[114.13655,22.21568],[114.13657,22.21579],[114.13662,22.21586],[114.13663,22.21591],[114.13667,22.21592],[114.13669,22.21595],[114.13669,22.21601],[114.13671,22.21608],[114.1368,22.21618],[114.13679,22.21622],[114.13678,22.21626],[114.13681,22.21629],[114.13683,22.21633],[114.1368,22.21638],[114.13687,22.21637],[114.13695,22.21641],[114.13699,22.21645],[114.13704,22.21651],[114.13705,22.21661],[114.13707,22.21671],[114.13702,22.2169],[114.13699,22.21695],[114.13699,22.21722],[114.1369,22.21744],[114.13686,22.21768],[114.13681,22.21775],[114.13683,22.21792],[114.13674,22.21809],[114.13671,22.21822],[114.13684,22.21852],[114.13683,22.21869],[114.13685,22.21876],[114.13673,22.21885],[114.13665,22.21901],[114.1366,22.21898],[114.13659,22.21904],[114.13651,22.21919],[114.13645,22.21934],[114.13626,22.21966],[114.13621,22.21979],[114.13612,22.21988],[114.13603,22.22008],[114.13612,22.22015],[114.13602,22.22031],[114.13603,22.2204],[114.13597,22.22056],[114.13593,22.22062],[114.13563,22.2209],[114.13551,22.22096],[114.13543,22.22095],[114.13542,22.22097],[114.1353,22.221],[114.13517,22.22105],[114.13478,22.22106],[114.13471,22.22109],[114.1346,22.22128],[114.13454,22.22126],[114.13452,22.22106],[114.13433,22.22108],[114.13412,22.22123],[114.13406,22.22135],[114.13412,22.2214],[114.13406,22.22145],[114.13403,22.22151],[114.13398,22.22152],[114.13395,22.22165],[114.13387,22.22169],[114.13383,22.22168],[114.13381,22.22172],[114.13375,22.22176],[114.13371,22.2217],[114.13374,22.22167],[114.13374,22.22162],[114.13368,22.22165],[114.13359,22.22161],[114.13362,22.22155],[114.13357,22.22152],[114.13358,22.2215],[114.13353,22.22152],[114.13349,22.22153],[114.13344,22.22153],[114.13325,22.22146],[114.13305,22.22136],[114.13307,22.22132],[114.13327,22.22142],[114.13345,22.22148],[114.13348,22.22149],[114.13351,22.22148],[114.13363,22.22143],[114.13365,22.22137],[114.13365,22.22133],[114.13364,22.22126],[114.13363,22.22121],[114.1336,22.2212],[114.13359,22.22119],[114.1336,22.22116],[114.13356,22.22117],[114.13349,22.22102],[114.13351,22.22101],[114.13344,22.22093],[114.13333,22.22084],[114.13329,22.22082],[114.13324,22.22082],[114.13314,22.22085],[114.13306,22.22082],[114.13306,22.22074],[114.133,22.22071],[114.13297,22.22076],[114.13283,22.22068],[114.13285,22.22064],[114.13282,22.22065],[114.13281,22.22063],[114.13265,22.2207],[114.13254,22.22048],[114.13243,22.22035],[114.13236,22.2203],[114.13231,22.22031],[114.13231,22.22031],[114.1323,22.22032],[114.13229,22.22031],[114.13224,22.22028],[114.13222,22.22025],[114.13216,22.22012],[114.13216,22.22008],[114.13216,22.22004],[114.13216,22.22002],[114.13216,22.22],[114.13216,22.21998],[114.13217,22.21993],[114.13218,22.21991],[114.13201,22.21977],[114.13196,22.21982],[114.13185,22.21971],[114.13194,22.21964],[114.13182,22.2195],[114.1318,22.21948],[114.13178,22.21935],[114.13205,22.21904],[114.13204,22.21896],[114.1319,22.21881],[114.1318,22.2188],[114.13175,22.21874],[114.13143,22.21874],[114.13123,22.21868],[114.13114,22.21845],[114.13113,22.21836],[114.13112,22.21835],[114.1311,22.21833],[114.13086,22.21824],[114.13069,22.21852],[114.13055,22.21844],[114.13058,22.21839],[114.13067,22.21845],[114.13083,22.2182],[114.13051,22.21789],[114.13043,22.21786],[114.13032,22.21784],[114.13024,22.21784],[114.13003,22.21789],[114.13,22.21789],[114.12997,22.21788],[114.1299,22.21779],[114.12987,22.21778],[114.12985,22.21778],[114.12984,22.21779],[114.1299,22.21786],[114.12993,22.21793],[114.12992,22.21803],[114.12972,22.21822],[114.1296,22.21855],[114.12948,22.2187],[114.1293,22.21882],[114.12903,22.21907],[114.12875,22.21916],[114.12838,22.21929],[114.12825,22.21939],[114.12787,22.21946],[114.12776,22.21952],[114.12779,22.21957],[114.12773,22.21962],[114.12748,22.21967],[114.12732,22.21981],[114.12715,22.21988],[114.12694,22.2202],[114.12689,22.22043],[114.12695,22.22058],[114.12704,22.22055],[114.12707,22.2206],[114.12712,22.22071],[114.12714,22.22076],[114.1272,22.22078],[114.12731,22.22085],[114.12729,22.22088],[114.12718,22.22085],[114.1272,22.22082],[114.12698,22.22073],[114.1269,22.22072],[114.12683,22.22084],[114.12684,22.22089],[114.1269,22.22091],[114.12688,22.22108],[114.12684,22.22116],[114.12668,22.22127],[114.12664,22.22136],[114.12642,22.22157],[114.12606,22.22183],[114.12588,22.2219],[114.12577,22.22218],[114.12562,22.22225],[114.12544,22.22222],[114.12532,22.22244],[114.12527,22.22275],[114.12531,22.22325],[114.12542,22.2236],[114.12555,22.22376],[114.12578,22.22379],[114.12608,22.22372],[114.12628,22.22372],[114.1264,22.22365],[114.12651,22.22354],[114.1265,22.22352],[114.12649,22.2235],[114.12654,22.22326],[114.12656,22.22324],[114.12658,22.22323],[114.12661,22.22313],[114.12656,22.22312],[114.12657,22.22307],[114.12672,22.22311],[114.12671,22.22316],[114.12666,22.22315],[114.12664,22.22325],[114.12665,22.22327],[114.12665,22.2233],[114.12663,22.2234],[114.12658,22.22355],[114.12676,22.22361],[114.12669,22.22373],[114.12656,22.22382],[114.12648,22.2238],[114.12647,22.22372],[114.12639,22.22375],[114.12628,22.22382],[114.12607,22.22383],[114.12604,22.22389],[114.12612,22.22406],[114.12611,22.22419],[114.12597,22.22425],[114.12591,22.22437],[114.12585,22.22439],[114.12574,22.22441],[114.12567,22.22439],[114.12569,22.22444],[114.12559,22.22452],[114.12555,22.22468],[114.1256,22.22477],[114.12559,22.22485],[114.12563,22.22494],[114.12563,22.22503],[114.12556,22.22513],[114.1256,22.22536],[114.12565,22.22544],[114.12579,22.22555],[114.12583,22.22556],[114.12587,22.22552],[114.12591,22.22552],[114.12589,22.22561],[114.12606,22.22588],[114.12597,22.22619],[114.12572,22.22642],[114.12552,22.22648],[114.12543,22.22656],[114.12532,22.22655],[114.12528,22.22649],[114.12512,22.22648],[114.12506,22.22652],[114.12494,22.22645],[114.12483,22.22647],[114.12474,22.22652],[114.1247,22.2266],[114.12478,22.22665],[114.1247,22.2267],[114.1245,22.22691],[114.12438,22.22695],[114.12424,22.22694],[114.12422,22.22689],[114.12415,22.22688],[114.12389,22.22704],[114.12371,22.22706],[114.1236,22.22708],[114.12335,22.22729],[114.12312,22.22748],[114.12314,22.22756],[114.12319,22.22762],[114.12341,22.22774],[114.12336,22.2278],[114.12306,22.22768],[114.12305,22.22776],[114.12292,22.22786],[114.1224,22.22832],[114.12229,22.22837],[114.12226,22.22829],[114.12221,22.2283],[114.12211,22.2286],[114.122,22.22867],[114.12198,22.22878],[114.12174,22.22893],[114.12181,22.22873],[114.12171,22.22875],[114.12158,22.2289],[114.12154,22.22884],[114.12132,22.22896],[114.12127,22.22908],[114.12117,22.22915],[114.1212,22.22906],[114.12113,22.22907],[114.12099,22.22919],[114.12098,22.22924],[114.12072,22.22933],[114.12068,22.22939],[114.12069,22.22943],[114.12052,22.22951],[114.1203,22.23044],[114.12029,22.23084],[114.12026,22.2309],[114.12025,22.23102],[114.12027,22.23127],[114.12032,22.23134],[114.12037,22.23135],[114.12038,22.23139],[114.12032,22.23149],[114.12037,22.23151],[114.12029,22.23162],[114.12036,22.23173],[114.12031,22.23175],[114.12027,22.23196],[114.12031,22.23202],[114.12038,22.23199],[114.12042,22.232],[114.12036,22.23213],[114.12029,22.23214],[114.12024,22.23218],[114.12024,22.23241],[114.12028,22.23256],[114.12035,22.23255],[114.12041,22.23269],[114.12039,22.23291],[114.12047,22.23306],[114.12061,22.2332],[114.12061,22.23331],[114.12083,22.23375],[114.12088,22.23381],[114.12093,22.23382],[114.121,22.23378],[114.12114,22.23382],[114.1213,22.23383],[114.12139,22.23388],[114.12135,22.23392],[114.12144,22.23401],[114.12166,22.23408],[114.12184,22.23415],[114.12191,22.23413],[114.12194,22.23403],[114.12199,22.234],[114.12214,22.23403],[114.12217,22.23407],[114.12211,22.23411],[114.12207,22.23426],[114.1221,22.23449],[114.12221,22.23485],[114.12228,22.23498],[114.1223,22.23501],[114.12232,22.23498],[114.12237,22.23508],[114.12245,22.23513],[114.12246,22.23519],[114.12252,22.23519],[114.12254,22.23524],[114.12256,22.23535],[114.12255,22.23549],[114.12265,22.23582],[114.12272,22.2359],[114.12282,22.23592],[114.12278,22.23597],[114.12297,22.23599],[114.12297,22.23605],[114.12291,22.23609],[114.12297,22.23619],[114.12299,22.23635],[114.12294,22.23648],[114.123,22.23664],[114.12304,22.23665],[114.1231,22.23669],[114.12311,22.23679],[114.12304,22.23686],[114.1231,22.23697],[114.12305,22.23707],[114.12308,22.23711],[114.12305,22.23727],[114.12296,22.2373],[114.12299,22.23739],[114.12286,22.23748],[114.12287,22.23754],[114.12277,22.23778],[114.12265,22.23788],[114.12257,22.2381],[114.12251,22.23812],[114.12245,22.23823],[114.12238,22.23824],[114.12239,22.23838],[114.12223,22.23859],[114.12215,22.23854],[114.12209,22.23855],[114.12208,22.23853],[114.12202,22.23856],[114.12197,22.23865],[114.12187,22.23875],[114.12176,22.23878],[114.12171,22.23883],[114.12174,22.23887],[114.12163,22.23893],[114.12163,22.23897],[114.1216,22.23901],[114.12145,22.23898],[114.12135,22.23892],[114.12122,22.23892],[114.12127,22.2389],[114.12117,22.23887],[114.1212,22.23908],[114.12119,22.23912],[114.12114,22.23915],[114.12094,22.23919],[114.12043,22.23914],[114.12011,22.23927],[114.12008,22.23925],[114.11996,22.23903],[114.1199,22.23898],[114.11983,22.23896],[114.11976,22.23895],[114.11962,22.23897],[114.11951,22.23899],[114.11929,22.23906],[114.11925,22.23909],[114.1192,22.23911],[114.11906,22.23924],[114.119,22.23933],[114.11895,22.23938],[114.11886,22.23946],[114.11886,22.2395],[114.11887,22.23955],[114.11884,22.23966],[114.11887,22.23973],[114.11891,22.23973],[114.11887,22.23986],[114.11888,22.23992],[114.11899,22.23989],[114.11903,22.23991],[114.11903,22.23996],[114.1189,22.24004],[114.1189,22.24014],[114.11885,22.24023],[114.1188,22.24024],[114.11875,22.24022],[114.11871,22.24025],[114.11863,22.24023],[114.1186,22.24027],[114.11864,22.24032],[114.11859,22.24037],[114.11854,22.24034],[114.11847,22.24039],[114.11853,22.24042],[114.11856,22.24045],[114.11857,22.24048],[114.11858,22.24051],[114.11857,22.24055],[114.11855,22.24058],[114.11853,22.24062],[114.11851,22.24066],[114.11848,22.2407],[114.11844,22.24075],[114.11841,22.24081],[114.11838,22.24085],[114.11836,22.24089],[114.11833,22.24091],[114.11831,22.24092],[114.11828,22.24092],[114.11827,22.24096],[114.11822,22.24105],[114.11817,22.2411],[114.11817,22.24116],[114.11813,22.24116],[114.11812,22.24119]]],[[[114.03682,22.24402],[114.03683,22.24408],[114.03684,22.24412],[114.03689,22.24419],[114.03689,22.24426],[114.03686,22.24431],[114.03683,22.24434],[114.03679,22.24436],[114.03674,22.24437],[114.0367,22.24436],[114.03665,22.24434],[114.03657,22.2442],[114.03659,22.24416],[114.03665,22.24409],[114.03671,22.24407],[114.03676,22.24406],[114.03677,22.24404],[114.03678,22.24401],[114.03679,22.24401],[114.03682,22.24402]]],[[[113.85823,22.2488],[113.85827,22.24888],[113.85828,22.24895],[113.85826,22.24908],[113.85822,22.24918],[113.85816,22.24928],[113.8581,22.2495],[113.85797,22.2502],[113.85793,22.25042],[113.85791,22.25055],[113.85789,22.2507],[113.85787,22.25082],[113.85782,22.25104],[113.85774,22.25147],[113.85769,22.25167],[113.85769,22.25174],[113.8577,22.25179],[113.85771,22.25185],[113.85771,22.25191],[113.85771,22.25197],[113.8577,22.25206],[113.85768,22.2521],[113.85765,22.25217],[113.8576,22.25223],[113.85757,22.25224],[113.85752,22.25225],[113.85743,22.25222],[113.85738,22.25219],[113.85735,22.25213],[113.85734,22.25208],[113.85735,22.25202],[113.85739,22.25186],[113.85742,22.25179],[113.85745,22.2517],[113.85748,22.25163],[113.8575,22.25155],[113.85753,22.25139],[113.85757,22.25114],[113.85764,22.25078],[113.85765,22.25068],[113.85779,22.25001],[113.85781,22.24989],[113.85785,22.24966],[113.8579,22.24942],[113.85792,22.24922],[113.85792,22.24904],[113.85798,22.24881],[113.85803,22.24877],[113.8581,22.24876],[113.85823,22.2488]]],[[[113.86313,22.25417],[113.86309,22.25424],[113.86304,22.25421],[113.86308,22.25414],[113.86313,22.25417]]],[[[113.86343,22.25438],[113.86339,22.25442],[113.8633,22.25447],[113.8633,22.25441],[113.86326,22.25436],[113.86324,22.25436],[113.86323,22.25435],[113.86328,22.25432],[113.86344,22.25427],[113.86347,22.25425],[113.8635,22.25423],[113.86354,22.25422],[113.86358,22.25421],[113.86361,22.25421],[113.86369,22.25419],[113.86376,22.25417],[113.86376,22.25416],[113.86384,22.25416],[113.86388,22.25417],[113.86391,22.25419],[113.86391,22.25418],[113.86394,22.25418],[113.86395,22.25415],[113.86406,22.25414],[113.86414,22.25416],[113.86415,22.25412],[113.8642,22.25412],[113.86423,22.25415],[113.86425,22.25419],[113.86426,22.25428],[113.86427,22.25433],[113.86427,22.25436],[113.86425,22.25441],[113.86425,22.25443],[113.86419,22.25445],[113.86417,22.25446],[113.86412,22.25446],[113.86413,22.25441],[113.86403,22.25441],[113.86397,22.25439],[113.86398,22.25441],[113.86383,22.2544],[113.86375,22.25438],[113.86366,22.25436],[113.86363,22.25434],[113.86354,22.25435],[113.86343,22.25438]]],[[[113.86393,22.25463],[113.86389,22.25463],[113.8639,22.25443],[113.86399,22.25444],[113.86408,22.25446],[113.86408,22.25449],[113.86415,22.25452],[113.86413,22.25462],[113.86411,22.25461],[113.86412,22.25458],[113.86409,22.25458],[113.86409,22.25455],[113.86398,22.25452],[113.86398,22.25457],[113.86395,22.25457],[113.86393,22.25463]]],[[[113.86351,22.25468],[113.86349,22.25465],[113.86345,22.25466],[113.86342,22.25461],[113.86345,22.2546],[113.86343,22.25458],[113.86345,22.25457],[113.86343,22.25453],[113.86341,22.25449],[113.86337,22.25451],[113.86336,22.25449],[113.86341,22.25446],[113.8634,22.25444],[113.86343,22.25442],[113.8635,22.25442],[113.86356,22.25442],[113.86364,22.25442],[113.86367,22.25444],[113.86369,22.2545],[113.86367,22.25452],[113.86363,22.25452],[113.86363,22.2545],[113.86358,22.25449],[113.86359,22.25443],[113.86351,22.25446],[113.86352,22.25451],[113.86352,22.25454],[113.8636,22.25455],[113.86363,22.25455],[113.86363,22.25459],[113.86362,22.25468],[113.86356,22.25467],[113.86357,22.25466],[113.86351,22.25468]]],[[[113.86386,22.25486],[113.86379,22.25485],[113.86375,22.25476],[113.86371,22.25474],[113.86371,22.25471],[113.86371,22.25456],[113.86375,22.25456],[113.86375,22.25461],[113.86379,22.25462],[113.86378,22.25469],[113.86384,22.2547],[113.86388,22.2547],[113.86386,22.25486]]],[[[113.86405,22.25507],[113.86399,22.25505],[113.8639,22.255],[113.86387,22.25497],[113.86387,22.25488],[113.86394,22.25489],[113.86402,22.25475],[113.86406,22.25476],[113.86404,22.2549],[113.86408,22.2549],[113.86413,22.25488],[113.86413,22.25483],[113.86419,22.25478],[113.86422,22.25471],[113.86421,22.25466],[113.86416,22.25465],[113.86414,22.25472],[113.86408,22.2547],[113.86409,22.25462],[113.86421,22.25463],[113.86422,22.25459],[113.86422,22.25455],[113.86429,22.25455],[113.86431,22.25459],[113.86431,22.25463],[113.86431,22.25467],[113.86425,22.25479],[113.86422,22.25491],[113.86421,22.25491],[113.86413,22.2549],[113.86405,22.25507]]],[[[114.03342,22.25867],[114.03322,22.25873],[114.03322,22.25877],[114.03308,22.25879],[114.03292,22.25875],[114.03288,22.2587],[114.03271,22.25869],[114.03242,22.25854],[114.03205,22.25803],[114.0319,22.25792],[114.03153,22.25789],[114.03091,22.25796],[114.03074,22.25801],[114.03046,22.25818],[114.03043,22.25824],[114.03046,22.25833],[114.03041,22.25838],[114.03033,22.25834],[114.03033,22.25826],[114.03029,22.25824],[114.03012,22.25828],[114.02999,22.25834],[114.02986,22.25847],[114.02988,22.25854],[114.02983,22.25859],[114.02978,22.25859],[114.0297,22.25851],[114.02956,22.25862],[114.02952,22.2587],[114.02939,22.25875],[114.02923,22.25872],[114.02922,22.25862],[114.02908,22.25863],[114.02902,22.25871],[114.02899,22.25864],[114.02866,22.25863],[114.02819,22.25868],[114.02809,22.25864],[114.02798,22.25854],[114.02795,22.25832],[114.028,22.2583],[114.02807,22.2584],[114.02829,22.25825],[114.02836,22.25814],[114.02834,22.25796],[114.02824,22.25797],[114.02824,22.25793],[114.02772,22.25796],[114.02771,22.25785],[114.02776,22.25784],[114.02777,22.25793],[114.02823,22.2579],[114.02819,22.25735],[114.02835,22.25733],[114.0283,22.25711],[114.02827,22.25703],[114.02822,22.25699],[114.02814,22.25684],[114.02794,22.25667],[114.02779,22.25661],[114.02759,22.25662],[114.0271,22.25653],[114.0269,22.25669],[114.02685,22.2568],[114.02678,22.25687],[114.02646,22.25658],[114.02653,22.25652],[114.02651,22.25648],[114.02651,22.25645],[114.02651,22.25642],[114.02652,22.25639],[114.02654,22.25635],[114.02659,22.25627],[114.02667,22.25618],[114.02659,22.25602],[114.02655,22.2558],[114.02671,22.25586],[114.02667,22.25576],[114.02671,22.25572],[114.0267,22.25563],[114.02695,22.25571],[114.02705,22.25567],[114.02714,22.25554],[114.02714,22.25546],[114.02728,22.25536],[114.0272,22.25523],[114.02724,22.25496],[114.02718,22.25493],[114.0274,22.25483],[114.02752,22.25456],[114.02752,22.2545],[114.02768,22.25441],[114.02778,22.25434],[114.02779,22.25425],[114.02791,22.25422],[114.0278,22.2542],[114.02762,22.25418],[114.02764,22.25412],[114.02796,22.254],[114.02814,22.254],[114.02817,22.25407],[114.02852,22.25401],[114.02852,22.25393],[114.02857,22.25391],[114.02863,22.25398],[114.02884,22.25402],[114.02888,22.25393],[114.02905,22.254],[114.02904,22.25413],[114.02909,22.25421],[114.02909,22.25431],[114.02914,22.25425],[114.02916,22.25414],[114.02931,22.2541],[114.02933,22.25403],[114.02943,22.25403],[114.02947,22.25409],[114.02966,22.25406],[114.02967,22.25422],[114.02989,22.25408],[114.03008,22.25405],[114.03035,22.25408],[114.03046,22.25395],[114.03058,22.25392],[114.03067,22.25404],[114.03076,22.25405],[114.03076,22.25412],[114.03123,22.25413],[114.03184,22.25427],[114.03204,22.25436],[114.03252,22.25444],[114.03274,22.25417],[114.03271,22.25401],[114.03283,22.25405],[114.03288,22.25401],[114.03281,22.25395],[114.03292,22.25382],[114.03289,22.2537],[114.03274,22.25375],[114.03269,22.2538],[114.03266,22.25382],[114.03259,22.25376],[114.03259,22.25369],[114.03271,22.25357],[114.0327,22.2535],[114.0327,22.25344],[114.03278,22.25339],[114.03289,22.25332],[114.03313,22.2534],[114.03311,22.25333],[114.03318,22.25325],[114.03336,22.25324],[114.03338,22.25313],[114.03359,22.25302],[114.03374,22.25299],[114.03379,22.25304],[114.03386,22.25299],[114.03394,22.25273],[114.03392,22.2527],[114.0338,22.25269],[114.03381,22.25252],[114.03398,22.2524],[114.03393,22.2523],[114.03387,22.25212],[114.03392,22.25205],[114.03407,22.25195],[114.03425,22.25166],[114.03448,22.25151],[114.03462,22.25114],[114.03479,22.25083],[114.03485,22.2506],[114.03505,22.25045],[114.03514,22.25033],[114.03517,22.25023],[114.03511,22.25019],[114.0351,22.25002],[114.03517,22.24998],[114.03521,22.24987],[114.03515,22.24973],[114.03497,22.24964],[114.035,22.24951],[114.03512,22.2495],[114.03513,22.24943],[114.03504,22.24939],[114.03503,22.24935],[114.03549,22.24935],[114.03561,22.24931],[114.03555,22.24964],[114.03564,22.24964],[114.03564,22.24971],[114.03544,22.24974],[114.03543,22.24978],[114.03545,22.24985],[114.03564,22.24985],[114.0357,22.24993],[114.03569,22.25003],[114.03574,22.25012],[114.03605,22.25025],[114.03668,22.2503],[114.03707,22.25027],[114.03713,22.25023],[114.03711,22.25015],[114.03716,22.2501],[114.03726,22.25015],[114.03751,22.25008],[114.03757,22.24988],[114.03772,22.24991],[114.03776,22.24985],[114.03786,22.24988],[114.03795,22.2498],[114.03809,22.24979],[114.03836,22.24968],[114.03863,22.24946],[114.03886,22.24918],[114.03895,22.249],[114.03896,22.24869],[114.03891,22.24861],[114.03884,22.24855],[114.03872,22.2485],[114.03863,22.24853],[114.0386,22.24851],[114.03861,22.24847],[114.03867,22.24846],[114.03866,22.24843],[114.0385,22.24839],[114.0384,22.24829],[114.03832,22.24829],[114.03825,22.24824],[114.03833,22.24822],[114.03832,22.24816],[114.03826,22.24813],[114.03827,22.24805],[114.03821,22.24799],[114.03818,22.24789],[114.03827,22.24783],[114.03832,22.24765],[114.0384,22.24762],[114.03845,22.24733],[114.0385,22.24732],[114.03859,22.2472],[114.03862,22.24711],[114.0387,22.24696],[114.03874,22.24687],[114.03886,22.24686],[114.03893,22.24678],[114.03895,22.2467],[114.039,22.24663],[114.03904,22.24659],[114.0391,22.24661],[114.03912,22.24659],[114.03913,22.24654],[114.03925,22.24659],[114.0394,22.2465],[114.03955,22.24635],[114.03942,22.24631],[114.03946,22.24625],[114.03954,22.24624],[114.03955,22.24614],[114.03961,22.24607],[114.03957,22.24603],[114.03955,22.24592],[114.03957,22.24586],[114.0396,22.24585],[114.03962,22.24594],[114.03972,22.24589],[114.03967,22.24583],[114.03971,22.24578],[114.03983,22.24585],[114.03994,22.24577],[114.03994,22.24564],[114.03999,22.24554],[114.03995,22.24546],[114.03997,22.2454],[114.03984,22.24536],[114.03983,22.24528],[114.0399,22.24525],[114.03997,22.24527],[114.04004,22.24523],[114.04015,22.24501],[114.0401,22.24484],[114.04012,22.24477],[114.04013,22.24473],[114.03931,22.24434],[114.03864,22.24419],[114.03854,22.24416],[114.03848,22.24412],[114.0384,22.24405],[114.03838,22.24399],[114.03837,22.24394],[114.03836,22.24385],[114.03838,22.24377],[114.03842,22.24371],[114.03848,22.24365],[114.03856,22.24361],[114.03863,22.24358],[114.03873,22.24359],[114.03883,22.24361],[114.03921,22.24381],[114.03958,22.24401],[114.04008,22.24425],[114.04015,22.24408],[114.04014,22.244],[114.04023,22.24367],[114.04033,22.24342],[114.04051,22.24305],[114.04062,22.243],[114.04078,22.243],[114.04098,22.24268],[114.04116,22.24259],[114.04143,22.24252],[114.04152,22.24256],[114.04159,22.24248],[114.04172,22.2425],[114.04188,22.24242],[114.04202,22.24242],[114.04242,22.24224],[114.04257,22.24208],[114.04265,22.24197],[114.04268,22.24187],[114.04265,22.24182],[114.04281,22.2415],[114.04294,22.24153],[114.04302,22.24143],[114.043,22.24138],[114.04307,22.24132],[114.04312,22.24135],[114.04332,22.24126],[114.0434,22.24113],[114.04345,22.24121],[114.04362,22.24121],[114.04363,22.24107],[114.0437,22.24105],[114.04379,22.24114],[114.04379,22.24126],[114.04385,22.24129],[114.04389,22.24125],[114.04393,22.24132],[114.04401,22.24125],[114.04412,22.24123],[114.04428,22.24131],[114.04437,22.24132],[114.04449,22.24127],[114.04467,22.2413],[114.04472,22.24121],[114.0448,22.24136],[114.04487,22.24136],[114.045,22.2415],[114.04505,22.24159],[114.04498,22.24173],[114.04506,22.24183],[114.04501,22.24204],[114.04516,22.24233],[114.04532,22.24247],[114.04553,22.24277],[114.04563,22.24289],[114.04584,22.24304],[114.04594,22.24326],[114.04623,22.24356],[114.04605,22.24414],[114.04606,22.24461],[114.04616,22.2449],[114.0464,22.2451],[114.04669,22.24508],[114.04673,22.24519],[114.0467,22.24533],[114.04687,22.24558],[114.04708,22.24565],[114.04713,22.24585],[114.04723,22.24602],[114.04725,22.24615],[114.04724,22.24618],[114.04717,22.24631],[114.04715,22.24638],[114.04698,22.24659],[114.04692,22.24671],[114.04684,22.24685],[114.0468,22.24691],[114.04675,22.24695],[114.04668,22.24697],[114.0466,22.24687],[114.04651,22.24691],[114.04642,22.24718],[114.04645,22.24728],[114.04631,22.24748],[114.04622,22.24783],[114.04574,22.24818],[114.04579,22.2483],[114.04572,22.24853],[114.04557,22.24861],[114.04559,22.24871],[114.04554,22.24911],[114.04547,22.24904],[114.0453,22.24921],[114.04508,22.2493],[114.04492,22.24946],[114.04482,22.24957],[114.04474,22.24968],[114.04436,22.24993],[114.04413,22.25015],[114.04406,22.25024],[114.04413,22.2503],[114.04397,22.25042],[114.04397,22.25059],[114.04407,22.25072],[114.04397,22.25071],[114.04396,22.25075],[114.04408,22.25142],[114.04416,22.25162],[114.04429,22.25167],[114.04449,22.25199],[114.04456,22.25237],[114.04458,22.25242],[114.04458,22.25251],[114.04459,22.25263],[114.04482,22.25282],[114.0448,22.25299],[114.04485,22.25311],[114.04504,22.25309],[114.04509,22.25314],[114.04504,22.25333],[114.045,22.25358],[114.04513,22.25373],[114.04523,22.2537],[114.04534,22.25379],[114.04535,22.25389],[114.04539,22.25419],[114.04527,22.25432],[114.04525,22.25478],[114.04535,22.25497],[114.0455,22.25508],[114.04528,22.25539],[114.04528,22.2555],[114.04537,22.2557],[114.04533,22.25575],[114.04528,22.2558],[114.04527,22.25607],[114.0453,22.25622],[114.04516,22.2563],[114.04521,22.25644],[114.04514,22.25663],[114.04487,22.25696],[114.0448,22.25707],[114.04433,22.25711],[114.04412,22.25708],[114.04388,22.25718],[114.04353,22.25745],[114.04349,22.25753],[114.04352,22.25759],[114.04342,22.25769],[114.0433,22.25773],[114.0432,22.25782],[114.04303,22.2578],[114.04276,22.25795],[114.04249,22.25819],[114.04234,22.25819],[114.04223,22.25827],[114.04214,22.25827],[114.04211,22.25832],[114.04202,22.25834],[114.04199,22.2584],[114.04187,22.25845],[114.04183,22.25841],[114.04175,22.2584],[114.0417,22.25831],[114.04165,22.25833],[114.04166,22.25838],[114.04164,22.2584],[114.04162,22.25835],[114.04133,22.25825],[114.04059,22.25813],[114.0404,22.25814],[114.04005,22.25793],[114.03955,22.25779],[114.0393,22.25777],[114.03882,22.25781],[114.03848,22.25791],[114.03817,22.25798],[114.03789,22.25812],[114.03772,22.25821],[114.03768,22.25824],[114.03772,22.25826],[114.03765,22.2583],[114.03765,22.25836],[114.03751,22.25834],[114.03743,22.25837],[114.03728,22.25831],[114.03713,22.25837],[114.0367,22.25835],[114.03662,22.25832],[114.03665,22.25829],[114.03662,22.25826],[114.03654,22.25825],[114.03643,22.25826],[114.03637,22.25834],[114.03605,22.25845],[114.03595,22.25847],[114.0355,22.25849],[114.03536,22.25841],[114.03533,22.25852],[114.03504,22.25856],[114.03491,22.25849],[114.0347,22.25864],[114.03448,22.25855],[114.03415,22.25863],[114.03377,22.25864],[114.03366,22.2587],[114.03359,22.25866],[114.03342,22.25867]]],[[[113.86017,22.26132],[113.86012,22.26132],[113.86006,22.26131],[113.86005,22.2613],[113.86001,22.26128],[113.86001,22.26127],[113.86001,22.26126],[113.86001,22.26125],[113.86001,22.26124],[113.86002,22.26123],[113.86004,22.26122],[113.86,22.2612],[113.85997,22.26119],[113.85995,22.2612],[113.85993,22.26124],[113.85991,22.26125],[113.85986,22.26125],[113.8598,22.26123],[113.85974,22.2612],[113.85951,22.26113],[113.85957,22.26099],[113.85954,22.26099],[113.85952,22.26099],[113.85951,22.26099],[113.8595,22.26098],[113.85948,22.26096],[113.85946,22.26095],[113.85943,22.26095],[113.85932,22.26091],[113.85927,22.26088],[113.85925,22.26087],[113.85921,22.26086],[113.85919,22.26086],[113.85914,22.26088],[113.85908,22.26087],[113.85905,22.26086],[113.85903,22.26087],[113.859,22.26088],[113.85898,22.2609],[113.85897,22.26091],[113.85897,22.26092],[113.85897,22.26094],[113.85898,22.26095],[113.85899,22.26098],[113.85899,22.261],[113.85898,22.26101],[113.85897,22.26103],[113.85889,22.26104],[113.85883,22.26103],[113.85868,22.261],[113.85868,22.26098],[113.8587,22.26094],[113.85872,22.2609],[113.85865,22.2609],[113.85863,22.26091],[113.85862,22.26091],[113.8586,22.26091],[113.85859,22.2609],[113.85858,22.26088],[113.85857,22.26087],[113.85853,22.26086],[113.85853,22.26087],[113.85843,22.26084],[113.85824,22.26077],[113.85823,22.2608],[113.85822,22.26081],[113.85817,22.2608],[113.85815,22.26078],[113.85813,22.26074],[113.85812,22.26072],[113.85811,22.26071],[113.85811,22.26069],[113.85811,22.26068],[113.85811,22.26066],[113.85806,22.26061],[113.85805,22.2606],[113.85804,22.2606],[113.85802,22.26059],[113.85801,22.26058],[113.85798,22.26054],[113.85797,22.26054],[113.85795,22.26053],[113.85792,22.26052],[113.85788,22.26047],[113.85783,22.26045],[113.8578,22.26043],[113.85777,22.26043],[113.85774,22.26043],[113.8577,22.26046],[113.85769,22.26047],[113.85771,22.26048],[113.8577,22.2605],[113.85767,22.2605],[113.85745,22.26042],[113.85738,22.26039],[113.85736,22.26036],[113.85737,22.26034],[113.85738,22.26033],[113.85736,22.26033],[113.85734,22.26032],[113.85731,22.26032],[113.85729,22.26032],[113.85727,22.26031],[113.8572,22.26025],[113.85718,22.26024],[113.85716,22.26025],[113.85716,22.26026],[113.85715,22.26026],[113.85714,22.26025],[113.85713,22.26023],[113.85711,22.26022],[113.8571,22.26021],[113.85704,22.26017],[113.85703,22.26016],[113.85702,22.26014],[113.85701,22.26011],[113.857,22.26009],[113.85698,22.26008],[113.85688,22.26005],[113.85676,22.26007],[113.85675,22.26006],[113.85673,22.26005],[113.85671,22.26003],[113.8567,22.26003],[113.85666,22.26004],[113.85665,22.26004],[113.85663,22.26003],[113.85661,22.25998],[113.85659,22.25997],[113.85656,22.25995],[113.85653,22.25993],[113.85652,22.2599],[113.85649,22.25988],[113.85642,22.25987],[113.85636,22.25985],[113.85631,22.25983],[113.85621,22.25973],[113.85613,22.25969],[113.85607,22.25963],[113.85605,22.2596],[113.85604,22.25959],[113.85603,22.25959],[113.85602,22.2596],[113.85598,22.25958],[113.85595,22.25958],[113.85588,22.25959],[113.85587,22.25959],[113.85586,22.2596],[113.85586,22.25961],[113.85585,22.25963],[113.85583,22.25963],[113.85581,22.25963],[113.85578,22.25963],[113.85575,22.25963],[113.85573,22.25963],[113.85571,22.25963],[113.85569,22.25962],[113.85562,22.2596],[113.85556,22.25959],[113.85555,22.25959],[113.85553,22.2596],[113.85552,22.2596],[113.85549,22.25962],[113.85545,22.25959],[113.85539,22.2595],[113.85535,22.25943],[113.85535,22.25941],[113.85536,22.2594],[113.85536,22.25938],[113.8554,22.25935],[113.85541,22.25934],[113.85542,22.25931],[113.85542,22.25929],[113.85543,22.25927],[113.85544,22.25925],[113.85543,22.25922],[113.8554,22.2592],[113.85539,22.25921],[113.85536,22.25921],[113.85531,22.25918],[113.85526,22.25912],[113.85521,22.25906],[113.85515,22.25898],[113.85514,22.25896],[113.85514,22.25895],[113.85515,22.25892],[113.85516,22.25889],[113.85515,22.25885],[113.85513,22.25882],[113.8551,22.25879],[113.85507,22.25876],[113.85503,22.25873],[113.85501,22.25872],[113.85495,22.25872],[113.85491,22.25866],[113.85491,22.25865],[113.85491,22.25863],[113.8549,22.25858],[113.85491,22.25852],[113.85487,22.25849],[113.85481,22.25842],[113.85477,22.25839],[113.85476,22.25838],[113.85475,22.25835],[113.85473,22.25833],[113.85467,22.25829],[113.85458,22.2582],[113.85454,22.25816],[113.85447,22.25812],[113.85442,22.25808],[113.85426,22.25792],[113.85423,22.2579],[113.8542,22.25789],[113.85417,22.25789],[113.85415,22.25788],[113.85412,22.25788],[113.85409,22.25789],[113.85404,22.25791],[113.85397,22.2579],[113.85391,22.25786],[113.85385,22.25783],[113.85383,22.25781],[113.85382,22.25778],[113.85381,22.25775],[113.85379,22.25772],[113.85376,22.25768],[113.85371,22.25764],[113.85374,22.25756],[113.85369,22.25751],[113.85366,22.25747],[113.85363,22.25745],[113.85359,22.25742],[113.85341,22.25729],[113.85333,22.2573],[113.85328,22.25727],[113.85305,22.2571],[113.85295,22.25706],[113.85282,22.25706],[113.85276,22.25702],[113.85271,22.25695],[113.85273,22.25688],[113.85268,22.25687],[113.85262,22.25688],[113.85257,22.25683],[113.85251,22.25682],[113.85247,22.25679],[113.85239,22.25677],[113.85229,22.25677],[113.85219,22.25674],[113.85214,22.25673],[113.8521,22.25671],[113.85208,22.25669],[113.85203,22.25661],[113.85203,22.2566],[113.85205,22.2566],[113.85209,22.25661],[113.85212,22.25663],[113.85214,22.25664],[113.85216,22.25663],[113.85217,22.25663],[113.85217,22.25662],[113.85216,22.25659],[113.85215,22.25657],[113.85213,22.25655],[113.8521,22.25654],[113.85206,22.25651],[113.85202,22.25648],[113.852,22.25647],[113.85199,22.25647],[113.85198,22.25647],[113.85196,22.25646],[113.85195,22.25646],[113.85194,22.25644],[113.85195,22.25643],[113.85196,22.25641],[113.85197,22.25641],[113.852,22.25639],[113.85197,22.25632],[113.85193,22.25626],[113.85191,22.25623],[113.85187,22.25619],[113.85178,22.2561],[113.85173,22.25606],[113.8517,22.25603],[113.85168,22.25602],[113.85166,22.256],[113.85166,22.25599],[113.85165,22.25598],[113.85166,22.25596],[113.85166,22.25596],[113.85169,22.25592],[113.85172,22.25589],[113.85175,22.25587],[113.85176,22.25585],[113.85178,22.25584],[113.85179,22.25581],[113.85181,22.2557],[113.85183,22.25563],[113.85186,22.25554],[113.85187,22.2555],[113.85187,22.25545],[113.85187,22.25541],[113.85188,22.25539],[113.85194,22.25534],[113.85198,22.25529],[113.85201,22.25513],[113.85201,22.25504],[113.852,22.25501],[113.852,22.25499],[113.85201,22.25495],[113.85201,22.25491],[113.852,22.25487],[113.85201,22.25485],[113.85202,22.25484],[113.85205,22.25484],[113.85226,22.25468],[113.85235,22.2546],[113.85249,22.25452],[113.85259,22.2544],[113.85266,22.25423],[113.85267,22.25399],[113.85272,22.25385],[113.85273,22.25381],[113.85273,22.25373],[113.85274,22.2537],[113.85284,22.25355],[113.85291,22.25343],[113.85301,22.25336],[113.85306,22.25332],[113.85308,22.25329],[113.85309,22.25325],[113.85309,22.25315],[113.85312,22.25306],[113.85312,22.25304],[113.85313,22.25303],[113.85313,22.25301],[113.85313,22.253],[113.85312,22.25299],[113.85312,22.25298],[113.85308,22.25299],[113.85305,22.25298],[113.85305,22.25296],[113.85307,22.25295],[113.85309,22.25293],[113.8531,22.25293],[113.85311,22.2529],[113.85301,22.25267],[113.853,22.25267],[113.85299,22.25265],[113.85298,22.25264],[113.85288,22.25237],[113.85297,22.25234],[113.85308,22.25261],[113.85309,22.25263],[113.85311,22.25263],[113.85312,22.25264],[113.85314,22.25269],[113.85317,22.25278],[113.8532,22.25281],[113.85323,22.25284],[113.85326,22.25285],[113.85328,22.25284],[113.85399,22.25296],[113.85421,22.253],[113.85442,22.25304],[113.85463,22.25308],[113.85463,22.2531],[113.85468,22.25306],[113.85474,22.25303],[113.85482,22.253],[113.85486,22.25299],[113.85491,22.25297],[113.85494,22.25297],[113.85498,22.25298],[113.85515,22.25282],[113.85517,22.25283],[113.85513,22.25286],[113.85514,22.25288],[113.85512,22.2529],[113.8551,22.25289],[113.85498,22.25301],[113.85515,22.25318],[113.85525,22.25324],[113.85537,22.25331],[113.8554,22.25331],[113.85557,22.25342],[113.85558,22.25343],[113.85565,22.25346],[113.85566,22.25343],[113.85568,22.25342],[113.85578,22.25346],[113.85578,22.25348],[113.85578,22.25349],[113.85582,22.2535],[113.85582,22.25352],[113.85607,22.25361],[113.85623,22.25373],[113.85619,22.25377],[113.85622,22.25379],[113.85625,22.2538],[113.85628,22.25375],[113.85632,22.25378],[113.85634,22.25374],[113.8564,22.25378],[113.85637,22.25382],[113.85642,22.25386],[113.85646,22.2539],[113.85645,22.25392],[113.8565,22.25397],[113.85652,22.25395],[113.85657,22.25398],[113.85659,22.25399],[113.85656,22.25402],[113.85663,22.25407],[113.85667,22.25401],[113.85675,22.25407],[113.85677,22.25404],[113.85678,22.25405],[113.8568,22.25406],[113.85683,22.25406],[113.85684,22.25407],[113.85687,22.25409],[113.85687,22.2541],[113.8569,22.25412],[113.85694,22.25415],[113.857,22.25419],[113.85704,22.25421],[113.85708,22.25418],[113.85716,22.2543],[113.85714,22.25431],[113.85704,22.25437],[113.85704,22.25438],[113.85704,22.25439],[113.85706,22.25443],[113.85705,22.25443],[113.857,22.25438],[113.85695,22.25443],[113.8569,22.2545],[113.85687,22.25449],[113.85688,22.25447],[113.85686,22.25446],[113.85684,22.25444],[113.85682,22.25442],[113.85676,22.25439],[113.85673,22.25447],[113.85661,22.25442],[113.85658,22.25446],[113.85655,22.25449],[113.85649,22.25449],[113.85649,22.2545],[113.8565,22.25452],[113.85658,22.25451],[113.85663,22.25452],[113.85663,22.25456],[113.85664,22.25459],[113.85666,22.25465],[113.85653,22.25468],[113.85657,22.25478],[113.85664,22.25487],[113.85667,22.25492],[113.85674,22.25502],[113.85691,22.25526],[113.85702,22.25544],[113.85709,22.25557],[113.8571,22.25559],[113.85712,22.2556],[113.85713,22.2556],[113.85716,22.25559],[113.85718,22.25558],[113.85721,22.25557],[113.85723,22.25557],[113.85725,22.25557],[113.85727,22.25558],[113.85728,22.25559],[113.85728,22.2556],[113.85734,22.25557],[113.85735,22.25557],[113.85737,22.25557],[113.85741,22.25557],[113.8574,22.25551],[113.85747,22.25547],[113.85744,22.2554],[113.85743,22.25535],[113.8575,22.25533],[113.85755,22.25532],[113.8576,22.25537],[113.85762,22.25536],[113.8576,22.25531],[113.85766,22.2553],[113.85762,22.25521],[113.85767,22.25519],[113.85767,22.25516],[113.85778,22.25513],[113.85783,22.25524],[113.85786,22.25523],[113.85789,22.25532],[113.85792,22.2553],[113.85791,22.25526],[113.85793,22.25525],[113.85797,22.25531],[113.85811,22.25526],[113.85804,22.25514],[113.85803,22.25512],[113.85803,22.2551],[113.85804,22.25504],[113.85805,22.25501],[113.85808,22.25498],[113.85812,22.25495],[113.85814,22.25493],[113.85816,22.2549],[113.85822,22.25488],[113.85824,22.25487],[113.85827,22.25487],[113.8583,22.25488],[113.85834,22.25487],[113.85837,22.25487],[113.85841,22.25487],[113.85846,22.25486],[113.85853,22.25484],[113.85863,22.25477],[113.85869,22.25472],[113.85871,22.25471],[113.85877,22.25471],[113.85881,22.25469],[113.85903,22.25456],[113.85913,22.25451],[113.85924,22.25449],[113.8594,22.25448],[113.85959,22.25449],[113.85973,22.25449],[113.85989,22.25446],[113.85999,22.25445],[113.86013,22.25445],[113.8603,22.25446],[113.86037,22.25446],[113.86044,22.25449],[113.86051,22.25454],[113.86057,22.25458],[113.86061,22.2546],[113.86063,22.25462],[113.86068,22.2547],[113.86071,22.2547],[113.8607,22.25466],[113.86072,22.25465],[113.86075,22.25469],[113.86076,22.2547],[113.86082,22.25468],[113.8608,22.25463],[113.86083,22.25462],[113.86086,22.25462],[113.86089,22.25467],[113.86087,22.25468],[113.86088,22.25469],[113.86094,22.25467],[113.86098,22.25473],[113.86103,22.25469],[113.861,22.25465],[113.86098,22.25463],[113.86097,22.25459],[113.86097,22.25457],[113.86097,22.25453],[113.86098,22.25449],[113.861,22.25445],[113.86102,22.25439],[113.86105,22.2543],[113.86108,22.25425],[113.86114,22.25421],[113.86118,22.2542],[113.86121,22.2542],[113.86143,22.25426],[113.86145,22.25421],[113.86153,22.25424],[113.86156,22.25417],[113.86152,22.25418],[113.8615,22.25416],[113.86131,22.25405],[113.86141,22.25393],[113.86142,22.25391],[113.86137,22.25387],[113.86142,22.25375],[113.86146,22.25371],[113.86152,22.25374],[113.86154,22.25371],[113.86156,22.25372],[113.86154,22.25377],[113.86156,22.25378],[113.86158,22.25378],[113.86163,22.25377],[113.86167,22.25375],[113.86172,22.25377],[113.86173,22.2538],[113.86173,22.25382],[113.86178,22.25383],[113.86178,22.25382],[113.86185,22.25383],[113.86187,22.25384],[113.86191,22.25386],[113.86198,22.25389],[113.86202,22.2539],[113.862,22.25393],[113.86207,22.25395],[113.86205,22.254],[113.86204,22.25401],[113.86218,22.25406],[113.86223,22.25409],[113.86223,22.25409],[113.86222,22.2541],[113.86243,22.25417],[113.86253,22.2542],[113.86263,22.25426],[113.86262,22.25429],[113.86283,22.25435],[113.86282,22.25438],[113.86286,22.25439],[113.86286,22.25439],[113.86291,22.2544],[113.86295,22.25442],[113.863,22.25446],[113.86298,22.25451],[113.86303,22.25455],[113.86314,22.25462],[113.86325,22.2547],[113.86329,22.25475],[113.86336,22.25482],[113.86352,22.255],[113.86352,22.255],[113.8636,22.25512],[113.86363,22.25517],[113.86364,22.25518],[113.86367,22.25517],[113.86371,22.25519],[113.86373,22.25522],[113.86378,22.25533],[113.86378,22.25538],[113.86378,22.25539],[113.86371,22.25539],[113.86372,22.25541],[113.86367,22.25542],[113.86362,22.25541],[113.86355,22.2554],[113.86356,22.25548],[113.86377,22.2555],[113.86379,22.25552],[113.8638,22.25555],[113.8638,22.25562],[113.8638,22.25567],[113.86378,22.25566],[113.86377,22.25573],[113.86376,22.25576],[113.86373,22.25576],[113.86371,22.25576],[113.86371,22.25582],[113.86371,22.25586],[113.86368,22.25593],[113.86366,22.25594],[113.86362,22.25597],[113.86357,22.25604],[113.86352,22.25602],[113.86347,22.25598],[113.86346,22.25599],[113.86339,22.25596],[113.86337,22.25598],[113.86343,22.25601],[113.86337,22.25609],[113.86335,22.25609],[113.86332,22.25616],[113.86342,22.2562],[113.86334,22.25633],[113.86332,22.25638],[113.86325,22.25635],[113.86323,22.25634],[113.86321,22.25637],[113.86328,22.2564],[113.86329,22.25639],[113.86332,22.2564],[113.8633,22.25644],[113.86327,22.25642],[113.86328,22.25641],[113.86321,22.25638],[113.86318,22.25642],[113.86325,22.25645],[113.86327,22.25647],[113.86326,22.25651],[113.86324,22.25655],[113.86317,22.25664],[113.86313,22.25663],[113.86302,22.25678],[113.863,22.25677],[113.86291,22.25689],[113.86291,22.25689],[113.86278,22.25711],[113.86278,22.25711],[113.86266,22.25729],[113.86252,22.2575],[113.86248,22.25753],[113.86244,22.25762],[113.86245,22.25765],[113.86244,22.25769],[113.86241,22.25768],[113.86238,22.25767],[113.86234,22.25774],[113.86226,22.25771],[113.86225,22.25773],[113.86232,22.25785],[113.86249,22.25843],[113.86261,22.25886],[113.86261,22.2589],[113.8626,22.25891],[113.86265,22.25891],[113.86263,22.25895],[113.86265,22.25896],[113.86268,22.25893],[113.86269,22.25892],[113.86271,22.25892],[113.86274,22.25893],[113.86287,22.25898],[113.86291,22.25902],[113.86307,22.2591],[113.86302,22.25918],[113.86303,22.25919],[113.86303,22.2592],[113.86304,22.25922],[113.86305,22.25924],[113.86306,22.25925],[113.86307,22.25925],[113.86309,22.25926],[113.8631,22.25928],[113.86317,22.2594],[113.86318,22.2594],[113.86319,22.2594],[113.8632,22.25941],[113.8632,22.25942],[113.86321,22.25945],[113.86322,22.25949],[113.86321,22.25951],[113.8632,22.25952],[113.86319,22.25952],[113.86318,22.25952],[113.86317,22.25953],[113.86317,22.25954],[113.86317,22.25955],[113.86318,22.25956],[113.86318,22.2596],[113.86318,22.25961],[113.86317,22.25964],[113.86315,22.25966],[113.86313,22.25967],[113.86311,22.25968],[113.8631,22.2597],[113.86309,22.25971],[113.86307,22.25973],[113.86305,22.25975],[113.86304,22.25976],[113.86299,22.25978],[113.86298,22.25978],[113.86294,22.25977],[113.86292,22.25977],[113.8629,22.25976],[113.86287,22.25976],[113.86278,22.25976],[113.86273,22.25976],[113.86272,22.25979],[113.86264,22.25978],[113.86263,22.25979],[113.86263,22.25979],[113.86261,22.25979],[113.86261,22.25979],[113.8626,22.25979],[113.86259,22.25983],[113.86254,22.25982],[113.86253,22.25982],[113.86252,22.25981],[113.86251,22.25979],[113.86248,22.25978],[113.86243,22.25979],[113.86239,22.25977],[113.86237,22.25976],[113.86234,22.25976],[113.86233,22.25977],[113.86231,22.25978],[113.86229,22.25979],[113.86225,22.25984],[113.86218,22.25989],[113.86217,22.2599],[113.86217,22.25991],[113.86217,22.25991],[113.86215,22.25998],[113.86214,22.26001],[113.86213,22.26003],[113.86212,22.26007],[113.86214,22.2601],[113.86214,22.26011],[113.86214,22.26013],[113.86219,22.26013],[113.86228,22.26031],[113.8623,22.26031],[113.86232,22.26033],[113.86232,22.26034],[113.86232,22.26036],[113.86232,22.26037],[113.86231,22.2604],[113.86233,22.26045],[113.86234,22.26044],[113.86235,22.26043],[113.86235,22.26043],[113.86236,22.26043],[113.86241,22.26047],[113.86242,22.26048],[113.86239,22.26055],[113.8624,22.26059],[113.86246,22.26064],[113.86248,22.26069],[113.86252,22.26081],[113.86252,22.26082],[113.86252,22.26085],[113.86251,22.26089],[113.8625,22.26092],[113.86248,22.26093],[113.86247,22.26092],[113.86246,22.26094],[113.86245,22.26094],[113.86243,22.26093],[113.86236,22.26091],[113.86235,22.26091],[113.86234,22.26092],[113.86233,22.26092],[113.86232,22.26093],[113.86232,22.26094],[113.86232,22.26095],[113.86232,22.26096],[113.86235,22.26097],[113.86236,22.26098],[113.8624,22.26103],[113.86241,22.26104],[113.86241,22.26105],[113.86239,22.26108],[113.86237,22.26109],[113.86236,22.2611],[113.86233,22.2611],[113.86231,22.26111],[113.86229,22.2611],[113.86228,22.26112],[113.86236,22.26116],[113.86237,22.26116],[113.86237,22.26117],[113.86236,22.26119],[113.86235,22.2612],[113.86235,22.2612],[113.8623,22.26118],[113.86229,22.26118],[113.86228,22.26117],[113.86225,22.26114],[113.86223,22.26112],[113.86221,22.26109],[113.86217,22.26106],[113.86211,22.26101],[113.8621,22.26101],[113.86212,22.26099],[113.86214,22.26099],[113.86216,22.26096],[113.86212,22.26093],[113.8621,22.26091],[113.86209,22.26089],[113.86207,22.26087],[113.86201,22.26083],[113.86197,22.26081],[113.86185,22.26074],[113.86182,22.26072],[113.86181,22.26071],[113.86179,22.26072],[113.86176,22.26076],[113.8617,22.26085],[113.86166,22.26084],[113.86162,22.2608],[113.8616,22.26079],[113.86158,22.26078],[113.86157,22.26079],[113.86155,22.26079],[113.86151,22.26081],[113.86146,22.26083],[113.86142,22.26083],[113.86138,22.26085],[113.86134,22.26084],[113.86131,22.26086],[113.86125,22.26087],[113.86111,22.26097],[113.86096,22.26104],[113.8608,22.26112],[113.86068,22.26114],[113.86064,22.26114],[113.86052,22.2612],[113.86036,22.26127],[113.86026,22.26131],[113.86023,22.26132],[113.8602,22.26131],[113.86017,22.26132]]],[[[114.05482,22.2649],[114.0548,22.26498],[114.05467,22.26481],[114.0546,22.26488],[114.05453,22.26488],[114.0545,22.26485],[114.05437,22.26486],[114.05434,22.26482],[114.05429,22.26485],[114.05412,22.26486],[114.05407,22.26493],[114.05398,22.2649],[114.05387,22.26495],[114.05357,22.26494],[114.0533,22.26489],[114.05324,22.26483],[114.05305,22.26475],[114.05286,22.26474],[114.0527,22.26468],[114.05264,22.26473],[114.05255,22.26474],[114.05243,22.26469],[114.05235,22.2646],[114.0521,22.26455],[114.05204,22.26438],[114.05193,22.26433],[114.05177,22.26431],[114.05172,22.26421],[114.05167,22.26424],[114.05167,22.26415],[114.05151,22.26409],[114.0511,22.26407],[114.05103,22.26415],[114.0509,22.26415],[114.05078,22.26421],[114.05078,22.26425],[114.05051,22.2642],[114.05032,22.26405],[114.05016,22.26409],[114.05006,22.26407],[114.04991,22.26388],[114.04975,22.26357],[114.0496,22.26341],[114.0496,22.26332],[114.04925,22.26306],[114.0492,22.26309],[114.04915,22.26306],[114.04907,22.2629],[114.04892,22.26287],[114.04858,22.26269],[114.04851,22.26275],[114.04838,22.26261],[114.04821,22.26249],[114.04753,22.26215],[114.04735,22.26188],[114.04724,22.26191],[114.04711,22.26182],[114.0472,22.26177],[114.0471,22.2616],[114.04712,22.26149],[114.04723,22.2615],[114.04731,22.2614],[114.04738,22.26121],[114.04736,22.26113],[114.04749,22.26084],[114.04748,22.26058],[114.04752,22.26043],[114.04749,22.2602],[114.04743,22.26],[114.04729,22.2598],[114.04708,22.25971],[114.04702,22.25965],[114.04681,22.2596],[114.04672,22.2593],[114.04677,22.25913],[114.04683,22.25902],[114.04704,22.25896],[114.04708,22.2587],[114.04703,22.25861],[114.04706,22.25851],[114.04713,22.25846],[114.0471,22.25837],[114.04716,22.25837],[114.04737,22.25822],[114.04743,22.25822],[114.04748,22.25814],[114.04755,22.25812],[114.04761,22.25818],[114.04766,22.25818],[114.04765,22.25811],[114.04773,22.25815],[114.04778,22.25806],[114.04793,22.25816],[114.04826,22.25816],[114.04828,22.25811],[114.04855,22.25798],[114.04869,22.25773],[114.04879,22.25766],[114.04881,22.25759],[114.04876,22.25742],[114.04871,22.25734],[114.04878,22.25726],[114.04901,22.25726],[114.04925,22.25715],[114.04929,22.25726],[114.04959,22.2573],[114.04974,22.25726],[114.04982,22.25715],[114.05005,22.25712],[114.05014,22.2572],[114.05023,22.25713],[114.05031,22.25712],[114.0504,22.25716],[114.05056,22.25714],[114.05071,22.25724],[114.05086,22.2572],[114.05109,22.2575],[114.05123,22.25763],[114.05139,22.2577],[114.05146,22.25772],[114.05148,22.25774],[114.05144,22.2578],[114.05158,22.25782],[114.05154,22.25799],[114.05167,22.258],[114.05172,22.25812],[114.05178,22.25808],[114.05184,22.25809],[114.05188,22.25817],[114.05188,22.25824],[114.05196,22.25831],[114.052,22.25831],[114.05203,22.25826],[114.05207,22.25828],[114.05208,22.25836],[114.05217,22.25839],[114.05217,22.25853],[114.05224,22.25865],[114.05244,22.2587],[114.05247,22.25876],[114.05263,22.25886],[114.0528,22.25883],[114.05281,22.25889],[114.0529,22.25885],[114.05292,22.2589],[114.05297,22.25891],[114.05301,22.25882],[114.05309,22.2588],[114.05335,22.25891],[114.05348,22.25886],[114.05349,22.25894],[114.05357,22.25895],[114.05356,22.2589],[114.05362,22.25891],[114.05372,22.25903],[114.05374,22.25911],[114.05383,22.25918],[114.0541,22.25933],[114.0541,22.25939],[114.05422,22.25956],[114.05444,22.25969],[114.05439,22.2598],[114.0545,22.2599],[114.05449,22.25995],[114.05449,22.26002],[114.0548,22.26026],[114.05484,22.26019],[114.05499,22.26022],[114.05491,22.26031],[114.05485,22.26031],[114.055,22.26046],[114.05496,22.26056],[114.05501,22.2606],[114.05512,22.2607],[114.05505,22.26074],[114.05502,22.26083],[114.0552,22.26099],[114.05521,22.26106],[114.05516,22.2611],[114.05523,22.26116],[114.05534,22.26114],[114.05536,22.26122],[114.05545,22.26131],[114.05545,22.26146],[114.05539,22.26149],[114.05538,22.26156],[114.05526,22.26172],[114.05526,22.26176],[114.05534,22.26178],[114.05529,22.26182],[114.05532,22.262],[114.05543,22.26213],[114.05557,22.26214],[114.05561,22.26206],[114.05574,22.26206],[114.05577,22.26211],[114.05574,22.26213],[114.0558,22.2622],[114.05584,22.26213],[114.05589,22.26214],[114.05601,22.26221],[114.05606,22.2623],[114.05613,22.26221],[114.05621,22.26223],[114.05622,22.26228],[114.05627,22.26228],[114.0563,22.2624],[114.05629,22.26283],[114.05635,22.26279],[114.05649,22.26281],[114.05642,22.2629],[114.05638,22.26289],[114.0564,22.26296],[114.05635,22.26301],[114.05632,22.26303],[114.05628,22.263],[114.05617,22.26305],[114.05607,22.263],[114.05606,22.26303],[114.05611,22.2631],[114.05608,22.26314],[114.05603,22.26316],[114.05596,22.26312],[114.05586,22.26321],[114.05578,22.26349],[114.0558,22.26354],[114.05591,22.26357],[114.05598,22.26364],[114.05602,22.2637],[114.0559,22.26377],[114.05585,22.26371],[114.05578,22.26378],[114.05562,22.26373],[114.05553,22.26378],[114.05537,22.26406],[114.05539,22.26416],[114.05536,22.26421],[114.0554,22.26423],[114.05528,22.26445],[114.05525,22.26469],[114.0551,22.26473],[114.05504,22.26472],[114.05478,22.2648],[114.05482,22.2649]]],[[[114.02407,22.2695],[114.02408,22.26955],[114.02401,22.26955],[114.02398,22.2695],[114.02392,22.26952],[114.02376,22.26942],[114.02376,22.26936],[114.02363,22.26933],[114.02339,22.2691],[114.02328,22.26885],[114.02336,22.26883],[114.02336,22.26873],[114.02346,22.26875],[114.02344,22.26878],[114.02349,22.26885],[114.02354,22.26884],[114.02353,22.2688],[114.02358,22.26883],[114.02358,22.26879],[114.02366,22.26888],[114.02388,22.26893],[114.02403,22.26907],[114.02403,22.26918],[114.02396,22.26927],[114.02402,22.26931],[114.02397,22.26934],[114.02405,22.26944],[114.02399,22.26944],[114.024,22.26948],[114.02407,22.2695]]],[[[114.04884,22.28376],[114.04884,22.28376],[114.04884,22.28376],[114.04881,22.28377],[114.04879,22.28376],[114.04878,22.28376],[114.04876,22.28376],[114.04875,22.28376],[114.04871,22.28375],[114.0487,22.28376],[114.04866,22.28373],[114.04866,22.28374],[114.04857,22.2837],[114.04858,22.28369],[114.04854,22.28367],[114.04854,22.28366],[114.04854,22.28365],[114.04852,22.28364],[114.04852,22.28363],[114.0485,22.28362],[114.0485,22.2836],[114.0485,22.28359],[114.0485,22.28358],[114.0485,22.28358],[114.04844,22.28356],[114.04843,22.28353],[114.04842,22.28351],[114.04842,22.28349],[114.04842,22.28348],[114.04844,22.28345],[114.04845,22.28345],[114.04846,22.28342],[114.04847,22.28342],[114.04847,22.28339],[114.04848,22.28339],[114.04849,22.28338],[114.04849,22.28338],[114.04851,22.28338],[114.04851,22.28338],[114.04853,22.28338],[114.04853,22.28336],[114.04854,22.28336],[114.04854,22.28334],[114.04855,22.28333],[114.04855,22.28332],[114.04856,22.28331],[114.04856,22.28331],[114.04857,22.28331],[114.04858,22.2833],[114.0486,22.28331],[114.0486,22.2833],[114.04862,22.2833],[114.04869,22.28333],[114.04869,22.28332],[114.04875,22.28333],[114.04876,22.28333],[114.04892,22.28337],[114.04892,22.28338],[114.04899,22.2834],[114.04899,22.28342],[114.04899,22.28344],[114.04898,22.28345],[114.04897,22.28347],[114.04896,22.28346],[114.04895,22.28348],[114.04896,22.28349],[114.04896,22.28351],[114.04897,22.28351],[114.04898,22.28353],[114.04898,22.28356],[114.04897,22.28357],[114.04896,22.28359],[114.04896,22.28361],[114.04897,22.28361],[114.04898,22.28362],[114.04899,22.28362],[114.049,22.28361],[114.049,22.28361],[114.04903,22.28362],[114.04903,22.28363],[114.04905,22.28363],[114.04905,22.28362],[114.04906,22.28362],[114.04906,22.2836],[114.04907,22.28359],[114.04908,22.28358],[114.04913,22.28359],[114.04913,22.2836],[114.04913,22.28362],[114.04912,22.28363],[114.04911,22.28364],[114.0491,22.28366],[114.04908,22.28366],[114.04907,22.28367],[114.04906,22.28367],[114.04905,22.28367],[114.04906,22.28369],[114.04906,22.28369],[114.04906,22.28371],[114.04906,22.28373],[114.04905,22.28374],[114.04904,22.28375],[114.04902,22.28375],[114.04901,22.28375],[114.04901,22.28376],[114.04898,22.28376],[114.04896,22.28376],[114.04896,22.28373],[114.04895,22.28372],[114.04896,22.28372],[114.04896,22.28371],[114.04897,22.28369],[114.04895,22.28369],[114.04894,22.2837],[114.04893,22.28371],[114.04891,22.28372],[114.0489,22.28373],[114.0489,22.28374],[114.04889,22.28376],[114.04887,22.28376],[114.04885,22.28376],[114.04884,22.28376]]],[[[114.03417,22.29033],[114.03407,22.29033],[114.03385,22.29028],[114.03383,22.29022],[114.03374,22.29021],[114.03387,22.29007],[114.03381,22.28998],[114.03384,22.28989],[114.03398,22.28994],[114.03406,22.28991],[114.03419,22.28999],[114.03417,22.29004],[114.03402,22.29004],[114.03397,22.29013],[114.03405,22.29016],[114.03411,22.29022],[114.03422,22.29024],[114.03427,22.29028],[114.03417,22.29026],[114.03417,22.29033]]],[[[114.03317,22.29031],[114.03309,22.29031],[114.03299,22.29042],[114.03285,22.29031],[114.03301,22.29013],[114.033,22.29006],[114.03304,22.29001],[114.03289,22.28993],[114.03276,22.28994],[114.03253,22.28982],[114.03227,22.28974],[114.03208,22.28962],[114.03208,22.28959],[114.03201,22.28953],[114.03204,22.28947],[114.03195,22.28949],[114.03189,22.28945],[114.03187,22.28929],[114.0318,22.28924],[114.03181,22.28918],[114.03174,22.28909],[114.03181,22.28906],[114.03186,22.289],[114.03196,22.28902],[114.03221,22.28899],[114.03232,22.28892],[114.03246,22.28875],[114.03257,22.28871],[114.03348,22.28897],[114.03362,22.28854],[114.03351,22.28851],[114.03353,22.28846],[114.03368,22.28851],[114.03352,22.28898],[114.03373,22.28898],[114.03379,22.289],[114.03387,22.28906],[114.03388,22.28911],[114.0339,22.28921],[114.03374,22.28967],[114.03373,22.28978],[114.0338,22.28983],[114.03381,22.28986],[114.03379,22.28989],[114.03368,22.28987],[114.0336,22.28989],[114.03359,22.29004],[114.03355,22.29007],[114.03342,22.29006],[114.03317,22.29031]]],[[[113.89637,22.29055],[113.89639,22.29056],[113.89639,22.29058],[113.89636,22.29059],[113.89634,22.29059],[113.89632,22.29058],[113.89632,22.29056],[113.89633,22.29054],[113.89634,22.29053],[113.89637,22.29055]]],[[[113.89619,22.29093],[113.89619,22.29094],[113.89619,22.29095],[113.89618,22.29097],[113.89617,22.29098],[113.89615,22.29098],[113.89612,22.29097],[113.89617,22.29092],[113.89618,22.29091],[113.89619,22.29093]]],[[[113.9039,22.2916],[113.90389,22.29162],[113.90388,22.29162],[113.90386,22.29162],[113.90385,22.29162],[113.90384,22.2916],[113.90385,22.29159],[113.90386,22.29158],[113.90388,22.29158],[113.90389,22.29158],[113.9039,22.2916]]],[[[114.04384,22.29201],[114.04374,22.29205],[114.04371,22.29212],[114.04346,22.29218],[114.04338,22.29214],[114.04327,22.29202],[114.04326,22.29201],[114.04325,22.29194],[114.04319,22.29192],[114.04313,22.29195],[114.04313,22.29189],[114.04286,22.29183],[114.04237,22.29199],[114.04233,22.29202],[114.04235,22.29208],[114.04233,22.29213],[114.04224,22.29215],[114.04224,22.29207],[114.04217,22.29204],[114.04211,22.29196],[114.04211,22.29182],[114.04191,22.29172],[114.04173,22.29172],[114.04159,22.29166],[114.04137,22.29164],[114.04122,22.29166],[114.04117,22.2917],[114.04115,22.29178],[114.04108,22.29178],[114.04109,22.29169],[114.04083,22.29164],[114.04068,22.29153],[114.04046,22.29145],[114.04046,22.2914],[114.04038,22.29136],[114.04027,22.29135],[114.04015,22.29129],[114.04,22.29131],[114.03989,22.29123],[114.0398,22.29124],[114.03979,22.29114],[114.03984,22.29107],[114.03979,22.29096],[114.03965,22.29088],[114.03927,22.29082],[114.03893,22.29091],[114.0389,22.29088],[114.03867,22.29087],[114.03856,22.29094],[114.03841,22.29095],[114.03837,22.291],[114.03831,22.29109],[114.03821,22.29103],[114.03812,22.29104],[114.03801,22.29098],[114.03787,22.29096],[114.03777,22.29089],[114.03765,22.29092],[114.03757,22.29081],[114.03725,22.29068],[114.03685,22.29043],[114.03684,22.29041],[114.03689,22.29031],[114.0369,22.29025],[114.03688,22.29022],[114.03678,22.29017],[114.03675,22.29016],[114.0367,22.29016],[114.03666,22.29026],[114.03662,22.29033],[114.03659,22.29037],[114.03655,22.29039],[114.0365,22.29041],[114.03645,22.29041],[114.03637,22.29039],[114.0363,22.29036],[114.03627,22.29032],[114.03624,22.29024],[114.03625,22.29014],[114.03626,22.2901],[114.03626,22.2901],[114.03626,22.29009],[114.03625,22.29008],[114.03623,22.29008],[114.03615,22.29006],[114.03613,22.29004],[114.03595,22.28995],[114.03589,22.28991],[114.03579,22.28983],[114.03575,22.2898],[114.03569,22.28974],[114.03563,22.28967],[114.0356,22.28964],[114.03557,22.28958],[114.03554,22.28952],[114.03551,22.28945],[114.0355,22.28939],[114.03545,22.28936],[114.0354,22.28935],[114.03536,22.28934],[114.03533,22.28934],[114.03531,22.28935],[114.03528,22.28934],[114.03522,22.28931],[114.0352,22.2893],[114.0352,22.28921],[114.0352,22.28912],[114.0352,22.28912],[114.0352,22.28912],[114.03545,22.28848],[114.03546,22.28846],[114.03544,22.28846],[114.03613,22.2865],[114.03629,22.2862],[114.03694,22.28439],[114.0374,22.28452],[114.03733,22.2847],[114.03732,22.2847],[114.0373,22.28474],[114.03763,22.28484],[114.03804,22.28442],[114.03814,22.28434],[114.03772,22.28416],[114.03775,22.2841],[114.03819,22.28428],[114.03823,22.28409],[114.03827,22.28396],[114.03831,22.28396],[114.03833,22.28385],[114.03833,22.28384],[114.03832,22.28382],[114.03816,22.28352],[114.03806,22.28338],[114.03753,22.28278],[114.03748,22.28271],[114.03741,22.28259],[114.03738,22.28246],[114.03737,22.28235],[114.03738,22.28224],[114.03739,22.28215],[114.03743,22.28206],[114.03772,22.28141],[114.03783,22.28125],[114.0379,22.28115],[114.038,22.28107],[114.03807,22.28102],[114.03815,22.28097],[114.03823,22.28093],[114.03832,22.2809],[114.03846,22.28087],[114.03858,22.28085],[114.03867,22.28085],[114.03875,22.28085],[114.0388,22.28086],[114.03896,22.28088],[114.03919,22.28088],[114.03923,22.28087],[114.03925,22.28088],[114.03927,22.28089],[114.03938,22.28094],[114.03943,22.28091],[114.03939,22.28083],[114.03943,22.28081],[114.03948,22.2809],[114.03984,22.28071],[114.03983,22.28068],[114.03995,22.28058],[114.03997,22.28057],[114.04,22.28056],[114.04002,22.28054],[114.04003,22.28053],[114.04005,22.28051],[114.04007,22.28052],[114.04009,22.28052],[114.04018,22.28049],[114.0402,22.28048],[114.04024,22.28049],[114.04079,22.2801],[114.04086,22.28017],[114.04096,22.28015],[114.04104,22.28008],[114.04086,22.27994],[114.04096,22.27983],[114.04105,22.27981],[114.04115,22.27982],[114.0412,22.27979],[114.04124,22.2798],[114.0413,22.27983],[114.04137,22.27988],[114.04144,22.27989],[114.04151,22.27991],[114.04175,22.27992],[114.0418,22.27994],[114.04196,22.27997],[114.04201,22.27995],[114.04224,22.28005],[114.0425,22.28029],[114.04253,22.2803],[114.04255,22.28032],[114.04257,22.28033],[114.0426,22.2803],[114.04264,22.28029],[114.04268,22.28029],[114.04272,22.28031],[114.04276,22.28024],[114.0431,22.28035],[114.04312,22.2803],[114.04328,22.28026],[114.04333,22.28017],[114.04337,22.28016],[114.04337,22.28021],[114.04352,22.28022],[114.04363,22.28021],[114.04364,22.28017],[114.04368,22.28014],[114.04388,22.2802],[114.04401,22.28013],[114.04417,22.28014],[114.04432,22.28021],[114.04439,22.28029],[114.04451,22.28029],[114.04462,22.28034],[114.04464,22.28036],[114.0446,22.28041],[114.04464,22.28045],[114.04461,22.28056],[114.04455,22.28064],[114.04462,22.28069],[114.04469,22.28072],[114.04478,22.28087],[114.04493,22.28096],[114.04505,22.28101],[114.04523,22.28104],[114.04526,22.28103],[114.0453,22.28095],[114.04537,22.28089],[114.04548,22.28096],[114.04564,22.28095],[114.04577,22.28102],[114.04579,22.28106],[114.04583,22.28112],[114.04579,22.28118],[114.04578,22.2812],[114.04579,22.2812],[114.046,22.28127],[114.04613,22.28144],[114.04602,22.2814],[114.04593,22.28142],[114.04596,22.28146],[114.04612,22.28151],[114.04627,22.28163],[114.04626,22.28171],[114.04619,22.28176],[114.0462,22.28198],[114.04629,22.28208],[114.04628,22.28218],[114.04647,22.2823],[114.04661,22.28247],[114.04663,22.2826],[114.04669,22.28261],[114.04674,22.28266],[114.04671,22.28272],[114.0468,22.28285],[114.04678,22.2829],[114.04682,22.28293],[114.04684,22.28299],[114.04674,22.28295],[114.04674,22.28301],[114.04686,22.2831],[114.04699,22.28314],[114.04712,22.28328],[114.04702,22.28344],[114.04703,22.2835],[114.04713,22.28364],[114.04718,22.28377],[114.04726,22.28386],[114.04743,22.2839],[114.04749,22.28395],[114.0474,22.28399],[114.04733,22.28398],[114.04752,22.28418],[114.04732,22.28429],[114.0472,22.28426],[114.04714,22.28429],[114.0472,22.28439],[114.04714,22.2845],[114.04722,22.28453],[114.04714,22.28463],[114.04702,22.28468],[114.04685,22.28465],[114.04665,22.28481],[114.04655,22.28478],[114.04636,22.2848],[114.04617,22.28477],[114.04603,22.2848],[114.04594,22.28486],[114.04589,22.28502],[114.04592,22.28515],[114.04588,22.28519],[114.04588,22.28535],[114.04594,22.28542],[114.04605,22.28548],[114.04608,22.28566],[114.04616,22.28562],[114.04622,22.28564],[114.04621,22.28569],[114.04614,22.28568],[114.04608,22.28577],[114.04602,22.28577],[114.04601,22.2859],[114.04605,22.28598],[114.04596,22.28619],[114.04592,22.2862],[114.04588,22.28626],[114.0459,22.28639],[114.04607,22.28644],[114.04608,22.2865],[114.0462,22.28656],[114.04615,22.28664],[114.04595,22.28663],[114.04597,22.28668],[114.04593,22.28675],[114.04598,22.28683],[114.04579,22.28686],[114.04577,22.28687],[114.04562,22.28685],[114.04514,22.28692],[114.0449,22.28702],[114.04479,22.28703],[114.04473,22.28699],[114.04423,22.28703],[114.04416,22.28705],[114.044,22.28701],[114.04373,22.28685],[114.04351,22.28685],[114.04339,22.28679],[114.04327,22.28678],[114.04323,22.28677],[114.0431,22.28668],[114.0428,22.28657],[114.04277,22.2865],[114.04282,22.28646],[114.04278,22.28635],[114.0428,22.28625],[114.04266,22.28611],[114.04248,22.28603],[114.04244,22.28596],[114.04225,22.28594],[114.04216,22.28586],[114.04207,22.28585],[114.04205,22.28582],[114.04206,22.28579],[114.04217,22.28575],[114.04221,22.28575],[114.0422,22.28566],[114.0422,22.28556],[114.04213,22.28555],[114.04209,22.28537],[114.04214,22.28521],[114.04207,22.28515],[114.04217,22.28502],[114.04219,22.28504],[114.04223,22.28501],[114.04222,22.285],[114.04223,22.28498],[114.04225,22.28498],[114.0422,22.28483],[114.04213,22.28485],[114.04212,22.28482],[114.04215,22.2848],[114.04213,22.28477],[114.04209,22.28475],[114.04186,22.28469],[114.04165,22.28466],[114.0415,22.28466],[114.04128,22.28468],[114.04107,22.28474],[114.04088,22.28482],[114.04079,22.28487],[114.04067,22.28494],[114.04053,22.28505],[114.04038,22.28519],[114.04026,22.28534],[114.04018,22.28543],[114.04015,22.28541],[114.04001,22.28569],[114.03992,22.28584],[114.03975,22.28615],[114.03965,22.2865],[114.03963,22.2866],[114.03963,22.28662],[114.03964,22.28664],[114.03964,22.28665],[114.03964,22.28671],[114.03966,22.28677],[114.03971,22.28688],[114.03975,22.28692],[114.03978,22.28692],[114.03984,22.28687],[114.03998,22.28697],[114.04007,22.28707],[114.04012,22.28719],[114.04011,22.28725],[114.04008,22.2873],[114.0401,22.28733],[114.04012,22.28737],[114.04017,22.28734],[114.0402,22.28739],[114.04014,22.28741],[114.04021,22.28754],[114.04045,22.28787],[114.0406,22.28786],[114.04106,22.28768],[114.04112,22.28767],[114.0412,22.28769],[114.04126,22.28774],[114.04123,22.28788],[114.04124,22.28793],[114.04136,22.28801],[114.04152,22.28802],[114.04158,22.28813],[114.04159,22.28819],[114.04159,22.28826],[114.04182,22.28817],[114.04188,22.28819],[114.04177,22.28837],[114.04173,22.2884],[114.04192,22.28848],[114.04185,22.28863],[114.04197,22.28873],[114.042,22.28884],[114.04226,22.28888],[114.04248,22.28901],[114.04261,22.28895],[114.04271,22.28896],[114.04278,22.289],[114.04284,22.28916],[114.04294,22.28922],[114.04327,22.28923],[114.0434,22.28927],[114.04374,22.28942],[114.04387,22.2895],[114.04392,22.28957],[114.04405,22.28961],[114.04412,22.28956],[114.04465,22.2898],[114.04494,22.29006],[114.04491,22.29016],[114.04495,22.29018],[114.04501,22.29031],[114.04491,22.29042],[114.04499,22.29045],[114.04504,22.29053],[114.04495,22.29067],[114.04504,22.29075],[114.04524,22.29071],[114.04534,22.29078],[114.04548,22.29082],[114.04568,22.29079],[114.04569,22.29088],[114.04578,22.29093],[114.04586,22.29097],[114.04586,22.29108],[114.04579,22.29108],[114.04578,22.29107],[114.04574,22.29103],[114.04564,22.29106],[114.04538,22.29102],[114.04533,22.29104],[114.04533,22.29109],[114.04527,22.29106],[114.04527,22.29113],[114.04503,22.29113],[114.04498,22.29117],[114.04488,22.29121],[114.04474,22.29122],[114.04454,22.29115],[114.04442,22.29125],[114.04439,22.29134],[114.04439,22.29143],[114.04477,22.29166],[114.04467,22.29172],[114.04463,22.29168],[114.04453,22.29171],[114.04456,22.29178],[114.04456,22.29189],[114.04393,22.29182],[114.0438,22.29189],[114.04384,22.29201]]],[[[113.90463,22.29323],[113.90465,22.29323],[113.90467,22.29325],[113.90468,22.29327],[113.90468,22.29329],[113.90464,22.2933],[113.90462,22.29332],[113.90461,22.29332],[113.90462,22.2933],[113.90461,22.29329],[113.9046,22.29328],[113.9046,22.29326],[113.90458,22.29323],[113.90459,22.29322],[113.9046,22.29322],[113.90463,22.29323]]],[[[113.91591,22.29536],[113.91602,22.29523],[113.91634,22.29524],[113.91675,22.29518],[113.91806,22.29477],[113.92572,22.29246],[113.92574,22.29256],[113.9254,22.29268],[113.92513,22.29276],[113.92487,22.29284],[113.92462,22.29291],[113.92436,22.29299],[113.92416,22.29305],[113.92393,22.29312],[113.92372,22.29318],[113.92352,22.29324],[113.92328,22.29332],[113.92304,22.2934],[113.92278,22.29347],[113.92252,22.29355],[113.92233,22.2936],[113.92206,22.29368],[113.92185,22.29374],[113.92162,22.29382],[113.92139,22.29389],[113.92112,22.29397],[113.92086,22.29404],[113.92062,22.29412],[113.9204,22.29418],[113.91997,22.29431],[113.91996,22.29431],[113.91992,22.29433],[113.91987,22.29434],[113.9198,22.29436],[113.91974,22.29437],[113.91967,22.29439],[113.9196,22.29441],[113.91954,22.29443],[113.91954,22.29443],[113.91947,22.29445],[113.91939,22.29447],[113.91931,22.29449],[113.91924,22.29451],[113.91918,22.29454],[113.91912,22.29456],[113.91906,22.29458],[113.919,22.29459],[113.91894,22.29461],[113.91888,22.29463],[113.9188,22.29465],[113.91874,22.29468],[113.91868,22.29469],[113.91862,22.29471],[113.91854,22.29474],[113.91847,22.29476],[113.91839,22.29478],[113.91833,22.2948],[113.91829,22.29482],[113.91823,22.29483],[113.91817,22.29485],[113.91809,22.29488],[113.91801,22.29491],[113.91795,22.29493],[113.91787,22.29495],[113.91779,22.29498],[113.91771,22.29499],[113.91763,22.29501],[113.91756,22.29504],[113.91748,22.29507],[113.9174,22.29509],[113.91732,22.2951],[113.91724,22.29512],[113.91717,22.29514],[113.9171,22.29516],[113.91702,22.29519],[113.91695,22.29521],[113.91687,22.29523],[113.91679,22.29525],[113.91671,22.29527],[113.91664,22.29529],[113.91657,22.29531],[113.91651,22.29531],[113.91649,22.29532],[113.91642,22.29533],[113.91636,22.29534],[113.91629,22.29534],[113.91621,22.29534],[113.91615,22.29534],[113.91615,22.29534],[113.91605,22.29535],[113.916,22.29535],[113.91591,22.29536]]],[[[113.91327,22.29535],[113.91315,22.29535],[113.91312,22.29534],[113.91307,22.29533],[113.91301,22.29533],[113.91295,22.29533],[113.91285,22.29533],[113.91276,22.29533],[113.91268,22.29533],[113.91259,22.29533],[113.91248,22.29534],[113.91237,22.29533],[113.91228,22.29533],[113.91226,22.29533],[113.91218,22.29533],[113.91207,22.29533],[113.91198,22.29533],[113.91187,22.29532],[113.91175,22.29532],[113.91165,22.29532],[113.91155,22.29533],[113.91145,22.29533],[113.91135,22.29533],[113.91126,22.29532],[113.91116,22.29532],[113.91107,22.29533],[113.91097,22.29533],[113.91089,22.29533],[113.9108,22.29532],[113.9107,22.29532],[113.91061,22.29532],[113.91051,22.29532],[113.91043,22.29532],[113.91035,22.29532],[113.91027,22.29533],[113.91017,22.29532],[113.91009,22.29532],[113.91,22.29532],[113.90992,22.29532],[113.90984,22.29532],[113.90974,22.29532],[113.90965,22.29532],[113.90956,22.29532],[113.90948,22.29532],[113.90941,22.29532],[113.90934,22.29532],[113.90929,22.29532],[113.90929,22.29532],[113.90878,22.29532],[113.90831,22.29532],[113.90804,22.29531],[113.90777,22.2953],[113.90776,22.2953],[113.90754,22.29529],[113.90729,22.29528],[113.90707,22.29527],[113.90687,22.29525],[113.90675,22.29525],[113.90661,22.29524],[113.9065,22.29523],[113.90636,22.29522],[113.90622,22.29521],[113.90609,22.29519],[113.90595,22.29518],[113.90584,22.29517],[113.90573,22.29516],[113.90558,22.29514],[113.90545,22.29514],[113.90533,22.29512],[113.90522,22.29511],[113.9051,22.29509],[113.905,22.29508],[113.90498,22.29508],[113.90487,22.29507],[113.90475,22.29505],[113.90461,22.29503],[113.9045,22.29502],[113.90435,22.295],[113.90423,22.29498],[113.9041,22.29497],[113.90399,22.29495],[113.90385,22.29493],[113.90372,22.2949],[113.90357,22.29488],[113.90344,22.29486],[113.90332,22.29484],[113.90319,22.29482],[113.90308,22.2948],[113.90287,22.29475],[113.90276,22.29473],[113.90269,22.29472],[113.90255,22.29469],[113.90245,22.29467],[113.90236,22.29464],[113.90226,22.29462],[113.90215,22.29459],[113.90205,22.29457],[113.90195,22.29455],[113.90186,22.29453],[113.90178,22.29451],[113.90172,22.2945],[113.90166,22.29449],[113.90158,22.29446],[113.90148,22.29444],[113.90138,22.29442],[113.90129,22.29439],[113.9012,22.29438],[113.90115,22.29436],[113.90109,22.29435],[113.90101,22.29433],[113.90093,22.2943],[113.90085,22.29428],[113.90078,22.29425],[113.90069,22.29423],[113.90065,22.29422],[113.90057,22.29421],[113.90052,22.2942],[113.90045,22.29419],[113.90036,22.29417],[113.90026,22.29413],[113.9002,22.29411],[113.90017,22.29409],[113.90012,22.29407],[113.90006,22.29405],[113.89999,22.29402],[113.89991,22.29399],[113.89982,22.29396],[113.89973,22.29393],[113.89964,22.2939],[113.89951,22.29387],[113.89945,22.29384],[113.89937,22.29383],[113.89928,22.2938],[113.89916,22.29376],[113.89913,22.29375],[113.89907,22.29374],[113.89897,22.29372],[113.89884,22.29372],[113.89872,22.29373],[113.89861,22.29373],[113.8983,22.29372],[113.89778,22.29374],[113.8977,22.29374],[113.89759,22.29373],[113.8974,22.29374],[113.89725,22.29374],[113.897,22.29374],[113.89665,22.29374],[113.89645,22.29375],[113.89621,22.29374],[113.89583,22.29365],[113.89597,22.29364],[113.89771,22.29364],[113.89877,22.29364],[113.89914,22.29366],[113.90121,22.29431],[113.90262,22.29465],[113.90404,22.29489],[113.90526,22.29502],[113.90613,22.29511],[113.90785,22.29521],[113.91316,22.29523],[113.91324,22.29527],[113.91328,22.2953],[113.91327,22.29535]]],[[[113.91591,22.29536],[113.91442,22.29535],[113.91442,22.29535],[113.91439,22.29535],[113.91415,22.29535],[113.91327,22.29535],[113.91591,22.29536]]],[[[114.03464,22.30248],[114.03465,22.30249],[114.03463,22.30251],[114.03464,22.30252],[114.03464,22.30253],[114.03461,22.30255],[114.0346,22.30254],[114.0346,22.30253],[114.0346,22.30251],[114.0346,22.3025],[114.0346,22.30249],[114.03463,22.30248],[114.03464,22.30248]]],[[[114.0359,22.30301],[114.03591,22.30302],[114.03591,22.30304],[114.0359,22.30304],[114.03589,22.30305],[114.03586,22.30305],[114.03585,22.30303],[114.03586,22.30302],[114.03587,22.30301],[114.0359,22.30301]]],[[[114.0343,22.30301],[114.03431,22.30303],[114.03431,22.30306],[114.03429,22.30306],[114.03426,22.30304],[114.03426,22.30301],[114.03427,22.30301],[114.0343,22.30301]]],[[[114.0345,22.30287],[114.03454,22.30288],[114.03455,22.30289],[114.03454,22.30292],[114.0345,22.30294],[114.0345,22.30297],[114.03448,22.30299],[114.03445,22.30299],[114.03445,22.30305],[114.03444,22.30307],[114.03442,22.30307],[114.03439,22.30306],[114.03438,22.30304],[114.03438,22.30301],[114.03439,22.303],[114.03442,22.30299],[114.03442,22.30295],[114.03445,22.30291],[114.03445,22.30287],[114.03447,22.30286],[114.0345,22.30287]]],[[[114.03587,22.3032],[114.03583,22.30318],[114.03579,22.30319],[114.03572,22.30317],[114.03567,22.30315],[114.03555,22.30313],[114.03553,22.30312],[114.03551,22.30309],[114.03553,22.30307],[114.03559,22.30305],[114.03568,22.30306],[114.03573,22.30308],[114.03576,22.30308],[114.03582,22.30309],[114.03586,22.30311],[114.03588,22.30314],[114.03588,22.30318],[114.03587,22.3032]]],[[[114.03458,22.30782],[114.03502,22.30754],[114.03487,22.30764],[114.03473,22.30773],[114.03458,22.30782]]],[[[114.03458,22.30782],[114.03448,22.30789],[114.03443,22.30792],[114.03458,22.30782]]],[[[114.03421,22.30811],[114.03421,22.30812],[114.03421,22.3081],[114.03422,22.30808],[114.03421,22.30811]]],[[[114.0332,22.30937],[114.03321,22.30937],[114.03321,22.30937],[114.0332,22.30937],[114.0332,22.30937]]],[[[114.03319,22.30939],[114.03319,22.30939],[114.03319,22.30939],[114.03319,22.30938],[114.03319,22.30939]]],[[[114.03316,22.30948],[114.03316,22.30949],[114.03315,22.30949],[114.03318,22.3094],[114.03318,22.30941],[114.03318,22.30942],[114.03319,22.30942],[114.03319,22.30943],[114.03319,22.30944],[114.03319,22.30946],[114.03317,22.30946],[114.03317,22.30947],[114.03316,22.30947],[114.03316,22.30948]]],[[[114.03315,22.3095],[114.03315,22.30951],[114.03314,22.30951],[114.03315,22.30949],[114.03315,22.3095]]],[[[114.03052,22.3145],[114.03016,22.3148],[114.02977,22.31517],[114.02957,22.31533],[114.02876,22.31682],[114.02872,22.31696],[114.02873,22.31711],[114.0288,22.31752],[114.02882,22.31774],[114.02876,22.31792],[114.0285,22.31824],[114.02805,22.31863],[114.02778,22.3191],[114.02753,22.3194],[114.02705,22.31981],[114.02696,22.31988],[114.02687,22.31994],[114.02681,22.31996],[114.02677,22.31997],[114.02674,22.31997],[114.02651,22.31993],[114.02625,22.31986],[114.02593,22.31975],[114.02554,22.31951],[114.0252,22.31927],[114.0249,22.319],[114.02468,22.31864],[114.02465,22.31853],[114.02464,22.31838],[114.02464,22.31825],[114.02466,22.31809],[114.02493,22.31753],[114.02528,22.31694],[114.02555,22.31655],[114.02627,22.31534],[114.02648,22.31456],[114.02648,22.31453],[114.02583,22.31427],[114.02558,22.314],[114.02576,22.31377],[114.02612,22.31337],[114.0263,22.31293],[114.02627,22.31253],[114.02573,22.31217],[114.02523,22.3119],[114.02491,22.31163],[114.02451,22.31163],[114.02412,22.31177],[114.02376,22.31203],[114.02326,22.3122],[114.02301,22.31216],[114.02255,22.3124],[114.02212,22.31266],[114.02179,22.31286],[114.02158,22.3127],[114.02137,22.3125],[114.02115,22.31236],[114.02086,22.31236],[114.02065,22.3126],[114.02043,22.31296],[114.02015,22.31319],[114.01981,22.31333],[114.01941,22.31356],[114.0192,22.31369],[114.01813,22.31363],[114.01784,22.31359],[114.01759,22.31372],[114.01734,22.31396],[114.01723,22.31416],[114.01698,22.31412],[114.01695,22.31386],[114.01677,22.31359],[114.01645,22.31349],[114.01619,22.31312],[114.01606,22.31291],[114.01606,22.31291],[114.01606,22.3129],[114.01605,22.3129],[114.01605,22.3129],[114.01605,22.3129],[114.01605,22.31289],[114.01605,22.31289],[114.01605,22.31289],[114.01605,22.31289],[114.01604,22.31288],[114.01604,22.31288],[114.01604,22.31288],[114.01604,22.31288],[114.01604,22.31287],[114.01604,22.31287],[114.01604,22.31287],[114.01604,22.31286],[114.01604,22.31286],[114.01604,22.31286],[114.01603,22.31286],[114.01603,22.31285],[114.01603,22.31285],[114.01603,22.31285],[114.01603,22.31284],[114.01603,22.31284],[114.01603,22.31284],[114.01603,22.31283],[114.01603,22.31283],[114.01603,22.31283],[114.01603,22.31282],[114.01603,22.31282],[114.01603,22.31282],[114.01603,22.31282],[114.01603,22.31281],[114.01603,22.31281],[114.01603,22.31281],[114.01603,22.3128],[114.01603,22.3128],[114.01603,22.3128],[114.01603,22.31279],[114.01603,22.31279],[114.01603,22.31279],[114.01603,22.31278],[114.01603,22.31278],[114.01603,22.31278],[114.01603,22.31278],[114.01604,22.31277],[114.01604,22.31277],[114.01604,22.31277],[114.01604,22.31276],[114.01604,22.31276],[114.01604,22.31276],[114.01604,22.31275],[114.01604,22.31275],[114.01617,22.31244],[114.01617,22.31243],[114.01617,22.31243],[114.01617,22.31243],[114.01617,22.31242],[114.01618,22.31242],[114.01618,22.31242],[114.01618,22.31242],[114.01618,22.31241],[114.01618,22.31241],[114.01618,22.31241],[114.01618,22.3124],[114.01618,22.3124],[114.01618,22.3124],[114.01618,22.31239],[114.01618,22.31239],[114.01618,22.31239],[114.01618,22.31239],[114.01618,22.31238],[114.01618,22.31238],[114.01618,22.31238],[114.01618,22.31237],[114.01618,22.31237],[114.01618,22.31237],[114.01618,22.31236],[114.01618,22.31236],[114.01618,22.31236],[114.01618,22.31235],[114.01618,22.31235],[114.01618,22.31235],[114.01618,22.31234],[114.01618,22.31234],[114.01618,22.31234],[114.01618,22.31234],[114.01618,22.31233],[114.01618,22.31233],[114.01618,22.31233],[114.01617,22.31232],[114.01617,22.31232],[114.01617,22.31232],[114.01617,22.31231],[114.01617,22.31231],[114.01617,22.31231],[114.01617,22.31231],[114.01617,22.3123],[114.01617,22.3123],[114.01616,22.3123],[114.01616,22.31229],[114.01616,22.31229],[114.01616,22.31229],[114.01616,22.31229],[114.01616,22.31228],[114.01615,22.31228],[114.01615,22.31228],[114.01615,22.31227],[114.01615,22.31227],[114.01615,22.31227],[114.01615,22.31227],[114.01614,22.31226],[114.01614,22.31226],[114.01614,22.31226],[114.01614,22.31226],[114.01613,22.31225],[114.01613,22.31225],[114.01613,22.31225],[114.01613,22.31225],[114.01613,22.31225],[114.01612,22.31224],[114.01612,22.31224],[114.01612,22.31224],[114.01612,22.31224],[114.01611,22.31224],[114.01611,22.31223],[114.01611,22.31223],[114.01611,22.31223],[114.0161,22.31223],[114.0161,22.31223],[114.0161,22.31222],[114.01609,22.31222],[114.01609,22.31222],[114.01609,22.31222],[114.01609,22.31222],[114.01608,22.31222],[114.01608,22.31221],[114.01608,22.31221],[114.01607,22.31221],[114.01607,22.31221],[114.01607,22.31221],[114.01607,22.31221],[114.01606,22.31221],[114.01606,22.3122],[114.01606,22.3122],[114.01605,22.3122],[114.01605,22.3122],[114.01605,22.3122],[114.01604,22.3122],[114.01604,22.3122],[114.01604,22.3122],[114.01603,22.3122],[114.01603,22.3122],[114.01603,22.3122],[114.01602,22.3122],[114.01602,22.31219],[114.01602,22.31219],[114.01601,22.31219],[114.01544,22.31212],[114.01544,22.31212],[114.01543,22.31212],[114.01543,22.31212],[114.01543,22.31212],[114.01542,22.31212],[114.01542,22.31212],[114.01542,22.31212],[114.01541,22.31212],[114.01541,22.31212],[114.01541,22.31212],[114.0154,22.31212],[114.0154,22.31212],[114.0154,22.31211],[114.01539,22.31211],[114.01539,22.31211],[114.01539,22.31211],[114.01538,22.31211],[114.01538,22.31211],[114.01538,22.31211],[114.01538,22.31211],[114.01537,22.3121],[114.01537,22.3121],[114.01537,22.3121],[114.01536,22.3121],[114.01536,22.3121],[114.01536,22.3121],[114.01536,22.31209],[114.01535,22.31209],[114.01535,22.31209],[114.01535,22.31209],[114.01534,22.31209],[114.01534,22.31208],[114.01534,22.31208],[114.01534,22.31208],[114.01533,22.31208],[114.01533,22.31208],[114.01533,22.31207],[114.01533,22.31207],[114.01532,22.31207],[114.01532,22.31207],[114.01532,22.31207],[114.01532,22.31206],[114.01532,22.31206],[114.01531,22.31206],[114.01531,22.31206],[114.01531,22.31205],[114.01531,22.31205],[114.01531,22.31205],[114.0153,22.31205],[114.0153,22.31204],[114.0153,22.31204],[114.0153,22.31204],[114.0153,22.31204],[114.01529,22.31203],[114.01529,22.31203],[114.01529,22.31203],[114.01529,22.31202],[114.01529,22.31202],[114.01529,22.31202],[114.01529,22.31202],[114.01528,22.31201],[114.01528,22.31201],[114.01528,22.31201],[114.01528,22.312],[114.01528,22.312],[114.01528,22.312],[114.01528,22.312],[114.01528,22.31199],[114.01528,22.31199],[114.01528,22.31199],[114.01527,22.31198],[114.01527,22.31198],[114.01527,22.31198],[114.01527,22.31197],[114.01527,22.31197],[114.01527,22.31197],[114.01527,22.31196],[114.01527,22.31196],[114.01527,22.31196],[114.01527,22.31196],[114.01527,22.31195],[114.01527,22.31195],[114.01527,22.31195],[114.01527,22.31194],[114.01527,22.31194],[114.01527,22.31194],[114.01527,22.31193],[114.01527,22.31193],[114.01527,22.31193],[114.01531,22.31167],[114.01529,22.31166],[114.01526,22.31166],[114.01524,22.31166],[114.01522,22.31166],[114.01521,22.31166],[114.01521,22.31165],[114.01518,22.31166],[114.01516,22.31167],[114.01515,22.31167],[114.01512,22.31168],[114.0151,22.31168],[114.01509,22.31169],[114.01507,22.31169],[114.01505,22.31168],[114.01504,22.31168],[114.01503,22.31168],[114.01503,22.31169],[114.01502,22.31169],[114.015,22.31169],[114.01498,22.31169],[114.01497,22.31169],[114.01496,22.31169],[114.01495,22.31169],[114.01493,22.31169],[114.01492,22.31168],[114.01491,22.31168],[114.01491,22.31168],[114.01489,22.31167],[114.01488,22.31167],[114.01487,22.31167],[114.01486,22.31167],[114.01484,22.31167],[114.01482,22.31168],[114.01481,22.31168],[114.01479,22.31168],[114.01479,22.31167],[114.01478,22.31167],[114.01476,22.31166],[114.01474,22.31165],[114.01474,22.31164],[114.01473,22.31164],[114.01471,22.31163],[114.01468,22.31161],[114.01465,22.3116],[114.01464,22.31159],[114.01462,22.31159],[114.01459,22.31158],[114.01458,22.31158],[114.01457,22.31158],[114.01453,22.31158],[114.01452,22.31158],[114.01451,22.31159],[114.0145,22.31159],[114.01449,22.31159],[114.01448,22.31159],[114.01447,22.31159],[114.01447,22.31159],[114.01446,22.31159],[114.01444,22.31159],[114.01444,22.31159],[114.01442,22.31159],[114.01441,22.31159],[114.0144,22.31159],[114.01439,22.31159],[114.01438,22.31159],[114.01437,22.31159],[114.01436,22.31159],[114.01433,22.31158],[114.0143,22.31158],[114.01329,22.31115],[114.01326,22.31118],[114.01325,22.31119],[114.01325,22.31119],[114.01324,22.3112],[114.01323,22.31121],[114.01323,22.31121],[114.01322,22.31122],[114.01321,22.31123],[114.01321,22.31124],[114.0132,22.31124],[114.01319,22.31125],[114.01319,22.31126],[114.01318,22.31127],[114.01318,22.31127],[114.01317,22.31127],[114.01317,22.31128],[114.01317,22.31128],[114.01317,22.31129],[114.01316,22.31129],[114.01316,22.31129],[114.01316,22.3113],[114.01315,22.3113],[114.01315,22.3113],[114.01315,22.31131],[114.01315,22.31131],[114.01314,22.31132],[114.01314,22.31132],[114.01314,22.31132],[114.01314,22.31133],[114.01313,22.31133],[114.01313,22.31134],[114.01313,22.31134],[114.01313,22.31134],[114.01312,22.31135],[114.01312,22.31135],[114.01312,22.31136],[114.01312,22.31136],[114.01311,22.31136],[114.01311,22.31137],[114.01311,22.31137],[114.01311,22.31138],[114.0131,22.31138],[114.0131,22.31139],[114.0131,22.31139],[114.0131,22.31139],[114.01309,22.3114],[114.01309,22.3114],[114.01309,22.31141],[114.01309,22.31141],[114.01308,22.31141],[114.01308,22.31142],[114.01308,22.31142],[114.01308,22.31143],[114.01308,22.31143],[114.01307,22.31143],[114.01307,22.31144],[114.01307,22.31144],[114.01307,22.31145],[114.01306,22.31145],[114.01306,22.31146],[114.01306,22.31146],[114.01306,22.31146],[114.01306,22.31147],[114.01305,22.31147],[114.01305,22.31148],[114.01305,22.31148],[114.01305,22.31148],[114.01305,22.31149],[114.01305,22.31149],[114.01304,22.3115],[114.01304,22.3115],[114.01304,22.31151],[114.01304,22.31151],[114.01304,22.31151],[114.01303,22.31153],[114.01302,22.31154],[114.01302,22.31155],[114.01302,22.31156],[114.01301,22.31157],[114.01301,22.31158],[114.013,22.3116],[114.013,22.31161],[114.01299,22.31162],[114.01299,22.31163],[114.01299,22.31163],[114.01298,22.31164],[114.01298,22.31164],[114.01298,22.31164],[114.01298,22.31165],[114.01298,22.31165],[114.01298,22.31166],[114.01297,22.31166],[114.01297,22.31167],[114.01297,22.31167],[114.01297,22.31167],[114.01297,22.31168],[114.01297,22.31168],[114.01296,22.31169],[114.01296,22.31169],[114.01296,22.3117],[114.01293,22.31178],[114.01291,22.31184],[114.01289,22.31187],[114.01286,22.31193],[114.01283,22.31201],[114.0128,22.31206],[114.01276,22.31215],[114.01275,22.31217],[114.01268,22.3123],[114.01262,22.31243],[114.0126,22.31248],[114.01258,22.31251],[114.01257,22.31252],[114.01255,22.31255],[114.01253,22.31258],[114.01251,22.3126],[114.01245,22.31265],[114.01242,22.31268],[114.01237,22.31271],[114.01233,22.31274],[114.01229,22.31277],[114.01224,22.3128],[114.01216,22.31286],[114.01191,22.31302],[114.01169,22.31316],[114.01163,22.31321],[114.01156,22.31325],[114.0115,22.31328],[114.01143,22.31332],[114.01136,22.31335],[114.0113,22.31338],[114.01122,22.31342],[114.01113,22.31346],[114.01104,22.3135],[114.01099,22.31351],[114.01092,22.31353],[114.01088,22.31354],[114.01083,22.31355],[114.01078,22.31356],[114.01074,22.31356],[114.0107,22.31356],[114.01065,22.31356],[114.0106,22.31355],[114.01055,22.31355],[114.01046,22.31353],[114.0104,22.31352],[114.01036,22.31351],[114.0103,22.3135],[114.01021,22.31349],[114.01012,22.31348],[114.01007,22.31348],[114.01,22.31348],[114.00995,22.31347],[114.00991,22.31348],[114.00987,22.31348],[114.00982,22.31349],[114.00977,22.31349],[114.00973,22.31351],[114.00963,22.31353],[114.00955,22.31356],[114.0095,22.31358],[114.00948,22.31359],[114.00944,22.31361],[114.00936,22.31365],[114.0093,22.31368],[114.00928,22.31369],[114.00927,22.3137],[114.00919,22.31374],[114.00913,22.31378],[114.0091,22.3138],[114.00905,22.31383],[114.00902,22.31385],[114.00888,22.31394],[114.00868,22.31406],[114.00841,22.31424],[114.00838,22.31425],[114.00838,22.31426],[114.00837,22.31426],[114.00836,22.31427],[114.00836,22.31427],[114.00835,22.31428],[114.00834,22.31428],[114.00833,22.31429],[114.00833,22.31429],[114.00832,22.3143],[114.00831,22.3143],[114.00831,22.31431],[114.0083,22.31431],[114.00829,22.31431],[114.00828,22.31432],[114.00828,22.31432],[114.00827,22.31433],[114.00826,22.31433],[114.00825,22.31434],[114.00825,22.31434],[114.00824,22.31435],[114.00823,22.31435],[114.00822,22.31436],[114.00822,22.31436],[114.00821,22.31436],[114.0082,22.31437],[114.00819,22.31437],[114.00818,22.31438],[114.00818,22.31438],[114.00817,22.31438],[114.00816,22.31439],[114.00814,22.31439],[114.00814,22.3144],[114.00813,22.3144],[114.00812,22.3144],[114.00811,22.31441],[114.00811,22.31441],[114.0081,22.31441],[114.0081,22.31441],[114.00809,22.31442],[114.00808,22.31442],[114.00807,22.31442],[114.00806,22.31443],[114.00806,22.31443],[114.00805,22.31443],[114.00804,22.31444],[114.00803,22.31444],[114.00802,22.31444],[114.00801,22.31444],[114.00801,22.31445],[114.008,22.31445],[114.00799,22.31445],[114.00798,22.31445],[114.00797,22.31445],[114.00796,22.31446],[114.00795,22.31446],[114.00795,22.31446],[114.00794,22.31446],[114.00792,22.31446],[114.00791,22.31447],[114.00791,22.31447],[114.0079,22.31447],[114.00789,22.31447],[114.00788,22.31447],[114.00787,22.31447],[114.00786,22.31447],[114.00785,22.31447],[114.00784,22.31447],[114.00784,22.31448],[114.00783,22.31448],[114.00781,22.31448],[114.0078,22.31448],[114.0078,22.31448],[114.00779,22.31448],[114.00778,22.31448],[114.00777,22.31448],[114.00776,22.31448],[114.00775,22.31448],[114.00774,22.31448],[114.00773,22.31448],[114.00773,22.31448],[114.00771,22.31447],[114.0077,22.31447],[114.00769,22.31447],[114.00768,22.31447],[114.00767,22.31447],[114.00767,22.31447],[114.00766,22.31447],[114.00765,22.31447],[114.00764,22.31447],[114.00763,22.31447],[114.00762,22.31447],[114.00761,22.31447],[114.0076,22.31447],[114.0076,22.31446],[114.00759,22.31446],[114.00757,22.31446],[114.00756,22.31446],[114.00756,22.31446],[114.00755,22.31446],[114.00754,22.31446],[114.00753,22.31445],[114.00752,22.31445],[114.00751,22.31445],[114.0075,22.31445],[114.00749,22.31445],[114.00749,22.31445],[114.00748,22.31445],[114.00747,22.31445],[114.00746,22.31444],[114.00745,22.31444],[114.00744,22.31444],[114.00743,22.31444],[114.00742,22.31444],[114.00742,22.31444],[114.00741,22.31443],[114.0074,22.31443],[114.00739,22.31443],[114.00738,22.31443],[114.00737,22.31443],[114.00736,22.31442],[114.00735,22.31442],[114.00735,22.31442],[114.00734,22.31442],[114.00733,22.31442],[114.00732,22.31441],[114.00731,22.31441],[114.0073,22.31441],[114.00729,22.31441],[114.00729,22.3144],[114.00728,22.3144],[114.00727,22.3144],[114.00726,22.3144],[114.00725,22.31439],[114.00724,22.31439],[114.00724,22.31439],[114.00723,22.31439],[114.00722,22.31438],[114.00721,22.31438],[114.0072,22.31438],[114.00719,22.31437],[114.00718,22.31437],[114.00717,22.31437],[114.00717,22.31437],[114.00716,22.31436],[114.00715,22.31436],[114.00714,22.31436],[114.00713,22.31435],[114.00712,22.31435],[114.00712,22.31435],[114.00711,22.31434],[114.0071,22.31434],[114.00709,22.31434],[114.00708,22.31433],[114.00707,22.31433],[114.00706,22.31433],[114.00706,22.31432],[114.00705,22.31432],[114.00704,22.31431],[114.00703,22.31431],[114.00702,22.31431],[114.00702,22.3143],[114.00701,22.3143],[114.00701,22.3143],[114.00701,22.3143],[114.007,22.3143],[114.00699,22.31429],[114.00699,22.31429],[114.00698,22.31428],[114.00697,22.31428],[114.00696,22.31428],[114.00695,22.31427],[114.00695,22.31427],[114.00694,22.31426],[114.00682,22.31418],[114.00671,22.31407],[114.00661,22.31394],[114.00658,22.31389],[114.00657,22.31387],[114.00656,22.31385],[114.00655,22.31383],[114.00654,22.31381],[114.00652,22.31378],[114.00651,22.31376],[114.0065,22.31374],[114.00649,22.31372],[114.00648,22.31369],[114.00647,22.31366],[114.00646,22.31363],[114.00645,22.3136],[114.00644,22.31357],[114.00643,22.31355],[114.00642,22.31353],[114.00642,22.31351],[114.00641,22.31349],[114.00641,22.31346],[114.0064,22.31343],[114.00639,22.3134],[114.00639,22.31337],[114.00638,22.31335],[114.00638,22.31332],[114.00637,22.31327],[114.00636,22.31322],[114.00636,22.31321],[114.00636,22.31318],[114.00636,22.31313],[114.00636,22.31307],[114.00636,22.31302],[114.00637,22.3129],[114.00638,22.3128],[114.00638,22.31278],[114.00638,22.31275],[114.00639,22.31271],[114.00639,22.31268],[114.0064,22.31263],[114.00641,22.31258],[114.00642,22.31256],[114.00642,22.31253],[114.00643,22.3125],[114.00644,22.31245],[114.00646,22.31236],[114.00647,22.31233],[114.00647,22.3123],[114.00649,22.31226],[114.00649,22.31223],[114.00651,22.3122],[114.00651,22.31219],[114.00652,22.31217],[114.00653,22.31213],[114.00655,22.31208],[114.00656,22.31204],[114.00657,22.31202],[114.00658,22.31199],[114.00659,22.31197],[114.0066,22.31194],[114.00661,22.31192],[114.00662,22.31188],[114.00662,22.31186],[114.00663,22.31184],[114.00664,22.31181],[114.00665,22.31178],[114.00666,22.31175],[114.00667,22.31172],[114.00668,22.31169],[114.00686,22.31112],[114.00687,22.31109],[114.00688,22.31105],[114.00689,22.31102],[114.0069,22.31098],[114.00691,22.31095],[114.00692,22.31092],[114.00692,22.31091],[114.00692,22.3109],[114.00693,22.31088],[114.00694,22.31086],[114.00694,22.31084],[114.00695,22.31082],[114.00695,22.3108],[114.00696,22.31078],[114.00696,22.31078],[114.00696,22.31078],[114.00696,22.31077],[114.00697,22.31076],[114.00697,22.31075],[114.00697,22.31074],[114.00697,22.31073],[114.00698,22.31072],[114.00698,22.31072],[114.00698,22.31071],[114.00698,22.3107],[114.00698,22.3107],[114.00698,22.31069],[114.00699,22.31068],[114.00699,22.31067],[114.00699,22.31066],[114.00699,22.31065],[114.00699,22.31064],[114.007,22.31063],[114.007,22.31061],[114.007,22.3106],[114.007,22.31059],[114.007,22.31058],[114.00701,22.31056],[114.00701,22.31055],[114.00701,22.31055],[114.00701,22.31054],[114.00701,22.31054],[114.00701,22.31054],[114.00701,22.31053],[114.00701,22.31053],[114.00701,22.31052],[114.00701,22.31052],[114.00701,22.31051],[114.00701,22.31051],[114.00701,22.3105],[114.00701,22.3105],[114.00702,22.31049],[114.00702,22.31049],[114.00702,22.31049],[114.00702,22.31048],[114.00702,22.31048],[114.00702,22.31047],[114.00702,22.31046],[114.00702,22.31046],[114.00702,22.31045],[114.00702,22.31045],[114.00702,22.31044],[114.00702,22.31044],[114.00702,22.31044],[114.00702,22.31043],[114.00702,22.31043],[114.00702,22.31042],[114.00702,22.31042],[114.00702,22.31041],[114.00702,22.31041],[114.00702,22.3104],[114.00702,22.3104],[114.00702,22.31039],[114.00702,22.31039],[114.00702,22.31038],[114.00702,22.31037],[114.00702,22.31036],[114.00702,22.31035],[114.00702,22.31034],[114.00702,22.31032],[114.00702,22.31031],[114.00702,22.3103],[114.00702,22.31028],[114.00702,22.31027],[114.00702,22.31026],[114.00702,22.31025],[114.00702,22.31024],[114.00702,22.31022],[114.00702,22.31021],[114.00702,22.3102],[114.00702,22.31018],[114.00702,22.31016],[114.00702,22.31014],[114.00702,22.31013],[114.00702,22.31011],[114.00702,22.31009],[114.00702,22.31007],[114.00701,22.31005],[114.00701,22.31003],[114.00701,22.31001],[114.00701,22.30999],[114.00701,22.30997],[114.00701,22.30995],[114.00701,22.30993],[114.007,22.30992],[114.007,22.30991],[114.007,22.30988],[114.007,22.30987],[114.007,22.30986],[114.007,22.30984],[114.007,22.30983],[114.00699,22.30981],[114.00699,22.30979],[114.00699,22.30978],[114.00699,22.30976],[114.00699,22.30975],[114.00699,22.30974],[114.00699,22.30972],[114.00699,22.30971],[114.00698,22.30969],[114.00698,22.30968],[114.00698,22.30966],[114.00698,22.30965],[114.00698,22.30963],[114.00698,22.30962],[114.00698,22.3096],[114.00697,22.30958],[114.00697,22.30956],[114.00697,22.30955],[114.00697,22.30953],[114.00697,22.30951],[114.00697,22.3095],[114.00697,22.30948],[114.00696,22.30946],[114.00696,22.30945],[114.00696,22.30943],[114.00696,22.30942],[114.00696,22.3094],[114.00696,22.30939],[114.00696,22.30938],[114.00696,22.30937],[114.00695,22.30936],[114.00695,22.30934],[114.00695,22.30933],[114.00695,22.30932],[114.00695,22.30931],[114.00695,22.3093],[114.00695,22.30929],[114.00695,22.30928],[114.00694,22.30927],[114.00694,22.30926],[114.00694,22.30925],[114.00694,22.30924],[114.00694,22.30923],[114.00694,22.30922],[114.00694,22.30922],[114.00694,22.30921],[114.00694,22.3092],[114.00694,22.30919],[114.00694,22.30919],[114.00693,22.30918],[114.00693,22.30918],[114.00693,22.30917],[114.00693,22.30917],[114.00693,22.30916],[114.00693,22.30916],[114.00693,22.30915],[114.00693,22.30915],[114.00693,22.30914],[114.00693,22.30914],[114.00693,22.30914],[114.00693,22.30913],[114.00693,22.30913],[114.00693,22.30912],[114.00693,22.30912],[114.00692,22.3091],[114.00692,22.30909],[114.00692,22.30908],[114.00692,22.30907],[114.00691,22.30906],[114.00691,22.30905],[114.00691,22.30903],[114.00691,22.30902],[114.00691,22.30902],[114.00691,22.30901],[114.0069,22.309],[114.0069,22.309],[114.0069,22.30899],[114.0069,22.30899],[114.0069,22.30898],[114.0069,22.30897],[114.00689,22.30895],[114.00689,22.30894],[114.00689,22.30893],[114.00689,22.30893],[114.00688,22.30892],[114.00687,22.30889],[114.00686,22.30885],[114.00685,22.30883],[114.00684,22.3088],[114.00682,22.30876],[114.00679,22.30869],[114.00674,22.30861],[114.00668,22.30853],[114.00665,22.30849],[114.00664,22.30848],[114.00662,22.30845],[114.00657,22.30839],[114.00653,22.30835],[114.00649,22.30831],[114.00647,22.30829],[114.0064,22.30822],[114.00631,22.30814],[114.00629,22.30812],[114.00625,22.30808],[114.00609,22.30796],[114.00595,22.30784],[114.00587,22.30778],[114.00583,22.30774],[114.00579,22.30771],[114.00572,22.30763],[114.00569,22.3076],[114.00566,22.30757],[114.00561,22.30749],[114.00556,22.30743],[114.00556,22.30742],[114.00551,22.30735],[114.00546,22.30727],[114.00538,22.30714],[114.00533,22.30704],[114.00529,22.30695],[114.0052,22.30678],[114.00517,22.30672],[114.00515,22.30668],[114.00513,22.30665],[114.00511,22.30663],[114.00506,22.30655],[114.00502,22.30649],[114.00496,22.30642],[114.0049,22.30635],[114.00484,22.30629],[114.00482,22.30627],[114.00478,22.30623],[114.00473,22.30619],[114.00468,22.30615],[114.00461,22.30609],[114.00461,22.30608],[114.0046,22.30607],[114.00458,22.30606],[114.00457,22.30605],[114.00457,22.30605],[114.00456,22.30604],[114.00454,22.30603],[114.00453,22.30602],[114.00452,22.30601],[114.00451,22.306],[114.0045,22.30599],[114.00449,22.30598],[114.00447,22.30597],[114.00446,22.30596],[114.00446,22.30596],[114.00444,22.30595],[114.00443,22.30594],[114.00442,22.30593],[114.00441,22.30592],[114.0044,22.30591],[114.00439,22.3059],[114.00437,22.30589],[114.00437,22.30589],[114.00436,22.30588],[114.00434,22.30587],[114.00433,22.30586],[114.00432,22.30585],[114.00431,22.30584],[114.00429,22.30583],[114.00428,22.30582],[114.00428,22.30582],[114.00426,22.30581],[114.00425,22.3058],[114.00424,22.30579],[114.00423,22.30578],[114.00422,22.30578],[114.00421,22.30577],[114.0042,22.30576],[114.00418,22.30576],[114.00418,22.30575],[114.00416,22.30574],[114.00415,22.30573],[114.00414,22.30573],[114.00413,22.30572],[114.00412,22.30571],[114.00411,22.30571],[114.00409,22.3057],[114.00408,22.30569],[114.00407,22.30568],[114.00405,22.30567],[114.00404,22.30566],[114.00403,22.30566],[114.00402,22.30565],[114.004,22.30564],[114.004,22.30564],[114.00399,22.30563],[114.00397,22.30562],[114.00396,22.30561],[114.00395,22.30561],[114.00394,22.3056],[114.00393,22.30559],[114.00392,22.30558],[114.00391,22.30558],[114.0039,22.30557],[114.00389,22.30556],[114.00388,22.30555],[114.00387,22.30555],[114.00386,22.30554],[114.00385,22.30553],[114.00384,22.30553],[114.00383,22.30552],[114.00382,22.30551],[114.00381,22.3055],[114.00381,22.3055],[114.00379,22.30549],[114.00378,22.30548],[114.00377,22.30547],[114.00376,22.30546],[114.00375,22.30546],[114.00374,22.30545],[114.00373,22.30544],[114.00372,22.30543],[114.00371,22.30543],[114.0037,22.30542],[114.00369,22.30541],[114.00368,22.3054],[114.00368,22.3054],[114.00367,22.30539],[114.00366,22.30539],[114.00366,22.30538],[114.00365,22.30538],[114.00365,22.30537],[114.00364,22.30537],[114.00363,22.30536],[114.00363,22.30536],[114.00362,22.30536],[114.00362,22.30535],[114.00361,22.30535],[114.0036,22.30534],[114.0036,22.30534],[114.00359,22.30533],[114.00359,22.30533],[114.00358,22.30532],[114.00357,22.30532],[114.00357,22.30531],[114.00356,22.30531],[114.00356,22.3053],[114.00355,22.3053],[114.00355,22.30529],[114.00354,22.30529],[114.00353,22.30528],[114.00353,22.30528],[114.00352,22.30527],[114.00352,22.30527],[114.00351,22.30526],[114.00351,22.30526],[114.0035,22.30525],[114.00349,22.30525],[114.00349,22.30524],[114.00348,22.30524],[114.00348,22.30523],[114.00347,22.30523],[114.00347,22.30522],[114.00346,22.30522],[114.00345,22.30521],[114.00345,22.30521],[114.00344,22.3052],[114.00344,22.3052],[114.00343,22.30519],[114.00343,22.30519],[114.00342,22.30518],[114.00342,22.30518],[114.00341,22.30517],[114.00341,22.30517],[114.0034,22.30516],[114.00339,22.30516],[114.00339,22.30515],[114.00338,22.30515],[114.00338,22.30514],[114.00337,22.30514],[114.00337,22.30513],[114.00336,22.30513],[114.00336,22.30512],[114.00335,22.30512],[114.00335,22.30511],[114.00334,22.30511],[114.00334,22.3051],[114.00333,22.30509],[114.00332,22.30508],[114.00331,22.30508],[114.0033,22.30507],[114.00329,22.30505],[114.00328,22.30504],[114.00328,22.30504],[114.00327,22.30503],[114.00326,22.30502],[114.00325,22.30501],[114.00325,22.30501],[114.00324,22.30499],[114.00323,22.30498],[114.00322,22.30498],[114.00321,22.30497],[114.00321,22.30496],[114.0032,22.30495],[114.00319,22.30494],[114.00318,22.30493],[114.00317,22.30492],[114.00316,22.30491],[114.00315,22.3049],[114.00314,22.30489],[114.00313,22.30488],[114.00313,22.30486],[114.00312,22.30485],[114.00311,22.30484],[114.0031,22.30483],[114.00309,22.30482],[114.00308,22.30481],[114.00307,22.30479],[114.00306,22.30478],[114.00305,22.30477],[114.00304,22.30476],[114.00304,22.30475],[114.00304,22.30475],[114.00303,22.30474],[114.00303,22.30473],[114.00302,22.30473],[114.00302,22.30472],[114.00302,22.30471],[114.00301,22.30471],[114.00301,22.3047],[114.00301,22.30469],[114.003,22.30469],[114.003,22.30468],[114.00299,22.30468],[114.00299,22.30467],[114.00299,22.30466],[114.00298,22.30466],[114.00298,22.30465],[114.00297,22.30465],[114.00297,22.30464],[114.00296,22.30463],[114.00296,22.30463],[114.00296,22.30462],[114.00295,22.30462],[114.00295,22.30461],[114.00294,22.3046],[114.00294,22.3046],[114.00293,22.30459],[114.00293,22.30459],[114.00292,22.30458],[114.00292,22.30457],[114.00291,22.30457],[114.00291,22.30456],[114.00291,22.30456],[114.0029,22.30455],[114.0029,22.30455],[114.00289,22.30454],[114.00289,22.30454],[114.00288,22.30453],[114.00288,22.30452],[114.00287,22.30452],[114.00286,22.30451],[114.00286,22.3045],[114.00285,22.3045],[114.00285,22.30449],[114.00284,22.30449],[114.00284,22.30448],[114.00283,22.30448],[114.00283,22.30447],[114.00282,22.30447],[114.00282,22.30446],[114.00281,22.30445],[114.00281,22.30445],[114.0028,22.30444],[114.0028,22.30444],[114.00279,22.30443],[114.00279,22.30443],[114.00278,22.30442],[114.00277,22.30442],[114.00277,22.30441],[114.00276,22.30441],[114.00276,22.30441],[114.00275,22.3044],[114.00274,22.3044],[114.00274,22.30439],[114.00273,22.30439],[114.00273,22.30438],[114.00272,22.30438],[114.00271,22.30437],[114.00271,22.30437],[114.0027,22.30437],[114.00269,22.30436],[114.00269,22.30436],[114.00268,22.30435],[114.00268,22.30435],[114.00267,22.30435],[114.00266,22.30434],[114.00266,22.30434],[114.00265,22.30434],[114.00264,22.30433],[114.00264,22.30433],[114.00263,22.30432],[114.00262,22.30432],[114.00261,22.30432],[114.00261,22.30431],[114.00259,22.30431],[114.00259,22.30431],[114.00258,22.3043],[114.00257,22.3043],[114.00257,22.3043],[114.00256,22.30429],[114.00255,22.30429],[114.00254,22.30429],[114.00254,22.30429],[114.00253,22.30428],[114.00252,22.30428],[114.00252,22.30428],[114.00251,22.30428],[114.0025,22.30427],[114.00249,22.30427],[114.00249,22.30427],[114.00248,22.30427],[114.00247,22.30426],[114.00247,22.30426],[114.00246,22.30426],[114.00245,22.30426],[114.00244,22.30425],[114.00244,22.30425],[114.00243,22.30425],[114.00242,22.30425],[114.00241,22.30424],[114.00241,22.30424],[114.0024,22.30424],[114.00239,22.30424],[114.00238,22.30424],[114.00238,22.30423],[114.00237,22.30423],[114.00236,22.30423],[114.00235,22.30423],[114.00235,22.30423],[114.00234,22.30422],[114.00233,22.30422],[114.00231,22.30421],[114.00229,22.30421],[114.00227,22.3042],[114.00225,22.30419],[114.00224,22.30419],[114.00222,22.30418],[114.00221,22.30418],[114.00219,22.30417],[114.00217,22.30417],[114.00216,22.30416],[114.00214,22.30415],[114.00212,22.30415],[114.00211,22.30414],[114.00208,22.30414],[114.00207,22.30413],[114.00205,22.30413],[114.00203,22.30412],[114.00201,22.30411],[114.002,22.30411],[114.00198,22.3041],[114.00197,22.3041],[114.00195,22.3041],[114.00193,22.30409],[114.00192,22.30408],[114.00191,22.30408],[114.00189,22.30407],[114.00189,22.30407],[114.00188,22.30407],[114.00187,22.30406],[114.00186,22.30406],[114.00184,22.30405],[114.00183,22.30405],[114.00182,22.30405],[114.00181,22.30404],[114.0018,22.30404],[114.00179,22.30403],[114.00178,22.30403],[114.00177,22.30402],[114.00176,22.30402],[114.00175,22.30401],[114.00174,22.30401],[114.00172,22.304],[114.00172,22.304],[114.0017,22.30399],[114.0017,22.30399],[114.00168,22.30398],[114.00168,22.30398],[114.00166,22.30397],[114.00165,22.30397],[114.00165,22.30397],[114.00163,22.30396],[114.00162,22.30395],[114.00161,22.30395],[114.0016,22.30394],[114.00159,22.30394],[114.00158,22.30393],[114.00158,22.30393],[114.00157,22.30392],[114.00156,22.30392],[114.00156,22.30392],[114.00155,22.30391],[114.00154,22.30391],[114.00154,22.3039],[114.00153,22.3039],[114.00153,22.30389],[114.00152,22.30389],[114.00151,22.30388],[114.00151,22.30388],[114.0015,22.30387],[114.0015,22.30387],[114.00149,22.30386],[114.00149,22.30386],[114.00148,22.30385],[114.00147,22.30385],[114.00147,22.30384],[114.00146,22.30384],[114.00146,22.30383],[114.00145,22.30383],[114.00145,22.30382],[114.00144,22.30382],[114.00144,22.30381],[114.00143,22.30381],[114.00143,22.3038],[114.00142,22.30379],[114.00142,22.30379],[114.00141,22.30378],[114.00141,22.30378],[114.0014,22.30377],[114.0014,22.30377],[114.0014,22.30376],[114.00139,22.30375],[114.00139,22.30375],[114.00138,22.30374],[114.00138,22.30374],[114.00137,22.30373],[114.00137,22.30372],[114.00137,22.30371],[114.00136,22.30371],[114.00136,22.3037],[114.00136,22.30369],[114.00135,22.30369],[114.00135,22.30368],[114.00135,22.30367],[114.00134,22.30367],[114.00134,22.30366],[114.00134,22.30365],[114.00134,22.30365],[114.00133,22.30364],[114.00133,22.30363],[114.00133,22.30363],[114.00132,22.30362],[114.00132,22.30361],[114.00132,22.30361],[114.00132,22.3036],[114.00131,22.30359],[114.00131,22.30359],[114.00131,22.30358],[114.00131,22.30357],[114.0013,22.30357],[114.0013,22.30356],[114.0013,22.30355],[114.0013,22.30355],[114.0013,22.30354],[114.00129,22.30353],[114.00129,22.30352],[114.00129,22.30352],[114.00129,22.30351],[114.00128,22.3035],[114.00128,22.3035],[114.00128,22.30349],[114.00128,22.30348],[114.00128,22.30348],[114.00128,22.30347],[114.00127,22.30346],[114.00127,22.30345],[114.00126,22.30343],[114.00126,22.30341],[114.00125,22.30339],[114.00124,22.30337],[114.00124,22.30336],[114.00123,22.30334],[114.00123,22.30332],[114.00122,22.30331],[114.00122,22.30329],[114.00121,22.30327],[114.0012,22.30325],[114.0012,22.30323],[114.00119,22.30321],[114.00118,22.30319],[114.00118,22.30318],[114.00118,22.30316],[114.00117,22.30314],[114.00116,22.30312],[114.00116,22.30311],[114.00115,22.30309],[114.00115,22.30307],[114.00114,22.30305],[114.00114,22.30304],[114.00114,22.30302],[114.00113,22.303],[114.00113,22.30299],[114.00113,22.30299],[114.00112,22.30298],[114.00112,22.30297],[114.00112,22.30297],[114.00112,22.30296],[114.00112,22.30295],[114.00111,22.30295],[114.00111,22.30294],[114.00111,22.30293],[114.00111,22.30292],[114.00111,22.30292],[114.0011,22.30291],[114.0011,22.3029],[114.0011,22.3029],[114.0011,22.30289],[114.00109,22.30288],[114.00109,22.30288],[114.00109,22.30287],[114.00109,22.30286],[114.00109,22.30286],[114.00108,22.30285],[114.00108,22.30284],[114.00108,22.30283],[114.00108,22.30283],[114.00107,22.30282],[114.00107,22.30281],[114.00107,22.30281],[114.00107,22.3028],[114.00106,22.30279],[114.00106,22.30279],[114.00106,22.30278],[114.00105,22.30277],[114.00105,22.30277],[114.00105,22.30276],[114.00105,22.30275],[114.00104,22.30275],[114.00104,22.30274],[114.00104,22.30273],[114.00103,22.30273],[114.00103,22.30272],[114.00103,22.30271],[114.00103,22.30271],[114.00102,22.3027],[114.00102,22.30269],[114.00101,22.30269],[114.00101,22.30268],[114.001,22.30267],[114.001,22.30267],[114.001,22.30266],[114.00099,22.30265],[114.00099,22.30265],[114.00098,22.30264],[114.00098,22.30264],[114.00097,22.30263],[114.00097,22.30262],[114.00097,22.30262],[114.00096,22.30261],[114.00096,22.30261],[114.00095,22.3026],[114.00095,22.3026],[114.00094,22.30259],[114.00094,22.30259],[114.00093,22.30258],[114.00093,22.30257],[114.00092,22.30257],[114.00091,22.30256],[114.00091,22.30256],[114.0009,22.30255],[114.0009,22.30255],[114.00085,22.30251],[114.00081,22.30248],[114.00077,22.30244],[114.00073,22.30241],[114.00072,22.3024],[114.00072,22.3024],[114.00071,22.30239],[114.00071,22.30239],[114.0007,22.30238],[114.00069,22.30238],[114.00069,22.30238],[114.00068,22.30237],[114.00068,22.30237],[114.00067,22.30236],[114.00067,22.30236],[114.00066,22.30235],[114.00065,22.30235],[114.00065,22.30234],[114.00064,22.30234],[114.00064,22.30233],[114.00063,22.30233],[114.00063,22.30232],[114.00062,22.30232],[114.00062,22.30231],[114.00061,22.3023],[114.00061,22.3023],[114.0006,22.30229],[114.00059,22.30229],[114.00059,22.30228],[114.00058,22.30228],[114.00058,22.30227],[114.00057,22.30227],[114.00057,22.30226],[114.00056,22.30226],[114.00056,22.30225],[114.00055,22.30225],[114.00055,22.30224],[114.00054,22.30223],[114.00054,22.30223],[114.00053,22.30222],[114.00053,22.30222],[114.00053,22.30221],[114.00052,22.30221],[114.00052,22.3022],[114.00051,22.30219],[114.00051,22.30219],[114.0005,22.30218],[114.0005,22.30218],[114.00049,22.30217],[114.00049,22.30216],[114.00049,22.30216],[114.00048,22.30215],[114.00048,22.30214],[114.00047,22.30214],[114.00047,22.30213],[114.00047,22.30213],[114.00046,22.30212],[114.00046,22.30211],[114.00046,22.30211],[114.00045,22.3021],[114.00045,22.30209],[114.00045,22.30209],[114.00044,22.30208],[114.00044,22.30207],[114.00043,22.30206],[114.00043,22.30206],[114.00043,22.30205],[114.00042,22.30204],[114.00042,22.30204],[114.00042,22.30203],[114.00041,22.30203],[114.00041,22.30202],[114.00041,22.30201],[114.0004,22.30201],[114.0004,22.302],[114.0004,22.30199],[114.00039,22.30199],[114.00039,22.30198],[114.00039,22.30197],[114.00038,22.30197],[114.00038,22.30196],[114.00038,22.30195],[114.00037,22.30195],[114.00037,22.30194],[114.00037,22.30193],[114.00036,22.30191],[114.00036,22.30191],[114.00035,22.3019],[114.00035,22.30189],[114.00035,22.30189],[114.00034,22.30188],[114.00034,22.30187],[114.00034,22.30187],[114.00033,22.30186],[114.00033,22.30185],[114.00033,22.30185],[114.00033,22.30184],[114.00032,22.30183],[114.00032,22.30183],[114.00032,22.30182],[114.00031,22.30181],[114.00031,22.30181],[114.00031,22.3018],[114.0003,22.3018],[114.0003,22.30179],[114.0003,22.30178],[114.00029,22.30178],[114.00029,22.30177],[114.00029,22.30176],[114.00028,22.30176],[114.00028,22.30175],[114.00028,22.30174],[114.00027,22.30174],[114.00027,22.30173],[114.00027,22.30172],[114.00026,22.30172],[114.00026,22.30171],[114.00025,22.3017],[114.00025,22.3017],[114.00025,22.30169],[114.00024,22.30169],[114.00024,22.30168],[114.00024,22.30167],[114.00023,22.30167],[114.00023,22.30166],[114.00023,22.30165],[114.00022,22.30164],[114.00022,22.30163],[114.00021,22.30163],[114.00021,22.30162],[114.00021,22.30162],[114.0002,22.30161],[114.0002,22.3016],[114.0002,22.3016],[114.00019,22.30159],[114.00019,22.30158],[114.00019,22.30158],[114.00018,22.30157],[114.00018,22.30156],[114.00017,22.30156],[114.00017,22.30155],[114.00017,22.30155],[114.00016,22.30154],[114.00016,22.30153],[114.00015,22.30153],[114.00015,22.30152],[114.00015,22.30152],[114.00014,22.30151],[114.00014,22.3015],[114.00013,22.3015],[114.00013,22.30149],[114.00012,22.30149],[114.00012,22.30148],[114.00011,22.30147],[114.00011,22.30147],[114.0001,22.30146],[114.0001,22.30146],[114.00009,22.30145],[114.00009,22.30145],[114.00008,22.30144],[114.00008,22.30143],[114.00007,22.30142],[114.00007,22.30142],[114.00006,22.30141],[114.00006,22.30141],[114.00005,22.3014],[114.00004,22.3014],[114.00004,22.30139],[114.00003,22.30139],[114.00003,22.30139],[114.00002,22.30138],[114.00001,22.30138],[114.00001,22.30137],[114.0,22.30137],[113.99999,22.30137],[113.99999,22.30136],[113.99998,22.30136],[113.99997,22.30135],[113.99997,22.30135],[113.99996,22.30135],[113.99995,22.30134],[113.99994,22.30134],[113.99994,22.30134],[113.99993,22.30133],[113.99992,22.30133],[113.99992,22.30133],[113.99991,22.30133],[113.9999,22.30132],[113.99989,22.30132],[113.99989,22.30132],[113.99988,22.30132],[113.99987,22.30131],[113.99986,22.30131],[113.99986,22.30131],[113.99985,22.30131],[113.99984,22.30131],[113.99983,22.3013],[113.99983,22.3013],[113.99982,22.3013],[113.99981,22.3013],[113.9998,22.3013],[113.99979,22.30129],[113.99978,22.30129],[113.99978,22.30129],[113.99977,22.30129],[113.99976,22.30128],[113.99975,22.30128],[113.99975,22.30128],[113.99974,22.30128],[113.99973,22.30128],[113.99972,22.30128],[113.99972,22.30127],[113.99971,22.30127],[113.9997,22.30127],[113.99969,22.30127],[113.99969,22.30127],[113.99968,22.30127],[113.99967,22.30126],[113.99966,22.30126],[113.99965,22.30126],[113.99964,22.30125],[113.99964,22.30125],[113.99963,22.30125],[113.99962,22.30124],[113.99962,22.30124],[113.99961,22.30124],[113.9996,22.30124],[113.99959,22.30123],[113.99959,22.30123],[113.99959,22.30123],[113.99958,22.30123],[113.99957,22.30122],[113.99957,22.30122],[113.99956,22.30122],[113.99955,22.30122],[113.99954,22.30121],[113.99954,22.30121],[113.99953,22.30121],[113.99952,22.3012],[113.99952,22.3012],[113.99951,22.3012],[113.9995,22.3012],[113.99949,22.30119],[113.99949,22.30119],[113.99948,22.30119],[113.99947,22.30119],[113.99946,22.30118],[113.99945,22.30118],[113.99945,22.30118],[113.99944,22.30117],[113.99943,22.30117],[113.99943,22.30117],[113.99942,22.30116],[113.99941,22.30116],[113.99941,22.30115],[113.99941,22.30114],[113.9994,22.30114],[113.9994,22.30113],[113.9994,22.30112],[113.99939,22.30112],[113.99939,22.30111],[113.99939,22.3011],[113.99939,22.30109],[113.99939,22.30109],[113.99939,22.30108],[113.99939,22.30107],[113.99939,22.30107],[113.99939,22.30106],[113.99939,22.30105],[113.99939,22.30104],[113.99939,22.30103],[113.99939,22.30103],[113.99939,22.30102],[113.9994,22.30101],[113.9994,22.30101],[113.9994,22.301],[113.9994,22.30099],[113.9994,22.30098],[113.99941,22.30098],[113.99941,22.30097],[113.99941,22.30096],[113.99941,22.30096],[113.99942,22.30095],[113.99942,22.30094],[113.99942,22.30094],[113.99943,22.30093],[113.99943,22.30092],[113.99943,22.30092],[113.99944,22.30091],[113.99944,22.3009],[113.99944,22.3009],[113.99945,22.30089],[113.99945,22.30088],[113.99945,22.30088],[113.99946,22.30087],[113.99946,22.30086],[113.99946,22.30086],[113.99947,22.30085],[113.99947,22.30084],[113.99948,22.30084],[113.99949,22.30081],[113.99953,22.30073],[113.99959,22.30063],[113.99985,22.30019],[114.00019,22.29962],[113.99998,22.29952],[113.9996,22.29935],[113.99959,22.29934],[113.99905,22.29912],[113.99872,22.29901],[113.9985,22.29894],[113.99838,22.2989],[113.99831,22.29888],[113.99824,22.29886],[113.99817,22.29885],[113.9981,22.29883],[113.99803,22.29882],[113.99797,22.2988],[113.99786,22.29879],[113.99783,22.29878],[113.9978,22.29878],[113.99777,22.29877],[113.99774,22.29877],[113.99771,22.29877],[113.99768,22.29877],[113.99765,22.29876],[113.99762,22.29876],[113.99758,22.29876],[113.99755,22.29876],[113.99752,22.29876],[113.99749,22.29876],[113.99694,22.29875],[113.99644,22.29876],[113.99655,22.29841],[113.99659,22.29829],[113.9966,22.29826],[113.99661,22.29823],[113.99661,22.29819],[113.99661,22.29816],[113.99662,22.29813],[113.99662,22.29809],[113.99661,22.29806],[113.9966,22.29802],[113.99659,22.29799],[113.99658,22.29795],[113.99657,22.2979],[113.99655,22.29785],[113.99653,22.2978],[113.99651,22.29775],[113.99647,22.29766],[113.99646,22.29765],[113.99646,22.29764],[113.99645,22.29763],[113.99645,22.29762],[113.99644,22.29762],[113.99643,22.29759],[113.99641,22.29751],[113.99639,22.29742],[113.99639,22.29741],[113.99639,22.2974],[113.99639,22.29739],[113.99638,22.29737],[113.99638,22.29736],[113.99638,22.29735],[113.99638,22.29734],[113.99638,22.29732],[113.99638,22.29731],[113.99638,22.29729],[113.99638,22.29727],[113.99638,22.29726],[113.99638,22.29723],[113.99638,22.29722],[113.99638,22.2972],[113.99638,22.29716],[113.9964,22.297],[113.99644,22.29669],[113.99648,22.2964],[113.99648,22.29639],[113.99648,22.29636],[113.99649,22.29631],[113.9965,22.29608],[113.99652,22.29581],[113.99654,22.29552],[113.99655,22.29542],[113.99655,22.29542],[113.99656,22.29525],[113.99657,22.29504],[113.99658,22.29503],[113.99658,22.29502],[113.99658,22.295],[113.99658,22.29497],[113.99658,22.29495],[113.99658,22.29493],[113.99658,22.29489],[113.99658,22.29486],[113.99658,22.29484],[113.99659,22.29481],[113.99659,22.2948],[113.99659,22.29478],[113.99659,22.29475],[113.99659,22.29474],[113.99659,22.29473],[113.99658,22.29471],[113.99658,22.29466],[113.99658,22.29463],[113.99658,22.29461],[113.99658,22.2946],[113.99658,22.29458],[113.99657,22.29455],[113.99657,22.29453],[113.99657,22.2945],[113.99657,22.29449],[113.99657,22.29447],[113.99656,22.29445],[113.99656,22.29443],[113.99655,22.2944],[113.99655,22.29438],[113.99654,22.29436],[113.99654,22.29433],[113.99653,22.29431],[113.99653,22.29428],[113.99652,22.29427],[113.99652,22.29426],[113.99652,22.29425],[113.99651,22.29423],[113.99651,22.29422],[113.99651,22.29421],[113.9965,22.2942],[113.9965,22.29419],[113.99649,22.29418],[113.99649,22.29417],[113.99648,22.29416],[113.99648,22.29414],[113.99648,22.29413],[113.99647,22.29412],[113.99646,22.29411],[113.99645,22.29407],[113.99643,22.29404],[113.99641,22.29401],[113.9964,22.29398],[113.99638,22.29394],[113.99637,22.29393],[113.99637,22.29392],[113.99636,22.29391],[113.99635,22.2939],[113.99635,22.29389],[113.99634,22.29388],[113.99633,22.29387],[113.99622,22.29372],[113.99609,22.29354],[113.99608,22.29353],[113.99607,22.29351],[113.99606,22.29349],[113.99605,22.29347],[113.99604,22.29345],[113.99604,22.29343],[113.99603,22.29341],[113.99602,22.29339],[113.99602,22.29338],[113.99601,22.29336],[113.996,22.29334],[113.996,22.29332],[113.99599,22.2933],[113.99599,22.29328],[113.99599,22.29326],[113.99598,22.29324],[113.99598,22.29322],[113.99597,22.29318],[113.99596,22.29312],[113.99595,22.29306],[113.99594,22.293],[113.99593,22.29294],[113.99592,22.29288],[113.9959,22.29282],[113.99589,22.29277],[113.99587,22.29271],[113.99585,22.29265],[113.99583,22.29259],[113.9958,22.2925],[113.99574,22.29236],[113.99574,22.29234],[113.99573,22.29232],[113.99572,22.2923],[113.99571,22.29228],[113.9957,22.29226],[113.99569,22.29225],[113.99567,22.29222],[113.99565,22.29218],[113.99563,22.29214],[113.99562,22.2921],[113.9956,22.29206],[113.99558,22.29202],[113.99556,22.29198],[113.99555,22.29194],[113.99553,22.2919],[113.99552,22.29186],[113.9955,22.2918],[113.99549,22.29178],[113.99548,22.29176],[113.99548,22.29174],[113.99547,22.29172],[113.99547,22.2917],[113.99546,22.29168],[113.99545,22.29166],[113.99545,22.29164],[113.99545,22.29162],[113.99544,22.29159],[113.99544,22.29157],[113.99543,22.29155],[113.99543,22.29153],[113.99543,22.29151],[113.99543,22.29149],[113.99543,22.29147],[113.99542,22.29144],[113.99542,22.29142],[113.99542,22.2914],[113.99542,22.29138],[113.99542,22.29136],[113.99542,22.29133],[113.99543,22.29126],[113.99543,22.2912],[113.99543,22.29113],[113.99544,22.29106],[113.99544,22.291],[113.99545,22.29093],[113.99546,22.29087],[113.99547,22.29078],[113.99547,22.29074],[113.99548,22.2907],[113.99549,22.29067],[113.99549,22.29063],[113.9955,22.29059],[113.99551,22.29055],[113.99552,22.29052],[113.99553,22.29048],[113.99554,22.29044],[113.99555,22.29041],[113.99559,22.29023],[113.9956,22.2902],[113.99562,22.29017],[113.99563,22.29015],[113.99564,22.29012],[113.99565,22.29009],[113.99567,22.29006],[113.99568,22.29003],[113.9957,22.29],[113.9957,22.29],[113.9957,22.29],[113.9957,22.28999],[113.9957,22.28999],[113.99571,22.28998],[113.99571,22.28998],[113.99571,22.28997],[113.99572,22.28996],[113.99572,22.28996],[113.99572,22.28995],[113.99573,22.28994],[113.99573,22.28993],[113.99574,22.28992],[113.99574,22.28991],[113.99574,22.28991],[113.99575,22.2899],[113.99575,22.2899],[113.99575,22.28989],[113.99576,22.28989],[113.99576,22.28988],[113.99576,22.28988],[113.99576,22.28987],[113.99577,22.28987],[113.99577,22.28986],[113.99577,22.28986],[113.99577,22.28986],[113.99578,22.28985],[113.99578,22.28984],[113.99578,22.28984],[113.99579,22.28983],[113.99579,22.28983],[113.99579,22.28982],[113.9958,22.28981],[113.9958,22.28981],[113.9958,22.2898],[113.9958,22.2898],[113.99581,22.28979],[113.99581,22.28979],[113.99582,22.28978],[113.99582,22.28977],[113.99582,22.28976],[113.99583,22.28976],[113.99583,22.28975],[113.99583,22.28974],[113.99584,22.28973],[113.99584,22.28973],[113.99584,22.28972],[113.99585,22.28971],[113.99585,22.28971],[113.99585,22.2897],[113.99586,22.2897],[113.99586,22.28969],[113.99586,22.28969],[113.99586,22.28968],[113.99587,22.28968],[113.99587,22.28967],[113.99588,22.28966],[113.99588,22.28965],[113.99588,22.28965],[113.99589,22.28964],[113.99589,22.28964],[113.99589,22.28963],[113.99589,22.28963],[113.9959,22.28962],[113.9959,22.28962],[113.9959,22.28961],[113.9959,22.28961],[113.99591,22.2896],[113.99591,22.2896],[113.99591,22.28959],[113.99592,22.28958],[113.99592,22.28958],[113.99593,22.28957],[113.99593,22.28956],[113.99593,22.28955],[113.99594,22.28955],[113.99594,22.28954],[113.99594,22.28954],[113.99594,22.28953],[113.99595,22.28952],[113.99595,22.28952],[113.99596,22.28951],[113.99596,22.28951],[113.99596,22.2895],[113.99597,22.2895],[113.99597,22.28949],[113.99597,22.28949],[113.99597,22.28948],[113.99598,22.28948],[113.99598,22.28947],[113.99598,22.28947],[113.99598,22.28946],[113.99599,22.28946],[113.99599,22.28945],[113.99599,22.28945],[113.99599,22.28944],[113.996,22.28944],[113.996,22.28943],[113.996,22.28943],[113.996,22.28942],[113.99601,22.28942],[113.99601,22.28941],[113.99601,22.2894],[113.99601,22.2894],[113.99602,22.28939],[113.99602,22.28939],[113.99602,22.28938],[113.99603,22.28937],[113.99603,22.28936],[113.99603,22.28936],[113.99603,22.28935],[113.99604,22.28934],[113.99604,22.28934],[113.99604,22.28933],[113.99605,22.28933],[113.99605,22.28932],[113.99605,22.28932],[113.99605,22.28931],[113.99605,22.28931],[113.99606,22.2893],[113.99606,22.2893],[113.99606,22.28929],[113.99607,22.28928],[113.99607,22.28927],[113.99607,22.28927],[113.99607,22.28926],[113.99608,22.28926],[113.99608,22.28925],[113.99608,22.28925],[113.99608,22.28924],[113.99608,22.28924],[113.99609,22.28923],[113.99609,22.28922],[113.99609,22.28922],[113.99609,22.28921],[113.99609,22.28921],[113.9961,22.2892],[113.9961,22.2892],[113.9961,22.28919],[113.9961,22.28919],[113.99611,22.28918],[113.99611,22.28918],[113.99611,22.28917],[113.99611,22.28917],[113.99611,22.28916],[113.99612,22.28916],[113.99612,22.28915],[113.99612,22.28915],[113.99612,22.28914],[113.99612,22.28914],[113.99613,22.28913],[113.99613,22.28912],[113.99613,22.28912],[113.99613,22.28911],[113.99613,22.28911],[113.99613,22.2891],[113.99614,22.2891],[113.99614,22.28909],[113.99614,22.28909],[113.99614,22.28908],[113.99614,22.28908],[113.99615,22.28907],[113.99615,22.28907],[113.99615,22.28906],[113.99615,22.28906],[113.99615,22.28905],[113.99615,22.28905],[113.99615,22.28904],[113.99616,22.28904],[113.99616,22.28903],[113.99616,22.28902],[113.99616,22.28902],[113.99616,22.28901],[113.99616,22.28901],[113.99616,22.289],[113.99617,22.28899],[113.99617,22.28898],[113.99617,22.28898],[113.99617,22.28897],[113.99617,22.28897],[113.99617,22.28896],[113.99617,22.28896],[113.99617,22.28895],[113.99618,22.28895],[113.99618,22.28894],[113.99618,22.28893],[113.99618,22.28893],[113.99618,22.28892],[113.99618,22.28892],[113.99618,22.28891],[113.99618,22.28891],[113.99618,22.2889],[113.99618,22.2889],[113.99619,22.28889],[113.99619,22.28889],[113.99619,22.28888],[113.99619,22.28887],[113.99619,22.28887],[113.99619,22.28886],[113.99619,22.28886],[113.99619,22.28885],[113.99619,22.28885],[113.99619,22.28884],[113.99619,22.28884],[113.99619,22.28883],[113.9962,22.28883],[113.9962,22.28882],[113.9962,22.28881],[113.9962,22.28881],[113.9962,22.2888],[113.9962,22.2888],[113.9962,22.28879],[113.9962,22.28879],[113.9962,22.28878],[113.9962,22.28878],[113.9962,22.28877],[113.9962,22.28877],[113.99621,22.28876],[113.99621,22.28875],[113.99621,22.28875],[113.99621,22.28874],[113.99621,22.28874],[113.99621,22.28874],[113.99621,22.28873],[113.99621,22.28873],[113.99621,22.28873],[113.99621,22.28872],[113.99621,22.28872],[113.99621,22.28871],[113.99621,22.28871],[113.99621,22.2887],[113.99621,22.28869],[113.99621,22.28869],[113.99621,22.28868],[113.99621,22.28868],[113.99621,22.28867],[113.99621,22.28867],[113.99621,22.28866],[113.99622,22.28866],[113.99622,22.28865],[113.99622,22.28865],[113.99622,22.28864],[113.99622,22.28863],[113.99622,22.28863],[113.99622,22.28862],[113.99622,22.28862],[113.99622,22.28861],[113.99624,22.28765],[113.99624,22.28765],[113.99624,22.28764],[113.99624,22.28764],[113.99624,22.28763],[113.99624,22.28763],[113.99624,22.28762],[113.99624,22.28762],[113.99624,22.28761],[113.99624,22.2876],[113.99624,22.2876],[113.99624,22.28759],[113.99624,22.28759],[113.99624,22.28758],[113.99624,22.28758],[113.99624,22.28757],[113.99624,22.28757],[113.99624,22.28756],[113.99624,22.28756],[113.99624,22.28755],[113.99624,22.28754],[113.99624,22.28754],[113.99624,22.28753],[113.99624,22.28753],[113.99624,22.28752],[113.99625,22.28752],[113.99625,22.28751],[113.99625,22.28751],[113.99625,22.2875],[113.99625,22.28749],[113.99625,22.28749],[113.99625,22.28748],[113.99625,22.28748],[113.99625,22.28747],[113.99625,22.28747],[113.99625,22.28746],[113.99625,22.28746],[113.99626,22.28745],[113.99626,22.28745],[113.99626,22.28744],[113.99626,22.28744],[113.99626,22.28743],[113.99626,22.28742],[113.99627,22.28742],[113.99627,22.28741],[113.99627,22.28741],[113.99627,22.2874],[113.99627,22.2874],[113.99627,22.28739],[113.99628,22.28739],[113.99628,22.28738],[113.99628,22.28738],[113.99628,22.28737],[113.99628,22.28737],[113.99629,22.28736],[113.99629,22.28736],[113.99629,22.28735],[113.99629,22.28735],[113.99629,22.28734],[113.9963,22.28734],[113.9963,22.28733],[113.9963,22.28732],[113.9963,22.28732],[113.99631,22.28731],[113.99631,22.28731],[113.99631,22.2873],[113.99631,22.2873],[113.99631,22.28729],[113.99632,22.28729],[113.99632,22.28728],[113.99632,22.28728],[113.99632,22.28727],[113.99632,22.28727],[113.99633,22.28726],[113.99633,22.28726],[113.99633,22.28725],[113.99633,22.28725],[113.99634,22.28724],[113.99634,22.28724],[113.99634,22.28723],[113.99634,22.28723],[113.99635,22.28722],[113.99635,22.2872],[113.99634,22.2872],[113.99632,22.28719],[113.99627,22.28716],[113.99624,22.28714],[113.99622,22.28712],[113.99619,22.2871],[113.99617,22.28709],[113.99616,22.28707],[113.99613,22.28706],[113.99609,22.28703],[113.99605,22.287],[113.99603,22.28699],[113.996,22.28693],[113.99598,22.28691],[113.99596,22.28689],[113.99594,22.28687],[113.99592,22.28686],[113.9959,22.28685],[113.99587,22.28684],[113.99583,22.28682],[113.9958,22.2868],[113.99577,22.28678],[113.99571,22.28674],[113.99565,22.28672],[113.99563,22.28671],[113.99562,22.28671],[113.99561,22.2867],[113.99559,22.28669],[113.99558,22.28667],[113.99556,22.28666],[113.99555,22.28665],[113.99552,22.28664],[113.99549,22.28662],[113.99547,22.28661],[113.99544,22.2866],[113.99542,22.2866],[113.99539,22.28659],[113.99536,22.28659],[113.99534,22.28659],[113.9953,22.28659],[113.99526,22.28659],[113.9952,22.28658],[113.99517,22.28658],[113.99514,22.28657],[113.99511,22.28656],[113.99509,22.28655],[113.99505,22.28653],[113.99503,22.28651],[113.99498,22.28649],[113.99496,22.28647],[113.99493,22.28646],[113.99491,22.28646],[113.99488,22.28645],[113.99485,22.28643],[113.99479,22.28641],[113.99476,22.2864],[113.99471,22.28637],[113.99469,22.28637],[113.99467,22.28636],[113.99463,22.28635],[113.99461,22.28634],[113.99459,22.28634],[113.99457,22.28633],[113.99453,22.28632],[113.99451,22.28631],[113.99448,22.2863],[113.99442,22.28628],[113.9944,22.28628],[113.99438,22.28628],[113.99435,22.28628],[113.99433,22.28628],[113.99429,22.28627],[113.99427,22.28626],[113.99426,22.28625],[113.99424,22.28624],[113.99422,22.28622],[113.9942,22.28621],[113.99418,22.2862],[113.99417,22.2862],[113.99412,22.28619],[113.9941,22.28618],[113.99408,22.28617],[113.99406,22.28616],[113.99405,22.28615],[113.99401,22.28613],[113.994,22.28611],[113.99398,22.2861],[113.99397,22.28609],[113.99395,22.28608],[113.99394,22.28608],[113.99388,22.28608],[113.99386,22.28608],[113.99384,22.28607],[113.99383,22.28607],[113.99381,22.28606],[113.99377,22.28605],[113.99373,22.28604],[113.99369,22.28603],[113.99365,22.28601],[113.99363,22.28601],[113.99361,22.28601],[113.9936,22.28602],[113.99358,22.28602],[113.99356,22.286],[113.99353,22.28598],[113.99351,22.28597],[113.99347,22.28595],[113.99344,22.28594],[113.99342,22.28593],[113.9934,22.28592],[113.99337,22.28591],[113.99335,22.2859],[113.99334,22.2859],[113.99332,22.2859],[113.99331,22.28589],[113.9933,22.28589],[113.99328,22.28588],[113.99326,22.28587],[113.99325,22.28586],[113.99322,22.28583],[113.99317,22.28579],[113.99314,22.28577],[113.9931,22.28574],[113.99309,22.28573],[113.99307,22.28571],[113.99305,22.2857],[113.99302,22.28568],[113.993,22.28566],[113.99298,22.28565],[113.99297,22.28564],[113.99296,22.28563],[113.99294,22.28563],[113.99292,22.28563],[113.9929,22.28562],[113.99288,22.2856],[113.99285,22.28559],[113.99283,22.28558],[113.99282,22.28557],[113.99281,22.28555],[113.99279,22.28552],[113.99279,22.28551],[113.99277,22.28549],[113.99276,22.28547],[113.99273,22.28545],[113.99271,22.28545],[113.99269,22.28544],[113.99267,22.28542],[113.99265,22.28542],[113.99263,22.28541],[113.99261,22.28541],[113.99256,22.2854],[113.99255,22.2854],[113.99254,22.28539],[113.99253,22.28539],[113.99251,22.28537],[113.99248,22.28536],[113.99246,22.28535],[113.99242,22.28534],[113.99238,22.28534],[113.99234,22.28534],[113.99233,22.28534],[113.99232,22.28534],[113.9923,22.28534],[113.99227,22.28534],[113.99226,22.28534],[113.99223,22.28533],[113.99219,22.28532],[113.99216,22.28531],[113.99214,22.28531],[113.9921,22.2853],[113.99208,22.28529],[113.99207,22.28529],[113.99206,22.28529],[113.99206,22.28528],[113.99205,22.28527],[113.99204,22.28526],[113.99203,22.28525],[113.99201,22.28521],[113.992,22.28519],[113.99198,22.28514],[113.99196,22.28511],[113.99195,22.2851],[113.99194,22.28509],[113.99193,22.28508],[113.99191,22.28507],[113.99189,22.28506],[113.99187,22.28505],[113.99186,22.28504],[113.99185,22.28504],[113.99183,22.28504],[113.99181,22.28503],[113.9918,22.28503],[113.99179,22.28502],[113.99179,22.28501],[113.99178,22.285],[113.99177,22.285],[113.99176,22.28497],[113.99175,22.28494],[113.99174,22.28492],[113.99173,22.28489],[113.99173,22.28488],[113.99172,22.28487],[113.99171,22.28485],[113.99171,22.28485],[113.99171,22.28484],[113.99171,22.28483],[113.99171,22.2848],[113.9917,22.28477],[113.9917,22.28476],[113.99169,22.28473],[113.99169,22.28472],[113.9917,22.28472],[113.9917,22.28472],[113.9917,22.28471],[113.9917,22.28471],[113.9917,22.28471],[113.9917,22.2847],[113.9917,22.28469],[113.99169,22.28467],[113.99168,22.28466],[113.99167,22.28465],[113.99167,22.28464],[113.99167,22.28463],[113.99166,22.28461],[113.99165,22.28458],[113.99159,22.28445],[113.99158,22.28444],[113.99158,22.28443],[113.99158,22.28442],[113.99158,22.28441],[113.99159,22.28439],[113.9916,22.28437],[113.99162,22.28433],[113.99163,22.28432],[113.99164,22.2843],[113.99166,22.28428],[113.99168,22.28427],[113.99169,22.28425],[113.99171,22.28422],[113.99172,22.28421],[113.99173,22.2842],[113.99175,22.28418],[113.99177,22.28417],[113.99179,22.28415],[113.99181,22.28414],[113.9919,22.28411],[113.99191,22.2841],[113.99195,22.28409],[113.99198,22.28408],[113.992,22.28408],[113.99203,22.28407],[113.99205,22.28407],[113.99206,22.28407],[113.99211,22.28406],[113.99213,22.28405],[113.99215,22.28405],[113.99216,22.28404],[113.99218,22.28403],[113.9922,22.28402],[113.99223,22.28401],[113.99297,22.28379],[113.99299,22.28379],[113.993,22.2838],[113.99301,22.2838],[113.99302,22.28382],[113.99303,22.28383],[113.99305,22.28382],[113.99306,22.28382],[113.99307,22.28382],[113.99308,22.28383],[113.99309,22.28385],[113.99313,22.28384],[113.99315,22.28385],[113.99318,22.28385],[113.99321,22.28386],[113.99324,22.28387],[113.99326,22.28387],[113.99328,22.28388],[113.9933,22.28389],[113.99333,22.28389],[113.99335,22.28389],[113.99336,22.28389],[113.99338,22.28388],[113.9934,22.28387],[113.99342,22.28386],[113.99345,22.28387],[113.99348,22.28386],[113.99351,22.28386],[113.99353,22.28385],[113.99355,22.28384],[113.99357,22.28383],[113.99359,22.28382],[113.99362,22.28381],[113.99365,22.2838],[113.99368,22.28379],[113.99373,22.28377],[113.99374,22.28377],[113.99379,22.28377],[113.99382,22.28376],[113.99385,22.28375],[113.99389,22.28373],[113.99391,22.28371],[113.99394,22.28369],[113.99397,22.28369],[113.994,22.28368],[113.99402,22.28369],[113.99403,22.2837],[113.99404,22.28371],[113.99405,22.28375],[113.99407,22.28376],[113.99408,22.28377],[113.99409,22.28377],[113.9941,22.28377],[113.99413,22.28377],[113.99416,22.28377],[113.99418,22.28377],[113.9942,22.28376],[113.99422,22.28376],[113.99423,22.28375],[113.99425,22.28374],[113.99426,22.28373],[113.99428,22.28372],[113.9943,22.2837],[113.99431,22.28369],[113.99431,22.28367],[113.99431,22.28365],[113.99432,22.28364],[113.99433,22.28364],[113.99607,22.2835],[113.99606,22.28348],[113.99606,22.28347],[113.99606,22.28346],[113.99606,22.28344],[113.99606,22.28344],[113.99606,22.28343],[113.99607,22.28341],[113.99608,22.28339],[113.99608,22.28339],[113.99608,22.28337],[113.99608,22.28335],[113.99607,22.28333],[113.99606,22.28331],[113.99601,22.28327],[113.99599,22.28325],[113.99599,22.28324],[113.99598,22.28324],[113.99597,22.28323],[113.99596,22.28321],[113.99596,22.2832],[113.99595,22.28319],[113.99594,22.28317],[113.99594,22.28317],[113.99593,22.28316],[113.99592,22.28315],[113.9959,22.28314],[113.99588,22.28313],[113.99586,22.28312],[113.99585,22.28312],[113.99584,22.28312],[113.99582,22.28312],[113.9958,22.28311],[113.9958,22.28311],[113.99579,22.2831],[113.99577,22.28309],[113.99576,22.28308],[113.99575,22.28307],[113.99574,22.28307],[113.99573,22.28306],[113.99571,22.28305],[113.9957,22.28305],[113.99568,22.28304],[113.99565,22.28303],[113.99563,22.28302],[113.99561,22.28302],[113.99558,22.28302],[113.99558,22.28301],[113.99555,22.28301],[113.99553,22.28301],[113.99551,22.283],[113.99549,22.28299],[113.99548,22.28299],[113.99547,22.28299],[113.99546,22.28298],[113.99545,22.28297],[113.99544,22.28296],[113.99542,22.28294],[113.99541,22.28292],[113.9954,22.2829],[113.9954,22.2829],[113.99539,22.28288],[113.99538,22.28286],[113.99538,22.28286],[113.99537,22.28283],[113.99536,22.2828],[113.99536,22.2828],[113.99535,22.28275],[113.99534,22.28272],[113.99534,22.28271],[113.99534,22.2827],[113.99534,22.28269],[113.99534,22.28268],[113.99534,22.28266],[113.99534,22.28263],[113.99534,22.28262],[113.99534,22.2826],[113.99534,22.28256],[113.99534,22.28253],[113.99534,22.28252],[113.99534,22.2825],[113.99534,22.28248],[113.99534,22.28247],[113.99533,22.28245],[113.99533,22.28244],[113.99533,22.28243],[113.99532,22.28241],[113.99531,22.28241],[113.99531,22.2824],[113.9953,22.28239],[113.99529,22.28239],[113.99526,22.28237],[113.99525,22.28236],[113.99524,22.28235],[113.99523,22.28234],[113.9952,22.28233],[113.99519,22.28232],[113.99515,22.2823],[113.99515,22.28229],[113.99514,22.28229],[113.99513,22.28227],[113.99512,22.28226],[113.99511,22.28224],[113.99511,22.28222],[113.99511,22.28221],[113.9951,22.2822],[113.9951,22.28217],[113.9951,22.28214],[113.9951,22.28211],[113.99509,22.28209],[113.99509,22.28208],[113.99508,22.28204],[113.99508,22.28203],[113.99508,22.28203],[113.99507,22.28202],[113.99507,22.282],[113.99505,22.28198],[113.99505,22.28197],[113.99505,22.28195],[113.99504,22.28192],[113.99503,22.2819],[113.99503,22.28189],[113.99503,22.28188],[113.99503,22.28186],[113.99503,22.28185],[113.99502,22.28184],[113.99501,22.28183],[113.995,22.2818],[113.99499,22.28179],[113.99499,22.28176],[113.99499,22.28175],[113.99499,22.28173],[113.99499,22.28171],[113.99499,22.28171],[113.99499,22.28169],[113.99499,22.28169],[113.995,22.28166],[113.99501,22.28165],[113.99501,22.28164],[113.99502,22.28161],[113.99503,22.28159],[113.99505,22.28155],[113.99509,22.2815],[113.9951,22.28148],[113.99512,22.28145],[113.99514,22.28143],[113.99515,22.28141],[113.99515,22.2814],[113.99516,22.28138],[113.99515,22.28136],[113.99514,22.28135],[113.99513,22.28134],[113.99511,22.28132],[113.99509,22.28131],[113.995,22.28126],[113.99497,22.28124],[113.99495,22.28123],[113.99493,22.28122],[113.99491,22.2812],[113.99488,22.28119],[113.99486,22.28117],[113.99484,22.28116],[113.99483,22.28114],[113.99481,22.28112],[113.99478,22.2811],[113.99477,22.28108],[113.99476,22.28108],[113.99476,22.28106],[113.99475,22.28104],[113.99475,22.28103],[113.99474,22.28101],[113.99472,22.28098],[113.99472,22.28098],[113.99472,22.28096],[113.99471,22.28093],[113.9947,22.28091],[113.99469,22.28089],[113.99467,22.28088],[113.99466,22.28086],[113.99464,22.28083],[113.99462,22.2808],[113.99461,22.28078],[113.9946,22.28076],[113.99459,22.28074],[113.99458,22.28073],[113.99457,22.28072],[113.99454,22.2807],[113.99453,22.28069],[113.99451,22.28067],[113.9945,22.28066],[113.99449,22.28065],[113.99447,22.28064],[113.99446,22.28063],[113.99444,22.28061],[113.99442,22.2806],[113.9944,22.28058],[113.99438,22.28057],[113.99437,22.28054],[113.99436,22.28053],[113.99435,22.28052],[113.99436,22.28051],[113.99436,22.28049],[113.99437,22.28047],[113.99437,22.28044],[113.99437,22.28041],[113.99436,22.28037],[113.99436,22.28034],[113.99437,22.28032],[113.99437,22.28029],[113.99438,22.28025],[113.99438,22.28022],[113.99437,22.28019],[113.99437,22.28017],[113.99435,22.28015],[113.99434,22.28013],[113.99434,22.28012],[113.99434,22.2801],[113.99436,22.28006],[113.99436,22.28004],[113.99436,22.28001],[113.99437,22.27998],[113.99437,22.27996],[113.99438,22.27995],[113.99439,22.27993],[113.9944,22.2799],[113.99441,22.27987],[113.99442,22.27985],[113.99442,22.27983],[113.99442,22.2798],[113.99441,22.27978],[113.9944,22.27974],[113.99439,22.27971],[113.99439,22.27969],[113.99439,22.27967],[113.99439,22.27963],[113.99439,22.2796],[113.99439,22.27957],[113.99439,22.27952],[113.99439,22.2795],[113.9944,22.27949],[113.9944,22.27947],[113.99439,22.27945],[113.99439,22.27944],[113.99438,22.27943],[113.99437,22.27942],[113.99436,22.2794],[113.99434,22.27939],[113.99433,22.27937],[113.99432,22.27935],[113.9943,22.27933],[113.99429,22.27931],[113.99428,22.27929],[113.99427,22.27928],[113.99425,22.27926],[113.99424,22.27924],[113.99423,22.27922],[113.99422,22.2792],[113.9942,22.27918],[113.99419,22.27917],[113.99416,22.27914],[113.99412,22.27909],[113.99411,22.27907],[113.99411,22.27906],[113.9941,22.27905],[113.9941,22.27903],[113.9941,22.279],[113.99409,22.27898],[113.99409,22.27896],[113.99409,22.27895],[113.99409,22.27894],[113.99409,22.27893],[113.99408,22.27892],[113.99408,22.27891],[113.99408,22.2789],[113.99409,22.27889],[113.9941,22.27887],[113.99411,22.27886],[113.99413,22.27883],[113.99416,22.2788],[113.99418,22.27878],[113.9942,22.27877],[113.99423,22.27873],[113.99426,22.2787],[113.99428,22.27868],[113.99429,22.27867],[113.99431,22.27865],[113.99432,22.27863],[113.99433,22.27861],[113.99435,22.27857],[113.99436,22.27855],[113.99436,22.27853],[113.99437,22.27851],[113.99437,22.27848],[113.99436,22.27847],[113.99436,22.27845],[113.99436,22.27844],[113.99435,22.27842],[113.99433,22.27841],[113.99431,22.27839],[113.99429,22.27838],[113.99427,22.27837],[113.99426,22.27837],[113.99424,22.27835],[113.99422,22.27834],[113.9942,22.27833],[113.99418,22.27831],[113.99417,22.2783],[113.99415,22.27829],[113.99414,22.27828],[113.99413,22.27827],[113.99412,22.27826],[113.99411,22.27825],[113.99409,22.27823],[113.99407,22.27822],[113.99406,22.27822],[113.99405,22.27821],[113.99403,22.2782],[113.99401,22.27819],[113.994,22.27819],[113.99399,22.27818],[113.99396,22.27814],[113.99394,22.2781],[113.99393,22.27809],[113.99392,22.27807],[113.99392,22.27806],[113.99391,22.27803],[113.99389,22.27798],[113.99389,22.27797],[113.99388,22.27794],[113.99388,22.27791],[113.99388,22.27789],[113.99388,22.27787],[113.99387,22.27785],[113.99387,22.27783],[113.99387,22.27783],[113.99387,22.27782],[113.99386,22.2778],[113.99385,22.27778],[113.99385,22.27776],[113.99383,22.27772],[113.99381,22.27769],[113.99379,22.27765],[113.99377,22.2776],[113.99375,22.27756],[113.99374,22.27755],[113.99373,22.27754],[113.99371,22.27753],[113.99369,22.27752],[113.99368,22.27751],[113.99366,22.2775],[113.99365,22.27749],[113.99363,22.27749],[113.99361,22.27748],[113.9936,22.27747],[113.99359,22.27746],[113.99357,22.27743],[113.99356,22.27742],[113.99356,22.27741],[113.99355,22.2774],[113.99354,22.27737],[113.99354,22.27736],[113.99353,22.27734],[113.9935,22.27731],[113.9935,22.2773],[113.99349,22.27729],[113.99349,22.27728],[113.99349,22.27726],[113.99348,22.27725],[113.99347,22.27723],[113.99346,22.27721],[113.99345,22.27721],[113.99343,22.27719],[113.99342,22.27718],[113.9934,22.27717],[113.99338,22.27716],[113.99337,22.27715],[113.99336,22.27715],[113.99335,22.27714],[113.99334,22.27712],[113.99334,22.27711],[113.99332,22.27706],[113.99332,22.27705],[113.99331,22.27703],[113.9933,22.27702],[113.99329,22.277],[113.99328,22.27699],[113.99327,22.27698],[113.99327,22.27697],[113.99327,22.27696],[113.99326,22.27688],[113.99326,22.27686],[113.99326,22.27685],[113.99326,22.27683],[113.99325,22.27682],[113.99325,22.27681],[113.99324,22.2768],[113.99323,22.27678],[113.9932,22.27676],[113.99319,22.27675],[113.99318,22.27674],[113.99317,22.27672],[113.99316,22.27669],[113.99315,22.27667],[113.99315,22.27665],[113.99315,22.27663],[113.99315,22.27661],[113.99315,22.2766],[113.99316,22.27658],[113.99317,22.27657],[113.99318,22.27655],[113.9932,22.27653],[113.99324,22.2765],[113.99325,22.27649],[113.99326,22.27646],[113.99327,22.27645],[113.99327,22.27645],[113.99327,22.27644],[113.99327,22.27643],[113.99327,22.27643],[113.99326,22.27642],[113.99325,22.27641],[113.99324,22.2764],[113.99323,22.27638],[113.99322,22.27637],[113.99322,22.27635],[113.99321,22.27634],[113.99321,22.27632],[113.9932,22.2763],[113.99319,22.27627],[113.99319,22.27626],[113.99318,22.27624],[113.99274,22.27621],[113.99265,22.27696],[113.99262,22.27706],[113.99259,22.27715],[113.99257,22.27719],[113.99251,22.27724],[113.99243,22.27729],[113.99235,22.27732],[113.99225,22.27735],[113.99072,22.27736],[113.98967,22.27657],[113.98953,22.27667],[113.98952,22.27667],[113.98951,22.27664],[113.98946,22.27662],[113.9894,22.2766],[113.98935,22.27658],[113.98928,22.27657],[113.98922,22.27658],[113.98916,22.27658],[113.98913,22.27658],[113.98908,22.27655],[113.98906,22.27649],[113.98902,22.27646],[113.98898,22.27643],[113.98894,22.27642],[113.9889,22.2764],[113.98886,22.27638],[113.98882,22.27635],[113.98881,22.27629],[113.98881,22.27629],[113.98877,22.27629],[113.98872,22.27629],[113.98867,22.27633],[113.98866,22.27638],[113.98866,22.27645],[113.98864,22.2765],[113.98861,22.27656],[113.98857,22.27662],[113.98851,22.27663],[113.98847,22.27664],[113.98842,22.27663],[113.98831,22.27662],[113.98827,22.27661],[113.98821,22.27659],[113.98817,22.27658],[113.98813,22.27656],[113.9881,22.27654],[113.98807,22.27651],[113.98806,22.27648],[113.98805,22.27646],[113.988,22.27644],[113.98796,22.27643],[113.98791,22.27641],[113.98788,22.27639],[113.98784,22.27638],[113.98782,22.27633],[113.98781,22.27628],[113.9878,22.27624],[113.98779,22.27619],[113.98778,22.27613],[113.98777,22.27607],[113.98776,22.27603],[113.98775,22.27598],[113.98773,22.27596],[113.98769,22.27594],[113.98766,22.27592],[113.98762,22.27591],[113.98757,22.2759],[113.98753,22.27589],[113.98749,22.27586],[113.98744,22.27583],[113.9874,22.27581],[113.98736,22.2758],[113.98734,22.2758],[113.98732,22.27578],[113.98733,22.27575],[113.98734,22.2757],[113.98735,22.27563],[113.98734,22.27558],[113.98732,22.27554],[113.98727,22.27551],[113.98724,22.27549],[113.9872,22.27546],[113.98716,22.27545],[113.98709,22.27547],[113.98703,22.27549],[113.98699,22.27552],[113.98693,22.27551],[113.98688,22.27552],[113.98683,22.27551],[113.98676,22.27551],[113.98671,22.27549],[113.98667,22.27546],[113.98664,22.27543],[113.98663,22.27539],[113.98662,22.27534],[113.98661,22.27529],[113.9866,22.27525],[113.98656,22.2752],[113.98653,22.27517],[113.98649,22.27513],[113.98647,22.27506],[113.98646,22.275],[113.98645,22.27494],[113.98642,22.27489],[113.98642,22.27484],[113.9864,22.27481],[113.98637,22.27478],[113.98633,22.27476],[113.98626,22.27477],[113.98622,22.27477],[113.98619,22.27477],[113.98616,22.27474],[113.98615,22.27471],[113.98612,22.27466],[113.98611,22.27462],[113.98608,22.2746],[113.98606,22.27457],[113.98603,22.27457],[113.98599,22.27458],[113.98594,22.2746],[113.98591,22.27461],[113.98587,22.27462],[113.9858,22.27462],[113.98576,22.27461],[113.98568,22.27456],[113.98563,22.27451],[113.98556,22.27444],[113.9855,22.2744],[113.98542,22.27431],[113.98536,22.27427],[113.98533,22.27422],[113.9853,22.27419],[113.98527,22.27416],[113.98516,22.27413],[113.98508,22.27411],[113.98503,22.2741],[113.98499,22.27408],[113.98497,22.27403],[113.98498,22.27399],[113.98499,22.27395],[113.98501,22.27389],[113.98501,22.27386],[113.98501,22.2738],[113.98499,22.27375],[113.98497,22.2737],[113.9849,22.27362],[113.98486,22.27359],[113.98485,22.27358],[113.98484,22.27357],[113.98479,22.27354],[113.98477,22.27353],[113.98473,22.27352],[113.98468,22.2735],[113.98468,22.27349],[113.98465,22.27347],[113.98465,22.27344],[113.98466,22.27341],[113.98466,22.27341],[113.98469,22.27339],[113.98473,22.27338],[113.98478,22.27338],[113.98483,22.27339],[113.98488,22.27338],[113.98489,22.27338],[113.98494,22.27337],[113.98496,22.27337],[113.98496,22.27337],[113.98505,22.27336],[113.98513,22.27337],[113.98519,22.27339],[113.98521,22.2734],[113.98523,22.27341],[113.98528,22.27346],[113.98529,22.27346],[113.9853,22.27349],[113.98531,22.27353],[113.98532,22.27354],[113.98534,22.27358],[113.98539,22.27359],[113.98545,22.27358],[113.98546,22.27358],[113.98547,22.27358],[113.98556,22.27357],[113.98567,22.27357],[113.98613,22.27359],[113.98642,22.2736],[113.98657,22.27366],[113.9866,22.27368],[113.98685,22.27372],[113.98685,22.27372],[113.98707,22.27371],[113.98748,22.27366],[113.98737,22.27327],[113.98718,22.27292],[113.98716,22.27289],[113.98746,22.27288],[113.98764,22.27286],[113.98806,22.27293],[113.98869,22.27326],[113.9886,22.27314],[113.98858,22.27291],[113.98853,22.27238],[113.98851,22.27205],[113.98836,22.27193],[113.98818,22.27173],[113.98808,22.27159],[113.98807,22.27159],[113.98807,22.27155],[113.98806,22.27153],[113.98804,22.2715],[113.988,22.27147],[113.98782,22.27116],[113.98776,22.2711],[113.98774,22.27108],[113.98767,22.27111],[113.98761,22.27112],[113.98753,22.27112],[113.98747,22.27112],[113.98741,22.2711],[113.98738,22.27108],[113.98732,22.27105],[113.98726,22.27101],[113.98721,22.27096],[113.98717,22.2709],[113.98712,22.27084],[113.98709,22.27074],[113.98707,22.27066],[113.98704,22.27057],[113.98703,22.27049],[113.98704,22.27036],[113.98705,22.27025],[113.98707,22.27015],[113.98709,22.27004],[113.98709,22.27004],[113.98709,22.27003],[113.98709,22.27003],[113.98709,22.27002],[113.98709,22.27002],[113.98709,22.27001],[113.98709,22.27001],[113.9871,22.27001],[113.9871,22.27],[113.9871,22.27],[113.9871,22.26999],[113.9871,22.26999],[113.9871,22.26998],[113.9871,22.26998],[113.9871,22.26997],[113.9871,22.26997],[113.9871,22.26997],[113.9871,22.26996],[113.9871,22.26996],[113.9871,22.26994],[113.9871,22.26994],[113.9871,22.26992],[113.9871,22.26992],[113.9871,22.26991],[113.9871,22.26991],[113.9871,22.2699],[113.9871,22.2699],[113.9871,22.26989],[113.9871,22.26988],[113.9871,22.26987],[113.9871,22.26987],[113.9871,22.26986],[113.98709,22.26986],[113.98709,22.26985],[113.98709,22.26985],[113.98709,22.26984],[113.98709,22.26984],[113.98709,22.26983],[113.98709,22.26983],[113.98708,22.26983],[113.98708,22.26982],[113.98708,22.26982],[113.98708,22.26981],[113.98707,22.26981],[113.98707,22.26981],[113.98707,22.2698],[113.98706,22.2698],[113.98706,22.2698],[113.98706,22.2698],[113.98705,22.26979],[113.98705,22.26979],[113.98704,22.26979],[113.98704,22.26979],[113.98703,22.26978],[113.98703,22.26978],[113.98702,22.26978],[113.98702,22.26978],[113.98701,22.26978],[113.98701,22.26978],[113.987,22.26978],[113.987,22.26978],[113.98699,22.26979],[113.98699,22.26979],[113.98698,22.26979],[113.98697,22.26979],[113.98697,22.26979],[113.98696,22.26979],[113.98695,22.26979],[113.98694,22.26979],[113.98693,22.26979],[113.98692,22.26979],[113.98692,22.26979],[113.98691,22.2698],[113.9869,22.2698],[113.9869,22.2698],[113.9869,22.2698],[113.98689,22.2698],[113.98689,22.2698],[113.98688,22.2698],[113.98688,22.2698],[113.98687,22.2698],[113.98687,22.26981],[113.98686,22.26981],[113.98686,22.26981],[113.98685,22.26981],[113.98685,22.26981],[113.98684,22.26981],[113.98685,22.26981],[113.98685,22.2698],[113.98685,22.2698],[113.98685,22.2698],[113.98685,22.26979],[113.98685,22.26979],[113.98686,22.26978],[113.98686,22.26978],[113.98686,22.26977],[113.98686,22.26977],[113.98686,22.26977],[113.98686,22.26976],[113.98687,22.26976],[113.98687,22.26975],[113.98687,22.26975],[113.98687,22.26975],[113.98687,22.26974],[113.98688,22.26974],[113.98688,22.26973],[113.98688,22.26973],[113.98688,22.26972],[113.98688,22.26972],[113.98688,22.26972],[113.98689,22.26971],[113.98689,22.26971],[113.98689,22.2697],[113.98689,22.2697],[113.9869,22.2697],[113.9869,22.26969],[113.9869,22.26969],[113.9869,22.26968],[113.9869,22.26968],[113.98691,22.26968],[113.98691,22.26967],[113.98691,22.26967],[113.98692,22.26966],[113.98692,22.26966],[113.98692,22.26965],[113.98693,22.26964],[113.98693,22.26964],[113.98693,22.26964],[113.98693,22.26963],[113.98693,22.26963],[113.98694,22.26962],[113.98694,22.26962],[113.98694,22.26961],[113.98695,22.26961],[113.98695,22.2696],[113.98695,22.2696],[113.98696,22.26959],[113.98696,22.26959],[113.98696,22.26959],[113.98697,22.26958],[113.98697,22.26957],[113.98697,22.26957],[113.98697,22.26957],[113.98698,22.26956],[113.98698,22.26956],[113.98698,22.26956],[113.98699,22.26955],[113.98699,22.26955],[113.98699,22.26954],[113.98699,22.26954],[113.987,22.26954],[113.987,22.26953],[113.987,22.26953],[113.98701,22.26953],[113.98701,22.26952],[113.98701,22.26952],[113.98701,22.26951],[113.98702,22.26951],[113.98702,22.26951],[113.98702,22.2695],[113.98702,22.2695],[113.98703,22.2695],[113.98703,22.26949],[113.98703,22.26949],[113.98704,22.26948],[113.98704,22.26948],[113.98704,22.26948],[113.98704,22.26947],[113.98705,22.26947],[113.98705,22.26947],[113.98705,22.26946],[113.98705,22.26946],[113.98706,22.26945],[113.98706,22.26945],[113.98706,22.26944],[113.98707,22.26943],[113.98707,22.26943],[113.98707,22.26943],[113.98708,22.26942],[113.98708,22.26942],[113.98708,22.26941],[113.98708,22.26941],[113.98708,22.26941],[113.98709,22.2694],[113.98709,22.2694],[113.98709,22.26939],[113.98709,22.26939],[113.9871,22.26939],[113.9871,22.26938],[113.9871,22.26938],[113.9871,22.26937],[113.9871,22.26937],[113.98711,22.26937],[113.98711,22.26936],[113.98711,22.26936],[113.98711,22.26935],[113.98711,22.26935],[113.98712,22.26935],[113.98712,22.26934],[113.98712,22.26934],[113.98712,22.26933],[113.98713,22.26933],[113.98713,22.26933],[113.98713,22.26932],[113.98713,22.26932],[113.98713,22.26931],[113.98714,22.26931],[113.98714,22.26931],[113.98714,22.2693],[113.98714,22.2693],[113.98715,22.26929],[113.98715,22.26929],[113.98715,22.26929],[113.98715,22.26928],[113.98716,22.26927],[113.98716,22.26927],[113.98716,22.26926],[113.98716,22.26926],[113.98716,22.26926],[113.98717,22.26925],[113.98717,22.26925],[113.98717,22.26924],[113.98717,22.26924],[113.98717,22.26924],[113.98717,22.26923],[113.98718,22.26923],[113.98718,22.26922],[113.98718,22.26922],[113.98718,22.26921],[113.98718,22.26921],[113.98718,22.26921],[113.98719,22.2692],[113.98719,22.2692],[113.98719,22.26919],[113.98719,22.26919],[113.98719,22.26918],[113.98719,22.26918],[113.98719,22.26918],[113.9872,22.26917],[113.9872,22.26916],[113.9872,22.26916],[113.9872,22.26915],[113.9872,22.26915],[113.9872,22.26915],[113.9872,22.26914],[113.98721,22.26914],[113.98721,22.26913],[113.98721,22.26913],[113.98721,22.26912],[113.98721,22.26912],[113.98721,22.26911],[113.98721,22.26911],[113.98721,22.2691],[113.98722,22.2691],[113.98722,22.26909],[113.98722,22.26908],[113.98722,22.26908],[113.98722,22.26907],[113.98722,22.26907],[113.98722,22.26907],[113.98722,22.26906],[113.98722,22.26905],[113.98722,22.26904],[113.98723,22.26903],[113.98723,22.26902],[113.98723,22.26902],[113.98723,22.26901],[113.98723,22.26901],[113.98723,22.269],[113.98723,22.269],[113.98723,22.26899],[113.98723,22.26899],[113.98723,22.26898],[113.98723,22.26898],[113.98723,22.26898],[113.98723,22.26897],[113.98723,22.26897],[113.98723,22.26896],[113.98723,22.26895],[113.98723,22.26895],[113.98724,22.26894],[113.98724,22.26894],[113.98724,22.26894],[113.98724,22.26893],[113.98724,22.26893],[113.98724,22.26892],[113.98724,22.26892],[113.98725,22.26891],[113.98725,22.26891],[113.98725,22.26891],[113.98725,22.2689],[113.98725,22.2689],[113.98725,22.26889],[113.98726,22.26889],[113.98726,22.26888],[113.98726,22.26888],[113.98726,22.26888],[113.98726,22.26887],[113.98727,22.26887],[113.98727,22.26886],[113.98727,22.26886],[113.98727,22.26886],[113.98727,22.26885],[113.98727,22.26885],[113.98728,22.26884],[113.98728,22.26883],[113.98728,22.26883],[113.98728,22.26883],[113.98729,22.26882],[113.98729,22.26882],[113.98729,22.26881],[113.98729,22.26881],[113.98729,22.26881],[113.9873,22.2688],[113.9873,22.2688],[113.9873,22.26879],[113.9873,22.26879],[113.9873,22.26879],[113.98731,22.26878],[113.98731,22.26877],[113.98731,22.26877],[113.98732,22.26877],[113.98732,22.26876],[113.98732,22.26876],[113.98733,22.26875],[113.98733,22.26875],[113.98733,22.26875],[113.98733,22.26874],[113.98734,22.26874],[113.98734,22.26874],[113.98734,22.26873],[113.98735,22.26873],[113.98735,22.26873],[113.98735,22.26872],[113.98736,22.26872],[113.98736,22.26872],[113.98736,22.26871],[113.98737,22.26871],[113.98737,22.26871],[113.98737,22.2687],[113.98738,22.2687],[113.98738,22.2687],[113.98738,22.26869],[113.98739,22.26869],[113.98739,22.26869],[113.98739,22.26868],[113.9874,22.26868],[113.9874,22.26868],[113.9874,22.26868],[113.98741,22.26867],[113.98741,22.26867],[113.98742,22.26867],[113.98742,22.26866],[113.98742,22.26866],[113.98743,22.26866],[113.98743,22.26866],[113.98744,22.26865],[113.98744,22.26865],[113.98744,22.26865],[113.98745,22.26865],[113.98745,22.26864],[113.98746,22.26864],[113.98746,22.26864],[113.98746,22.26864],[113.98747,22.26863],[113.98747,22.26863],[113.98748,22.26863],[113.98748,22.26863],[113.98748,22.26862],[113.98749,22.26862],[113.98749,22.26862],[113.9875,22.26862],[113.98751,22.26861],[113.98751,22.26861],[113.98752,22.26861],[113.98752,22.26861],[113.98752,22.26861],[113.98753,22.2686],[113.98753,22.2686],[113.98754,22.2686],[113.98755,22.26859],[113.98755,22.26859],[113.98755,22.26859],[113.98756,22.26859],[113.98756,22.26859],[113.98757,22.26858],[113.98757,22.26858],[113.98757,22.26858],[113.98758,22.26858],[113.98758,22.26857],[113.98759,22.26857],[113.98759,22.26857],[113.98759,22.26856],[113.9876,22.26856],[113.9876,22.26856],[113.98761,22.26856],[113.98761,22.26855],[113.98761,22.26855],[113.98762,22.26855],[113.98762,22.26855],[113.98762,22.26854],[113.98763,22.26854],[113.98763,22.26854],[113.98763,22.26853],[113.98764,22.26853],[113.98764,22.26852],[113.98765,22.26852],[113.98765,22.26852],[113.98765,22.26851],[113.98766,22.26851],[113.98766,22.26851],[113.98766,22.2685],[113.98767,22.2685],[113.98767,22.2685],[113.98767,22.26849],[113.98768,22.26849],[113.98768,22.26849],[113.98768,22.26848],[113.98774,22.26835],[113.98755,22.26827],[113.98754,22.26827],[113.98753,22.26827],[113.98753,22.26828],[113.98752,22.26828],[113.98752,22.26828],[113.98751,22.26828],[113.9875,22.26828],[113.9875,22.26828],[113.98749,22.26828],[113.98749,22.26828],[113.98748,22.26828],[113.98748,22.26828],[113.98747,22.26828],[113.98747,22.26828],[113.98746,22.26828],[113.98746,22.26828],[113.98745,22.26828],[113.98745,22.26827],[113.98745,22.26827],[113.98744,22.26827],[113.98744,22.26826],[113.98744,22.26826],[113.98743,22.26826],[113.98743,22.26825],[113.98743,22.26825],[113.98742,22.26825],[113.98742,22.26824],[113.98742,22.26824],[113.98741,22.26824],[113.9874,22.26823],[113.98739,22.26823],[113.98739,22.26823],[113.98738,22.26823],[113.98738,22.26823],[113.98737,22.26823],[113.98737,22.26823],[113.98736,22.26823],[113.98736,22.26823],[113.98735,22.26823],[113.98732,22.26823],[113.98732,22.26823],[113.98731,22.26823],[113.98731,22.26823],[113.9873,22.26823],[113.98729,22.26823],[113.98729,22.26823],[113.98728,22.26823],[113.98728,22.26824],[113.98727,22.26824],[113.98727,22.26824],[113.98726,22.26824],[113.98725,22.26824],[113.98725,22.26824],[113.98724,22.26824],[113.98724,22.26824],[113.98723,22.26824],[113.98723,22.26824],[113.98722,22.26824],[113.98722,22.26824],[113.98721,22.26823],[113.98721,22.26823],[113.9872,22.26823],[113.9872,22.26823],[113.98719,22.26823],[113.98719,22.26823],[113.98718,22.26823],[113.98718,22.26822],[113.98717,22.26822],[113.98717,22.26822],[113.98716,22.26822],[113.98716,22.26822],[113.98716,22.26822],[113.98715,22.26822],[113.98715,22.26822],[113.98714,22.26822],[113.98714,22.26822],[113.98713,22.26822],[113.98713,22.26821],[113.98711,22.26821],[113.9871,22.26822],[113.9871,22.26822],[113.98709,22.26822],[113.98709,22.26822],[113.98709,22.26822],[113.98708,22.26823],[113.98708,22.26823],[113.98708,22.26823],[113.98707,22.26824],[113.98707,22.26824],[113.98707,22.26825],[113.98707,22.26825],[113.98706,22.26825],[113.98706,22.26826],[113.98706,22.26826],[113.98705,22.26827],[113.98705,22.26827],[113.98704,22.26828],[113.98704,22.26828],[113.98704,22.26828],[113.98703,22.26828],[113.98703,22.26829],[113.98703,22.26829],[113.98702,22.26829],[113.98702,22.2683],[113.98701,22.2683],[113.98701,22.2683],[113.98701,22.2683],[113.987,22.26831],[113.987,22.26831],[113.987,22.26831],[113.98699,22.26832],[113.98699,22.26832],[113.98698,22.26832],[113.98698,22.26832],[113.98698,22.26833],[113.98697,22.26833],[113.98697,22.26833],[113.98696,22.26833],[113.98696,22.26834],[113.98696,22.26834],[113.98695,22.26834],[113.98695,22.26834],[113.98694,22.26835],[113.98694,22.26835],[113.98693,22.26835],[113.98693,22.26835],[113.98693,22.26835],[113.98692,22.26835],[113.98692,22.26836],[113.98691,22.26836],[113.98691,22.26836],[113.9869,22.26836],[113.9869,22.26836],[113.98689,22.26836],[113.98689,22.26837],[113.98645,22.26841],[113.98644,22.26841],[113.98644,22.2684],[113.98643,22.2684],[113.98643,22.2684],[113.98643,22.2684],[113.98642,22.26839],[113.98642,22.26839],[113.98641,22.26839],[113.98641,22.26839],[113.98641,22.26838],[113.9864,22.26838],[113.9864,22.26838],[113.98639,22.26838],[113.98639,22.26837],[113.98639,22.26837],[113.98638,22.26837],[113.98638,22.26837],[113.98638,22.26836],[113.98637,22.26836],[113.98637,22.26836],[113.98636,22.26835],[113.98636,22.26835],[113.98635,22.26834],[113.98635,22.26834],[113.98634,22.26833],[113.98634,22.26833],[113.98634,22.26833],[113.98633,22.26832],[113.98633,22.26832],[113.98633,22.26832],[113.98632,22.26831],[113.98632,22.26831],[113.98632,22.26831],[113.98631,22.2683],[113.98631,22.2683],[113.9863,22.26829],[113.9863,22.26829],[113.9863,22.26829],[113.98629,22.26828],[113.98629,22.26828],[113.98629,22.26828],[113.98628,22.26827],[113.98628,22.26827],[113.98628,22.26827],[113.98627,22.26826],[113.98627,22.26826],[113.98627,22.26826],[113.98626,22.26825],[113.98626,22.26825],[113.98626,22.26825],[113.98626,22.26824],[113.98625,22.26824],[113.98625,22.26824],[113.98625,22.26823],[113.98624,22.26823],[113.98624,22.26823],[113.98624,22.26822],[113.98623,22.26822],[113.98623,22.26822],[113.98623,22.26821],[113.98623,22.26821],[113.98622,22.26821],[113.98622,22.2682],[113.98622,22.2682],[113.98621,22.26819],[113.98621,22.26819],[113.98621,22.26819],[113.98621,22.26818],[113.9862,22.26818],[113.9862,22.26818],[113.9862,22.26817],[113.9862,22.26817],[113.98619,22.26816],[113.98619,22.26816],[113.98619,22.26815],[113.98618,22.26815],[113.98618,22.26814],[113.98618,22.26814],[113.98617,22.26813],[113.98617,22.26813],[113.98617,22.26812],[113.98617,22.26812],[113.98617,22.26812],[113.98616,22.26811],[113.98616,22.26811],[113.98616,22.2681],[113.98616,22.2681],[113.98616,22.2681],[113.98615,22.26809],[113.98615,22.26809],[113.98615,22.26808],[113.98615,22.26808],[113.98615,22.26807],[113.98614,22.26807],[113.98614,22.26807],[113.98614,22.26806],[113.98614,22.26806],[113.98614,22.26805],[113.98614,22.26805],[113.98613,22.26805],[113.98613,22.26804],[113.98613,22.26804],[113.98613,22.26803],[113.98613,22.26803],[113.98612,22.26802],[113.98612,22.26802],[113.98612,22.26802],[113.98612,22.26801],[113.98612,22.26801],[113.98611,22.268],[113.98611,22.268],[113.98611,22.268],[113.98611,22.26799],[113.98611,22.26799],[113.9861,22.26798],[113.9861,22.26798],[113.9861,22.26797],[113.9861,22.26797],[113.9861,22.26797],[113.98609,22.26796],[113.98609,22.26796],[113.98609,22.26795],[113.98609,22.26795],[113.98609,22.26794],[113.98609,22.26794],[113.98609,22.26794],[113.98609,22.26793],[113.98609,22.26793],[113.98609,22.26792],[113.98609,22.26791],[113.98609,22.26791],[113.98609,22.2679],[113.98609,22.2679],[113.98609,22.2679],[113.98609,22.26789],[113.98609,22.26789],[113.98609,22.26788],[113.98609,22.26788],[113.98609,22.26787],[113.9861,22.26787],[113.9861,22.26786],[113.9861,22.26786],[113.9861,22.26786],[113.9861,22.26785],[113.9861,22.26785],[113.9861,22.26784],[113.9861,22.26784],[113.9861,22.26783],[113.9861,22.26783],[113.98611,22.26782],[113.98611,22.26781],[113.98611,22.26781],[113.98611,22.2678],[113.98611,22.2678],[113.98611,22.26779],[113.98611,22.26778],[113.98612,22.26778],[113.98612,22.26778],[113.98612,22.26777],[113.98612,22.26777],[113.98612,22.26776],[113.98612,22.26775],[113.98612,22.26775],[113.98612,22.26774],[113.98612,22.26774],[113.98612,22.26768],[113.98612,22.26768],[113.98612,22.26768],[113.98612,22.26767],[113.98612,22.26767],[113.98612,22.26766],[113.98612,22.26766],[113.98613,22.26765],[113.98613,22.26765],[113.98613,22.26765],[113.98613,22.26764],[113.98613,22.26764],[113.98613,22.26763],[113.98614,22.26763],[113.98614,22.26763],[113.98614,22.26762],[113.98614,22.26762],[113.98614,22.26761],[113.98615,22.26761],[113.98615,22.2676],[113.98615,22.2676],[113.98615,22.2676],[113.98616,22.26759],[113.98616,22.26759],[113.98616,22.26758],[113.98616,22.26758],[113.98617,22.26757],[113.98617,22.26757],[113.98617,22.26757],[113.98618,22.26757],[113.98618,22.26756],[113.98618,22.26756],[113.98619,22.26756],[113.98619,22.26756],[113.9862,22.26756],[113.9862,22.26756],[113.98621,22.26756],[113.98622,22.26756],[113.98622,22.26756],[113.98624,22.26756],[113.98624,22.26756],[113.98626,22.26756],[113.98667,22.26754],[113.98668,22.26754],[113.98668,22.26754],[113.98668,22.26753],[113.98669,22.26753],[113.98669,22.26753],[113.9867,22.26753],[113.9867,22.26753],[113.98671,22.26753],[113.98672,22.26753],[113.98673,22.26753],[113.98673,22.26735],[113.98666,22.26703],[113.98649,22.26675],[113.98641,22.26655],[113.98639,22.26638],[113.98639,22.26636],[113.98637,22.26625],[113.98637,22.26622],[113.98639,22.26619],[113.98639,22.26616],[113.98639,22.26612],[113.9864,22.26609],[113.98644,22.26603],[113.98648,22.26593],[113.9865,22.26591],[113.98654,22.26586],[113.98658,22.26583],[113.98663,22.2658],[113.98668,22.26577],[113.98673,22.26575],[113.98679,22.26574],[113.98684,22.26573],[113.98698,22.26572],[113.98708,22.26572],[113.9872,22.26573],[113.98732,22.26574],[113.98742,22.26576],[113.98743,22.26576],[113.98743,22.26576],[113.98744,22.26576],[113.98744,22.26576],[113.98745,22.26576],[113.98745,22.26576],[113.98746,22.26576],[113.98747,22.26576],[113.98747,22.26576],[113.98748,22.26576],[113.98749,22.26576],[113.98749,22.26576],[113.98749,22.26576],[113.9875,22.26576],[113.9875,22.26576],[113.98751,22.26576],[113.98752,22.26576],[113.98752,22.26576],[113.98753,22.26576],[113.98754,22.26577],[113.98755,22.26577],[113.98756,22.26577],[113.98756,22.26577],[113.98757,22.26577],[113.98758,22.26577],[113.98759,22.26577],[113.98759,22.26577],[113.9876,22.26577],[113.98761,22.26577],[113.98762,22.26578],[113.98762,22.26578],[113.98762,22.26578],[113.98763,22.26578],[113.98763,22.26578],[113.98764,22.26578],[113.98764,22.26578],[113.98765,22.26578],[113.98765,22.26578],[113.98766,22.26578],[113.98766,22.26578],[113.98767,22.26579],[113.98767,22.26579],[113.98768,22.26579],[113.98768,22.26579],[113.98769,22.26579],[113.9877,22.26579],[113.98771,22.26579],[113.98771,22.2658],[113.98772,22.2658],[113.98772,22.2658],[113.98773,22.2658],[113.98773,22.2658],[113.98774,22.2658],[113.98774,22.2658],[113.98775,22.2658],[113.98775,22.2658],[113.98777,22.26581],[113.98777,22.26581],[113.98778,22.26581],[113.98778,22.26581],[113.98779,22.26581],[113.98779,22.26581],[113.9878,22.26581],[113.9878,22.26581],[113.9878,22.26582],[113.98781,22.26582],[113.98781,22.26582],[113.98782,22.26582],[113.98782,22.26582],[113.98783,22.26582],[113.98783,22.26582],[113.98784,22.26583],[113.98784,22.26583],[113.98785,22.26583],[113.98785,22.26583],[113.98785,22.26583],[113.98786,22.26584],[113.98786,22.26584],[113.98787,22.26584],[113.98787,22.26584],[113.98788,22.26584],[113.98788,22.26585],[113.98788,22.26585],[113.98789,22.26585],[113.9879,22.26585],[113.9879,22.26586],[113.98791,22.26586],[113.98791,22.26586],[113.98792,22.26587],[113.98793,22.26587],[113.98793,22.26587],[113.98794,22.26587],[113.98794,22.26588],[113.98795,22.26588],[113.98795,22.26588],[113.98796,22.26589],[113.98797,22.26589],[113.98797,22.26589],[113.98797,22.2659],[113.98798,22.2659],[113.98798,22.2659],[113.98799,22.2659],[113.98799,22.26591],[113.988,22.26591],[113.988,22.26591],[113.98801,22.26591],[113.98801,22.26592],[113.98801,22.26592],[113.98802,22.26592],[113.98802,22.26592],[113.98803,22.26593],[113.98803,22.26593],[113.98803,22.26593],[113.98804,22.26593],[113.98804,22.26594],[113.98805,22.26594],[113.98805,22.26594],[113.98805,22.26595],[113.98806,22.26595],[113.98806,22.26595],[113.98806,22.26595],[113.98807,22.26596],[113.98807,22.26596],[113.98808,22.26596],[113.98808,22.26597],[113.98808,22.26597],[113.98809,22.26597],[113.98809,22.26598],[113.98809,22.26598],[113.9881,22.26598],[113.9881,22.26598],[113.9881,22.26599],[113.98811,22.26599],[113.98811,22.26599],[113.98812,22.266],[113.98812,22.266],[113.98812,22.266],[113.98813,22.266],[113.98813,22.26601],[113.98813,22.26601],[113.98814,22.26601],[113.98814,22.26602],[113.98815,22.26602],[113.98815,22.26602],[113.98815,22.26602],[113.98816,22.26603],[113.98816,22.26603],[113.98817,22.26603],[113.98817,22.26604],[113.98817,22.26604],[113.98818,22.26604],[113.98818,22.26604],[113.98818,22.26605],[113.98819,22.26605],[113.98819,22.26605],[113.9882,22.26605],[113.9882,22.26606],[113.9882,22.26606],[113.98821,22.26606],[113.98821,22.26607],[113.98821,22.26607],[113.98822,22.26607],[113.98822,22.26607],[113.98823,22.26608],[113.98823,22.26608],[113.98823,22.26608],[113.98824,22.26609],[113.98824,22.26609],[113.98825,22.26609],[113.98825,22.26609],[113.98825,22.2661],[113.98826,22.2661],[113.98826,22.2661],[113.98826,22.2661],[113.98827,22.26611],[113.98827,22.26611],[113.98828,22.26611],[113.98828,22.26612],[113.98828,22.26612],[113.98829,22.26612],[113.98829,22.26612],[113.9883,22.26613],[113.98841,22.2661],[113.98841,22.2661],[113.98841,22.2661],[113.98842,22.2661],[113.98842,22.2661],[113.98843,22.2661],[113.98844,22.2661],[113.98844,22.2661],[113.98845,22.2661],[113.98845,22.26609],[113.98846,22.26609],[113.98846,22.26609],[113.98847,22.26609],[113.98847,22.26609],[113.98848,22.26609],[113.98848,22.26609],[113.98849,22.26609],[113.98849,22.26609],[113.9885,22.26609],[113.9885,22.26609],[113.98851,22.26609],[113.98851,22.26609],[113.98851,22.26608],[113.98852,22.26608],[113.98852,22.26608],[113.98853,22.26608],[113.98853,22.26608],[113.98854,22.26608],[113.98855,22.26608],[113.98855,22.26608],[113.98856,22.26608],[113.98856,22.26608],[113.98857,22.26607],[113.98858,22.26607],[113.98858,22.26607],[113.98859,22.26607],[113.98859,22.26607],[113.9886,22.26607],[113.9886,22.26607],[113.98861,22.26607],[113.98861,22.26607],[113.98862,22.26607],[113.98862,22.26607],[113.98863,22.26606],[113.98863,22.26606],[113.98864,22.26606],[113.98864,22.26606],[113.98866,22.26606],[113.98866,22.26606],[113.98867,22.26606],[113.98867,22.26606],[113.98868,22.26607],[113.98869,22.26607],[113.9887,22.26607],[113.98871,22.26607],[113.98872,22.26607],[113.98873,22.26607],[113.98873,22.26607],[113.98874,22.26607],[113.98874,22.26607],[113.98875,22.26607],[113.98875,22.26607],[113.98876,22.26607],[113.98876,22.26608],[113.98876,22.26608],[113.98877,22.26608],[113.98877,22.26608],[113.98878,22.26608],[113.98878,22.26608],[113.98879,22.26608],[113.98879,22.26608],[113.9888,22.26608],[113.98881,22.26608],[113.98881,22.26608],[113.98882,22.26609],[113.98882,22.26609],[113.98883,22.26609],[113.98883,22.26609],[113.98884,22.26609],[113.98884,22.26609],[113.98885,22.26609],[113.98885,22.26609],[113.98887,22.26609],[113.98887,22.26609],[113.9889,22.26609],[113.9889,22.26609],[113.98893,22.26609],[113.98894,22.26609],[113.989,22.26609],[113.98901,22.26609],[113.98903,22.26609],[113.98904,22.26609],[113.98904,22.26609],[113.98905,22.26609],[113.98905,22.26609],[113.98906,22.26608],[113.98906,22.26608],[113.98907,22.26608],[113.98907,22.26608],[113.98908,22.26608],[113.98909,22.26608],[113.98909,22.26608],[113.9891,22.26608],[113.98911,22.26608],[113.98912,22.26608],[113.98913,22.26608],[113.98913,22.26608],[113.98914,22.26608],[113.98915,22.26608],[113.98916,22.26607],[113.98917,22.26607],[113.98918,22.26607],[113.98919,22.26607],[113.98919,22.26607],[113.9892,22.26607],[113.9892,22.26607],[113.98921,22.26607],[113.98921,22.26607],[113.98922,22.26607],[113.98922,22.26607],[113.98923,22.26607],[113.98923,22.26607],[113.98924,22.26607],[113.98924,22.26607],[113.98925,22.26607],[113.98925,22.26607],[113.98926,22.26607],[113.98927,22.26607],[113.98928,22.26607],[113.98928,22.26607],[113.98929,22.26607],[113.98929,22.26606],[113.9893,22.26606],[113.98931,22.26606],[113.98931,22.26606],[113.98932,22.26606],[113.98932,22.26606],[113.98933,22.26606],[113.98933,22.26606],[113.98933,22.26606],[113.98934,22.26606],[113.98934,22.26606],[113.98935,22.26606],[113.98935,22.26606],[113.98936,22.26606],[113.98936,22.26606],[113.98937,22.26606],[113.98937,22.26606],[113.98938,22.26606],[113.98938,22.26606],[113.98939,22.26606],[113.98939,22.26606],[113.9894,22.26606],[113.98941,22.26606],[113.98941,22.26606],[113.98942,22.26606],[113.98943,22.26606],[113.98944,22.26605],[113.98945,22.26605],[113.98945,22.26605],[113.98946,22.26605],[113.98947,22.26605],[113.98947,22.26605],[113.98948,22.26605],[113.98949,22.26605],[113.98949,22.26605],[113.9895,22.26605],[113.9895,22.26605],[113.98951,22.26605],[113.98951,22.26604],[113.98952,22.26604],[113.98952,22.26604],[113.98953,22.26604],[113.98953,22.26604],[113.98954,22.26604],[113.98955,22.26604],[113.98955,22.26604],[113.98956,22.26604],[113.98956,22.26604],[113.98957,22.26604],[113.98957,22.26604],[113.98958,22.26603],[113.98959,22.26603],[113.98959,22.26603],[113.9896,22.26603],[113.9896,22.26603],[113.98961,22.26603],[113.98961,22.26603],[113.98962,22.26603],[113.98962,22.26603],[113.98963,22.26603],[113.98963,22.26603],[113.98964,22.26602],[113.98964,22.26602],[113.98965,22.26602],[113.98965,22.26602],[113.98966,22.26602],[113.98966,22.26601],[113.98966,22.26601],[113.98967,22.26601],[113.98967,22.26601],[113.98968,22.266],[113.98968,22.266],[113.98968,22.266],[113.98969,22.266],[113.98969,22.26599],[113.9897,22.26599],[113.9897,22.26599],[113.9897,22.26598],[113.98971,22.26598],[113.98971,22.26598],[113.98971,22.26597],[113.98972,22.26597],[113.98972,22.26597],[113.98972,22.26597],[113.98973,22.26596],[113.98973,22.26596],[113.98973,22.26596],[113.98974,22.26595],[113.98974,22.26595],[113.98974,22.26595],[113.98975,22.26594],[113.98975,22.26594],[113.98975,22.26593],[113.98976,22.26593],[113.98976,22.26593],[113.98976,22.26592],[113.98976,22.26592],[113.98977,22.26592],[113.98977,22.26591],[113.98977,22.26591],[113.98977,22.2659],[113.98978,22.2659],[113.98978,22.26589],[113.98978,22.26589],[113.98979,22.26588],[113.98979,22.26588],[113.98979,22.26588],[113.98979,22.26587],[113.98979,22.26587],[113.9898,22.26586],[113.9898,22.26586],[113.9898,22.26586],[113.9898,22.26585],[113.9898,22.26585],[113.9898,22.26584],[113.9898,22.26584],[113.98981,22.26583],[113.98981,22.26583],[113.98981,22.26582],[113.98981,22.26582],[113.98981,22.26582],[113.98981,22.26581],[113.98981,22.26581],[113.98981,22.2658],[113.98981,22.2658],[113.98981,22.26579],[113.98982,22.26579],[113.98982,22.26579],[113.98982,22.26578],[113.98982,22.26578],[113.98982,22.26577],[113.98982,22.26577],[113.98982,22.26576],[113.98982,22.26576],[113.98982,22.26575],[113.98982,22.26575],[113.98982,22.2657],[113.9898,22.26564],[113.98977,22.26558],[113.98975,22.26555],[113.9897,22.26549],[113.98926,22.26512],[113.98921,22.26508],[113.98917,22.26505],[113.98913,22.26502],[113.98909,22.26497],[113.98905,22.26493],[113.98902,22.26488],[113.98899,22.26484],[113.98896,22.26479],[113.98894,22.26473],[113.98892,22.26469],[113.98891,22.26463],[113.98889,22.26453],[113.98889,22.26447],[113.9889,22.26438],[113.98891,22.26429],[113.98894,22.2642],[113.98898,22.26411],[113.98901,22.26406],[113.98905,22.264],[113.98909,22.26395],[113.98935,22.26362],[113.98928,22.26359],[113.98923,22.26356],[113.98905,22.26343],[113.98897,22.26335],[113.98891,22.26326],[113.98887,22.26316],[113.98886,22.26309],[113.98886,22.26303],[113.98885,22.26289],[113.98874,22.26274],[113.98866,22.26258],[113.98862,22.26246],[113.98851,22.26228],[113.98851,22.26225],[113.98854,22.26208],[113.98856,22.26197],[113.98854,22.26185],[113.98853,22.2617],[113.98853,22.26167],[113.98852,22.26162],[113.98849,22.26156],[113.98847,22.26152],[113.98845,22.26148],[113.98843,22.26147],[113.98839,22.26144],[113.98825,22.2614],[113.98822,22.26139],[113.98819,22.26137],[113.98818,22.26135],[113.98817,22.26134],[113.98817,22.2613],[113.98818,22.26127],[113.98822,22.26116],[113.98827,22.26107],[113.98828,22.261],[113.98828,22.26096],[113.98828,22.26092],[113.98823,22.26084],[113.98821,22.26082],[113.98814,22.26077],[113.9881,22.26073],[113.98806,22.26068],[113.98805,22.26065],[113.98805,22.26061],[113.98806,22.2605],[113.98808,22.26046],[113.9881,22.26039],[113.98812,22.26033],[113.98812,22.2603],[113.9881,22.26026],[113.98809,22.26024],[113.98805,22.26019],[113.988,22.26013],[113.98797,22.26009],[113.98794,22.26008],[113.98792,22.26007],[113.98778,22.26004],[113.98776,22.26003],[113.9877,22.25998],[113.98765,22.25994],[113.98757,22.25989],[113.98754,22.25986],[113.9875,22.25984],[113.98745,22.25981],[113.98743,22.25979],[113.98738,22.25975],[113.98737,22.25973],[113.98735,22.25969],[113.98735,22.25967],[113.98735,22.25964],[113.98735,22.25958],[113.98734,22.25954],[113.98733,22.25951],[113.98735,22.25941],[113.98736,22.25931],[113.98739,22.25923],[113.98743,22.25912],[113.98748,22.25905],[113.98751,22.25898],[113.9876,22.25882],[113.98764,22.25877],[113.98779,22.25865],[113.98781,22.25863],[113.98781,22.25861],[113.9878,22.25856],[113.9878,22.25854],[113.98782,22.25847],[113.98785,22.25833],[113.98786,22.25832],[113.98787,22.25831],[113.98787,22.25829],[113.98788,22.25827],[113.98789,22.25824],[113.98789,22.25822],[113.9879,22.2582],[113.98791,22.25816],[113.98791,22.25815],[113.98792,22.25813],[113.98792,22.25808],[113.98792,22.25808],[113.98792,22.25806],[113.98791,22.25802],[113.9879,22.25801],[113.9879,22.25799],[113.98789,22.25797],[113.98787,22.25795],[113.98786,22.25794],[113.98784,22.25792],[113.98783,22.25791],[113.98783,22.2579],[113.98782,22.25789],[113.98781,22.25788],[113.9878,22.25787],[113.98779,22.25785],[113.98778,22.25784],[113.98778,22.25782],[113.98778,22.25781],[113.98777,22.25778],[113.98777,22.25776],[113.98777,22.25775],[113.98778,22.25771],[113.98779,22.2577],[113.98779,22.25769],[113.98779,22.25768],[113.98778,22.25767],[113.98778,22.25765],[113.98778,22.25764],[113.98777,22.25764],[113.98776,22.2577],[113.98774,22.25776],[113.98773,22.25784],[113.9877,22.25794],[113.98768,22.25801],[113.98767,22.25807],[113.98764,22.25811],[113.9876,22.25816],[113.98756,22.2582],[113.9875,22.25828],[113.98746,22.25831],[113.98744,22.25828],[113.98742,22.25824],[113.9874,22.25818],[113.98739,22.25813],[113.98737,22.25809],[113.98731,22.25803],[113.98728,22.25799],[113.98726,22.25795],[113.98726,22.25791],[113.98725,22.25785],[113.98723,22.25782],[113.98721,22.25779],[113.98717,22.25775],[113.98712,22.25772],[113.98708,22.25771],[113.98703,22.25772],[113.98698,22.25774],[113.98695,22.25775],[113.98691,22.25777],[113.98687,22.25778],[113.98683,22.25778],[113.9868,22.25777],[113.98678,22.25773],[113.98676,22.25769],[113.98674,22.25764],[113.98671,22.2576],[113.98666,22.25758],[113.9866,22.2576],[113.98654,22.2576],[113.98649,22.25761],[113.98645,22.25762],[113.9864,22.25764],[113.98632,22.25767],[113.98627,22.25771],[113.98624,22.25773],[113.98617,22.25773],[113.98612,22.25774],[113.98607,22.25773],[113.98602,22.25774],[113.98601,22.25778],[113.98601,22.2578],[113.986,22.25785],[113.98599,22.25789],[113.986,22.25793],[113.98599,22.25796],[113.98595,22.25796],[113.98591,22.25795],[113.98589,22.25794],[113.98584,22.25794],[113.98583,22.25799],[113.98582,22.25804],[113.98584,22.25808],[113.98582,22.25813],[113.9858,22.25818],[113.98575,22.2582],[113.98571,22.2582],[113.98566,22.25819],[113.98562,22.25816],[113.98556,22.25816],[113.9855,22.25819],[113.98546,22.25822],[113.98543,22.25826],[113.98538,22.25828],[113.98532,22.25829],[113.98525,22.25829],[113.98519,22.25832],[113.98516,22.25835],[113.98514,22.25836],[113.98511,22.25839],[113.98506,22.25841],[113.98501,22.25841],[113.98497,22.25841],[113.98493,22.25841],[113.98489,22.25843],[113.98489,22.25848],[113.9849,22.25853],[113.98491,22.25859],[113.98492,22.25866],[113.98493,22.25871],[113.98493,22.25876],[113.9849,22.25881],[113.98488,22.25885],[113.98483,22.25887],[113.98478,22.25887],[113.98474,22.25887],[113.9847,22.25886],[113.98464,22.25885],[113.98458,22.25885],[113.9845,22.25887],[113.98444,22.25889],[113.98438,22.25891],[113.98431,22.25893],[113.98426,22.25895],[113.9842,22.25899],[113.98417,22.25903],[113.98413,22.25906],[113.98409,22.2591],[113.98407,22.25915],[113.98412,22.25916],[113.98417,22.25915],[113.98422,22.25912],[113.98428,22.2591],[113.98434,22.25909],[113.9844,22.25911],[113.98447,22.25913],[113.98452,22.25918],[113.98458,22.25923],[113.9846,22.2593],[113.98464,22.25933],[113.98469,22.25932],[113.98474,22.25933],[113.98481,22.25932],[113.98485,22.25933],[113.98489,22.25936],[113.98493,22.25942],[113.98495,22.2595],[113.98496,22.2595],[113.98262,22.26044],[113.97613,22.26308],[113.97585,22.26324],[113.97547,22.26345],[113.97474,22.26385],[113.97397,22.26428],[113.97134,22.26564],[113.97053,22.26606],[113.97044,22.2661],[113.96829,22.26312],[113.96649,22.26246],[113.9647,22.26178],[113.96361,22.26137],[113.96147,22.26057],[113.96094,22.26034],[113.96047,22.26016],[113.95915,22.25968],[113.95728,22.25892],[113.95548,22.25825],[113.95361,22.25753],[113.95334,22.25743],[113.95269,22.25719],[113.95259,22.2568],[113.95258,22.25677],[113.95255,22.25664],[113.95234,22.25579],[113.95223,22.25528],[113.95215,22.25503],[113.95209,22.25482],[113.95193,22.25419],[113.95166,22.25314],[113.95115,22.25285],[113.95096,22.25275],[113.95026,22.25234],[113.94902,22.25163],[113.94693,22.25043],[113.94638,22.25009],[113.94624,22.25],[113.94583,22.24975],[113.94557,22.24965],[113.94539,22.24958],[113.94514,22.24944],[113.94488,22.2493],[113.94376,22.24867],[113.94359,22.24857],[113.94308,22.24828],[113.94308,22.24827],[113.94307,22.24827],[113.94304,22.24825],[113.94237,22.24801],[113.94171,22.24777],[113.9406,22.24731],[113.93964,22.24696],[113.93866,22.24658],[113.93812,22.24635],[113.93777,22.2462],[113.93747,22.24607],[113.93718,22.24597],[113.93713,22.24595],[113.93662,22.24574],[113.93634,22.24562],[113.93584,22.24608],[113.9357,22.24626],[113.93554,22.24644],[113.93534,22.24658],[113.93443,22.24752],[113.93417,22.24779],[113.93386,22.24812],[113.93372,22.24827],[113.93327,22.24871],[113.93307,22.24873],[113.93201,22.24875],[113.92673,22.24885],[113.9261,22.24889],[113.92554,22.24886],[113.92428,22.24891],[113.92094,22.24899],[113.92018,22.24899],[113.91906,22.25048],[113.91836,22.25138],[113.91797,22.25179],[113.91781,22.25206],[113.91675,22.25343],[113.91609,22.25425],[113.91595,22.25442],[113.91522,22.25535],[113.91446,22.2563],[113.91346,22.25757],[113.9127,22.25859],[113.91212,22.26022],[113.91191,22.26077],[113.91181,22.26117],[113.91117,22.26291],[113.91107,22.26369],[113.91094,22.26456],[113.91077,22.26546],[113.91064,22.26626],[113.9105,22.26691],[113.91049,22.2672],[113.91052,22.26795],[113.9106,22.26859],[113.91089,22.26947],[113.91126,22.27007],[113.91149,22.27055],[113.91192,22.27116],[113.91255,22.27184],[113.914,22.27333],[113.91427,22.27355],[113.91435,22.27364],[113.91516,22.27449],[113.91556,22.27491],[113.91572,22.27512],[113.91616,22.27573],[113.91616,22.27574],[113.91614,22.27574],[113.91613,22.27574],[113.91613,22.27575],[113.91612,22.27575],[113.91612,22.27576],[113.91612,22.27578],[113.91613,22.2758],[113.91614,22.27582],[113.91615,22.27583],[113.91616,22.27584],[113.91616,22.27585],[113.91617,22.27586],[113.91618,22.27587],[113.91622,22.27591],[113.91623,22.27592],[113.91626,22.27596],[113.91628,22.27597],[113.91629,22.27598],[113.91631,22.27602],[113.91632,22.27604],[113.91633,22.27606],[113.91633,22.27608],[113.91632,22.27609],[113.91632,22.27611],[113.91632,22.27614],[113.91632,22.27615],[113.91632,22.27617],[113.91634,22.2762],[113.91636,22.27624],[113.91637,22.27627],[113.91638,22.27628],[113.91639,22.27631],[113.9164,22.27633],[113.91641,22.27634],[113.91644,22.27637],[113.91645,22.27638],[113.91646,22.27638],[113.91646,22.27639],[113.91645,22.2764],[113.91645,22.2764],[113.91644,22.27642],[113.91643,22.27644],[113.91643,22.27645],[113.91644,22.27646],[113.91645,22.27648],[113.91645,22.27649],[113.91647,22.2765],[113.91648,22.27651],[113.91649,22.27652],[113.9165,22.27652],[113.91652,22.27652],[113.91655,22.27652],[113.91658,22.27652],[113.91659,22.27652],[113.9166,22.27652],[113.9166,22.27652],[113.91661,22.27651],[113.91662,22.27652],[113.91661,22.27653],[113.91661,22.27654],[113.91661,22.27655],[113.91661,22.27656],[113.91662,22.27657],[113.91663,22.27658],[113.91664,22.27659],[113.91664,22.27659],[113.91664,22.2766],[113.91665,22.27661],[113.91665,22.27661],[113.91666,22.27662],[113.91667,22.27663],[113.91668,22.27663],[113.91669,22.27664],[113.91669,22.27664],[113.91671,22.27667],[113.91672,22.27669],[113.91673,22.2767],[113.91674,22.2767],[113.91675,22.27672],[113.91675,22.27673],[113.91676,22.27673],[113.91677,22.27674],[113.91678,22.27674],[113.91681,22.27674],[113.91683,22.27674],[113.91685,22.27675],[113.91687,22.27675],[113.91688,22.27675],[113.91689,22.27675],[113.91691,22.27675],[113.91692,22.27676],[113.91693,22.27676],[113.91694,22.27677],[113.91695,22.27677],[113.91695,22.27678],[113.91695,22.27679],[113.91696,22.2768],[113.91697,22.27682],[113.91698,22.27683],[113.917,22.27684],[113.91701,22.27685],[113.91701,22.27686],[113.91702,22.27687],[113.91702,22.27688],[113.91702,22.27689],[113.91702,22.2769],[113.91701,22.27693],[113.91701,22.27695],[113.917,22.27696],[113.91699,22.27697],[113.91699,22.27698],[113.91697,22.27699],[113.91697,22.27699],[113.91695,22.27701],[113.91693,22.27703],[113.91692,22.27705],[113.91691,22.27706],[113.9169,22.27707],[113.91689,22.27708],[113.91688,22.27708],[113.91687,22.27709],[113.91686,22.27709],[113.91685,22.27709],[113.91684,22.2771],[113.91682,22.2771],[113.91678,22.27713],[113.91677,22.27714],[113.91676,22.27715],[113.91676,22.27716],[113.91676,22.27717],[113.91675,22.27718],[113.91675,22.27719],[113.91673,22.2772],[113.91672,22.27721],[113.91671,22.27721],[113.9167,22.27722],[113.91669,22.27723],[113.91668,22.27724],[113.91667,22.27725],[113.91667,22.27726],[113.91666,22.27727],[113.91666,22.27728],[113.91665,22.27729],[113.91662,22.27731],[113.91662,22.27731],[113.91662,22.27732],[113.91662,22.27734],[113.91662,22.27735],[113.91663,22.27736],[113.91663,22.27736],[113.91664,22.27737],[113.91665,22.27737],[113.91666,22.27737],[113.91667,22.27737],[113.91668,22.27737],[113.91668,22.27738],[113.91669,22.27739],[113.91669,22.2774],[113.91669,22.27741],[113.91668,22.27742],[113.91668,22.27742],[113.91669,22.27743],[113.9167,22.27744],[113.91671,22.27745],[113.91673,22.27747],[113.91675,22.27749],[113.91676,22.27749],[113.91676,22.27751],[113.91676,22.27754],[113.91677,22.27756],[113.91677,22.27757],[113.91678,22.27759],[113.91679,22.2776],[113.9168,22.27761],[113.91682,22.27762],[113.91684,22.27764],[113.91686,22.27765],[113.91689,22.27767],[113.91691,22.27769],[113.91693,22.2777],[113.91696,22.27772],[113.91698,22.27774],[113.91701,22.27776],[113.91703,22.27777],[113.91704,22.27778],[113.91708,22.2778],[113.9171,22.27782],[113.91714,22.27784],[113.91716,22.27786],[113.91717,22.27787],[113.91718,22.27789],[113.91719,22.27791],[113.9172,22.27795],[113.9172,22.27797],[113.91721,22.27797],[113.91722,22.27798],[113.91726,22.278],[113.91731,22.27803],[113.91733,22.27804],[113.91736,22.27806],[113.91738,22.27807],[113.9174,22.27808],[113.91742,22.2781],[113.91749,22.27814],[113.91751,22.27815],[113.91752,22.27816],[113.91753,22.27817],[113.91754,22.27818],[113.91754,22.27819],[113.91755,22.2782],[113.91757,22.2782],[113.91761,22.27822],[113.91763,22.27822],[113.91765,22.27823],[113.91766,22.27823],[113.91767,22.27824],[113.91768,22.27825],[113.91769,22.27825],[113.91771,22.27825],[113.91772,22.27825],[113.91773,22.27825],[113.91774,22.27825],[113.91775,22.27825],[113.9178,22.27828],[113.91783,22.27829],[113.91785,22.27831],[113.91786,22.27832],[113.91787,22.27833],[113.91788,22.27834],[113.91789,22.27837],[113.91791,22.2784],[113.91793,22.27843],[113.91794,22.27846],[113.91795,22.27848],[113.91796,22.27849],[113.91797,22.2785],[113.91798,22.27852],[113.91799,22.27852],[113.91799,22.27853],[113.918,22.27854],[113.91802,22.27856],[113.91803,22.27859],[113.91804,22.27862],[113.91805,22.27864],[113.91807,22.27868],[113.91808,22.27871],[113.91809,22.27872],[113.9181,22.27874],[113.91811,22.27875],[113.91811,22.27877],[113.91812,22.27878],[113.91813,22.27879],[113.91816,22.27881],[113.91819,22.27885],[113.91821,22.27886],[113.91821,22.27888],[113.91821,22.2789],[113.91822,22.27892],[113.91822,22.27893],[113.91822,22.27895],[113.91823,22.27899],[113.91823,22.279],[113.91823,22.27901],[113.91824,22.27903],[113.91824,22.27904],[113.91825,22.27906],[113.91825,22.27906],[113.91825,22.27907],[113.91825,22.27908],[113.91825,22.2791],[113.91825,22.27912],[113.91826,22.27916],[113.91826,22.27919],[113.91827,22.27922],[113.91828,22.27924],[113.91829,22.27926],[113.9183,22.27929],[113.91831,22.2793],[113.91831,22.27932],[113.91832,22.27933],[113.91832,22.27934],[113.91833,22.27936],[113.91833,22.27936],[113.91833,22.27937],[113.91832,22.27939],[113.91832,22.2794],[113.91834,22.27946],[113.91835,22.27949],[113.91836,22.27952],[113.91836,22.27954],[113.91837,22.27956],[113.91838,22.27957],[113.91838,22.27958],[113.91839,22.27958],[113.91839,22.27959],[113.91842,22.27959],[113.91846,22.27961],[113.91847,22.27961],[113.9185,22.27963],[113.91852,22.27964],[113.91853,22.27965],[113.91855,22.27966],[113.91857,22.27968],[113.91858,22.27969],[113.9186,22.2797],[113.91861,22.27972],[113.91861,22.27973],[113.91861,22.27974],[113.91861,22.27975],[113.91861,22.27976],[113.91862,22.27977],[113.91862,22.27978],[113.91863,22.2798],[113.91864,22.27981],[113.91866,22.27982],[113.91871,22.27987],[113.91872,22.27987],[113.91874,22.27988],[113.91875,22.27989],[113.91876,22.27989],[113.91878,22.27989],[113.91879,22.27989],[113.91882,22.2799],[113.91886,22.2799],[113.91887,22.2799],[113.91888,22.2799],[113.91889,22.27991],[113.9189,22.27992],[113.91891,22.27993],[113.91891,22.27995],[113.91892,22.27999],[113.91892,22.28],[113.91892,22.28001],[113.91893,22.28003],[113.91893,22.28005],[113.91894,22.28008],[113.91895,22.28009],[113.91895,22.28011],[113.91897,22.28013],[113.91898,22.28014],[113.919,22.28016],[113.91901,22.28017],[113.91902,22.28018],[113.91905,22.2802],[113.91906,22.28022],[113.91909,22.28024],[113.9191,22.28025],[113.91911,22.28026],[113.91913,22.28028],[113.91916,22.28029],[113.91919,22.28031],[113.9192,22.28032],[113.91922,22.28033],[113.91924,22.28034],[113.91924,22.28035],[113.91925,22.28036],[113.91926,22.28037],[113.91927,22.28037],[113.91929,22.28038],[113.9193,22.28038],[113.91931,22.28038],[113.91932,22.28038],[113.91933,22.28039],[113.91934,22.28038],[113.91935,22.2804],[113.91935,22.28042],[113.91935,22.28043],[113.91935,22.28044],[113.91935,22.28045],[113.91936,22.28046],[113.91936,22.28047],[113.91937,22.28048],[113.91939,22.28052],[113.91941,22.28055],[113.91942,22.28056],[113.91943,22.28058],[113.91944,22.28059],[113.91945,22.2806],[113.91947,22.28063],[113.91948,22.28064],[113.91948,22.28065],[113.91949,22.28066],[113.9195,22.28067],[113.91953,22.28069],[113.91954,22.2807],[113.91956,22.28072],[113.91957,22.28072],[113.91958,22.28073],[113.9196,22.28074],[113.9196,22.28074],[113.9196,22.28074],[113.91961,22.28075],[113.91964,22.28077],[113.91966,22.28078],[113.91969,22.2808],[113.9197,22.2808],[113.91973,22.28081],[113.91973,22.28082],[113.91974,22.28082],[113.91976,22.28083],[113.91976,22.28084],[113.91977,22.28085],[113.91978,22.28086],[113.9198,22.28088],[113.91981,22.28089],[113.91982,22.28091],[113.91983,22.28091],[113.91983,22.28092],[113.91985,22.28093],[113.91986,22.28093],[113.91986,22.28094],[113.91987,22.28094],[113.91988,22.28095],[113.91989,22.28096],[113.91992,22.28098],[113.91992,22.28098],[113.91996,22.28101],[113.91998,22.28102],[113.91999,22.28103],[113.92,22.28103],[113.92001,22.28103],[113.92002,22.28103],[113.92002,22.28103],[113.92004,22.28104],[113.92005,22.28105],[113.92005,22.28105],[113.92008,22.28107],[113.92008,22.28108],[113.92009,22.28109],[113.9201,22.28109],[113.9201,22.2811],[113.92012,22.28112],[113.92014,22.28114],[113.92014,22.28115],[113.92015,22.28115],[113.92016,22.28117],[113.92018,22.2812],[113.92018,22.28121],[113.9202,22.28124],[113.92021,22.28125],[113.92022,22.28127],[113.92022,22.28127],[113.92023,22.28128],[113.92025,22.2813],[113.92026,22.2813],[113.92026,22.2813],[113.92028,22.28131],[113.92028,22.28131],[113.92029,22.28131],[113.9203,22.28132],[113.92031,22.28132],[113.92034,22.28133],[113.92035,22.28133],[113.92036,22.28134],[113.92037,22.28134],[113.92039,22.28136],[113.92042,22.28138],[113.92044,22.28139],[113.92044,22.28139],[113.92046,22.2814],[113.92047,22.28141],[113.92047,22.28141],[113.92049,22.28142],[113.9205,22.28142],[113.92052,22.28143],[113.92053,22.28144],[113.92055,22.28145],[113.92057,22.28146],[113.92058,22.28147],[113.92059,22.28148],[113.92059,22.28148],[113.9206,22.28149],[113.92061,22.2815],[113.92062,22.28151],[113.92064,22.28152],[113.92065,22.28153],[113.92066,22.28154],[113.92068,22.28155],[113.92069,22.28156],[113.92071,22.28156],[113.92072,22.28157],[113.92073,22.28157],[113.92075,22.28158],[113.92076,22.28158],[113.92077,22.28159],[113.92078,22.28159],[113.9208,22.2816],[113.92082,22.2816],[113.92083,22.2816],[113.92085,22.28161],[113.92086,22.28161],[113.92087,22.28161],[113.92089,22.28161],[113.92091,22.28161],[113.92097,22.28162],[113.92103,22.28163],[113.92109,22.28165],[113.92115,22.28166],[113.92121,22.28167],[113.92127,22.28169],[113.92133,22.2817],[113.92139,22.28172],[113.92145,22.28173],[113.92151,22.28175],[113.92157,22.28177],[113.92163,22.28179],[113.92171,22.28182],[113.92184,22.28188],[113.92196,22.28194],[113.92208,22.282],[113.9222,22.28206],[113.92233,22.28211],[113.92254,22.28219],[113.9226,22.28222],[113.92266,22.28226],[113.92272,22.28229],[113.92278,22.28233],[113.92284,22.28236],[113.92289,22.2824],[113.92295,22.28244],[113.92301,22.28248],[113.92307,22.28253],[113.92308,22.28253],[113.92309,22.28254],[113.92309,22.28255],[113.9231,22.28255],[113.92311,22.28255],[113.92313,22.28256],[113.92315,22.28256],[113.92317,22.28257],[113.92318,22.28257],[113.92319,22.28258],[113.92323,22.28259],[113.92325,22.2826],[113.92327,22.2826],[113.92329,22.28261],[113.92331,22.28261],[113.92335,22.28262],[113.92336,22.28263],[113.92338,22.28264],[113.92339,22.28264],[113.9234,22.28265],[113.92342,22.28266],[113.92344,22.28266],[113.92345,22.28266],[113.92346,22.28266],[113.92348,22.28267],[113.9235,22.28267],[113.92351,22.28267],[113.92352,22.28268],[113.92353,22.28268],[113.92353,22.28269],[113.92356,22.2827],[113.92357,22.28271],[113.92358,22.28271],[113.92359,22.28271],[113.9236,22.28272],[113.92361,22.28272],[113.92363,22.28273],[113.92367,22.28274],[113.92367,22.28274],[113.92368,22.28274],[113.9237,22.28274],[113.92371,22.28275],[113.92372,22.28275],[113.92374,22.28275],[113.92377,22.28276],[113.92378,22.28276],[113.92379,22.28277],[113.92381,22.28278],[113.92383,22.28279],[113.92385,22.2828],[113.92386,22.28281],[113.92388,22.28282],[113.92391,22.28284],[113.92392,22.28285],[113.92395,22.28286],[113.92395,22.28287],[113.92397,22.28288],[113.92398,22.28289],[113.92399,22.28289],[113.924,22.28291],[113.92401,22.28292],[113.92403,22.28293],[113.92404,22.28294],[113.92404,22.28295],[113.92407,22.28297],[113.92408,22.28297],[113.92409,22.28298],[113.9241,22.28299],[113.92411,22.283],[113.92412,22.283],[113.92412,22.28301],[113.92415,22.28302],[113.92415,22.28302],[113.92417,22.28303],[113.92418,22.28304],[113.92419,22.28304],[113.92419,22.28305],[113.9242,22.28305],[113.92422,22.28306],[113.92423,22.28306],[113.92424,22.28307],[113.92432,22.28311],[113.92433,22.28312],[113.92434,22.28312],[113.92435,22.28313],[113.92436,22.28314],[113.92437,22.28315],[113.92438,22.28316],[113.92438,22.28316],[113.92439,22.28317],[113.9244,22.28317],[113.92444,22.28319],[113.92445,22.2832],[113.92445,22.2832],[113.92447,22.2832],[113.92449,22.2832],[113.9245,22.28321],[113.92452,22.28321],[113.92454,22.28321],[113.92457,22.28321],[113.92458,22.28321],[113.92459,22.28321],[113.9246,22.28321],[113.92462,22.28321],[113.92464,22.28321],[113.92466,22.2832],[113.92468,22.2832],[113.92471,22.2832],[113.92473,22.28319],[113.92474,22.28319],[113.92475,22.28319],[113.92477,22.2832],[113.92479,22.2832],[113.9248,22.2832],[113.92482,22.2832],[113.92484,22.28319],[113.92485,22.28319],[113.92486,22.28319],[113.92487,22.28319],[113.92487,22.28319],[113.92488,22.2832],[113.92489,22.2832],[113.9249,22.2832],[113.92491,22.2832],[113.92492,22.28321],[113.92493,22.28321],[113.92494,22.28322],[113.92495,22.28322],[113.92496,22.28322],[113.925,22.28323],[113.92501,22.28324],[113.92502,22.28324],[113.92504,22.28324],[113.92508,22.28326],[113.9251,22.28326],[113.92513,22.28327],[113.92513,22.28327],[113.92514,22.28327],[113.92516,22.28329],[113.92518,22.28329],[113.92519,22.2833],[113.9252,22.28331],[113.92523,22.28333],[113.92524,22.28333],[113.92525,22.28334],[113.92526,22.28335],[113.92526,22.28335],[113.92527,22.28336],[113.92529,22.28338],[113.9253,22.28338],[113.92534,22.28342],[113.92536,22.28343],[113.92537,22.28344],[113.92538,22.28345],[113.92539,22.28346],[113.92541,22.28348],[113.92542,22.28349],[113.92543,22.2835],[113.92543,22.28351],[113.92545,22.28352],[113.92546,22.28353],[113.92548,22.28356],[113.9255,22.28357],[113.9255,22.28358],[113.92552,22.28359],[113.92553,22.2836],[113.92553,22.2836],[113.92555,22.28362],[113.92556,22.28363],[113.92558,22.28364],[113.92559,22.28365],[113.92559,22.28366],[113.9256,22.28367],[113.9256,22.28368],[113.9256,22.28369],[113.9256,22.28369],[113.9256,22.2837],[113.9256,22.28371],[113.9256,22.28372],[113.92561,22.28373],[113.92561,22.28374],[113.92561,22.28374],[113.92562,22.28377],[113.92563,22.28377],[113.92565,22.28379],[113.92565,22.28379],[113.92568,22.28382],[113.92569,22.28384],[113.92569,22.28384],[113.9257,22.28385],[113.92571,22.28386],[113.92573,22.28388],[113.92574,22.28389],[113.92575,22.2839],[113.92576,22.28391],[113.92577,22.28392],[113.9258,22.28393],[113.92583,22.28394],[113.92584,22.28395],[113.92587,22.28397],[113.92591,22.284],[113.92592,22.284],[113.92594,22.28401],[113.92594,22.28402],[113.92596,22.28402],[113.92597,22.28404],[113.92599,22.28405],[113.92599,22.28406],[113.92602,22.28409],[113.92603,22.2841],[113.92604,22.28412],[113.92604,22.28413],[113.92605,22.28415],[113.92606,22.28416],[113.92607,22.28417],[113.92608,22.28419],[113.92609,22.2842],[113.9261,22.28421],[113.9261,22.28422],[113.92612,22.28424],[113.92614,22.28425],[113.92616,22.28426],[113.92617,22.28426],[113.92618,22.28427],[113.92619,22.28428],[113.92623,22.28431],[113.92623,22.28431],[113.92607,22.28442],[113.92598,22.28463],[113.92577,22.28481],[113.92573,22.28492],[113.9257,22.28492],[113.92562,22.28499],[113.92543,22.28527],[113.92524,22.2854],[113.92508,22.28543],[113.92473,22.28571],[113.92459,22.28578],[113.92454,22.28594],[113.92458,22.28628],[113.92453,22.2866],[113.92453,22.2867],[113.92452,22.2869],[113.92452,22.28697],[113.92455,22.28703],[113.92464,22.28721],[113.92466,22.28724],[113.92471,22.28729],[113.92475,22.28737],[113.92482,22.28742],[113.92485,22.28753],[113.92486,22.28762],[113.92482,22.28772],[113.92473,22.28785],[113.92464,22.28793],[113.92461,22.28799],[113.9246,22.28805],[113.92464,22.28822],[113.92475,22.28848],[113.92475,22.28872],[113.92473,22.28876],[113.92464,22.28878],[113.9246,22.28872],[113.92456,22.28879],[113.92458,22.28887],[113.92529,22.28913],[113.92527,22.28918],[113.92458,22.28892],[113.92406,22.2896],[113.92404,22.28973],[113.92415,22.28991],[113.92422,22.29005],[113.92411,22.28999],[113.92402,22.29003],[113.92407,22.29018],[113.92391,22.29015],[113.92388,22.29017],[113.9238,22.29042],[113.92373,22.29052],[113.92354,22.29059],[113.92318,22.29056],[113.923,22.2906],[113.92232,22.29111],[113.92199,22.29132],[113.92176,22.29142],[113.92151,22.29142],[113.92088,22.29112],[113.92011,22.29093],[113.91972,22.29089],[113.91955,22.29091],[113.91947,22.2909],[113.91943,22.29095],[113.91937,22.29092],[113.91936,22.29099],[113.91925,22.2911],[113.91925,22.29119],[113.9192,22.29126],[113.91926,22.29141],[113.9192,22.29147],[113.91908,22.29148],[113.91888,22.29165],[113.91873,22.29185],[113.91874,22.29192],[113.91823,22.29202],[113.91823,22.29209],[113.91811,22.29215],[113.91809,22.29227],[113.91798,22.29227],[113.91788,22.29219],[113.91783,22.29221],[113.91781,22.29227],[113.9176,22.2923],[113.91755,22.29236],[113.91739,22.29242],[113.91686,22.29246],[113.91665,22.29251],[113.9166,22.29254],[113.91662,22.29261],[113.91654,22.29265],[113.91639,22.29263],[113.91626,22.29273],[113.91623,22.29267],[113.91614,22.29269],[113.91602,22.29277],[113.91567,22.29265],[113.91548,22.29271],[113.91515,22.29269],[113.91488,22.29274],[113.91478,22.2927],[113.91473,22.29261],[113.91463,22.29258],[113.91451,22.29265],[113.9145,22.29272],[113.91441,22.29272],[113.91441,22.29267],[113.91427,22.2927],[113.9142,22.29258],[113.91397,22.29247],[113.91394,22.2924],[113.9138,22.29229],[113.91375,22.29217],[113.9133,22.29195],[113.91322,22.29197],[113.91313,22.29192],[113.91289,22.29196],[113.91281,22.29207],[113.91263,22.29218],[113.91254,22.29215],[113.9125,22.29209],[113.91239,22.29209],[113.91232,22.2919],[113.91227,22.29184],[113.91229,22.29173],[113.9124,22.2917],[113.9123,22.29156],[113.91225,22.29157],[113.9122,22.29141],[113.91199,22.29128],[113.91187,22.29131],[113.91176,22.29128],[113.91172,22.29111],[113.9116,22.29114],[113.91148,22.2911],[113.91143,22.29098],[113.91146,22.29093],[113.91138,22.29094],[113.91136,22.2909],[113.91149,22.29084],[113.91126,22.29054],[113.91122,22.29052],[113.91101,22.29043],[113.91079,22.29018],[113.9106,22.29009],[113.91044,22.29006],[113.91014,22.29008],[113.90966,22.2899],[113.9096,22.28993],[113.90957,22.29004],[113.90924,22.29025],[113.90893,22.29033],[113.90865,22.29057],[113.90864,22.29065],[113.90853,22.29099],[113.90848,22.29108],[113.90845,22.29113],[113.90842,22.29122],[113.90848,22.29129],[113.90848,22.29132],[113.90849,22.29135],[113.90849,22.29139],[113.90848,22.29142],[113.90845,22.29146],[113.90844,22.29149],[113.9085,22.29156],[113.90853,22.29157],[113.90863,22.29165],[113.90867,22.29169],[113.9087,22.29173],[113.9087,22.29176],[113.90861,22.29186],[113.90855,22.29199],[113.90851,22.29205],[113.90849,22.29207],[113.90845,22.29211],[113.90829,22.29219],[113.90826,22.29219],[113.90824,22.29219],[113.9082,22.29218],[113.90813,22.29214],[113.9081,22.29213],[113.90803,22.29205],[113.908,22.29205],[113.90782,22.29207],[113.90782,22.2921],[113.90777,22.29214],[113.90767,22.2922],[113.90763,22.29224],[113.90761,22.29227],[113.90759,22.29228],[113.90748,22.29232],[113.9074,22.29233],[113.90743,22.29236],[113.90744,22.29238],[113.90743,22.2924],[113.90724,22.29252],[113.90725,22.29253],[113.90724,22.29255],[113.90722,22.29257],[113.90718,22.29259],[113.90714,22.29257],[113.90709,22.29258],[113.90708,22.29258],[113.90708,22.29253],[113.90704,22.29251],[113.90703,22.29249],[113.90696,22.29248],[113.90694,22.29248],[113.90692,22.29249],[113.90692,22.2925],[113.90689,22.2925],[113.90689,22.2925],[113.90684,22.2925],[113.90684,22.29249],[113.90682,22.29247],[113.90682,22.29245],[113.90675,22.29244],[113.90675,22.29248],[113.90674,22.29249],[113.90671,22.29252],[113.90668,22.29253],[113.90663,22.29253],[113.90654,22.29253],[113.90658,22.29256],[113.9066,22.2926],[113.90657,22.29265],[113.90654,22.29268],[113.90651,22.29266],[113.90652,22.29262],[113.90638,22.2927],[113.90629,22.29272],[113.90619,22.29272],[113.90608,22.29269],[113.90595,22.29252],[113.90591,22.29239],[113.90585,22.29237],[113.90554,22.29253],[113.90543,22.29252],[113.90541,22.29258],[113.90529,22.29266],[113.90516,22.29271],[113.90512,22.29282],[113.90501,22.29293],[113.90491,22.29302],[113.90501,22.29319],[113.90504,22.29325],[113.90504,22.29325],[113.90503,22.29326],[113.90492,22.29334],[113.90491,22.29335],[113.90483,22.29334],[113.90481,22.29333],[113.90474,22.29325],[113.90474,22.2932],[113.90466,22.29314],[113.90463,22.29314],[113.90452,22.29315],[113.90449,22.29318],[113.90448,22.29319],[113.90435,22.29307],[113.90433,22.29301],[113.90423,22.29297],[113.90419,22.29293],[113.90404,22.29372],[113.90411,22.29374],[113.9041,22.29381],[113.90391,22.29378],[113.90393,22.2937],[113.90401,22.29371],[113.90416,22.29295],[113.90411,22.29294],[113.90409,22.2929],[113.90404,22.29277],[113.90402,22.29272],[113.90398,22.29272],[113.90396,22.2927],[113.90396,22.29267],[113.90395,22.29259],[113.90396,22.29255],[113.904,22.29248],[113.90404,22.29246],[113.90399,22.29243],[113.90404,22.29236],[113.90409,22.29239],[113.90411,22.29234],[113.90409,22.29224],[113.90401,22.29221],[113.90399,22.29217],[113.90398,22.29216],[113.90399,22.29214],[113.904,22.29214],[113.90409,22.2922],[113.90406,22.29214],[113.90405,22.29209],[113.90406,22.29207],[113.90412,22.29204],[113.90414,22.29196],[113.90409,22.29176],[113.904,22.29171],[113.9039,22.29148],[113.90379,22.29149],[113.90376,22.29149],[113.90375,22.29149],[113.90374,22.29148],[113.90373,22.29146],[113.90369,22.29136],[113.90363,22.29131],[113.90358,22.29133],[113.90356,22.29133],[113.90355,22.29133],[113.90338,22.29119],[113.90334,22.29115],[113.90337,22.2911],[113.9033,22.29107],[113.90326,22.291],[113.90315,22.2909],[113.90294,22.29092],[113.90282,22.29084],[113.90276,22.29072],[113.90273,22.29072],[113.90266,22.29063],[113.9027,22.29055],[113.90264,22.29054],[113.9026,22.29046],[113.90256,22.29027],[113.90263,22.29012],[113.90271,22.29011],[113.90272,22.29008],[113.90275,22.29001],[113.90276,22.28996],[113.90264,22.28982],[113.90253,22.28974],[113.90237,22.28969],[113.90204,22.28961],[113.90184,22.28955],[113.90176,22.28951],[113.90171,22.28944],[113.90172,22.28939],[113.90175,22.28936],[113.90187,22.28932],[113.90197,22.2893],[113.90199,22.28928],[113.90199,22.28926],[113.90199,22.28923],[113.90195,22.28923],[113.9019,22.2892],[113.90191,22.28889],[113.9019,22.28883],[113.90185,22.28873],[113.90185,22.28866],[113.90185,22.28855],[113.90181,22.28847],[113.9017,22.28836],[113.9016,22.28828],[113.90153,22.28818],[113.9015,22.28815],[113.90146,22.28814],[113.90142,22.2881],[113.90141,22.28814],[113.9015,22.28819],[113.90158,22.28828],[113.90166,22.28835],[113.90175,22.28847],[113.90177,22.28857],[113.90179,22.28892],[113.90176,22.28911],[113.90176,22.2892],[113.9017,22.28923],[113.90167,22.28927],[113.90164,22.28929],[113.90161,22.28929],[113.90158,22.28928],[113.90152,22.28923],[113.90147,22.28919],[113.90129,22.2892],[113.90116,22.28921],[113.90098,22.28925],[113.90084,22.28924],[113.90084,22.28929],[113.90101,22.28929],[113.90119,22.28925],[113.90135,22.28924],[113.90139,22.28924],[113.90143,22.28922],[113.90145,22.28922],[113.90146,22.28922],[113.90148,22.28922],[113.90149,22.28923],[113.9015,22.28924],[113.9015,22.28925],[113.9015,22.28926],[113.90148,22.28927],[113.90146,22.2893],[113.90134,22.28938],[113.90123,22.28944],[113.90112,22.28949],[113.90092,22.28954],[113.90068,22.28954],[113.90049,22.28962],[113.90041,22.2897],[113.90039,22.28975],[113.90039,22.28976],[113.90034,22.28982],[113.90022,22.28985],[113.90015,22.28989],[113.9,22.29],[113.89989,22.29005],[113.89983,22.29011],[113.8998,22.29019],[113.89982,22.29038],[113.89979,22.29046],[113.89982,22.2907],[113.89976,22.29082],[113.89975,22.29086],[113.89981,22.29102],[113.89979,22.29103],[113.89974,22.29104],[113.89973,22.29109],[113.89983,22.29114],[113.89983,22.29116],[113.89977,22.29117],[113.89976,22.29126],[113.89979,22.2913],[113.89978,22.29136],[113.89983,22.29153],[113.89979,22.29153],[113.89972,22.29155],[113.89968,22.29153],[113.89957,22.29162],[113.89933,22.29165],[113.89932,22.29165],[113.89917,22.2916],[113.89912,22.29157],[113.89905,22.29149],[113.89904,22.29145],[113.89898,22.29134],[113.89891,22.29128],[113.89882,22.29129],[113.89877,22.29131],[113.89872,22.29129],[113.8987,22.29124],[113.89861,22.29123],[113.8986,22.29115],[113.89853,22.29105],[113.89853,22.29104],[113.89852,22.29103],[113.89847,22.29101],[113.89838,22.29095],[113.89828,22.2909],[113.89819,22.29088],[113.89812,22.29086],[113.8981,22.29086],[113.89771,22.29095],[113.89763,22.29097],[113.89756,22.291],[113.89753,22.29102],[113.89744,22.29106],[113.89738,22.2911],[113.89722,22.29122],[113.89713,22.29128],[113.89699,22.29143],[113.89696,22.29151],[113.89695,22.29154],[113.89693,22.29159],[113.89693,22.29166],[113.89692,22.29171],[113.89696,22.29182],[113.89696,22.29184],[113.89694,22.29189],[113.89691,22.2919],[113.89681,22.29188],[113.8968,22.29181],[113.89678,22.29179],[113.89649,22.29155],[113.89626,22.2914],[113.89622,22.29132],[113.89627,22.2912],[113.89627,22.29107],[113.89632,22.29102],[113.89626,22.29094],[113.89634,22.29076],[113.89641,22.29066],[113.8964,22.29066],[113.89634,22.29069],[113.89633,22.29068],[113.89634,22.29066],[113.89638,22.29064],[113.89641,22.2906],[113.89644,22.2906],[113.89648,22.29052],[113.89653,22.29045],[113.89655,22.29033],[113.89654,22.29022],[113.89652,22.29015],[113.89649,22.29],[113.89647,22.28992],[113.89645,22.28988],[113.89643,22.28986],[113.89639,22.28981],[113.89637,22.28978],[113.89597,22.28944],[113.89588,22.28949],[113.89588,22.28937],[113.89594,22.28936],[113.89591,22.28931],[113.89561,22.28924],[113.89555,22.28919],[113.89554,22.2891],[113.89548,22.28921],[113.89537,22.28923],[113.8952,22.28913],[113.8951,22.28896],[113.89498,22.28893],[113.89486,22.28877],[113.89486,22.2887],[113.89475,22.28862],[113.8947,22.28851],[113.89465,22.28835],[113.89467,22.28827],[113.89454,22.28824],[113.89459,22.2882],[113.89454,22.28813],[113.89449,22.28819],[113.89439,22.28817],[113.89442,22.28813],[113.89435,22.28806],[113.89439,22.28799],[113.89436,22.28791],[113.89424,22.2878],[113.89423,22.28771],[113.89418,22.28771],[113.89419,22.28767],[113.89422,22.28767],[113.89427,22.28763],[113.89424,22.28752],[113.8943,22.28739],[113.89435,22.28736],[113.89448,22.28736],[113.89454,22.28732],[113.89455,22.28735],[113.89463,22.2873],[113.8947,22.28717],[113.8946,22.28688],[113.89466,22.28682],[113.89466,22.28677],[113.89458,22.28667],[113.89458,22.28655],[113.89448,22.28645],[113.89448,22.28612],[113.89441,22.28603],[113.89441,22.28579],[113.8945,22.28568],[113.89432,22.28557],[113.89429,22.28549],[113.89417,22.2854],[113.89405,22.28514],[113.89395,22.28507],[113.89392,22.28495],[113.89381,22.28476],[113.89384,22.28469],[113.89378,22.2846],[113.8938,22.28445],[113.89398,22.28427],[113.89392,22.28419],[113.89396,22.28409],[113.89393,22.28402],[113.89404,22.284],[113.89406,22.2838],[113.89416,22.2837],[113.89429,22.28367],[113.89433,22.28357],[113.89432,22.28343],[113.89426,22.28336],[113.89431,22.28334],[113.89432,22.28326],[113.89415,22.28283],[113.89419,22.28276],[113.89408,22.2828],[113.89407,22.28279],[113.89382,22.2829],[113.89383,22.28291],[113.89381,22.28292],[113.89377,22.28285],[113.89379,22.28284],[113.89381,22.28287],[113.8941,22.28275],[113.89422,22.28264],[113.89422,22.28254],[113.89417,22.28242],[113.89409,22.28233],[113.89403,22.28233],[113.89401,22.28231],[113.89406,22.28226],[113.89326,22.28153],[113.89316,22.28147],[113.89312,22.28144],[113.89309,22.28141],[113.89307,22.28135],[113.89302,22.28128],[113.89295,22.28122],[113.89263,22.28081],[113.89195,22.28029],[113.89142,22.28003],[113.89122,22.27994],[113.89108,22.2799],[113.89087,22.27997],[113.89083,22.28002],[113.8907,22.28004],[113.89066,22.28],[113.89054,22.27982],[113.89047,22.27984],[113.89041,22.27981],[113.89039,22.27978],[113.89042,22.27975],[113.8903,22.27956],[113.88993,22.27933],[113.88953,22.27911],[113.88939,22.27909],[113.88919,22.27899],[113.88899,22.27884],[113.88869,22.27871],[113.88845,22.27862],[113.88823,22.27865],[113.88819,22.27854],[113.88805,22.27854],[113.88802,22.27846],[113.88794,22.27848],[113.88787,22.27842],[113.88782,22.27842],[113.88772,22.27831],[113.88767,22.27836],[113.88747,22.27831],[113.88744,22.27826],[113.88733,22.27819],[113.88708,22.27817],[113.88683,22.27809],[113.88684,22.27814],[113.88671,22.27819],[113.88669,22.27807],[113.88661,22.27807],[113.88644,22.278],[113.88641,22.27787],[113.8865,22.27781],[113.88635,22.27772],[113.88633,22.27765],[113.88645,22.2777],[113.88627,22.27749],[113.88634,22.27739],[113.8862,22.27724],[113.8862,22.27715],[113.88628,22.27704],[113.88619,22.27698],[113.88607,22.2767],[113.88581,22.27634],[113.88579,22.27622],[113.88572,22.27617],[113.88577,22.27612],[113.88576,22.27603],[113.88564,22.27594],[113.88574,22.27577],[113.88572,22.27554],[113.88563,22.2753],[113.88563,22.27511],[113.88556,22.27504],[113.88553,22.27487],[113.88558,22.27485],[113.88555,22.27468],[113.8856,22.27465],[113.88563,22.27439],[113.88583,22.27428],[113.88597,22.27378],[113.88609,22.27359],[113.88647,22.27327],[113.88687,22.27305],[113.88705,22.27286],[113.88696,22.27274],[113.88698,22.27269],[113.88714,22.27268],[113.88759,22.27249],[113.888,22.27163],[113.88801,22.27156],[113.888,22.2715],[113.8879,22.27097],[113.88776,22.27101],[113.88767,22.27074],[113.88772,22.27073],[113.88763,22.27043],[113.88762,22.27041],[113.88769,22.27022],[113.88763,22.27009],[113.88762,22.27],[113.88761,22.26996],[113.88761,22.26993],[113.88763,22.2699],[113.88765,22.26986],[113.88767,22.26984],[113.88768,22.26981],[113.88768,22.26978],[113.88768,22.26975],[113.88766,22.26976],[113.88765,22.26975],[113.88767,22.26974],[113.88765,22.26969],[113.88764,22.26957],[113.88765,22.26954],[113.88767,22.2695],[113.88768,22.26946],[113.8877,22.2694],[113.88769,22.26932],[113.88769,22.2693],[113.88766,22.2692],[113.88766,22.26918],[113.88763,22.26915],[113.8876,22.26912],[113.88757,22.2691],[113.88755,22.26909],[113.88754,22.26908],[113.88751,22.26908],[113.88745,22.26908],[113.8874,22.26907],[113.8873,22.26902],[113.88724,22.26899],[113.88722,22.26897],[113.88722,22.26896],[113.88722,22.26895],[113.88723,22.26893],[113.88725,22.26889],[113.88727,22.26886],[113.88732,22.26881],[113.88737,22.26876],[113.88744,22.2687],[113.8875,22.26865],[113.88746,22.26862],[113.88744,22.26862],[113.8874,22.26864],[113.88733,22.26867],[113.88727,22.2687],[113.88722,22.26871],[113.88716,22.26873],[113.88709,22.26873],[113.88704,22.26872],[113.88698,22.26872],[113.88676,22.26868],[113.88667,22.26867],[113.88666,22.26867],[113.88661,22.26867],[113.88655,22.26868],[113.88648,22.2687],[113.88645,22.26872],[113.8864,22.26878],[113.88634,22.26885],[113.8862,22.26898],[113.88611,22.26907],[113.88607,22.2691],[113.88601,22.26913],[113.88595,22.26917],[113.88593,22.26919],[113.88587,22.26929],[113.88582,22.26937],[113.88578,22.2694],[113.88572,22.26945],[113.88566,22.26948],[113.88561,22.26949],[113.88536,22.2695],[113.88533,22.26951],[113.88522,22.26952],[113.88514,22.26954],[113.88499,22.26958],[113.88493,22.2696],[113.88487,22.26962],[113.88481,22.26965],[113.88466,22.26975],[113.88457,22.2698],[113.88451,22.26983],[113.88442,22.26991],[113.88434,22.26999],[113.88407,22.2703],[113.88398,22.27045],[113.88392,22.27057],[113.8839,22.27071],[113.88394,22.27069],[113.88398,22.2708],[113.88396,22.27081],[113.88397,22.27088],[113.88431,22.27177],[113.88432,22.27189],[113.88427,22.27196],[113.88409,22.27201],[113.8841,22.27212],[113.884,22.27226],[113.88394,22.27231],[113.88385,22.27235],[113.88373,22.27231],[113.8837,22.27253],[113.88352,22.27267],[113.88338,22.27272],[113.88317,22.27265],[113.88309,22.27275],[113.88282,22.27261],[113.88274,22.27271],[113.88262,22.27233],[113.88234,22.27224],[113.88214,22.27196],[113.88137,22.27122],[113.88124,22.27116],[113.881,22.27092],[113.88078,22.27081],[113.88063,22.27072],[113.88043,22.27056],[113.87987,22.2703],[113.87923,22.27015],[113.87911,22.27018],[113.87906,22.27021],[113.87887,22.27016],[113.87871,22.27023],[113.87834,22.27015],[113.87792,22.26992],[113.87788,22.26986],[113.87776,22.26979],[113.8777,22.26967],[113.87736,22.26949],[113.87712,22.26943],[113.87697,22.26932],[113.87671,22.26925],[113.87626,22.26906],[113.87616,22.26907],[113.87611,22.26901],[113.87592,22.26894],[113.87567,22.26891],[113.87543,22.2688],[113.87536,22.26881],[113.87486,22.26865],[113.87441,22.26856],[113.87406,22.26861],[113.87368,22.26872],[113.87325,22.2687],[113.87298,22.2688],[113.87289,22.26886],[113.87284,22.26884],[113.87269,22.26887],[113.87245,22.269],[113.87237,22.26898],[113.87232,22.26902],[113.87223,22.26895],[113.87201,22.26894],[113.87194,22.26899],[113.87181,22.26897],[113.87178,22.26892],[113.87166,22.2689],[113.87163,22.26882],[113.87151,22.26885],[113.8714,22.26874],[113.87136,22.26875],[113.87116,22.26857],[113.87097,22.26834],[113.8709,22.26828],[113.87079,22.26827],[113.8708,22.2682],[113.87024,22.26791],[113.87038,22.26793],[113.87034,22.26783],[113.87013,22.26767],[113.87011,22.26759],[113.87001,22.2675],[113.86998,22.26735],[113.86981,22.26704],[113.86973,22.26703],[113.86954,22.26688],[113.86957,22.26684],[113.86952,22.26677],[113.86961,22.26671],[113.86959,22.26665],[113.8695,22.26661],[113.8695,22.26655],[113.86955,22.26651],[113.86945,22.26643],[113.86958,22.26638],[113.86964,22.26628],[113.86959,22.26617],[113.86959,22.26585],[113.8695,22.26561],[113.86917,22.26506],[113.869,22.26486],[113.86892,22.26469],[113.86883,22.2646],[113.86866,22.26452],[113.86852,22.26435],[113.86827,22.26372],[113.86778,22.26292],[113.86768,22.26281],[113.86763,22.26279],[113.86759,22.2628],[113.86761,22.26268],[113.86752,22.26265],[113.86746,22.26259],[113.86737,22.26235],[113.8673,22.2623],[113.86712,22.26216],[113.86659,22.26169],[113.86627,22.2612],[113.86619,22.26115],[113.86619,22.26109],[113.86592,22.26061],[113.86588,22.26046],[113.86556,22.25994],[113.8655,22.25973],[113.8655,22.25962],[113.86545,22.25954],[113.86522,22.25929],[113.8651,22.25921],[113.86497,22.25903],[113.86485,22.25895],[113.86419,22.25875],[113.86408,22.2587],[113.86392,22.25857],[113.86384,22.25852],[113.8637,22.2585],[113.8636,22.2585],[113.86313,22.25849],[113.86302,22.25848],[113.86299,22.25847],[113.86296,22.25846],[113.86291,22.25844],[113.86286,22.2584],[113.86277,22.2583],[113.86273,22.25823],[113.86269,22.25814],[113.86264,22.25798],[113.86263,22.2579],[113.86263,22.25783],[113.86266,22.25769],[113.86274,22.25748],[113.86279,22.25737],[113.86289,22.25717],[113.86287,22.25717],[113.86288,22.25713],[113.86295,22.25703],[113.86297,22.25697],[113.86301,22.25698],[113.86309,22.25686],[113.86318,22.25675],[113.86326,22.25664],[113.86347,22.25642],[113.86355,22.25628],[113.86368,22.25613],[113.8638,22.256],[113.8638,22.25599],[113.86387,22.25592],[113.86392,22.25585],[113.86393,22.2558],[113.86396,22.25573],[113.86394,22.25571],[113.864,22.25565],[113.86401,22.25567],[113.86406,22.25571],[113.86408,22.25569],[113.86402,22.25566],[113.86403,22.25563],[113.86392,22.25558],[113.86394,22.25553],[113.86393,22.25549],[113.86394,22.25545],[113.86396,22.25543],[113.86398,22.25539],[113.86401,22.25538],[113.86407,22.25537],[113.86407,22.25535],[113.86414,22.25535],[113.86417,22.25535],[113.86421,22.25534],[113.86428,22.25536],[113.86428,22.25541],[113.86433,22.2554],[113.86433,22.25544],[113.86438,22.25545],[113.86446,22.25544],[113.86447,22.25547],[113.86458,22.25542],[113.86459,22.25538],[113.86466,22.25536],[113.86469,22.25535],[113.86487,22.25535],[113.86487,22.25534],[113.865,22.2553],[113.865,22.2553],[113.86511,22.25527],[113.86518,22.25525],[113.8652,22.25529],[113.86521,22.2553],[113.86522,22.25531],[113.86523,22.25532],[113.86526,22.25532],[113.86527,22.25532],[113.86528,22.25535],[113.86529,22.25538],[113.86532,22.25543],[113.86535,22.25543],[113.86538,22.25542],[113.8654,22.2554],[113.86543,22.25538],[113.86538,22.25531],[113.86535,22.25524],[113.86539,22.25522],[113.8654,22.25525],[113.86546,22.25522],[113.86548,22.25525],[113.86553,22.25524],[113.86555,22.25524],[113.86562,22.25521],[113.8657,22.25517],[113.86577,22.25514],[113.86579,22.25517],[113.86582,22.25515],[113.86587,22.25524],[113.866,22.2552],[113.86599,22.25519],[113.86595,22.25511],[113.86602,22.255],[113.86604,22.25498],[113.86616,22.25495],[113.86622,22.25499],[113.86625,22.25502],[113.86627,22.25505],[113.86643,22.25501],[113.86652,22.255],[113.86657,22.255],[113.86659,22.255],[113.86665,22.25496],[113.86676,22.25489],[113.86676,22.25489],[113.86676,22.25489],[113.86678,22.25487],[113.86678,22.25486],[113.86678,22.25484],[113.86672,22.25473],[113.8667,22.25468],[113.8667,22.25466],[113.8667,22.25465],[113.86672,22.25464],[113.86673,22.25463],[113.86687,22.25455],[113.86687,22.25455],[113.86691,22.25454],[113.86691,22.25455],[113.867,22.25461],[113.867,22.25461],[113.86707,22.25466],[113.86708,22.25466],[113.86711,22.25465],[113.86711,22.25465],[113.86713,22.25462],[113.86713,22.25461],[113.86714,22.25459],[113.86713,22.25458],[113.86706,22.25451],[113.86703,22.25448],[113.86703,22.25447],[113.86702,22.25446],[113.86702,22.25444],[113.86703,22.25442],[113.86704,22.25441],[113.86705,22.2544],[113.86708,22.25439],[113.86716,22.25437],[113.86718,22.25435],[113.86719,22.25434],[113.86721,22.25432],[113.86723,22.2543],[113.86724,22.25429],[113.86725,22.25429],[113.86726,22.25429],[113.86728,22.25429],[113.86729,22.2543],[113.86734,22.25435],[113.86734,22.25435],[113.86736,22.25436],[113.86736,22.25437],[113.86737,22.25437],[113.8674,22.25436],[113.86741,22.25435],[113.86742,22.25433],[113.86742,22.25432],[113.8674,22.25425],[113.86739,22.25418],[113.86739,22.25417],[113.8674,22.25417],[113.86741,22.25417],[113.86743,22.25418],[113.86744,22.25419],[113.86745,22.25421],[113.86747,22.25422],[113.8675,22.25424],[113.86751,22.25424],[113.86753,22.25424],[113.86754,22.25423],[113.86756,22.2542],[113.86757,22.25417],[113.86759,22.25415],[113.86761,22.25414],[113.86768,22.25419],[113.86773,22.25419],[113.86778,22.2542],[113.86782,22.2542],[113.8679,22.25421],[113.86811,22.25417],[113.86818,22.25416],[113.86818,22.25413],[113.86834,22.2541],[113.86857,22.25402],[113.86861,22.254],[113.86872,22.25396],[113.86885,22.25393],[113.86893,22.2539],[113.86896,22.25383],[113.86901,22.25379],[113.86906,22.25374],[113.8691,22.25369],[113.86917,22.25362],[113.86922,22.25359],[113.86933,22.2537],[113.8694,22.25377],[113.86946,22.25384],[113.86955,22.25394],[113.86961,22.25403],[113.86969,22.25422],[113.86979,22.25432],[113.86976,22.2542],[113.86968,22.25409],[113.86963,22.25396],[113.86957,22.25383],[113.86956,22.25385],[113.86953,22.25381],[113.86955,22.2538],[113.86949,22.25373],[113.86946,22.25368],[113.86946,22.25354],[113.86941,22.25354],[113.86941,22.25353],[113.86942,22.2535],[113.86946,22.25351],[113.86947,22.25343],[113.86951,22.25336],[113.86954,22.2533],[113.86862,22.25313],[113.86856,22.25319],[113.86851,22.25324],[113.86848,22.25327],[113.86845,22.2533],[113.86843,22.25332],[113.86841,22.25333],[113.86837,22.25334],[113.86833,22.25334],[113.8683,22.25334],[113.86828,22.25334],[113.86826,22.25334],[113.86824,22.25334],[113.86822,22.25333],[113.86819,22.25332],[113.86818,22.25331],[113.868,22.25311],[113.86796,22.25312],[113.86791,22.25317],[113.86787,22.25325],[113.86784,22.25331],[113.86783,22.25333],[113.86782,22.25334],[113.8678,22.25335],[113.86785,22.25343],[113.86781,22.25346],[113.86775,22.25336],[113.86755,22.25342],[113.86732,22.25356],[113.86589,22.25458],[113.86584,22.25462],[113.86578,22.25461],[113.86574,22.25465],[113.86567,22.25468],[113.86575,22.25478],[113.86556,22.25492],[113.86553,22.25489],[113.86552,22.25493],[113.86548,22.25494],[113.86542,22.25498],[113.86537,22.255],[113.86536,22.25499],[113.86531,22.255],[113.86531,22.25502],[113.86521,22.25503],[113.86515,22.25503],[113.86514,22.25506],[113.86512,22.25506],[113.86513,22.25504],[113.86505,22.25504],[113.86504,22.25507],[113.86502,22.25508],[113.86502,22.2551],[113.8649,22.2551],[113.86483,22.25509],[113.86482,22.25513],[113.86479,22.25513],[113.8648,22.25512],[113.86477,22.25511],[113.86475,22.25512],[113.86475,22.25513],[113.86472,22.25513],[113.86471,22.25515],[113.86464,22.25515],[113.8646,22.25514],[113.8646,22.25516],[113.8646,22.25516],[113.86453,22.25516],[113.86452,22.25518],[113.86439,22.25515],[113.86439,22.25513],[113.86436,22.25513],[113.86436,22.25508],[113.86438,22.25496],[113.86447,22.25496],[113.86447,22.25492],[113.86442,22.25492],[113.86441,22.25495],[113.86437,22.25495],[113.8643,22.25505],[113.86425,22.25518],[113.8642,22.25517],[113.86424,22.25506],[113.86428,22.25508],[113.86431,22.25503],[113.86426,22.25503],[113.86427,22.25488],[113.86432,22.25489],[113.86432,22.25488],[113.86433,22.25479],[113.86433,22.25477],[113.86437,22.25477],[113.86437,22.25474],[113.86444,22.25474],[113.86444,22.25465],[113.86441,22.25456],[113.86438,22.25456],[113.86437,22.25454],[113.86435,22.25437],[113.86435,22.25431],[113.86429,22.25412],[113.86427,22.25411],[113.86425,22.25411],[113.86421,22.25398],[113.8642,22.25389],[113.86415,22.25391],[113.8641,22.2539],[113.86407,22.25386],[113.86403,22.25384],[113.86402,22.25385],[113.86395,22.25385],[113.86391,22.25384],[113.8639,22.25382],[113.86384,22.25383],[113.86384,22.25385],[113.86383,22.25388],[113.86381,22.2539],[113.86374,22.25392],[113.86373,22.25394],[113.86373,22.25399],[113.86377,22.25398],[113.86378,22.25402],[113.86375,22.25405],[113.86338,22.25413],[113.86335,22.254],[113.86338,22.25399],[113.86338,22.25397],[113.86336,22.25391],[113.86332,22.25394],[113.86326,22.25395],[113.86326,22.25398],[113.86326,22.254],[113.86305,22.25407],[113.86289,22.25412],[113.86288,22.25414],[113.86282,22.25414],[113.86279,22.25414],[113.86277,22.25412],[113.86277,22.2541],[113.8627,22.2541],[113.8627,22.25406],[113.86261,22.25405],[113.86251,22.25402],[113.86243,22.254],[113.86237,22.25395],[113.86235,22.25393],[113.86234,22.25391],[113.86229,22.25389],[113.86231,22.25386],[113.86226,22.25382],[113.86209,22.25374],[113.86198,22.25365],[113.86191,22.25357],[113.86191,22.25353],[113.86197,22.25345],[113.86196,22.25344],[113.8619,22.2534],[113.86181,22.25351],[113.86161,22.25337],[113.86171,22.25325],[113.86166,22.25321],[113.86166,22.25319],[113.86176,22.253],[113.86168,22.25296],[113.8616,22.25292],[113.86155,22.25289],[113.86151,22.25286],[113.86149,22.25284],[113.86117,22.25269],[113.86068,22.25242],[113.86056,22.25236],[113.86049,22.25232],[113.86047,22.25231],[113.86045,22.25229],[113.86044,22.25227],[113.86043,22.25225],[113.86043,22.25223],[113.86042,22.25221],[113.86042,22.25219],[113.86048,22.25187],[113.86092,22.24948],[113.86101,22.24896],[113.86116,22.24816],[113.86134,22.24718],[113.86135,22.24716],[113.86135,22.24715],[113.86136,22.24714],[113.86137,22.24714],[113.86138,22.24713],[113.86139,22.24713],[113.8614,22.24713],[113.86142,22.24714],[113.86201,22.24728],[113.86205,22.24716],[113.86201,22.24698],[113.86196,22.24695],[113.86175,22.2468],[113.8616,22.24673],[113.86157,22.24678],[113.86146,22.24674],[113.86142,22.24671],[113.86143,22.24663],[113.86141,22.24661],[113.86125,22.24645],[113.86092,22.24613],[113.86085,22.24611],[113.86078,22.24613],[113.86078,22.24614],[113.86078,22.24616],[113.86077,22.24618],[113.86076,22.24619],[113.86073,22.2462],[113.8606,22.24611],[113.86064,22.24607],[113.86058,22.24602],[113.86032,22.24588],[113.86031,22.24585],[113.85995,22.24571],[113.85977,22.24569],[113.85925,22.24553],[113.8592,22.24551],[113.85916,22.24549],[113.85912,22.24546],[113.85909,22.24542],[113.85907,22.2454],[113.85896,22.24538],[113.85889,22.24537],[113.85883,22.24534],[113.85878,22.24531],[113.85873,22.24528],[113.85872,22.2453],[113.85857,22.2453],[113.85849,22.24529],[113.85849,22.24526],[113.85817,22.24528],[113.85815,22.24528],[113.85737,22.24527],[113.857,22.24512],[113.85628,22.24518],[113.85562,22.24497],[113.85525,22.24501],[113.8545,22.24464],[113.85425,22.24458],[113.85412,22.2446],[113.85373,22.24454],[113.85294,22.24421],[113.85242,22.24394],[113.85218,22.2437],[113.85183,22.24356],[113.85156,22.24336],[113.85141,22.24336],[113.85126,22.24309],[113.85122,22.24284],[113.85101,22.24267],[113.85095,22.2425],[113.85091,22.24194],[113.85098,22.24122],[113.85122,22.24038],[113.85159,22.2398],[113.85161,22.23971],[113.85191,22.23939],[113.85203,22.23928],[113.85227,22.23893],[113.85233,22.23873],[113.85242,22.23864],[113.85237,22.23847],[113.85229,22.23841],[113.85232,22.23815],[113.85241,22.23801],[113.85236,22.23776],[113.8523,22.23765],[113.85231,22.23746],[113.85244,22.23706],[113.85257,22.2369],[113.85257,22.23678],[113.85267,22.23654],[113.85272,22.23631],[113.85267,22.23617],[113.85259,22.23608],[113.85262,22.23594],[113.85267,22.23577],[113.85265,22.2356],[113.8527,22.23546],[113.85264,22.23535],[113.85264,22.23523],[113.85264,22.23517],[113.85264,22.2351],[113.8527,22.23495],[113.85275,22.23472],[113.85282,22.23454],[113.85277,22.23434],[113.85277,22.23416],[113.85282,22.23402],[113.85271,22.23377],[113.85271,22.23358],[113.85268,22.23341],[113.85255,22.23324],[113.85253,22.23315],[113.85257,22.2331],[113.85263,22.23308],[113.85276,22.23312],[113.85289,22.23302],[113.85292,22.23293],[113.85317,22.23258],[113.85317,22.23256],[113.85285,22.23291],[113.85276,22.23296],[113.85264,22.233],[113.85253,22.23299],[113.85244,22.2329],[113.85238,22.23279],[113.85209,22.23264],[113.85204,22.23251],[113.85209,22.23241],[113.85196,22.23247],[113.85191,22.23247],[113.85189,22.23242],[113.85211,22.23225],[113.85229,22.23223],[113.85262,22.2322],[113.85239,22.23218],[113.8522,22.23214],[113.85206,22.23216],[113.85191,22.23217],[113.85181,22.23224],[113.8516,22.23223],[113.85156,22.23222],[113.85154,22.23221],[113.85152,22.23218],[113.85151,22.23215],[113.85153,22.23214],[113.85158,22.23212],[113.85167,22.23208],[113.85168,22.23206],[113.85163,22.232],[113.85159,22.23192],[113.85164,22.23186],[113.85163,22.23175],[113.85157,22.23167],[113.85141,22.23139],[113.85136,22.23137],[113.85127,22.23139],[113.85121,22.23137],[113.85119,22.23129],[113.8512,22.2312],[113.85119,22.23105],[113.85114,22.23091],[113.85103,22.23078],[113.85082,22.23068],[113.8508,22.23068],[113.85075,22.23069],[113.85067,22.23068],[113.85042,22.23059],[113.85035,22.23053],[113.8501,22.23058],[113.84979,22.23055],[113.84965,22.23055],[113.84928,22.23066],[113.84914,22.23066],[113.84904,22.2306],[113.84905,22.23038],[113.84906,22.2302],[113.84902,22.23026],[113.84899,22.23033],[113.84896,22.23036],[113.84894,22.23034],[113.84888,22.23019],[113.84882,22.23009],[113.84875,22.23],[113.84865,22.22966],[113.84862,22.22951],[113.84852,22.22937],[113.84859,22.22965],[113.84862,22.22977],[113.84863,22.22992],[113.84879,22.23054],[113.84875,22.23072],[113.84882,22.23079],[113.84883,22.23088],[113.84867,22.23189],[113.84866,22.23196],[113.84861,22.23196],[113.84858,22.23207],[113.84858,22.23234],[113.84868,22.23237],[113.8487,22.23263],[113.84861,22.23268],[113.84864,22.2328],[113.84856,22.23302],[113.84847,22.23305],[113.84837,22.2333],[113.84823,22.23335],[113.84812,22.23344],[113.84784,22.23389],[113.84765,22.23398],[113.84759,22.23407],[113.84737,22.23419],[113.84696,22.23435],[113.84666,22.23474],[113.84654,22.2348],[113.84636,22.2351],[113.84626,22.23513],[113.84612,22.23529],[113.84588,22.23546],[113.8457,22.23551],[113.84541,22.23551],[113.84534,22.23546],[113.84536,22.23543],[113.84501,22.23522],[113.84491,22.23505],[113.84461,22.23495],[113.84444,22.23508],[113.84411,22.23509],[113.84401,22.23504],[113.84384,22.23502],[113.84352,22.23507],[113.84332,22.23516],[113.84316,22.23512],[113.84288,22.23516],[113.84249,22.23481],[113.84234,22.2345],[113.84219,22.23445],[113.84205,22.23455],[113.84199,22.23441],[113.84181,22.23436],[113.84174,22.23428],[113.84176,22.23421],[113.84172,22.23411],[113.84161,22.23406],[113.84157,22.23397],[113.84158,22.23386],[113.84145,22.23359],[113.84143,22.23345],[113.84141,22.2333],[113.8414,22.2332],[113.84152,22.23307],[113.84153,22.23295],[113.84158,22.23286],[113.84161,22.23269],[113.84158,22.2324],[113.84155,22.23227],[113.84149,22.2322],[113.84139,22.2321],[113.84132,22.23204],[113.84131,22.23188],[113.84116,22.23179],[113.84123,22.23167],[113.84111,22.23153],[113.84115,22.23133],[113.84117,22.23104],[113.84107,22.23096],[113.84102,22.2307],[113.84102,22.23056],[113.84094,22.23055],[113.84092,22.23027],[113.84081,22.23013],[113.84083,22.23001],[113.84077,22.22963],[113.84059,22.22928],[113.84061,22.22914],[113.84054,22.22893],[113.84029,22.22881],[113.84013,22.22869],[113.83992,22.22863],[113.83985,22.22856],[113.83965,22.22833],[113.8398,22.22815],[113.8398,22.22803],[113.83963,22.22812],[113.83962,22.22799],[113.83949,22.22793],[113.8394,22.22781],[113.83931,22.22779],[113.83922,22.22763],[113.83916,22.22761],[113.83924,22.22748],[113.83936,22.22746],[113.8394,22.22735],[113.83942,22.22723],[113.83938,22.22719],[113.83936,22.22711],[113.83933,22.22708],[113.83937,22.22701],[113.83943,22.227],[113.83949,22.22705],[113.83964,22.22697],[113.83998,22.22688],[113.84011,22.22673],[113.84017,22.2266],[113.84021,22.22626],[113.84019,22.22607],[113.84029,22.2258],[113.84021,22.22552],[113.84018,22.22535],[113.84012,22.22527],[113.84007,22.22503],[113.84,22.22502],[113.84003,22.22498],[113.83996,22.22491],[113.84,22.22486],[113.84,22.22475],[113.84011,22.22424],[113.84013,22.2242],[113.84015,22.2238],[113.84003,22.22345],[113.83989,22.22327],[113.83982,22.22324],[113.83976,22.22327],[113.83974,22.22323],[113.83974,22.22319],[113.83978,22.22315],[113.83983,22.22316],[113.83985,22.22298],[113.83992,22.22295],[113.83997,22.22278],[113.83994,22.22257],[113.83985,22.22245],[113.83976,22.22243],[113.83979,22.22238],[113.83974,22.22234],[113.83979,22.22218],[113.83981,22.22197],[113.83986,22.2219],[113.83994,22.22156],[113.83992,22.22153],[113.83995,22.22141],[113.83983,22.22127],[113.83986,22.22118],[113.83984,22.22106],[113.83984,22.2208],[113.83992,22.22072],[113.83985,22.22056],[113.83978,22.22055],[113.83976,22.2205],[113.83975,22.22043],[113.83993,22.22026],[113.84017,22.21961],[113.84009,22.21934],[113.84013,22.21929],[113.84008,22.21903],[113.83997,22.21888],[113.83988,22.2189],[113.83994,22.21879],[113.84003,22.21876],[113.84014,22.21864],[113.84023,22.21828],[113.84042,22.21812],[113.84102,22.21805],[113.84136,22.2179],[113.84146,22.21781],[113.84154,22.21784],[113.84177,22.21768],[113.84189,22.21764],[113.84193,22.21757],[113.84201,22.21756],[113.84208,22.21747],[113.84217,22.21745],[113.84249,22.21723],[113.84283,22.21699],[113.84291,22.2169],[113.84303,22.21688],[113.84307,22.21682],[113.84317,22.21678],[113.84329,22.21665],[113.8434,22.21645],[113.84352,22.21609],[113.8439,22.21571],[113.84401,22.21544],[113.844,22.21526],[113.84388,22.21496],[113.84395,22.21472],[113.84393,22.21465],[113.84368,22.21418],[113.84364,22.21388],[113.84343,22.21358],[113.84347,22.21328],[113.84343,22.2127],[113.84337,22.21255],[113.84331,22.21242],[113.84324,22.21231],[113.84323,22.21225],[113.84323,22.2122],[113.84328,22.21211],[113.8431,22.21206],[113.84297,22.21197],[113.84264,22.21204],[113.84253,22.21209],[113.84244,22.21211],[113.84218,22.21208],[113.8419,22.21203],[113.84176,22.21191],[113.84166,22.21166],[113.84169,22.21162],[113.84163,22.21128],[113.84166,22.21105],[113.84172,22.21095],[113.8418,22.21074],[113.84182,22.21064],[113.84166,22.21056],[113.84162,22.21033],[113.84165,22.21026],[113.84176,22.21024],[113.84189,22.21006],[113.84202,22.21002],[113.84208,22.20991],[113.84205,22.20963],[113.84209,22.20954],[113.84195,22.20937],[113.84198,22.20924],[113.84205,22.20912],[113.84191,22.209],[113.84191,22.20885],[113.84194,22.20877],[113.84195,22.20872],[113.84196,22.20865],[113.84207,22.20861],[113.84208,22.20847],[113.84201,22.20848],[113.84199,22.20836],[113.84199,22.20832],[113.842,22.20825],[113.84218,22.20822],[113.84228,22.20814],[113.84229,22.20794],[113.84239,22.20787],[113.84243,22.20783],[113.84253,22.20771],[113.8426,22.20757],[113.84284,22.20747],[113.84289,22.20743],[113.84314,22.20723],[113.84317,22.20721],[113.84326,22.20718],[113.84331,22.20692],[113.84351,22.20685],[113.84365,22.20687],[113.84404,22.20673],[113.84413,22.20675],[113.84427,22.20657],[113.84428,22.20649],[113.84426,22.20636],[113.84434,22.2061],[113.84426,22.20602],[113.84426,22.20599],[113.84436,22.20595],[113.84446,22.20596],[113.8445,22.20581],[113.84456,22.20584],[113.84468,22.20581],[113.84472,22.20579],[113.84481,22.20575],[113.84488,22.20577],[113.84493,22.20561],[113.84489,22.20559],[113.8449,22.20556],[113.84498,22.20557],[113.84499,22.20559],[113.84496,22.20563],[113.84516,22.20567],[113.84522,22.20572],[113.84537,22.20572],[113.84544,22.20556],[113.84542,22.20552],[113.84545,22.20549],[113.84547,22.20549],[113.84545,22.20553],[113.84554,22.2055],[113.84563,22.20554],[113.84569,22.20544],[113.84568,22.20538],[113.84582,22.20542],[113.84594,22.20529],[113.84598,22.20526],[113.84608,22.20526],[113.84611,22.20522],[113.84603,22.20516],[113.84602,22.20505],[113.84621,22.20495],[113.84616,22.2049],[113.84624,22.20481],[113.84625,22.20476],[113.84629,22.20478],[113.84628,22.20482],[113.84636,22.2049],[113.84648,22.20486],[113.8466,22.20491],[113.84669,22.20494],[113.84686,22.20491],[113.84701,22.205],[113.84709,22.205],[113.84711,22.20501],[113.84718,22.205],[113.8474,22.20516],[113.84753,22.20516],[113.84764,22.20512],[113.8478,22.20512],[113.84788,22.2051],[113.84796,22.20508],[113.84816,22.20502],[113.84837,22.20493],[113.84856,22.20481],[113.84864,22.20472],[113.84875,22.2046],[113.84882,22.20448],[113.84892,22.20433],[113.84895,22.20428],[113.84899,22.20425],[113.84905,22.20424],[113.84916,22.20422],[113.84908,22.20413],[113.84902,22.20399],[113.84901,22.20388],[113.84906,22.20351],[113.84905,22.20317],[113.849,22.20285],[113.84881,22.20222],[113.84864,22.20193],[113.8484,22.2016],[113.84827,22.20153],[113.84823,22.20156],[113.84804,22.20148],[113.84791,22.2015],[113.84774,22.2017],[113.84757,22.20178],[113.84705,22.20165],[113.84701,22.20154],[113.84711,22.20115],[113.84713,22.2009],[113.84707,22.20079],[113.84697,22.20073],[113.84691,22.20065],[113.84677,22.20072],[113.84671,22.2006],[113.84693,22.20025],[113.84681,22.20005],[113.84692,22.19996],[113.84694,22.19998],[113.84698,22.19997],[113.84701,22.19982],[113.84699,22.19978],[113.84696,22.19976],[113.84697,22.19971],[113.84704,22.19972],[113.84711,22.19957],[113.84714,22.19897],[113.84683,22.19845],[113.8467,22.19832],[113.84652,22.19825],[113.84642,22.19815],[113.84635,22.19775],[113.84608,22.19744],[113.84563,22.19716],[113.84549,22.19717],[113.84537,22.19713],[113.84536,22.19706],[113.84531,22.19708],[113.84524,22.19692],[113.84517,22.19686],[113.84491,22.19683],[113.84492,22.19664],[113.84484,22.19663],[113.84483,22.19658],[113.84489,22.19656],[113.84494,22.1964],[113.84502,22.19635],[113.84511,22.19635],[113.84507,22.19632],[113.84506,22.19618],[113.84504,22.19606],[113.84502,22.19584],[113.84502,22.19584],[113.84502,22.19583],[113.84502,22.19583],[113.84505,22.1957],[113.84518,22.19563],[113.84524,22.19565],[113.84525,22.19565],[113.84526,22.19566],[113.84527,22.19566],[113.84528,22.19565],[113.84529,22.19565],[113.8453,22.19564],[113.84534,22.19561],[113.84537,22.19561],[113.84539,22.1956],[113.8454,22.1956],[113.84545,22.19558],[113.84549,22.19561],[113.84546,22.19563],[113.84553,22.19567],[113.84559,22.19576],[113.84562,22.19561],[113.84588,22.19556],[113.84616,22.19538],[113.84618,22.19546],[113.84626,22.19541],[113.84639,22.19543],[113.8465,22.19558],[113.84656,22.19555],[113.84669,22.19569],[113.84683,22.19574],[113.84687,22.19584],[113.84694,22.1959],[113.84713,22.19594],[113.84713,22.1959],[113.84715,22.1959],[113.84718,22.19596],[113.84744,22.19597],[113.84749,22.19594],[113.84749,22.19588],[113.84768,22.19574],[113.84778,22.19562],[113.84793,22.19558],[113.84791,22.19554],[113.84792,22.19552],[113.84797,22.19556],[113.84807,22.19554],[113.84815,22.19566],[113.84814,22.19585],[113.84806,22.19599],[113.84794,22.19607],[113.84784,22.19617],[113.84762,22.19622],[113.84765,22.19635],[113.84759,22.1966],[113.84765,22.19689],[113.84777,22.19719],[113.84798,22.19737],[113.8481,22.19738],[113.84835,22.19727],[113.84838,22.19732],[113.84844,22.19731],[113.84853,22.19736],[113.84862,22.19736],[113.84871,22.19731],[113.84878,22.19739],[113.84883,22.19738],[113.84886,22.19735],[113.84883,22.19728],[113.849,22.19719],[113.84902,22.19722],[113.84901,22.19728],[113.84912,22.19733],[113.8492,22.19733],[113.84924,22.1974],[113.84924,22.19749],[113.84942,22.19755],[113.84962,22.19755],[113.84974,22.19749],[113.84978,22.19744],[113.85006,22.19725],[113.85011,22.19714],[113.85027,22.19708],[113.85037,22.1971],[113.85043,22.19708],[113.85047,22.19706],[113.85058,22.19699],[113.85062,22.19693],[113.85073,22.19688],[113.85069,22.19675],[113.85072,22.19671],[113.85079,22.19673],[113.85091,22.19671],[113.85097,22.19675],[113.85095,22.19683],[113.85113,22.19681],[113.85123,22.19677],[113.85132,22.19672],[113.8514,22.19666],[113.85141,22.19661],[113.85205,22.19646],[113.85221,22.19647],[113.85226,22.19663],[113.8524,22.19666],[113.8525,22.19669],[113.8526,22.19676],[113.85265,22.19684],[113.85271,22.19701],[113.85277,22.19724],[113.85279,22.19727],[113.85283,22.19735],[113.85292,22.1975],[113.85308,22.19766],[113.85333,22.19769],[113.85347,22.19776],[113.85359,22.19774],[113.85377,22.19753],[113.85391,22.19744],[113.85394,22.19721],[113.85398,22.19711],[113.85404,22.19708],[113.85411,22.1973],[113.85408,22.19745],[113.85423,22.19758],[113.85441,22.19791],[113.85426,22.198],[113.85418,22.19802],[113.85414,22.19821],[113.85406,22.19835],[113.85372,22.19864],[113.85364,22.19865],[113.85348,22.19855],[113.85319,22.19859],[113.853,22.19873],[113.85285,22.19889],[113.85276,22.19923],[113.85273,22.19961],[113.85291,22.20049],[113.85316,22.201],[113.85347,22.20146],[113.85407,22.20196],[113.85436,22.20214],[113.85571,22.20277],[113.85586,22.20281],[113.8561,22.20279],[113.85621,22.20284],[113.8564,22.20289],[113.85644,22.20302],[113.85643,22.20306],[113.8565,22.2031],[113.85654,22.20304],[113.85666,22.20304],[113.85664,22.20311],[113.85681,22.20314],[113.85687,22.20322],[113.85705,22.20329],[113.85711,22.20339],[113.85729,22.20347],[113.85749,22.20351],[113.85757,22.20345],[113.85783,22.20351],[113.8581,22.20344],[113.85829,22.20346],[113.85838,22.20352],[113.8583,22.20366],[113.85878,22.2035],[113.85887,22.20356],[113.85881,22.20363],[113.85892,22.20363],[113.85942,22.20332],[113.85958,22.20328],[113.85969,22.2033],[113.85988,22.20339],[113.85991,22.20343],[113.85999,22.20353],[113.8599,22.20372],[113.85996,22.20381],[113.86015,22.20381],[113.8604,22.20388],[113.86041,22.20394],[113.86051,22.20397],[113.86049,22.20406],[113.86074,22.2042],[113.86095,22.2043],[113.86106,22.2043],[113.86112,22.20437],[113.86136,22.2044],[113.86228,22.20439],[113.86233,22.20436],[113.8624,22.20429],[113.86256,22.20426],[113.86257,22.20426],[113.86271,22.20427],[113.86276,22.20427],[113.86285,22.20422],[113.8629,22.20419],[113.86298,22.20422],[113.86303,22.20425],[113.86309,22.20427],[113.86326,22.20422],[113.86342,22.20415],[113.86368,22.20403],[113.86375,22.20399],[113.86386,22.20392],[113.86399,22.20382],[113.86417,22.20368],[113.86433,22.2036],[113.86442,22.20358],[113.86445,22.20358],[113.86448,22.2036],[113.86453,22.20362],[113.86454,22.20363],[113.86457,22.20371],[113.86455,22.20377],[113.86451,22.20384],[113.86439,22.20394],[113.8643,22.20401],[113.86431,22.20406],[113.86424,22.20411],[113.8642,22.20413],[113.86416,22.20417],[113.86411,22.20423],[113.86407,22.20434],[113.86405,22.20453],[113.86406,22.20477],[113.86408,22.20488],[113.86409,22.20494],[113.86407,22.20502],[113.86405,22.2051],[113.86403,22.20525],[113.86418,22.2048],[113.86413,22.2047],[113.86416,22.20439],[113.86418,22.20435],[113.86426,22.20428],[113.86436,22.20421],[113.86442,22.20418],[113.86451,22.20411],[113.86456,22.20409],[113.86461,22.20408],[113.86465,22.20405],[113.86466,22.20394],[113.86469,22.20382],[113.86467,22.20372],[113.86444,22.20331],[113.86426,22.20283],[113.86428,22.20271],[113.86424,22.20264],[113.86429,22.20254],[113.86424,22.20249],[113.86427,22.20244],[113.86416,22.20239],[113.86416,22.20228],[113.86408,22.20226],[113.86405,22.2022],[113.86406,22.20211],[113.86408,22.20207],[113.86411,22.2021],[113.86419,22.20205],[113.86416,22.202],[113.86431,22.20195],[113.86432,22.20189],[113.86453,22.20189],[113.86461,22.2019],[113.86465,22.20196],[113.86469,22.20194],[113.8647,22.202],[113.86475,22.202],[113.86477,22.20206],[113.86474,22.2022],[113.86478,22.20231],[113.86495,22.2024],[113.86502,22.20251],[113.86511,22.20258],[113.86531,22.20269],[113.86542,22.20269],[113.86557,22.20275],[113.8657,22.20274],[113.86622,22.20282],[113.86639,22.20276],[113.86649,22.20276],[113.86656,22.2027],[113.86682,22.20264],[113.86724,22.20269],[113.86738,22.20273],[113.86726,22.20263],[113.86759,22.20261],[113.86764,22.20271],[113.86768,22.20279],[113.86771,22.20288],[113.86789,22.20305],[113.86783,22.2031],[113.86774,22.20304],[113.86781,22.20321],[113.86768,22.20332],[113.86773,22.20343],[113.86781,22.20341],[113.86797,22.20348],[113.86784,22.20351],[113.86798,22.20358],[113.86797,22.20364],[113.86788,22.2037],[113.86788,22.20374],[113.86801,22.2039],[113.86839,22.20422],[113.86861,22.20449],[113.86868,22.20451],[113.86842,22.20522],[113.86847,22.20548],[113.86873,22.20583],[113.86908,22.20611],[113.86922,22.20615],[113.86938,22.2063],[113.86973,22.20645],[113.86979,22.20656],[113.86971,22.20672],[113.86983,22.20694],[113.86987,22.20725],[113.86996,22.20732],[113.86993,22.20746],[113.87007,22.20756],[113.87024,22.2076],[113.87015,22.20768],[113.87029,22.2078],[113.87042,22.20782],[113.87052,22.20791],[113.87063,22.20801],[113.87069,22.20807],[113.8707,22.20811],[113.87078,22.20825],[113.87079,22.20832],[113.87092,22.20834],[113.8711,22.20868],[113.87142,22.20895],[113.87143,22.20899],[113.87134,22.20904],[113.87131,22.20918],[113.87121,22.2093],[113.87117,22.20938],[113.87129,22.20951],[113.87147,22.2095],[113.87146,22.20946],[113.87154,22.20942],[113.87157,22.20941],[113.87165,22.20947],[113.87196,22.20951],[113.87214,22.20968],[113.87205,22.20978],[113.87216,22.20978],[113.87226,22.20973],[113.87235,22.20981],[113.87235,22.20991],[113.87229,22.20994],[113.87231,22.20997],[113.87243,22.20996],[113.87256,22.2099],[113.87264,22.2099],[113.87266,22.20993],[113.87261,22.21001],[113.87274,22.21],[113.87279,22.20996],[113.87284,22.20998],[113.87287,22.21001],[113.87274,22.21012],[113.87282,22.21015],[113.8729,22.21014],[113.87294,22.21023],[113.87284,22.21027],[113.87292,22.21032],[113.8729,22.21036],[113.87276,22.2104],[113.87294,22.21044],[113.87308,22.21037],[113.87331,22.21035],[113.87337,22.21042],[113.87336,22.21054],[113.87347,22.21054],[113.87347,22.21063],[113.8735,22.21066],[113.87357,22.21064],[113.87359,22.21057],[113.87371,22.21059],[113.87382,22.21051],[113.87385,22.21057],[113.87382,22.21062],[113.87383,22.21068],[113.87393,22.21067],[113.87395,22.21063],[113.87404,22.21072],[113.87397,22.21076],[113.87384,22.21072],[113.87371,22.21079],[113.87376,22.21106],[113.87398,22.21114],[113.87404,22.21123],[113.87412,22.21115],[113.87423,22.21116],[113.87427,22.21118],[113.87423,22.21124],[113.87436,22.21126],[113.87441,22.21124],[113.87459,22.2113],[113.87462,22.21143],[113.87472,22.21147],[113.87481,22.2114],[113.87502,22.21142],[113.87509,22.21139],[113.87527,22.21126],[113.87538,22.21131],[113.87546,22.21126],[113.87554,22.21133],[113.87573,22.21136],[113.8759,22.21144],[113.87611,22.21163],[113.87621,22.21158],[113.87624,22.21162],[113.87633,22.21169],[113.87649,22.21175],[113.87656,22.21178],[113.87661,22.21174],[113.87674,22.21181],[113.87676,22.21173],[113.87688,22.21173],[113.87679,22.2117],[113.87681,22.21166],[113.87691,22.21164],[113.87686,22.21156],[113.87699,22.21151],[113.87704,22.21145],[113.87716,22.21142],[113.87722,22.21147],[113.87731,22.21146],[113.87764,22.21122],[113.87782,22.21118],[113.87784,22.21113],[113.8778,22.21102],[113.87772,22.21099],[113.87773,22.21094],[113.87784,22.2108],[113.87805,22.21074],[113.87821,22.21071],[113.87823,22.21084],[113.87836,22.2108],[113.87855,22.21088],[113.87873,22.21087],[113.87886,22.21076],[113.87923,22.21078],[113.87926,22.2108],[113.87919,22.21089],[113.87921,22.21093],[113.87932,22.21094],[113.87937,22.2109],[113.87944,22.2109],[113.87941,22.211],[113.87946,22.211],[113.87951,22.21106],[113.87941,22.21117],[113.87964,22.21118],[113.87957,22.21127],[113.87959,22.21129],[113.87966,22.2114],[113.87967,22.21143],[113.8797,22.21146],[113.87966,22.21152],[113.87969,22.21159],[113.8796,22.2116],[113.87959,22.21168],[113.87948,22.21172],[113.87958,22.2118],[113.87946,22.21189],[113.87942,22.21208],[113.87934,22.21212],[113.87921,22.21222],[113.87907,22.21225],[113.87898,22.21216],[113.87853,22.21235],[113.87843,22.21242],[113.87834,22.21268],[113.87835,22.21282],[113.87846,22.21297],[113.87846,22.21311],[113.87834,22.21344],[113.87809,22.21366],[113.87802,22.21378],[113.878,22.21403],[113.87804,22.21423],[113.87811,22.21432],[113.87809,22.2144],[113.87816,22.21453],[113.87833,22.21475],[113.87848,22.21472],[113.87877,22.21464],[113.87911,22.21468],[113.87914,22.21472],[113.87912,22.21476],[113.87918,22.2148],[113.87915,22.21482],[113.87924,22.21484],[113.87932,22.21494],[113.87925,22.21495],[113.87937,22.21505],[113.87938,22.21509],[113.87933,22.21515],[113.87951,22.21531],[113.87955,22.21532],[113.87955,22.21526],[113.87964,22.21522],[113.87976,22.21521],[113.87998,22.21528],[113.88015,22.21542],[113.88015,22.21549],[113.88002,22.21554],[113.88001,22.21558],[113.88033,22.21551],[113.8806,22.21579],[113.88056,22.21588],[113.8806,22.21594],[113.88074,22.21594],[113.88079,22.21608],[113.88076,22.2163],[113.8807,22.21634],[113.88095,22.2166],[113.88078,22.21666],[113.88097,22.21669],[113.88106,22.21674],[113.88119,22.21689],[113.88121,22.21694],[113.88128,22.21702],[113.88128,22.21714],[113.88142,22.21719],[113.88151,22.21727],[113.8815,22.21733],[113.88158,22.21733],[113.88162,22.21736],[113.88166,22.21745],[113.88168,22.21757],[113.8815,22.21766],[113.88164,22.21768],[113.88167,22.21772],[113.88169,22.21773],[113.88171,22.21779],[113.88178,22.21781],[113.88184,22.2178],[113.88182,22.21783],[113.88183,22.21791],[113.88178,22.21801],[113.8817,22.21809],[113.88171,22.21814],[113.88186,22.21823],[113.8818,22.21825],[113.88179,22.21833],[113.88181,22.21842],[113.88196,22.2185],[113.8819,22.21852],[113.88205,22.21868],[113.88211,22.21872],[113.88222,22.21873],[113.88229,22.21876],[113.88227,22.21887],[113.88241,22.21886],[113.88247,22.21891],[113.88249,22.21889],[113.88261,22.21888],[113.88264,22.21894],[113.88277,22.21899],[113.88288,22.2192],[113.883,22.21918],[113.88302,22.21908],[113.88305,22.21907],[113.88304,22.21915],[113.88302,22.21925],[113.88304,22.21936],[113.88297,22.21944],[113.88304,22.21951],[113.88312,22.21953],[113.88321,22.21948],[113.88325,22.21955],[113.88325,22.2196],[113.8833,22.21963],[113.88341,22.21968],[113.88377,22.21978],[113.88392,22.21981],[113.88414,22.21984],[113.88415,22.21984],[113.88421,22.21986],[113.88421,22.21987],[113.88431,22.21993],[113.88436,22.21997],[113.88447,22.22012],[113.88465,22.22033],[113.88494,22.22058],[113.88528,22.22076],[113.88556,22.22088],[113.88596,22.22097],[113.88612,22.22099],[113.88629,22.22102],[113.88677,22.22105],[113.88749,22.22102],[113.88787,22.22097],[113.8881,22.22091],[113.88825,22.22085],[113.88836,22.22079],[113.88848,22.22068],[113.88853,22.22058],[113.88845,22.22053],[113.88841,22.22045],[113.88855,22.22033],[113.88847,22.22024],[113.88856,22.22022],[113.88862,22.22028],[113.88874,22.22022],[113.88878,22.22016],[113.88876,22.22006],[113.88879,22.22],[113.88887,22.21989],[113.88909,22.21983],[113.88923,22.21976],[113.88932,22.21982],[113.88948,22.2198],[113.88976,22.21979],[113.88988,22.21989],[113.88986,22.21993],[113.88991,22.22003],[113.88997,22.22005],[113.89006,22.22004],[113.8901,22.22007],[113.88999,22.2202],[113.89005,22.22035],[113.89022,22.22035],[113.8902,22.2204],[113.89045,22.2205],[113.89047,22.22059],[113.8904,22.22063],[113.8904,22.22067],[113.89061,22.2208],[113.89074,22.22082],[113.89083,22.22079],[113.89085,22.22087],[113.89099,22.22073],[113.89116,22.22063],[113.89115,22.22057],[113.89128,22.22056],[113.89138,22.22061],[113.89146,22.22075],[113.89137,22.22082],[113.89141,22.22083],[113.89154,22.22083],[113.89155,22.2209],[113.89154,22.22094],[113.89164,22.22106],[113.89165,22.22121],[113.89152,22.22148],[113.89138,22.22158],[113.89133,22.22158],[113.89131,22.22166],[113.89145,22.22173],[113.89144,22.22179],[113.8914,22.22182],[113.89131,22.22189],[113.89129,22.22195],[113.89121,22.22197],[113.89117,22.22198],[113.89109,22.22203],[113.89093,22.22223],[113.89093,22.22227],[113.89101,22.22251],[113.89131,22.22282],[113.89142,22.22286],[113.89149,22.2229],[113.89162,22.22296],[113.89175,22.22301],[113.89183,22.22303],[113.89194,22.22308],[113.89214,22.22314],[113.8925,22.22325],[113.89281,22.22328],[113.89294,22.22327],[113.89298,22.22326],[113.89307,22.22324],[113.89325,22.22322],[113.89345,22.22317],[113.89353,22.22314],[113.89369,22.22317],[113.89386,22.2231],[113.89391,22.22309],[113.89396,22.22306],[113.89401,22.22305],[113.89404,22.22303],[113.89411,22.22299],[113.89414,22.22297],[113.89415,22.22295],[113.89416,22.22273],[113.89413,22.22252],[113.89403,22.22249],[113.89401,22.22247],[113.89404,22.2221],[113.89404,22.22197],[113.89407,22.22192],[113.89412,22.22192],[113.89456,22.22202],[113.89477,22.22206],[113.89497,22.22211],[113.89516,22.22212],[113.89536,22.22211],[113.89548,22.22207],[113.89552,22.22201],[113.89568,22.22152],[113.89417,22.22012],[113.89425,22.22005],[113.89438,22.22018],[113.89433,22.22023],[113.89444,22.22033],[113.89448,22.2203],[113.89451,22.22033],[113.89447,22.22036],[113.89574,22.22154],[113.89564,22.222],[113.89569,22.22207],[113.89572,22.22214],[113.89568,22.2222],[113.89579,22.2223],[113.89619,22.22228],[113.89624,22.22227],[113.89638,22.22222],[113.8963,22.22217],[113.89634,22.22208],[113.89653,22.22212],[113.89652,22.22221],[113.89661,22.2222],[113.89684,22.22227],[113.8969,22.22227],[113.89703,22.22224],[113.89716,22.22223],[113.89727,22.22224],[113.89736,22.22229],[113.89744,22.22227],[113.89753,22.22222],[113.89768,22.22218],[113.8978,22.22213],[113.89785,22.22208],[113.89797,22.22205],[113.89807,22.22212],[113.89817,22.22212],[113.89833,22.22153],[113.89838,22.22112],[113.89851,22.22091],[113.8986,22.22061],[113.89862,22.22033],[113.89867,22.22015],[113.89865,22.22011],[113.89859,22.22002],[113.89852,22.22],[113.89843,22.22001],[113.8983,22.21996],[113.89811,22.21977],[113.89785,22.21957],[113.89715,22.219],[113.89701,22.21875],[113.89692,22.21846],[113.8969,22.2183],[113.897,22.21809],[113.89714,22.21795],[113.89719,22.21791],[113.89768,22.21761],[113.89773,22.21749],[113.89786,22.21728],[113.89788,22.2172],[113.89817,22.21697],[113.89836,22.21671],[113.89837,22.21664],[113.89831,22.21663],[113.89833,22.21644],[113.89842,22.21625],[113.89832,22.21626],[113.89803,22.21605],[113.89815,22.21587],[113.89833,22.21582],[113.89818,22.21547],[113.89814,22.21541],[113.89816,22.21537],[113.89839,22.2154],[113.89848,22.21529],[113.89849,22.21518],[113.89854,22.2151],[113.89876,22.21486],[113.8988,22.21482],[113.89869,22.21455],[113.89879,22.21444],[113.89884,22.21445],[113.89897,22.21448],[113.89911,22.21441],[113.89922,22.21447],[113.89955,22.21442],[113.89958,22.21439],[113.89958,22.21431],[113.89963,22.21422],[113.89968,22.21419],[113.89969,22.21414],[113.89967,22.21412],[113.89975,22.21399],[113.89981,22.21393],[113.89987,22.21389],[113.89994,22.21389],[113.9,22.21398],[113.90002,22.21397],[113.90001,22.2139],[113.90001,22.2138],[113.90003,22.2137],[113.90005,22.21356],[113.90014,22.21346],[113.90042,22.21371],[113.90043,22.21379],[113.90056,22.21387],[113.90062,22.21387],[113.90067,22.21389],[113.90078,22.21389],[113.90082,22.21392],[113.90099,22.21395],[113.90114,22.21393],[113.90145,22.21379],[113.90147,22.21377],[113.90139,22.21366],[113.90145,22.21358],[113.90142,22.21353],[113.90144,22.21344],[113.90152,22.21342],[113.90159,22.2135],[113.90166,22.21351],[113.90162,22.21337],[113.90168,22.21331],[113.90187,22.21331],[113.90206,22.21319],[113.90218,22.21304],[113.90217,22.213],[113.90211,22.21299],[113.90208,22.21288],[113.90217,22.21277],[113.90249,22.21274],[113.90259,22.21265],[113.90268,22.21268],[113.90299,22.21255],[113.90319,22.2124],[113.90335,22.21213],[113.90336,22.21193],[113.90314,22.21189],[113.90308,22.21176],[113.90294,22.21174],[113.90297,22.21166],[113.90295,22.21158],[113.9031,22.21142],[113.90334,22.21127],[113.90356,22.21098],[113.90372,22.21102],[113.90402,22.2112],[113.90412,22.2112],[113.90424,22.21126],[113.90432,22.21136],[113.90435,22.21139],[113.9044,22.21147],[113.90473,22.21145],[113.90494,22.21133],[113.90499,22.2113],[113.90503,22.21113],[113.90528,22.21099],[113.90532,22.21093],[113.90528,22.21089],[113.90535,22.2108],[113.90551,22.21073],[113.90572,22.21075],[113.90597,22.21069],[113.90627,22.21048],[113.90631,22.21043],[113.90635,22.21039],[113.90633,22.21034],[113.90629,22.21032],[113.90632,22.21025],[113.90639,22.21023],[113.90637,22.21014],[113.9064,22.21009],[113.90657,22.20999],[113.90668,22.20983],[113.90682,22.20971],[113.90676,22.20967],[113.90686,22.20953],[113.90685,22.20936],[113.90692,22.20914],[113.90705,22.20893],[113.907,22.20887],[113.90714,22.2088],[113.90713,22.20876],[113.90716,22.20872],[113.90722,22.20874],[113.90729,22.20868],[113.9074,22.20852],[113.90754,22.20854],[113.9076,22.20853],[113.9078,22.20851],[113.90782,22.20844],[113.90796,22.20835],[113.90797,22.20826],[113.90806,22.20835],[113.90812,22.20833],[113.90809,22.20824],[113.90818,22.20822],[113.90822,22.20818],[113.90827,22.20804],[113.90837,22.20795],[113.9084,22.20783],[113.90846,22.20778],[113.90847,22.20767],[113.90855,22.20756],[113.90867,22.20747],[113.90873,22.20745],[113.9088,22.20743],[113.90887,22.20746],[113.90882,22.20759],[113.90886,22.2076],[113.90885,22.20763],[113.90896,22.20768],[113.90941,22.20758],[113.90947,22.2075],[113.90943,22.20745],[113.90946,22.20742],[113.90952,22.20742],[113.90955,22.20745],[113.9097,22.20742],[113.90978,22.20726],[113.90995,22.20734],[113.90997,22.20725],[113.91009,22.20721],[113.91012,22.20712],[113.9102,22.20713],[113.91035,22.20705],[113.91034,22.20699],[113.91042,22.20694],[113.91049,22.20691],[113.91055,22.20691],[113.9106,22.20698],[113.91073,22.20694],[113.9109,22.20695],[113.91106,22.20687],[113.91112,22.20684],[113.91114,22.20671],[113.91119,22.20669],[113.91121,22.20672],[113.91132,22.20666],[113.91137,22.2066],[113.91145,22.20659],[113.91154,22.20651],[113.91169,22.20654],[113.91167,22.2066],[113.91191,22.20646],[113.91213,22.20641],[113.91219,22.20646],[113.91231,22.20637],[113.91246,22.20635],[113.91253,22.20641],[113.91253,22.20654],[113.91259,22.20662],[113.91266,22.20664],[113.91264,22.20671],[113.91267,22.20679],[113.91265,22.20686],[113.91261,22.20686],[113.91255,22.20695],[113.91253,22.20717],[113.91254,22.20724],[113.91279,22.2074],[113.91289,22.20741],[113.91289,22.20746],[113.91297,22.2075],[113.91303,22.20749],[113.91305,22.20754],[113.91313,22.20756],[113.91318,22.20755],[113.91322,22.20749],[113.91327,22.20748],[113.9133,22.20754],[113.91326,22.20757],[113.91328,22.2076],[113.91335,22.20759],[113.91337,22.20767],[113.91333,22.20768],[113.91344,22.20782],[113.91351,22.20809],[113.91359,22.20823],[113.91378,22.20848],[113.914,22.20863],[113.91428,22.2089],[113.91432,22.20922],[113.91427,22.20944],[113.91428,22.20972],[113.91424,22.20985],[113.91435,22.21011],[113.91444,22.2102],[113.91416,22.21074],[113.91426,22.21094],[113.91441,22.21106],[113.91499,22.21133],[113.91582,22.21153],[113.91601,22.21151],[113.91604,22.21137],[113.91613,22.2113],[113.91612,22.21121],[113.91626,22.21121],[113.91635,22.21131],[113.91657,22.21143],[113.9167,22.21137],[113.91677,22.21143],[113.91729,22.21134],[113.91746,22.21116],[113.91744,22.21108],[113.91751,22.21099],[113.91746,22.21093],[113.91748,22.21089],[113.91752,22.21088],[113.91759,22.2109],[113.9177,22.21091],[113.91781,22.21088],[113.91834,22.21045],[113.91867,22.21023],[113.91884,22.20975],[113.91884,22.20951],[113.91879,22.20939],[113.91879,22.2092],[113.91895,22.2091],[113.91896,22.20899],[113.91893,22.20892],[113.91895,22.20883],[113.91915,22.20879],[113.91919,22.20888],[113.91913,22.20897],[113.9192,22.20901],[113.9193,22.20918],[113.91938,22.20932],[113.91942,22.20935],[113.91958,22.20939],[113.91969,22.20936],[113.92002,22.20921],[113.92011,22.20888],[113.91997,22.2085],[113.91993,22.20827],[113.91999,22.20804],[113.92017,22.20789],[113.9202,22.20777],[113.92031,22.20774],[113.9203,22.20764],[113.92041,22.20752],[113.92053,22.20754],[113.92089,22.20756],[113.9211,22.20765],[113.92115,22.20772],[113.92151,22.20794],[113.92172,22.20796],[113.92186,22.20791],[113.92199,22.20793],[113.92258,22.20774],[113.92281,22.2075],[113.9228,22.20747],[113.92274,22.20746],[113.92273,22.20738],[113.92287,22.20721],[113.92299,22.20721],[113.9231,22.20713],[113.92314,22.20713],[113.92319,22.20723],[113.92316,22.20735],[113.92327,22.2074],[113.92332,22.20738],[113.92339,22.20743],[113.92336,22.20753],[113.92333,22.2076],[113.92336,22.20774],[113.92329,22.20775],[113.92334,22.20808],[113.92354,22.20824],[113.92371,22.20826],[113.92372,22.20833],[113.9238,22.20838],[113.92402,22.20846],[113.92419,22.20845],[113.92425,22.20849],[113.92441,22.20859],[113.92467,22.20862],[113.92472,22.20861],[113.92473,22.20858],[113.92481,22.20859],[113.92488,22.2086],[113.92488,22.20871],[113.92491,22.20877],[113.92496,22.20873],[113.92507,22.20871],[113.92512,22.20891],[113.92526,22.20897],[113.9253,22.20899],[113.92533,22.20901],[113.92585,22.20905],[113.92619,22.20915],[113.92627,22.2092],[113.92628,22.20915],[113.92636,22.20913],[113.92647,22.20913],[113.92664,22.2092],[113.92675,22.20917],[113.92684,22.20945],[113.9269,22.20942],[113.92697,22.20926],[113.92712,22.20924],[113.92725,22.2093],[113.92734,22.20946],[113.92728,22.20958],[113.92731,22.20967],[113.92738,22.2096],[113.92741,22.20945],[113.92748,22.20937],[113.92774,22.20928],[113.92788,22.20941],[113.92781,22.20957],[113.92799,22.20964],[113.92811,22.20965],[113.92829,22.20968],[113.92849,22.20967],[113.92865,22.20973],[113.9289,22.20964],[113.92904,22.20969],[113.92909,22.20974],[113.92933,22.20973],[113.92948,22.20981],[113.92961,22.20973],[113.9298,22.20969],[113.92987,22.20978],[113.93001,22.2097],[113.93012,22.20973],[113.93023,22.20982],[113.93037,22.20982],[113.93037,22.20992],[113.93046,22.20993],[113.93057,22.21],[113.93064,22.21017],[113.93062,22.2103],[113.93074,22.21029],[113.93079,22.21035],[113.93077,22.21044],[113.93071,22.21047],[113.93064,22.21057],[113.93051,22.2109],[113.93055,22.21137],[113.93062,22.21139],[113.93059,22.21156],[113.93065,22.2116],[113.93056,22.21167],[113.93057,22.21179],[113.9305,22.21192],[113.93051,22.21206],[113.93045,22.21213],[113.93044,22.21232],[113.93036,22.21244],[113.93039,22.21266],[113.93035,22.2128],[113.93031,22.21296],[113.93035,22.21315],[113.93045,22.21316],[113.93047,22.21327],[113.93039,22.21334],[113.93039,22.21342],[113.93049,22.21345],[113.93047,22.21352],[113.93053,22.21361],[113.93066,22.21363],[113.93071,22.2137],[113.93078,22.21369],[113.93075,22.21379],[113.93074,22.2139],[113.93096,22.214],[113.93093,22.2141],[113.93094,22.21413],[113.93105,22.21426],[113.93105,22.21435],[113.93107,22.21443],[113.93107,22.21449],[113.9311,22.21454],[113.93106,22.21456],[113.93108,22.21462],[113.93099,22.21476],[113.93106,22.21479],[113.93104,22.215],[113.9311,22.21509],[113.93119,22.2151],[113.93102,22.2153],[113.9311,22.21541],[113.93118,22.21562],[113.93116,22.21574],[113.93114,22.21577],[113.93108,22.21576],[113.93094,22.21591],[113.93098,22.21599],[113.93078,22.21626],[113.93068,22.2165],[113.93062,22.21653],[113.93053,22.2167],[113.9305,22.21677],[113.93009,22.21698],[113.93001,22.2171],[113.93001,22.21718],[113.92965,22.2175],[113.92924,22.21754],[113.92897,22.21761],[113.92882,22.21773],[113.92878,22.21786],[113.92872,22.21795],[113.92858,22.2181],[113.92853,22.21816],[113.92847,22.21818],[113.92844,22.21824],[113.92827,22.21833],[113.92827,22.21837],[113.92794,22.21849],[113.92696,22.21874],[113.92669,22.21879],[113.92661,22.21877],[113.92655,22.21881],[113.92634,22.21881],[113.92629,22.21883],[113.92618,22.21884],[113.92608,22.21888],[113.92594,22.21883],[113.9259,22.21865],[113.92587,22.21863],[113.92589,22.21857],[113.92583,22.21847],[113.92572,22.21842],[113.92566,22.21835],[113.92551,22.21833],[113.92542,22.21816],[113.92535,22.21814],[113.92534,22.21809],[113.92525,22.21804],[113.92519,22.21803],[113.92512,22.21793],[113.92507,22.21785],[113.92482,22.21783],[113.92474,22.21791],[113.92465,22.21791],[113.92458,22.21785],[113.92455,22.21781],[113.92459,22.21772],[113.92457,22.21753],[113.92449,22.21748],[113.92437,22.21754],[113.9243,22.21747],[113.92432,22.21738],[113.92424,22.21727],[113.92413,22.21727],[113.92402,22.21741],[113.92383,22.21743],[113.92378,22.21728],[113.92367,22.21716],[113.92354,22.21714],[113.9234,22.21717],[113.92317,22.21731],[113.92302,22.21731],[113.92263,22.21713],[113.92256,22.21705],[113.92246,22.21702],[113.9223,22.21705],[113.92211,22.21722],[113.92204,22.21735],[113.92203,22.21745],[113.92198,22.21751],[113.92187,22.21749],[113.92177,22.21738],[113.92159,22.21732],[113.92145,22.21742],[113.92122,22.21743],[113.92075,22.21772],[113.92059,22.21778],[113.92038,22.21783],[113.92017,22.21783],[113.91976,22.21793],[113.91968,22.21789],[113.91929,22.21793],[113.91853,22.2181],[113.91821,22.21825],[113.91729,22.21851],[113.91709,22.21869],[113.91705,22.21878],[113.91688,22.21892],[113.91691,22.21893],[113.91706,22.21884],[113.91731,22.21855],[113.91806,22.21837],[113.91815,22.21861],[113.9181,22.21863],[113.91801,22.21857],[113.91794,22.21862],[113.91812,22.21877],[113.91813,22.2187],[113.91823,22.21867],[113.91829,22.2186],[113.91816,22.21847],[113.91816,22.21841],[113.9186,22.21823],[113.91897,22.21819],[113.91913,22.21805],[113.91923,22.21811],[113.91934,22.21833],[113.91968,22.21836],[113.91969,22.21841],[113.91961,22.21845],[113.91941,22.21841],[113.91912,22.21845],[113.91891,22.21883],[113.91881,22.21908],[113.91886,22.21936],[113.91869,22.21959],[113.91863,22.21995],[113.91865,22.22025],[113.91881,22.22105],[113.91881,22.22122],[113.91872,22.22129],[113.91874,22.22134],[113.91893,22.22137],[113.91898,22.22142],[113.91909,22.22132],[113.91949,22.22134],[113.91968,22.22146],[113.91979,22.22162],[113.9198,22.22172],[113.91984,22.22171],[113.91986,22.22158],[113.91989,22.22153],[113.91984,22.22147],[113.91984,22.22143],[113.91988,22.2214],[113.91996,22.22139],[113.92005,22.22142],[113.92009,22.22149],[113.9203,22.22167],[113.92033,22.22169],[113.92059,22.22167],[113.92084,22.22176],[113.9212,22.22162],[113.92142,22.22156],[113.92147,22.22158],[113.92169,22.22245],[113.92174,22.22252],[113.92184,22.22255],[113.92202,22.22284],[113.92215,22.22319],[113.92228,22.22333],[113.92236,22.22355],[113.92244,22.22365],[113.92249,22.22394],[113.92274,22.22435],[113.92272,22.22466],[113.92292,22.22507],[113.92304,22.22533],[113.92322,22.22553],[113.92339,22.22576],[113.92348,22.22583],[113.92352,22.22587],[113.92358,22.22598],[113.92389,22.22621],[113.92407,22.22623],[113.92417,22.2262],[113.92421,22.22621],[113.92433,22.22634],[113.92437,22.22638],[113.92441,22.22642],[113.92447,22.22644],[113.92451,22.22643],[113.92455,22.2264],[113.9246,22.22636],[113.92468,22.22637],[113.92468,22.22644],[113.92485,22.22648],[113.92494,22.22649],[113.92526,22.22648],[113.9253,22.22639],[113.92533,22.22634],[113.92538,22.2263],[113.92548,22.22626],[113.92555,22.22625],[113.92568,22.2263],[113.92586,22.22627],[113.9259,22.22624],[113.92592,22.2262],[113.92594,22.22618],[113.92597,22.22616],[113.92607,22.22613],[113.92605,22.22593],[113.9261,22.22581],[113.92655,22.22542],[113.92673,22.22516],[113.92678,22.22497],[113.927,22.22478],[113.92718,22.22469],[113.92719,22.22463],[113.92724,22.2246],[113.92731,22.2247],[113.92742,22.22461],[113.92752,22.22464],[113.92771,22.22461],[113.92781,22.2246],[113.9279,22.22462],[113.92795,22.2246],[113.92798,22.22453],[113.92795,22.22446],[113.92781,22.22442],[113.92777,22.22445],[113.92776,22.2245],[113.92773,22.22443],[113.9277,22.22441],[113.92768,22.22438],[113.9277,22.22432],[113.92771,22.22426],[113.92763,22.22408],[113.92767,22.22405],[113.92777,22.22408],[113.92782,22.22405],[113.92785,22.22404],[113.92796,22.22406],[113.928,22.22408],[113.9281,22.22409],[113.92813,22.22409],[113.92813,22.22412],[113.92825,22.22412],[113.92829,22.22416],[113.92837,22.22414],[113.92839,22.22414],[113.92839,22.22418],[113.92845,22.22419],[113.92853,22.22428],[113.92864,22.22431],[113.92872,22.2243],[113.92875,22.22427],[113.92879,22.22426],[113.92878,22.22432],[113.92899,22.22442],[113.92905,22.2244],[113.92916,22.22448],[113.92933,22.22447],[113.92955,22.22463],[113.92964,22.22464],[113.92967,22.22461],[113.9297,22.22462],[113.92968,22.22466],[113.92983,22.22466],[113.92985,22.22464],[113.92997,22.22468],[113.93002,22.22465],[113.93006,22.22463],[113.93013,22.2247],[113.93025,22.22473],[113.9303,22.22481],[113.93034,22.2248],[113.93034,22.22487],[113.93039,22.22487],[113.93032,22.22489],[113.93033,22.22493],[113.93044,22.22501],[113.93081,22.22513],[113.93162,22.22528],[113.93207,22.22531],[113.93276,22.2252],[113.93281,22.22522],[113.9329,22.22554],[113.93285,22.22569],[113.93286,22.22584],[113.93268,22.22618],[113.93286,22.22606],[113.93293,22.22593],[113.933,22.22556],[113.93317,22.22535],[113.93321,22.22537],[113.93344,22.22562],[113.93373,22.22584],[113.93382,22.22584],[113.9338,22.22577],[113.93384,22.22574],[113.93391,22.22577],[113.93394,22.22573],[113.93415,22.2258],[113.93426,22.22576],[113.93431,22.22587],[113.93422,22.22605],[113.9344,22.22616],[113.93424,22.22625],[113.9342,22.22639],[113.93422,22.22651],[113.9341,22.22665],[113.93405,22.22682],[113.93406,22.22715],[113.93412,22.22734],[113.93421,22.22731],[113.93453,22.22756],[113.93504,22.22776],[113.93614,22.22849],[113.93633,22.22852],[113.93675,22.22875],[113.93703,22.22886],[113.9375,22.22891],[113.93799,22.22884],[113.93875,22.22892],[113.93876,22.22889],[113.93885,22.22885],[113.93904,22.22883],[113.93906,22.22875],[113.93919,22.22872],[113.93925,22.22881],[113.93934,22.2288],[113.93944,22.22885],[113.9394,22.22898],[113.93976,22.22904],[113.9398,22.22909],[113.93986,22.22909],[113.93979,22.22894],[113.93984,22.22883],[113.93987,22.22879],[113.94,22.22883],[113.94004,22.22888],[113.94,22.22912],[113.94004,22.22926],[113.93997,22.22932],[113.93998,22.22946],[113.94005,22.22961],[113.94015,22.22972],[113.94025,22.22987],[113.94057,22.23003],[113.94059,22.23005],[113.94065,22.23018],[113.94095,22.23033],[113.94132,22.23053],[113.94136,22.23047],[113.94143,22.2305],[113.94137,22.2306],[113.94184,22.23083],[113.9423,22.23104],[113.94281,22.23129],[113.94339,22.2315],[113.94387,22.2317],[113.94523,22.23224],[113.94884,22.2333],[113.951,22.23384],[113.95149,22.23391],[113.95216,22.234],[113.95248,22.234],[113.95258,22.23399],[113.9528,22.23386],[113.95292,22.23383],[113.95306,22.23383],[113.95314,22.23384],[113.95324,22.23389],[113.95333,22.23392],[113.95338,22.23395],[113.9534,22.23398],[113.9534,22.23399],[113.9534,22.23407],[113.9534,22.23408],[113.95341,22.23408],[113.95341,22.23408],[113.95388,22.23411],[113.95395,22.23411],[113.95405,22.23412],[113.95409,22.23411],[113.95412,22.23411],[113.95421,22.23411],[113.95523,22.23402],[113.95538,22.23397],[113.95607,22.23384],[113.95634,22.23379],[113.95646,22.23376],[113.95678,22.23361],[113.95698,22.23346],[113.95718,22.23331],[113.95735,22.23305],[113.95748,22.23288],[113.9575,22.23287],[113.95752,22.23286],[113.95753,22.23287],[113.95755,22.23287],[113.95757,22.23288],[113.95758,22.23291],[113.95765,22.23305],[113.9577,22.23318],[113.95777,22.23316],[113.95769,22.23289],[113.95765,22.23282],[113.95757,22.23276],[113.95755,22.2327],[113.95748,22.23265],[113.95729,22.23258],[113.95728,22.2326],[113.95722,22.23255],[113.95709,22.2325],[113.95704,22.23242],[113.95698,22.23238],[113.95699,22.23236],[113.95704,22.23236],[113.95709,22.2324],[113.95714,22.23242],[113.95719,22.23235],[113.9573,22.23205],[113.95729,22.23199],[113.95733,22.23188],[113.95731,22.23184],[113.95727,22.23183],[113.95726,22.23171],[113.95731,22.23167],[113.95741,22.23169],[113.95744,22.23173],[113.95742,22.23178],[113.95744,22.23183],[113.95747,22.23177],[113.95751,22.23178],[113.95753,22.2318],[113.95758,22.23179],[113.9576,22.23182],[113.95763,22.23183],[113.95765,22.23187],[113.95766,22.23193],[113.95765,22.23195],[113.95768,22.23198],[113.95774,22.23201],[113.9578,22.23201],[113.95791,22.23198],[113.958,22.23193],[113.95805,22.23187],[113.9581,22.23172],[113.95814,22.23169],[113.95819,22.23171],[113.95837,22.23185],[113.95847,22.23188],[113.95861,22.23196],[113.95869,22.23202],[113.95875,22.23213],[113.95876,22.23218],[113.95874,22.23228],[113.95869,22.23233],[113.95891,22.23258],[113.959,22.23262],[113.95927,22.23264],[113.95928,22.23275],[113.95932,22.23284],[113.95942,22.23279],[113.95958,22.23292],[113.95986,22.23293],[113.96016,22.2332],[113.96039,22.23323],[113.96052,22.23331],[113.96074,22.23331],[113.96089,22.23321],[113.96115,22.23314],[113.96122,22.23317],[113.96123,22.23324],[113.9613,22.23331],[113.96139,22.23334],[113.96175,22.23332],[113.96192,22.23321],[113.96194,22.23313],[113.96213,22.2331],[113.96221,22.23301],[113.96245,22.23297],[113.96249,22.233],[113.96251,22.23309],[113.96262,22.23316],[113.96263,22.23327],[113.9626,22.23338],[113.96263,22.23355],[113.96271,22.23366],[113.96267,22.23373],[113.96266,22.23398],[113.96262,22.23415],[113.96274,22.23424],[113.96269,22.23434],[113.96268,22.23451],[113.96265,22.23456],[113.96261,22.23457],[113.96257,22.23458],[113.96256,22.23474],[113.96263,22.23493],[113.96269,22.23502],[113.9628,22.23504],[113.96268,22.2351],[113.96269,22.23532],[113.96265,22.23547],[113.96279,22.2357],[113.96297,22.23579],[113.9632,22.23585],[113.96383,22.23582],[113.96414,22.23609],[113.96482,22.23635],[113.96513,22.23655],[113.96515,22.2365],[113.96521,22.23651],[113.96537,22.23659],[113.96542,22.23666],[113.96629,22.23666],[113.96666,22.23668],[113.96705,22.23674],[113.96748,22.23705],[113.96785,22.23734],[113.96806,22.23742],[113.96813,22.23742],[113.96828,22.23752],[113.96831,22.23762],[113.96827,22.23781],[113.96834,22.23783],[113.96841,22.23769],[113.96847,22.23765],[113.96856,22.23765],[113.9689,22.23818],[113.96945,22.23866],[113.97018,22.23912],[113.97038,22.23941],[113.97057,22.23948],[113.97078,22.23963],[113.97104,22.23966],[113.97124,22.23965],[113.97138,22.2397],[113.97139,22.23965],[113.97141,22.23961],[113.97148,22.23958],[113.9715,22.2397],[113.97157,22.23966],[113.97159,22.23962],[113.97156,22.2396],[113.97158,22.23954],[113.97162,22.23952],[113.97167,22.23953],[113.97172,22.23958],[113.9718,22.23959],[113.97187,22.23957],[113.97189,22.2396],[113.97191,22.23968],[113.97198,22.23966],[113.97202,22.23967],[113.97205,22.23973],[113.97212,22.23977],[113.97216,22.23982],[113.97219,22.23989],[113.97224,22.23992],[113.97225,22.23995],[113.97223,22.24002],[113.97226,22.24006],[113.97247,22.24009],[113.97257,22.24016],[113.97266,22.24025],[113.97273,22.24034],[113.97281,22.24044],[113.97282,22.24045],[113.97296,22.24063],[113.97298,22.24063],[113.973,22.24063],[113.97302,22.24063],[113.97344,22.24055],[113.97354,22.24053],[113.9754,22.24006],[113.97617,22.23985],[113.97744,22.23944],[113.97844,22.23903],[113.97884,22.23884],[113.9795,22.23848],[113.98012,22.23808],[113.98052,22.23778],[113.98076,22.23762],[113.98119,22.23729],[113.98134,22.23723],[113.98137,22.23722],[113.98141,22.23721],[113.98146,22.2372],[113.98151,22.23721],[113.98156,22.23722],[113.9816,22.23724],[113.98164,22.23726],[113.98167,22.23728],[113.9817,22.23732],[113.98172,22.23735],[113.98173,22.23737],[113.98174,22.23741],[113.98175,22.23743],[113.98175,22.23745],[113.98175,22.23746],[113.98175,22.23747],[113.98175,22.23747],[113.98174,22.23747],[113.98174,22.23748],[113.98173,22.23748],[113.98173,22.23748],[113.98172,22.23748],[113.98172,22.23748],[113.98171,22.23748],[113.98167,22.23747],[113.98164,22.23748],[113.98162,22.23749],[113.9816,22.23749],[113.98158,22.2375],[113.98156,22.23752],[113.98155,22.23753],[113.98151,22.2376],[113.98144,22.23777],[113.9814,22.23782],[113.98135,22.23785],[113.98131,22.23786],[113.98122,22.23799],[113.98112,22.2381],[113.98099,22.23821],[113.98093,22.23827],[113.98083,22.23832],[113.98077,22.23834],[113.98061,22.23839],[113.98051,22.23847],[113.98049,22.23854],[113.98047,22.23857],[113.98046,22.23858],[113.98014,22.23886],[113.97976,22.23879],[113.9797,22.23885],[113.97973,22.23896],[113.97944,22.23897],[113.97939,22.23902],[113.97943,22.2392],[113.97959,22.23918],[113.97968,22.23923],[113.97977,22.23942],[113.97976,22.23954],[113.97982,22.23963],[113.97989,22.23971],[113.98001,22.23973],[113.97996,22.23994],[113.97988,22.24057],[113.98015,22.24059],[113.98015,22.24056],[113.98018,22.24051],[113.98067,22.23988],[113.98087,22.2393],[113.98095,22.23918],[113.9811,22.23906],[113.98128,22.23895],[113.98156,22.23884],[113.98185,22.2388],[113.98207,22.23881],[113.98225,22.23889],[113.98239,22.23879],[113.98244,22.23857],[113.98233,22.23848],[113.98228,22.23835],[113.98231,22.23817],[113.98212,22.238],[113.98208,22.23775],[113.98194,22.23756],[113.98189,22.23718],[113.98187,22.23714],[113.98183,22.23713],[113.98178,22.23712],[113.98173,22.23709],[113.98168,22.23708],[113.98161,22.23697],[113.98159,22.23688],[113.98161,22.23684],[113.98161,22.23682],[113.98162,22.23677],[113.98166,22.23666],[113.98173,22.23656],[113.98177,22.23645],[113.98188,22.23607],[113.98191,22.23602],[113.982,22.23572],[113.98208,22.23559],[113.98213,22.23557],[113.98216,22.23557],[113.98219,22.2356],[113.9822,22.23567],[113.98223,22.23573],[113.98232,22.2358],[113.98236,22.23576],[113.98231,22.23572],[113.98228,22.23569],[113.98223,22.23556],[113.98217,22.23553],[113.982,22.23539],[113.98188,22.23529],[113.98147,22.23521],[113.98136,22.23518],[113.98131,22.23515],[113.98107,22.23498],[113.98104,22.23497],[113.98096,22.23495],[113.9808,22.23485],[113.98073,22.23478],[113.98059,22.23465],[113.98059,22.23449],[113.98034,22.23445],[113.98008,22.23432],[113.97994,22.23418],[113.98,22.23401],[113.97984,22.23399],[113.97967,22.23386],[113.97956,22.2335],[113.97953,22.23338],[113.97936,22.23326],[113.97928,22.23307],[113.97928,22.233],[113.97926,22.23286],[113.97928,22.23283],[113.97935,22.23284],[113.9794,22.23274],[113.97936,22.2325],[113.97946,22.23242],[113.97934,22.23235],[113.97921,22.23213],[113.97926,22.23205],[113.97926,22.23197],[113.97916,22.23193],[113.97912,22.23172],[113.97914,22.23159],[113.97901,22.23134],[113.97891,22.23121],[113.97894,22.23107],[113.97893,22.23097],[113.97887,22.231],[113.97875,22.23078],[113.97876,22.23047],[113.97868,22.23042],[113.97869,22.23038],[113.97838,22.23001],[113.97805,22.22945],[113.97773,22.22868],[113.97771,22.22855],[113.97765,22.22849],[113.97766,22.22845],[113.97773,22.22843],[113.97771,22.22837],[113.97797,22.2283],[113.97799,22.22825],[113.97813,22.22817],[113.97852,22.22811],[113.97867,22.22797],[113.97874,22.22801],[113.97882,22.228],[113.979,22.22814],[113.97909,22.22803],[113.97904,22.22785],[113.97911,22.22791],[113.97932,22.22788],[113.97925,22.22778],[113.97933,22.22769],[113.97942,22.22769],[113.97939,22.22758],[113.97959,22.22764],[113.97981,22.22764],[113.97987,22.22747],[113.98006,22.22743],[113.9801,22.2273],[113.98025,22.22725],[113.98024,22.22718],[113.98049,22.227],[113.98055,22.22685],[113.98081,22.22664],[113.98089,22.22664],[113.98095,22.22645],[113.98125,22.22607],[113.98138,22.226],[113.98142,22.22588],[113.98157,22.22571],[113.98166,22.22572],[113.98171,22.22569],[113.98171,22.22562],[113.98176,22.22554],[113.98192,22.22547],[113.98197,22.22538],[113.98206,22.22534],[113.98217,22.22521],[113.98213,22.22513],[113.98222,22.22501],[113.98241,22.22493],[113.98251,22.22495],[113.98249,22.22501],[113.98253,22.22503],[113.98282,22.22497],[113.98315,22.22452],[113.98319,22.22436],[113.98338,22.22402],[113.9836,22.22383],[113.9838,22.2236],[113.98401,22.22324],[113.98412,22.22298],[113.98422,22.22253],[113.98406,22.22241],[113.98377,22.22246],[113.98377,22.22249],[113.98374,22.2225],[113.98371,22.22241],[113.98375,22.2224],[113.98376,22.22243],[113.98404,22.22238],[113.98398,22.22225],[113.98397,22.22213],[113.98385,22.22188],[113.98368,22.22167],[113.98369,22.22155],[113.98359,22.22143],[113.98316,22.22122],[113.98284,22.22089],[113.98275,22.22068],[113.98274,22.22048],[113.98257,22.2198],[113.98238,22.21957],[113.98226,22.21925],[113.98201,22.219],[113.98184,22.21868],[113.98178,22.21865],[113.98174,22.21868],[113.98159,22.21856],[113.98145,22.21856],[113.98136,22.21844],[113.98128,22.21849],[113.98113,22.21843],[113.9811,22.21847],[113.98097,22.21843],[113.98079,22.21846],[113.98066,22.21841],[113.98046,22.21802],[113.98045,22.21796],[113.98041,22.21785],[113.98042,22.21761],[113.98048,22.21749],[113.98042,22.21737],[113.98049,22.21724],[113.98055,22.2172],[113.98063,22.21722],[113.98063,22.21711],[113.98068,22.21712],[113.98087,22.21694],[113.9811,22.21683],[113.98118,22.21685],[113.98123,22.217],[113.98139,22.217],[113.98146,22.2169],[113.98147,22.21678],[113.98161,22.21651],[113.98168,22.21648],[113.98165,22.21643],[113.98168,22.21639],[113.98186,22.21632],[113.98192,22.21633],[113.98194,22.21629],[113.98219,22.21621],[113.98225,22.21626],[113.98227,22.21632],[113.98239,22.2162],[113.98249,22.21617],[113.98254,22.21621],[113.98285,22.21627],[113.98299,22.21628],[113.98317,22.21622],[113.98318,22.21614],[113.98314,22.21603],[113.98324,22.21593],[113.98341,22.21583],[113.98351,22.21585],[113.98359,22.21557],[113.98373,22.2155],[113.98391,22.21547],[113.98405,22.21551],[113.98417,22.21548],[113.9845,22.21557],[113.98474,22.21553],[113.98485,22.21547],[113.98506,22.21552],[113.98509,22.21548],[113.98513,22.21549],[113.98511,22.21553],[113.98526,22.21556],[113.98544,22.21568],[113.98556,22.21569],[113.98606,22.21549],[113.98614,22.21523],[113.98611,22.21496],[113.98619,22.21475],[113.98618,22.21475],[113.98615,22.21479],[113.98611,22.21483],[113.98609,22.21482],[113.9861,22.21476],[113.98616,22.21471],[113.98626,22.21457],[113.98631,22.21454],[113.98639,22.21453],[113.98647,22.21455],[113.98656,22.2145],[113.98674,22.21449],[113.98687,22.21434],[113.98694,22.21421],[113.98695,22.21417],[113.9869,22.21415],[113.98688,22.21401],[113.9869,22.2139],[113.98695,22.2138],[113.98692,22.21376],[113.987,22.21366],[113.98702,22.2135],[113.98698,22.21344],[113.98698,22.21342],[113.987,22.21338],[113.98704,22.21337],[113.98705,22.21333],[113.98703,22.21323],[113.98698,22.21322],[113.98696,22.21313],[113.98695,22.213],[113.98698,22.21296],[113.98694,22.21285],[113.98699,22.21267],[113.98695,22.21264],[113.98699,22.21252],[113.98699,22.21242],[113.98697,22.21238],[113.98699,22.21236],[113.98706,22.21237],[113.98708,22.21235],[113.98701,22.21231],[113.98695,22.21224],[113.98711,22.2122],[113.98714,22.21222],[113.98715,22.21225],[113.98711,22.21233],[113.98716,22.21228],[113.98719,22.21227],[113.98726,22.21229],[113.98731,22.21234],[113.98734,22.21233],[113.9874,22.21236],[113.98743,22.21233],[113.9875,22.21234],[113.98761,22.21243],[113.98763,22.21249],[113.98767,22.21251],[113.9877,22.21249],[113.98772,22.21254],[113.98776,22.2125],[113.98786,22.21248],[113.98793,22.21251],[113.98801,22.21251],[113.98807,22.21252],[113.98808,22.2125],[113.98825,22.21248],[113.98831,22.21249],[113.98833,22.21252],[113.98852,22.21255],[113.98855,22.21252],[113.98867,22.21253],[113.98873,22.21256],[113.98877,22.21253],[113.98885,22.21257],[113.98888,22.21261],[113.98894,22.21258],[113.98899,22.2126],[113.98904,22.21259],[113.98906,22.21257],[113.98909,22.21249],[113.98911,22.21247],[113.98913,22.21247],[113.98919,22.21253],[113.98924,22.21247],[113.98933,22.21247],[113.98937,22.2125],[113.98941,22.21248],[113.98947,22.21248],[113.9897,22.21253],[113.98978,22.2126],[113.98977,22.21264],[113.98982,22.21264],[113.98989,22.21277],[113.98986,22.21284],[113.9899,22.21283],[113.98989,22.21289],[113.98985,22.21293],[113.98981,22.21295],[113.98979,22.213],[113.98982,22.21299],[113.98984,22.21304],[113.98976,22.21305],[113.98977,22.21308],[113.98989,22.21326],[113.98999,22.21312],[113.99011,22.2132],[113.98994,22.21343],[113.98982,22.21336],[113.98977,22.21343],[113.98941,22.21362],[113.98932,22.21376],[113.98932,22.2138],[113.9894,22.21388],[113.98939,22.214],[113.98943,22.2141],[113.98951,22.2142],[113.9896,22.2143],[113.98966,22.21436],[113.98978,22.21446],[113.98989,22.21453],[113.98993,22.21457],[113.98997,22.21458],[113.99001,22.21459],[113.99006,22.21465],[113.99009,22.21468],[113.99013,22.21469],[113.99017,22.21469],[113.99021,22.21474],[113.99026,22.21478],[113.99032,22.2148],[113.99037,22.21484],[113.99042,22.21488],[113.99049,22.21489],[113.99055,22.21494],[113.99059,22.21499],[113.99065,22.215],[113.99071,22.21504],[113.99075,22.2151],[113.99081,22.21512],[113.99086,22.21513],[113.99091,22.21519],[113.99097,22.21523],[113.99104,22.21524],[113.99109,22.21528],[113.99113,22.21533],[113.99122,22.21535],[113.9913,22.21539],[113.99136,22.21541],[113.9915,22.21548],[113.99154,22.21551],[113.99158,22.21555],[113.99163,22.21557],[113.99168,22.21557],[113.99178,22.21559],[113.99181,22.21561],[113.99183,22.21561],[113.99187,22.2156],[113.99186,22.21558],[113.99187,22.21554],[113.99188,22.21551],[113.99214,22.21532],[113.99222,22.21532],[113.99225,22.21528],[113.99224,22.21527],[113.99229,22.21522],[113.99235,22.21517],[113.99236,22.21513],[113.99241,22.21511],[113.99248,22.21511],[113.99254,22.2152],[113.99258,22.21514],[113.99282,22.21523],[113.99282,22.21515],[113.99288,22.21513],[113.99313,22.21518],[113.99325,22.21516],[113.99331,22.21521],[113.9934,22.21515],[113.99348,22.21514],[113.99359,22.21516],[113.99363,22.21522],[113.99367,22.21518],[113.99372,22.21532],[113.99378,22.21533],[113.99378,22.21526],[113.99398,22.21536],[113.99399,22.21541],[113.99391,22.21545],[113.99401,22.21553],[113.9941,22.21554],[113.99432,22.21575],[113.99429,22.21577],[113.99437,22.21597],[113.99451,22.21608],[113.99445,22.21609],[113.99453,22.21617],[113.99448,22.21632],[113.9944,22.21639],[113.99449,22.21643],[113.99448,22.21646],[113.99453,22.21645],[113.99465,22.2165],[113.99477,22.21648],[113.99486,22.21651],[113.99517,22.21672],[113.99518,22.21679],[113.99514,22.21687],[113.99521,22.21693],[113.99518,22.217],[113.99512,22.21709],[113.99509,22.2172],[113.99508,22.21724],[113.99528,22.21745],[113.99578,22.21777],[113.99588,22.21779],[113.99597,22.21787],[113.99603,22.21784],[113.99611,22.2179],[113.99623,22.2179],[113.99631,22.21796],[113.99657,22.21801],[113.99673,22.2181],[113.99701,22.21812],[113.99726,22.2182],[113.99833,22.21826],[113.99838,22.21825],[113.99851,22.21827],[113.99878,22.21826],[113.999,22.21824],[113.99918,22.21819],[113.99933,22.21822],[113.99938,22.21822],[113.99941,22.2182],[113.99947,22.21813],[113.99951,22.21809],[113.99953,22.21806],[113.99951,22.21804],[113.99951,22.218],[113.99949,22.21797],[113.99949,22.21792],[113.99955,22.21785],[113.99962,22.21764],[113.99975,22.21731],[113.99978,22.21724],[113.99979,22.21718],[113.99978,22.21714],[113.99974,22.21707],[113.99971,22.21702],[113.99971,22.217],[113.99971,22.21699],[113.99972,22.21697],[113.99973,22.21696],[113.9997,22.21693],[113.99952,22.21672],[113.99956,22.21669],[113.99974,22.21691],[113.99977,22.21694],[113.99978,22.21693],[113.99979,22.21694],[113.99981,22.21695],[113.99986,22.21705],[113.99993,22.21712],[113.99999,22.21716],[114.00012,22.21709],[114.00021,22.21704],[114.00024,22.21702],[114.00031,22.21698],[114.00033,22.21696],[114.00031,22.21689],[114.00033,22.21685],[114.00027,22.21681],[114.00028,22.21674],[114.00037,22.21666],[114.00035,22.21662],[114.00041,22.21662],[114.00043,22.21659],[114.00047,22.21636],[114.00046,22.21627],[114.00042,22.21627],[114.00046,22.21614],[114.00042,22.21601],[114.00035,22.21598],[114.00041,22.21591],[114.00032,22.21584],[114.00035,22.21579],[114.00033,22.21566],[114.00043,22.21553],[114.00041,22.21549],[114.00048,22.21545],[114.00046,22.21541],[114.00053,22.21537],[114.00052,22.21532],[114.00048,22.21535],[114.00046,22.2153],[114.00051,22.21528],[114.00041,22.21521],[114.0005,22.21517],[114.00052,22.21507],[114.00046,22.21504],[114.00053,22.21501],[114.00049,22.21494],[114.00054,22.21484],[114.00065,22.21472],[114.00085,22.21473],[114.00093,22.21471],[114.00113,22.21482],[114.00114,22.21487],[114.00118,22.21484],[114.00149,22.21497],[114.00157,22.21494],[114.00152,22.21487],[114.00159,22.21486],[114.0017,22.21495],[114.00171,22.215],[114.00176,22.215],[114.00181,22.21503],[114.00189,22.21508],[114.00193,22.21506],[114.00201,22.21503],[114.0021,22.21508],[114.00214,22.2151],[114.00223,22.21512],[114.00235,22.21514],[114.00246,22.21514],[114.00263,22.21519],[114.00268,22.21521],[114.00269,22.2152],[114.00274,22.21521],[114.00288,22.21523],[114.00294,22.21524],[114.00295,22.21524],[114.003,22.21516],[114.00306,22.21519],[114.00308,22.21524],[114.00316,22.2152],[114.00318,22.21516],[114.00321,22.21512],[114.00322,22.21511],[114.00323,22.21511],[114.00327,22.21513],[114.0033,22.21519],[114.00333,22.21512],[114.00348,22.21513],[114.00354,22.21506],[114.00358,22.21508],[114.00367,22.21505],[114.00372,22.21506],[114.00376,22.21501],[114.00387,22.21502],[114.00384,22.21495],[114.00391,22.21492],[114.004,22.21499],[114.00412,22.21495],[114.00422,22.21496],[114.00428,22.21506],[114.00429,22.21516],[114.00438,22.21524],[114.00437,22.2153],[114.00445,22.2154],[114.0044,22.21554],[114.00444,22.21563],[114.00433,22.2156],[114.00419,22.21567],[114.00403,22.21563],[114.00394,22.21564],[114.00391,22.21567],[114.00395,22.21586],[114.00438,22.21634],[114.00467,22.21661],[114.00494,22.21679],[114.00496,22.21686],[114.005,22.21693],[114.00495,22.21695],[114.00483,22.21719],[114.00492,22.21731],[114.00492,22.21735],[114.00505,22.21747],[114.00499,22.21747],[114.00496,22.21756],[114.00479,22.21773],[114.00477,22.21778],[114.00481,22.21785],[114.00473,22.21794],[114.00477,22.21806],[114.00483,22.21809],[114.00477,22.2181],[114.0048,22.21828],[114.00492,22.2184],[114.00512,22.21849],[114.00517,22.21848],[114.00521,22.21843],[114.00529,22.21845],[114.00528,22.21841],[114.00547,22.2185],[114.00562,22.21852],[114.00577,22.21861],[114.00586,22.2186],[114.00586,22.21867],[114.0059,22.2187],[114.00598,22.21867],[114.00606,22.21874],[114.00642,22.21888],[114.00656,22.21898],[114.00659,22.21903],[114.00666,22.21904],[114.00674,22.21911],[114.00672,22.21921],[114.00683,22.21926],[114.00697,22.21927],[114.00699,22.21931],[114.007,22.21938],[114.00705,22.21941],[114.00711,22.21942],[114.00716,22.21937],[114.0072,22.2194],[114.00718,22.21946],[114.00728,22.2195],[114.00739,22.21949],[114.00744,22.21942],[114.0076,22.21935],[114.00787,22.2193],[114.00798,22.21935],[114.00802,22.21954],[114.00808,22.21946],[114.00816,22.2195],[114.00817,22.21944],[114.00825,22.21944],[114.00826,22.21941],[114.00819,22.2194],[114.00824,22.21935],[114.00831,22.21938],[114.00845,22.21935],[114.00848,22.2193],[114.00872,22.21923],[114.00873,22.21918],[114.00879,22.2192],[114.00884,22.21912],[114.00896,22.2191],[114.00897,22.21914],[114.00902,22.21912],[114.00913,22.21915],[114.0092,22.21925],[114.00919,22.21913],[114.00925,22.21911],[114.00933,22.21923],[114.00932,22.21932],[114.00943,22.21942],[114.00949,22.21942],[114.00956,22.21954],[114.00949,22.21962],[114.00954,22.21973],[114.00963,22.21974],[114.00967,22.21971],[114.0098,22.2197],[114.00983,22.21967],[114.00979,22.21962],[114.00983,22.2196],[114.00987,22.21968],[114.00987,22.21971],[114.01001,22.21966],[114.01,22.2196],[114.01009,22.21958],[114.01013,22.21961],[114.01009,22.21966],[114.01013,22.2197],[114.01013,22.21979],[114.01016,22.21981],[114.01018,22.21977],[114.0102,22.21982],[114.01026,22.21983],[114.01026,22.21989],[114.01023,22.21993],[114.01027,22.21994],[114.0103,22.21991],[114.01031,22.21995],[114.01036,22.21996],[114.01035,22.21991],[114.0104,22.21987],[114.01045,22.21988],[114.01051,22.21981],[114.0106,22.2199],[114.01059,22.21993],[114.01056,22.21994],[114.01054,22.22],[114.01058,22.22005],[114.01051,22.22013],[114.01052,22.22017],[114.01045,22.22015],[114.01047,22.22019],[114.01043,22.2203],[114.01046,22.22036],[114.01054,22.22035],[114.01061,22.22048],[114.01056,22.22061],[114.01059,22.22081],[114.0105,22.22085],[114.01046,22.22097],[114.01038,22.221],[114.01026,22.22098],[114.01023,22.22104],[114.01012,22.22108],[114.01008,22.22124],[114.01012,22.2213],[114.01007,22.22137],[114.01014,22.22138],[114.01018,22.22142],[114.0101,22.22146],[114.01006,22.22146],[114.01006,22.2215],[114.00995,22.22149],[114.00992,22.22151],[114.00991,22.22162],[114.00996,22.22168],[114.00995,22.22176],[114.01009,22.22186],[114.01015,22.22186],[114.01024,22.2219],[114.01043,22.22205],[114.01047,22.22205],[114.01047,22.22209],[114.01051,22.22212],[114.01067,22.22217],[114.0108,22.22224],[114.01085,22.22231],[114.01094,22.22237],[114.01094,22.22244],[114.01091,22.22246],[114.01097,22.22254],[114.01094,22.22258],[114.01102,22.2227],[114.01109,22.22273],[114.01116,22.22281],[114.01123,22.22283],[114.01127,22.22294],[114.01151,22.22308],[114.01163,22.22329],[114.01169,22.22328],[114.01176,22.22334],[114.01177,22.22348],[114.01186,22.22354],[114.01184,22.22374],[114.01178,22.22387],[114.01186,22.22395],[114.01193,22.22415],[114.01189,22.2242],[114.01194,22.22435],[114.01203,22.22448],[114.0121,22.22446],[114.01214,22.22466],[114.01229,22.22472],[114.01229,22.22421],[114.01234,22.22421],[114.01234,22.22471],[114.01258,22.22463],[114.01261,22.22465],[114.01272,22.22461],[114.01276,22.22455],[114.01281,22.22454],[114.01285,22.22456],[114.01288,22.22461],[114.01325,22.22474],[114.01334,22.2247],[114.01347,22.22463],[114.01352,22.22454],[114.01348,22.22453],[114.01348,22.2245],[114.01353,22.22447],[114.01356,22.22447],[114.01359,22.22448],[114.01362,22.22449],[114.01367,22.22447],[114.01369,22.22447],[114.01373,22.22449],[114.01381,22.2245],[114.01382,22.22451],[114.01376,22.22453],[114.01376,22.22456],[114.01378,22.22458],[114.01385,22.22461],[114.01387,22.22464],[114.0139,22.22466],[114.01413,22.22463],[114.0142,22.22463],[114.01439,22.22456],[114.01445,22.22455],[114.0145,22.22451],[114.01457,22.22451],[114.01459,22.22448],[114.01467,22.22451],[114.01474,22.22449],[114.01481,22.2246],[114.01481,22.22469],[114.01489,22.22475],[114.01502,22.22479],[114.01514,22.22477],[114.01536,22.22485],[114.01554,22.22484],[114.01572,22.22511],[114.01602,22.22517],[114.01608,22.22523],[114.01607,22.22529],[114.01614,22.22533],[114.01621,22.2253],[114.01625,22.22524],[114.01644,22.22549],[114.0167,22.22556],[114.01691,22.22555],[114.01701,22.22559],[114.01722,22.22556],[114.01729,22.22557],[114.01732,22.22561],[114.01738,22.22563],[114.01747,22.22574],[114.01753,22.22576],[114.01754,22.22581],[114.01751,22.22582],[114.01753,22.22587],[114.01758,22.22588],[114.01753,22.22595],[114.01754,22.22598],[114.01752,22.22603],[114.01758,22.22604],[114.0176,22.22612],[114.01751,22.22609],[114.01744,22.22624],[114.01756,22.22624],[114.01751,22.22639],[114.01761,22.22648],[114.0176,22.22663],[114.01771,22.22667],[114.01787,22.22678],[114.01792,22.22687],[114.0179,22.22703],[114.01786,22.22708],[114.01796,22.22719],[114.01801,22.22738],[114.01806,22.22744],[114.01809,22.22751],[114.01823,22.22761],[114.01831,22.22762],[114.01829,22.22758],[114.01832,22.22756],[114.01839,22.22765],[114.01817,22.22778],[114.01805,22.22794],[114.01802,22.22796],[114.01797,22.22794],[114.0178,22.2281],[114.01788,22.22817],[114.01774,22.22826],[114.01766,22.22846],[114.01779,22.22891],[114.01819,22.22932],[114.01828,22.22936],[114.01836,22.22937],[114.0184,22.22933],[114.01842,22.22939],[114.01849,22.22944],[114.01856,22.2294],[114.01857,22.22944],[114.01856,22.22948],[114.0187,22.22952],[114.01872,22.2295],[114.01875,22.22955],[114.01884,22.22957],[114.0189,22.22965],[114.01899,22.22972],[114.01929,22.22991],[114.01935,22.22989],[114.01944,22.22991],[114.01948,22.22996],[114.01965,22.23],[114.01971,22.22997],[114.01986,22.22999],[114.01993,22.2299],[114.01997,22.22994],[114.02007,22.2299],[114.02017,22.22991],[114.0202,22.22986],[114.02036,22.22994],[114.02035,22.22987],[114.0204,22.22986],[114.02045,22.2299],[114.02038,22.22994],[114.02042,22.23019],[114.02034,22.23037],[114.02022,22.23052],[114.02011,22.2306],[114.02,22.23065],[114.01975,22.23086],[114.01976,22.2309],[114.0197,22.23102],[114.01965,22.23105],[114.01963,22.23112],[114.01948,22.23112],[114.01938,22.231],[114.01909,22.23101],[114.01896,22.23108],[114.01896,22.23115],[114.01893,22.23119],[114.01879,22.23123],[114.01877,22.23134],[114.01868,22.23139],[114.01821,22.23141],[114.01806,22.23148],[114.01796,22.23163],[114.01781,22.23159],[114.01778,22.23155],[114.01761,22.23155],[114.01747,22.23149],[114.01725,22.23146],[114.01706,22.23148],[114.01702,22.23151],[114.01687,22.23143],[114.01669,22.23145],[114.01656,22.23121],[114.01649,22.23095],[114.01602,22.23083],[114.01586,22.23091],[114.01585,22.23096],[114.01577,22.23097],[114.01567,22.2311],[114.01536,22.23132],[114.01521,22.23137],[114.0153,22.23146],[114.01528,22.23158],[114.01524,22.23163],[114.01514,22.23172],[114.01509,22.23186],[114.01496,22.23198],[114.01483,22.23201],[114.01474,22.2321],[114.01455,22.23216],[114.01445,22.23219],[114.01429,22.23223],[114.01423,22.2322],[114.01418,22.23219],[114.01416,22.23225],[114.0139,22.23244],[114.01368,22.23234],[114.0131,22.23232],[114.01302,22.23229],[114.01295,22.23231],[114.01291,22.23221],[114.01278,22.2321],[114.01251,22.23202],[114.01225,22.23209],[114.01222,22.23216],[114.01204,22.23219],[114.01186,22.23233],[114.01167,22.23231],[114.01143,22.23243],[114.01135,22.23252],[114.01135,22.23278],[114.01124,22.2329],[114.01122,22.23304],[114.01096,22.23308],[114.01089,22.23341],[114.01079,22.23353],[114.01072,22.23361],[114.01072,22.23387],[114.01079,22.23386],[114.01077,22.2339],[114.01072,22.2339],[114.01069,22.23414],[114.01076,22.23422],[114.01086,22.23421],[114.01089,22.23417],[114.01095,22.23419],[114.01098,22.23424],[114.01098,22.23429],[114.0108,22.23442],[114.01082,22.23449],[114.01079,22.23472],[114.01089,22.23497],[114.01083,22.23511],[114.0107,22.23518],[114.01074,22.23542],[114.01067,22.23551],[114.01053,22.23547],[114.0105,22.23541],[114.01036,22.23541],[114.01014,22.23527],[114.01015,22.23522],[114.01009,22.23518],[114.0098,22.23516],[114.00959,22.23508],[114.00945,22.23493],[114.009,22.23476],[114.009,22.2348],[114.00891,22.23478],[114.00891,22.23474],[114.00856,22.23456],[114.00842,22.2344],[114.0085,22.23408],[114.00846,22.23374],[114.00837,22.2336],[114.00824,22.23353],[114.00824,22.23353],[114.00825,22.23346],[114.00819,22.23343],[114.00807,22.2334],[114.00762,22.23332],[114.00753,22.23329],[114.00746,22.23324],[114.00741,22.2332],[114.00737,22.23322],[114.00736,22.23324],[114.00739,22.23329],[114.00738,22.23334],[114.00731,22.23333],[114.00719,22.23336],[114.00708,22.23336],[114.00695,22.23343],[114.00664,22.23335],[114.00652,22.23335],[114.00638,22.23346],[114.00627,22.23338],[114.00606,22.23342],[114.00598,22.23345],[114.0059,22.23345],[114.00589,22.23332],[114.00582,22.23327],[114.00574,22.23325],[114.00565,22.23327],[114.00543,22.23319],[114.00532,22.23323],[114.00499,22.23337],[114.00496,22.2334],[114.00474,22.23351],[114.00468,22.23356],[114.00444,22.23372],[114.00402,22.23397],[114.00381,22.23413],[114.00369,22.23424],[114.00353,22.2344],[114.00343,22.23452],[114.00339,22.23464],[114.00339,22.23475],[114.00342,22.2348],[114.00353,22.23482],[114.00355,22.23488],[114.00352,22.23494],[114.00359,22.23516],[114.00367,22.2353],[114.00369,22.23543],[114.00374,22.23546],[114.00372,22.23562],[114.00376,22.23568],[114.00376,22.23582],[114.00375,22.23594],[114.00366,22.23606],[114.0037,22.23613],[114.00361,22.23614],[114.00362,22.23622],[114.00358,22.23627],[114.00313,22.23635],[114.00303,22.23649],[114.00307,22.23667],[114.00298,22.23676],[114.00279,22.23671],[114.0027,22.23674],[114.00239,22.23695],[114.00244,22.23702],[114.00237,22.23715],[114.00244,22.23727],[114.00235,22.23736],[114.00224,22.23742],[114.0021,22.23737],[114.00217,22.23749],[114.00215,22.23752],[114.00205,22.23753],[114.00192,22.23751],[114.00177,22.23747],[114.00174,22.23749],[114.0015,22.23783],[114.00151,22.23795],[114.0014,22.2381],[114.00112,22.23836],[114.00111,22.2384],[114.00119,22.23841],[114.00121,22.23848],[114.00112,22.23846],[114.00091,22.23854],[114.00073,22.23848],[114.00063,22.23846],[114.00049,22.23841],[114.00045,22.23836],[114.00048,22.23833],[114.00029,22.2382],[114.00024,22.2382],[114.00015,22.23823],[113.99995,22.23826],[113.99986,22.23831],[113.99975,22.23839],[113.99967,22.23847],[113.9995,22.23868],[113.99942,22.2388],[113.99941,22.23881],[113.99939,22.23886],[113.99936,22.23891],[113.99933,22.23897],[113.9993,22.2391],[113.9993,22.23918],[113.99935,22.23925],[113.99938,22.23926],[113.99948,22.23938],[114.00016,22.23961],[114.00021,22.2396],[114.00042,22.23967],[114.00039,22.23974],[114.00018,22.23967],[114.00015,22.23964],[113.99946,22.2394],[113.99944,22.23948],[113.99941,22.23959],[113.99939,22.23965],[113.99933,22.23971],[113.99931,22.23974],[113.9993,22.23977],[113.9993,22.23978],[113.99935,22.23995],[113.99924,22.24012],[113.99914,22.24017],[113.99909,22.24026],[113.99904,22.24055],[113.99902,22.24069],[113.99899,22.24081],[113.9988,22.24086],[113.99832,22.2406],[113.99798,22.24027],[113.99784,22.24021],[113.99754,22.23995],[113.99747,22.23987],[113.99738,22.23971],[113.99738,22.23967],[113.99728,22.23959],[113.99724,22.23957],[113.99713,22.23955],[113.99704,22.23955],[113.997,22.23956],[113.99695,22.23958],[113.9968,22.23963],[113.99662,22.23968],[113.99661,22.2397],[113.99657,22.23975],[113.99644,22.23978],[113.99638,22.23986],[113.99633,22.23986],[113.99631,22.23986],[113.99625,22.23985],[113.9962,22.23979],[113.99615,22.23981],[113.99606,22.23988],[113.9958,22.24007],[113.99559,22.24026],[113.99559,22.2404],[113.99558,22.24043],[113.99555,22.24045],[113.99548,22.24044],[113.99539,22.2404],[113.99536,22.24035],[113.99529,22.24031],[113.9953,22.24018],[113.99525,22.24],[113.99511,22.23986],[113.99495,22.2398],[113.99491,22.23974],[113.99486,22.2397],[113.99455,22.23953],[113.99449,22.2395],[113.99442,22.23946],[113.99421,22.23943],[113.99409,22.2394],[113.99394,22.23942],[113.99386,22.23945],[113.99378,22.23947],[113.99348,22.23947],[113.99344,22.23949],[113.99341,22.23953],[113.99335,22.23965],[113.99335,22.2397],[113.9934,22.23981],[113.99329,22.23981],[113.9933,22.24016],[113.99335,22.24018],[113.99337,22.24018],[113.99343,22.24014],[113.99347,22.24013],[113.99352,22.24013],[113.99359,22.24017],[113.99366,22.24023],[113.99373,22.2403],[113.99378,22.24034],[113.99382,22.24035],[113.99389,22.24034],[113.99393,22.24032],[113.99395,22.24029],[113.99396,22.24024],[113.99399,22.24016],[113.99402,22.24014],[113.99409,22.23998],[113.99419,22.23975],[113.99425,22.23972],[113.99429,22.2397],[113.99434,22.23969],[113.99439,22.2397],[113.99442,22.23971],[113.99446,22.23972],[113.99452,22.23976],[113.99453,22.23976],[113.99455,22.23976],[113.9946,22.23975],[113.99464,22.23974],[113.99469,22.23976],[113.99473,22.23979],[113.99475,22.23984],[113.99476,22.23989],[113.99473,22.23992],[113.99469,22.23995],[113.99462,22.23999],[113.99446,22.24013],[113.99432,22.24026],[113.99425,22.24035],[113.9942,22.24039],[113.9941,22.2405],[113.99404,22.24057],[113.99398,22.24063],[113.9939,22.24075],[113.99385,22.24084],[113.99378,22.24096],[113.99373,22.24106],[113.99367,22.24116],[113.99362,22.2413],[113.99352,22.24165],[113.99347,22.24196],[113.99346,22.24201],[113.99346,22.24205],[113.99348,22.24212],[113.99351,22.24218],[113.99358,22.24227],[113.9936,22.24233],[113.9936,22.24237],[113.99361,22.24241],[113.99363,22.24246],[113.99367,22.24256],[113.99368,22.24263],[113.99371,22.24266],[113.99381,22.24273],[113.99384,22.24272],[113.99396,22.24281],[113.99403,22.24296],[113.99419,22.24306],[113.99477,22.24327],[113.99485,22.24327],[113.99508,22.24315],[113.99548,22.24335],[113.99576,22.24367],[113.9959,22.24373],[113.99623,22.24397],[113.99677,22.24416],[113.99709,22.2442],[113.99727,22.24428],[113.99732,22.24433],[113.99731,22.2444],[113.99741,22.24444],[113.99745,22.24451],[113.9975,22.24455],[113.99761,22.24456],[113.99768,22.24463],[113.99778,22.24466],[113.9978,22.24472],[113.99792,22.24475],[113.99799,22.24475],[113.99805,22.24477],[113.99809,22.2448],[113.99823,22.24481],[113.99851,22.24498],[113.99847,22.245],[113.99843,22.24497],[113.99842,22.24499],[113.99872,22.24536],[113.99935,22.2453],[113.99955,22.24543],[113.99968,22.24539],[113.99984,22.24545],[113.99985,22.24546],[113.99984,22.24548],[113.99973,22.24563],[113.99964,22.2457],[113.99962,22.24584],[113.99955,22.24583],[113.99943,22.24589],[113.99945,22.24588],[113.99945,22.24592],[113.99945,22.24595],[113.99946,22.246],[113.99948,22.24605],[113.99954,22.24615],[113.99955,22.24621],[113.9996,22.24632],[113.99966,22.24644],[113.99968,22.24648],[113.99972,22.24656],[113.99973,22.24658],[113.99974,22.24659],[113.99975,22.2466],[113.99977,22.2466],[113.99979,22.24661],[113.99979,22.24661],[113.99983,22.24659],[113.99984,22.24658],[113.99986,22.24658],[113.99988,22.24658],[113.9999,22.24659],[113.99994,22.24661],[113.99995,22.24661],[113.99995,22.24663],[113.99998,22.24666],[114.00014,22.2467],[114.00015,22.24674],[114.0001,22.24684],[114.00023,22.24679],[114.00027,22.24692],[114.00048,22.24704],[114.0006,22.24725],[114.00059,22.24739],[114.00067,22.24752],[114.0006,22.24763],[114.00063,22.24769],[114.00069,22.24785],[114.00067,22.24802],[114.00063,22.24813],[114.00068,22.2482],[114.00077,22.24817],[114.00082,22.24823],[114.00083,22.24839],[114.0011,22.24861],[114.00126,22.24871],[114.00136,22.24875],[114.00142,22.24879],[114.00148,22.24884],[114.00167,22.24892],[114.00176,22.24895],[114.0018,22.24896],[114.00187,22.24895],[114.00196,22.24893],[114.00217,22.24869],[114.00237,22.24871],[114.00234,22.24864],[114.00271,22.24855],[114.00286,22.24854],[114.00304,22.24853],[114.00302,22.24846],[114.00311,22.24843],[114.00321,22.24848],[114.0033,22.24845],[114.00329,22.24849],[114.00324,22.24854],[114.0033,22.24861],[114.00338,22.24861],[114.00349,22.24868],[114.00348,22.24874],[114.00367,22.24904],[114.00395,22.24922],[114.00422,22.24922],[114.00436,22.24915],[114.00441,22.24909],[114.00433,22.249],[114.00439,22.24894],[114.00463,22.24903],[114.00495,22.24902],[114.00498,22.24899],[114.00524,22.24894],[114.00546,22.24902],[114.00548,22.24902],[114.00553,22.24898],[114.00556,22.24893],[114.00558,22.24894],[114.00561,22.24895],[114.00562,22.24897],[114.00562,22.24899],[114.00562,22.24901],[114.00562,22.24902],[114.00564,22.24903],[114.00565,22.24903],[114.00567,22.249],[114.00567,22.249],[114.00582,22.24911],[114.00582,22.24912],[114.00577,22.24917],[114.00578,22.24918],[114.00584,22.2492],[114.00592,22.24922],[114.00601,22.24925],[114.0061,22.24931],[114.0061,22.24935],[114.00606,22.24935],[114.00602,22.24937],[114.00592,22.24951],[114.00593,22.24962],[114.00601,22.24973],[114.00599,22.24986],[114.00603,22.24991],[114.00614,22.24998],[114.00622,22.24997],[114.00633,22.25001],[114.00636,22.25011],[114.00645,22.25018],[114.00661,22.25023],[114.00667,22.25016],[114.00682,22.25016],[114.00691,22.25018],[114.00693,22.25024],[114.00717,22.25037],[114.00737,22.25041],[114.00788,22.25059],[114.00828,22.25076],[114.00854,22.25093],[114.00863,22.25093],[114.00876,22.25108],[114.00912,22.25131],[114.00918,22.25136],[114.00924,22.25149],[114.00946,22.25159],[114.00965,22.25175],[114.00966,22.25184],[114.00956,22.25192],[114.00966,22.25208],[114.00988,22.25224],[114.0099,22.25231],[114.00996,22.25237],[114.01,22.2524],[114.01011,22.25244],[114.01013,22.25247],[114.0102,22.25249],[114.01034,22.25253],[114.01039,22.25253],[114.01044,22.25253],[114.01049,22.25252],[114.01056,22.2525],[114.0106,22.25248],[114.01061,22.25247],[114.01064,22.25242],[114.01065,22.25239],[114.01063,22.25238],[114.01061,22.25228],[114.01066,22.25217],[114.01068,22.25212],[114.01071,22.25204],[114.01089,22.25206],[114.01111,22.25213],[114.01119,22.25208],[114.01138,22.25207],[114.01156,22.25204],[114.01162,22.25214],[114.01168,22.2521],[114.01169,22.25199],[114.01179,22.25201],[114.01185,22.25207],[114.01175,22.25213],[114.01201,22.25224],[114.01207,22.25234],[114.01209,22.25246],[114.01221,22.25256],[114.01222,22.25266],[114.01215,22.25271],[114.01211,22.25293],[114.01191,22.25292],[114.0119,22.25299],[114.01185,22.25302],[114.01156,22.25296],[114.01153,22.25303],[114.01161,22.2531],[114.01164,22.25322],[114.0116,22.25324],[114.01145,22.25322],[114.0114,22.25318],[114.01133,22.25326],[114.01128,22.25342],[114.01132,22.25353],[114.01143,22.25365],[114.0114,22.25384],[114.01148,22.25391],[114.01151,22.254],[114.01146,22.25402],[114.01148,22.25425],[114.01132,22.25448],[114.01119,22.25449],[114.01118,22.25457],[114.01108,22.25469],[114.01089,22.25481],[114.01071,22.2549],[114.01037,22.255],[114.01022,22.25495],[114.01016,22.25496],[114.01015,22.25503],[114.0101,22.25507],[114.00999,22.25511],[114.01,22.25523],[114.00982,22.25533],[114.00972,22.25536],[114.00969,22.25544],[114.00964,22.25543],[114.00957,22.25545],[114.00951,22.25542],[114.00946,22.25541],[114.00937,22.25549],[114.00922,22.25551],[114.00918,22.25556],[114.00919,22.2556],[114.00925,22.25566],[114.00924,22.25568],[114.00917,22.25571],[114.00919,22.25565],[114.00916,22.25559],[114.0091,22.25571],[114.00885,22.25578],[114.00897,22.25583],[114.009,22.25595],[114.00894,22.25596],[114.0089,22.25587],[114.00885,22.25583],[114.00884,22.25579],[114.00872,22.2558],[114.00866,22.25586],[114.00858,22.25587],[114.00835,22.25596],[114.00828,22.25594],[114.00824,22.25596],[114.00819,22.25604],[114.00816,22.25613],[114.00814,22.25622],[114.00813,22.25636],[114.00819,22.25642],[114.0082,22.25661],[114.00823,22.25678],[114.0083,22.25686],[114.00834,22.257],[114.00832,22.25716],[114.00819,22.2574],[114.00797,22.2575],[114.00778,22.25755],[114.00763,22.25754],[114.00757,22.25751],[114.00753,22.25758],[114.0075,22.25763],[114.00748,22.25774],[114.00746,22.25775],[114.00743,22.2578],[114.00743,22.25783],[114.00757,22.25796],[114.00758,22.25802],[114.00757,22.25814],[114.00749,22.25826],[114.00756,22.2583],[114.00755,22.25844],[114.00735,22.25869],[114.00743,22.25878],[114.00745,22.25887],[114.00746,22.25891],[114.00734,22.25912],[114.00704,22.25938],[114.00695,22.25959],[114.00694,22.25985],[114.00676,22.26007],[114.00668,22.26014],[114.00645,22.26019],[114.00623,22.26034],[114.00625,22.2604],[114.00628,22.26048],[114.00647,22.26086],[114.00647,22.26088],[114.00647,22.26089],[114.00634,22.26099],[114.00621,22.2611],[114.0062,22.26111],[114.00618,22.2611],[114.00617,22.26109],[114.00613,22.26111],[114.00534,22.26143],[114.00481,22.26181],[114.00357,22.26234],[114.00332,22.26233],[114.00137,22.26234],[114.00132,22.26237],[114.00133,22.26274],[114.00241,22.26286],[114.00242,22.26287],[114.00242,22.26288],[114.00242,22.26288],[114.0024,22.26289],[114.00239,22.2629],[114.002,22.26475],[114.00214,22.26477],[114.00213,22.26481],[114.00208,22.26484],[114.00204,22.26483],[114.00206,22.26478],[114.002,22.26477],[114.00199,22.26483],[114.00198,22.26488],[114.00205,22.26489],[114.00208,22.26491],[114.00213,22.26494],[114.00271,22.26505],[114.00266,22.26527],[114.00208,22.26516],[114.002,22.26518],[114.00192,22.26517],[114.00181,22.26565],[114.00179,22.26565],[114.00178,22.26572],[114.00196,22.26574],[114.00195,22.26581],[114.00175,22.26579],[114.00176,22.26565],[114.00147,22.26562],[114.00141,22.26577],[114.00058,22.26613],[114.00027,22.2663],[113.99906,22.2667],[113.9988,22.26672],[113.99846,22.26665],[113.99626,22.26577],[113.99616,22.26573],[113.99604,22.26567],[113.99582,22.26559],[113.99561,22.26555],[113.99537,22.26554],[113.99517,22.26557],[113.99496,22.26563],[113.99494,22.26564],[113.99504,22.26584],[113.99506,22.26583],[113.99523,22.26578],[113.99544,22.26576],[113.99559,22.26576],[113.99575,22.2658],[113.99593,22.26587],[113.99606,22.26594],[113.99616,22.26599],[113.99643,22.26611],[113.99655,22.26634],[113.99704,22.26654],[113.9973,22.26646],[113.99763,22.26659],[113.99768,22.26658],[113.99823,22.2668],[113.99832,22.26684],[113.99837,22.26689],[113.99841,22.26696],[113.99843,22.26703],[113.99843,22.26704],[113.99843,22.26707],[113.9984,22.26708],[113.99836,22.26706],[113.99831,22.26707],[113.99826,22.26712],[113.99822,22.26721],[113.99821,22.26728],[113.99821,22.26735],[113.99822,22.26742],[113.99825,22.26752],[113.99837,22.26805],[113.99847,22.26833],[113.99854,22.26855],[113.99855,22.2686],[113.99855,22.26862],[113.99853,22.26863],[113.9985,22.26864],[113.99848,22.26865],[113.9984,22.2687],[113.99834,22.26872],[113.99828,22.26873],[113.9982,22.26871],[113.99821,22.2689],[113.99827,22.26888],[113.99848,22.26876],[113.99851,22.26875],[113.99855,22.26876],[113.99858,22.26877],[113.99861,22.26881],[113.99866,22.26888],[113.99875,22.26899],[113.9988,22.26912],[113.99884,22.26926],[113.99891,22.26955],[113.99902,22.26987],[113.99919,22.27017],[113.99945,22.27058],[113.99965,22.27086],[114.0,22.27123],[114.00025,22.27146],[114.00047,22.27163],[114.00063,22.27175],[114.00074,22.27184],[114.0009,22.27194],[114.00098,22.27198],[114.00102,22.27199],[114.00105,22.27197],[114.00107,22.27194],[114.00122,22.27194],[114.00121,22.27187],[114.0013,22.27188],[114.00134,22.27192],[114.00134,22.27199],[114.00134,22.27206],[114.00131,22.27209],[114.0012,22.27208],[114.00132,22.27219],[114.00145,22.27229],[114.00164,22.27238],[114.00178,22.27244],[114.00201,22.27249],[114.00229,22.27254],[114.00256,22.27258],[114.0027,22.27259],[114.00288,22.27258],[114.00306,22.27256],[114.00312,22.27254],[114.00321,22.27247],[114.00324,22.27245],[114.00328,22.27243],[114.00347,22.2724],[114.00354,22.27239],[114.00357,22.27239],[114.00359,22.2724],[114.00369,22.27238],[114.0037,22.27229],[114.00373,22.27224],[114.00385,22.27208],[114.00387,22.27208],[114.00392,22.27201],[114.00394,22.27196],[114.00391,22.27188],[114.00383,22.27185],[114.0038,22.27176],[114.00373,22.27177],[114.00369,22.27163],[114.00376,22.27158],[114.00383,22.27159],[114.00387,22.27163],[114.00383,22.27168],[114.00385,22.27171],[114.00398,22.2717],[114.00413,22.27155],[114.00414,22.27145],[114.00419,22.27141],[114.00448,22.27142],[114.00453,22.27136],[114.0047,22.27138],[114.00474,22.27133],[114.00493,22.27123],[114.00501,22.27118],[114.00529,22.27117],[114.00536,22.27108],[114.00544,22.27096],[114.00545,22.27079],[114.00541,22.27079],[114.0054,22.27074],[114.00547,22.2707],[114.00549,22.27066],[114.00541,22.27059],[114.00547,22.27051],[114.00559,22.27047],[114.00569,22.27031],[114.00585,22.27024],[114.00586,22.2702],[114.00581,22.2702],[114.00579,22.27016],[114.00583,22.2701],[114.00588,22.27008],[114.00591,22.27014],[114.00589,22.27017],[114.00594,22.27017],[114.00627,22.26987],[114.00628,22.2698],[114.00641,22.26967],[114.00655,22.26962],[114.00683,22.26961],[114.00701,22.26954],[114.00706,22.26948],[114.007,22.26945],[114.00703,22.26943],[114.00699,22.26933],[114.00704,22.26928],[114.00714,22.26931],[114.00712,22.26938],[114.00704,22.2694],[114.00711,22.26944],[114.00731,22.26942],[114.00742,22.26947],[114.00748,22.26939],[114.0076,22.26935],[114.00762,22.26931],[114.00777,22.26931],[114.00776,22.26924],[114.00779,22.26921],[114.0081,22.26913],[114.00808,22.26908],[114.00812,22.26906],[114.00841,22.26909],[114.00841,22.26903],[114.00848,22.269],[114.00869,22.26899],[114.00877,22.26895],[114.00897,22.26894],[114.00913,22.26895],[114.00907,22.26888],[114.0091,22.26885],[114.00928,22.26886],[114.00923,22.26891],[114.00996,22.26894],[114.0101,22.26883],[114.01034,22.26854],[114.01059,22.26792],[114.0106,22.26762],[114.0105,22.26755],[114.01046,22.26734],[114.01029,22.26733],[114.01036,22.26722],[114.0103,22.26718],[114.01026,22.26707],[114.01027,22.26699],[114.01026,22.26694],[114.0104,22.26694],[114.0105,22.26701],[114.01061,22.26699],[114.01068,22.26694],[114.01067,22.26687],[114.01074,22.26678],[114.01071,22.26674],[114.01087,22.26668],[114.011,22.26668],[114.01109,22.26677],[114.01115,22.26673],[114.01137,22.26675],[114.01152,22.26668],[114.01158,22.26654],[114.01165,22.26655],[114.01168,22.2666],[114.01183,22.26657],[114.01191,22.26643],[114.01211,22.26641],[114.01211,22.26636],[114.01219,22.2663],[114.01223,22.26633],[114.01229,22.26639],[114.01271,22.26616],[114.01295,22.26611],[114.01306,22.26608],[114.01317,22.26616],[114.0133,22.26603],[114.01356,22.26602],[114.01362,22.2659],[114.01364,22.26581],[114.01369,22.26566],[114.01359,22.26558],[114.01371,22.26555],[114.01377,22.2656],[114.01384,22.26558],[114.01389,22.26546],[114.01397,22.26539],[114.01406,22.26536],[114.01415,22.26533],[114.01435,22.26533],[114.01456,22.26525],[114.01464,22.26536],[114.01477,22.26536],[114.01477,22.26532],[114.01483,22.26529],[114.0149,22.2653],[114.01496,22.26528],[114.01504,22.26523],[114.01512,22.26524],[114.01519,22.26533],[114.01529,22.26534],[114.01531,22.2653],[114.01527,22.26525],[114.01533,22.26523],[114.01559,22.26533],[114.01567,22.26525],[114.01572,22.26526],[114.0158,22.26535],[114.01581,22.26542],[114.01592,22.2654],[114.01621,22.2655],[114.01633,22.26551],[114.01651,22.2655],[114.01662,22.26552],[114.01686,22.26546],[114.01692,22.26538],[114.0171,22.26539],[114.01725,22.26538],[114.01728,22.26542],[114.0175,22.26548],[114.01807,22.26552],[114.01812,22.26557],[114.01811,22.2657],[114.01815,22.26573],[114.01835,22.2659],[114.01859,22.26604],[114.01887,22.26614],[114.01899,22.26615],[114.01911,22.26613],[114.01922,22.26616],[114.01941,22.26627],[114.01946,22.26628],[114.01951,22.26627],[114.01962,22.26635],[114.01962,22.26642],[114.01967,22.26645],[114.02001,22.26644],[114.02063,22.26633],[114.02081,22.2662],[114.02081,22.26603],[114.02095,22.26589],[114.02101,22.26583],[114.0212,22.26589],[114.02128,22.26595],[114.02151,22.26603],[114.02186,22.26609],[114.02198,22.26593],[114.02203,22.26596],[114.02201,22.26607],[114.0221,22.26606],[114.02224,22.26601],[114.0222,22.26593],[114.02226,22.26588],[114.02239,22.26592],[114.02243,22.26601],[114.02249,22.26608],[114.02282,22.26608],[114.02289,22.26607],[114.02296,22.26599],[114.02309,22.26597],[114.02317,22.26594],[114.02337,22.26578],[114.02343,22.2658],[114.02351,22.26586],[114.02355,22.26597],[114.02353,22.26606],[114.02347,22.26609],[114.02343,22.26617],[114.0235,22.26632],[114.02333,22.2663],[114.02316,22.26643],[114.02301,22.26638],[114.02286,22.26628],[114.02237,22.26628],[114.02214,22.2662],[114.02203,22.26626],[114.02182,22.26652],[114.02207,22.26653],[114.02211,22.26653],[114.02215,22.26654],[114.02225,22.26658],[114.02233,22.26661],[114.02241,22.26667],[114.02243,22.26666],[114.02247,22.26672],[114.02243,22.26676],[114.02238,22.2667],[114.0224,22.26669],[114.02232,22.26662],[114.02227,22.2666],[114.02217,22.26656],[114.02212,22.26655],[114.02208,22.26654],[114.02193,22.26654],[114.0218,22.26653],[114.02168,22.2667],[114.02155,22.26703],[114.02151,22.2673],[114.02149,22.26755],[114.02153,22.26791],[114.02162,22.26807],[114.02174,22.26815],[114.02181,22.26815],[114.02202,22.2684],[114.02212,22.26845],[114.02218,22.26842],[114.02232,22.26842],[114.02235,22.26849],[114.02243,22.26851],[114.02249,22.26844],[114.02247,22.26839],[114.02252,22.2683],[114.02258,22.26829],[114.02269,22.26833],[114.02267,22.26838],[114.02257,22.26839],[114.02257,22.26847],[114.0225,22.26852],[114.02255,22.26854],[114.02263,22.2685],[114.02269,22.26851],[114.02286,22.26858],[114.02286,22.26866],[114.02281,22.26869],[114.02294,22.26878],[114.02296,22.26884],[114.02289,22.26892],[114.02269,22.26895],[114.02241,22.26921],[114.02227,22.26953],[114.02214,22.26955],[114.02213,22.26963],[114.02204,22.26967],[114.02201,22.26975],[114.02205,22.26977],[114.02207,22.26979],[114.02201,22.2698],[114.02195,22.26985],[114.0218,22.27027],[114.02194,22.27031],[114.02189,22.27046],[114.02202,22.27062],[114.02219,22.2707],[114.02223,22.27082],[114.02219,22.27092],[114.02212,22.27089],[114.02231,22.27299],[114.0222,22.27318],[114.02226,22.27378],[114.0225,22.27395],[114.02245,22.27417],[114.02252,22.27423],[114.02248,22.27433],[114.02257,22.27437],[114.02244,22.27449],[114.02242,22.27457],[114.02245,22.27464],[114.02266,22.27481],[114.02255,22.27495],[114.02244,22.27499],[114.02249,22.27505],[114.02245,22.27513],[114.02233,22.27518],[114.02226,22.27515],[114.02221,22.27525],[114.0221,22.27523],[114.02207,22.27527],[114.02187,22.27527],[114.02169,22.27548],[114.02164,22.27565],[114.02162,22.27617],[114.02161,22.27627],[114.02162,22.27637],[114.02167,22.27645],[114.02173,22.27645],[114.0218,22.27655],[114.02186,22.27662],[114.02195,22.27671],[114.02202,22.27677],[114.0219,22.27703],[114.02197,22.27722],[114.02199,22.2773],[114.02201,22.27756],[114.02213,22.27763],[114.02213,22.2777],[114.02221,22.27774],[114.02219,22.2778],[114.02234,22.27787],[114.02237,22.27796],[114.02232,22.27803],[114.02237,22.27812],[114.02251,22.2782],[114.02253,22.27827],[114.02265,22.27821],[114.02286,22.27825],[114.02297,22.27819],[114.02312,22.27819],[114.0232,22.2782],[114.02345,22.27824],[114.02343,22.27817],[114.02381,22.27829],[114.02391,22.27843],[114.02386,22.27861],[114.02398,22.2786],[114.02398,22.27862],[114.02392,22.27864],[114.02397,22.27866],[114.024,22.27876],[114.02395,22.27875],[114.0239,22.27871],[114.0239,22.27878],[114.02382,22.27886],[114.02366,22.27885],[114.02365,22.27892],[114.02358,22.27898],[114.02354,22.27905],[114.0234,22.2791],[114.02347,22.27915],[114.02334,22.27923],[114.02321,22.27933],[114.02325,22.27944],[114.02321,22.27949],[114.02304,22.27949],[114.02308,22.27964],[114.023,22.27967],[114.02304,22.27971],[114.02292,22.27979],[114.02293,22.27987],[114.02282,22.27991],[114.02282,22.27997],[114.02265,22.27997],[114.02262,22.28],[114.0226,22.28009],[114.02262,22.28021],[114.02258,22.28028],[114.02261,22.28036],[114.02254,22.28039],[114.02252,22.28046],[114.02246,22.28047],[114.02248,22.28054],[114.02238,22.28052],[114.02238,22.28057],[114.02234,22.28059],[114.02231,22.28069],[114.02217,22.28077],[114.02214,22.28081],[114.02214,22.28082],[114.02213,22.28083],[114.02208,22.28087],[114.02206,22.2809],[114.02204,22.2809],[114.02202,22.2809],[114.02202,22.28084],[114.02199,22.28084],[114.02195,22.28085],[114.02195,22.28088],[114.02194,22.28091],[114.02189,22.28102],[114.02191,22.28103],[114.02194,22.28105],[114.02205,22.28103],[114.0221,22.28104],[114.02221,22.2811],[114.02232,22.28121],[114.02243,22.28147],[114.02248,22.2816],[114.02251,22.28162],[114.02256,22.28163],[114.02258,22.28167],[114.02262,22.28167],[114.02263,22.28167],[114.02264,22.28171],[114.02263,22.28172],[114.02307,22.28199],[114.0231,22.28195],[114.02315,22.28197],[114.02306,22.28209],[114.02302,22.28207],[114.02304,22.28203],[114.0226,22.28176],[114.02259,22.28177],[114.0226,22.28194],[114.02251,22.28203],[114.02259,22.28209],[114.02248,22.28212],[114.0224,22.28219],[114.02237,22.28227],[114.02248,22.2829],[114.02256,22.2831],[114.02281,22.28326],[114.02283,22.28339],[114.02277,22.28341],[114.02289,22.28348],[114.02294,22.28348],[114.02296,22.28352],[114.02287,22.28353],[114.02291,22.28364],[114.02302,22.28369],[114.02309,22.28367],[114.02311,22.28372],[114.02303,22.28394],[114.02304,22.28413],[114.02295,22.28424],[114.02303,22.28433],[114.02303,22.28445],[114.02293,22.28454],[114.02297,22.28463],[114.02287,22.28469],[114.02263,22.28471],[114.02257,22.28477],[114.02256,22.28485],[114.02252,22.28484],[114.02244,22.28487],[114.02239,22.28485],[114.02225,22.28486],[114.02219,22.28483],[114.02216,22.28485],[114.02205,22.28476],[114.02193,22.28475],[114.02178,22.2849],[114.02173,22.28491],[114.0217,22.2849],[114.02168,22.28483],[114.02144,22.28465],[114.02135,22.28463],[114.02119,22.28464],[114.02116,22.28466],[114.02113,22.28465],[114.02103,22.28463],[114.02099,22.28465],[114.02079,22.28482],[114.02074,22.28488],[114.02083,22.28497],[114.02081,22.28499],[114.02072,22.28489],[114.02061,22.28497],[114.02059,22.28505],[114.02053,22.2851],[114.02049,22.28507],[114.0204,22.28513],[114.02011,22.28556],[114.01984,22.28558],[114.01968,22.28569],[114.0194,22.28616],[114.01912,22.28688],[114.01899,22.28767],[114.01893,22.28775],[114.01886,22.28807],[114.01896,22.28852],[114.01892,22.28882],[114.01894,22.28903],[114.01899,22.28932],[114.01944,22.29018],[114.01984,22.29067],[114.01994,22.29072],[114.02011,22.29073],[114.02031,22.29066],[114.02034,22.29066],[114.02036,22.29072],[114.02042,22.29075],[114.02058,22.29077],[114.02087,22.2907],[114.021,22.29059],[114.02103,22.29053],[114.02119,22.29062],[114.02112,22.29073],[114.02118,22.29077],[114.02117,22.2908],[114.0211,22.29079],[114.02105,22.29084],[114.0206,22.29096],[114.0205,22.29102],[114.02011,22.29109],[114.02001,22.29117],[114.02001,22.29135],[114.01993,22.29143],[114.01975,22.29146],[114.0194,22.29136],[114.0194,22.29145],[114.01929,22.29165],[114.01921,22.29188],[114.01918,22.29189],[114.01909,22.29212],[114.01908,22.2926],[114.01914,22.29294],[114.01935,22.29306],[114.01995,22.29312],[114.01994,22.29316],[114.01939,22.2931],[114.01938,22.29322],[114.01941,22.29332],[114.01964,22.29374],[114.01984,22.29398],[114.02005,22.29415],[114.02016,22.29417],[114.02022,22.29417],[114.02026,22.29414],[114.02119,22.29343],[114.02127,22.29338],[114.0213,22.29338],[114.02134,22.29341],[114.02143,22.29333],[114.02176,22.29308],[114.02188,22.29299],[114.02193,22.29295],[114.02207,22.29284],[114.02212,22.29282],[114.02215,22.2928],[114.02218,22.29276],[114.02282,22.29226],[114.0227,22.29212],[114.02275,22.29208],[114.02287,22.29222],[114.02292,22.29219],[114.0228,22.29204],[114.02284,22.29201],[114.02297,22.29215],[114.0231,22.29205],[114.02309,22.29203],[114.02312,22.292],[114.02367,22.29158],[114.02379,22.29152],[114.02388,22.29151],[114.02395,22.29151],[114.02404,22.29154],[114.0241,22.29158],[114.02442,22.29194],[114.02443,22.29196],[114.02464,22.29223],[114.02472,22.29245],[114.02473,22.29256],[114.02471,22.29269],[114.02466,22.29287],[114.0246,22.29298],[114.02452,22.29309],[114.02441,22.2932],[114.02414,22.2934],[114.02404,22.29348],[114.0241,22.29357],[114.02412,22.29364],[114.02412,22.29372],[114.02409,22.29377],[114.02405,22.2938],[114.02401,22.29384],[114.02392,22.29386],[114.02379,22.29398],[114.02368,22.29415],[114.02367,22.29446],[114.02373,22.29459],[114.02382,22.29469],[114.02399,22.29481],[114.02428,22.29485],[114.02464,22.29474],[114.02489,22.29455],[114.02535,22.29398],[114.02551,22.29393],[114.02607,22.29388],[114.02749,22.29195],[114.02759,22.29174],[114.02758,22.29167],[114.02725,22.29113],[114.02721,22.29111],[114.02489,22.29146],[114.02485,22.29145],[114.02482,22.29143],[114.02481,22.29138],[114.02481,22.29136],[114.02483,22.29132],[114.02486,22.2913],[114.02525,22.29123],[114.02724,22.29093],[114.0273,22.29095],[114.02735,22.29097],[114.02742,22.29103],[114.02779,22.29163],[114.02781,22.29169],[114.02781,22.29173],[114.02779,22.29178],[114.02754,22.29217],[114.02714,22.29269],[114.02687,22.29307],[114.02652,22.29357],[114.02624,22.29393],[114.02621,22.29402],[114.02636,22.29407],[114.02642,22.29414],[114.02642,22.29423],[114.0264,22.29431],[114.02634,22.29436],[114.02626,22.2944],[114.02629,22.29447],[114.02624,22.29463],[114.02613,22.29472],[114.02607,22.29476],[114.02578,22.29485],[114.02551,22.29518],[114.02547,22.29533],[114.02549,22.29546],[114.02555,22.29548],[114.02558,22.29564],[114.02551,22.29573],[114.02551,22.29618],[114.0256,22.29644],[114.02575,22.29658],[114.0258,22.29675],[114.02577,22.29683],[114.02583,22.29697],[114.02575,22.29708],[114.02587,22.29718],[114.02586,22.29728],[114.02574,22.29737],[114.02565,22.29741],[114.02566,22.29746],[114.02559,22.29752],[114.02559,22.29757],[114.02555,22.29759],[114.0256,22.29765],[114.0255,22.29767],[114.02548,22.29764],[114.02537,22.29768],[114.0253,22.29774],[114.02532,22.2978],[114.02539,22.29783],[114.02536,22.29788],[114.02501,22.29779],[114.02491,22.29781],[114.02481,22.29791],[114.02472,22.29794],[114.02454,22.29841],[114.02452,22.29865],[114.02455,22.29872],[114.02452,22.29887],[114.02453,22.29895],[114.02458,22.29913],[114.0245,22.29911],[114.02442,22.2991],[114.02423,22.29901],[114.02408,22.29901],[114.02389,22.29896],[114.02379,22.29889],[114.02372,22.29881],[114.02372,22.29872],[114.0236,22.29856],[114.02344,22.29847],[114.02338,22.29833],[114.02332,22.29831],[114.02329,22.29823],[114.02313,22.2981],[114.02314,22.29804],[114.02322,22.29797],[114.02322,22.2979],[114.02309,22.29769],[114.02276,22.29736],[114.02257,22.29731],[114.02245,22.29738],[114.02223,22.29738],[114.0219,22.29727],[114.02185,22.29714],[114.02174,22.29701],[114.02157,22.297],[114.02098,22.29648],[114.02036,22.29605],[114.01999,22.2957],[114.0198,22.2957],[114.0193,22.29616],[114.01927,22.29618],[114.01925,22.29619],[114.01922,22.29619],[114.01919,22.29619],[114.01788,22.29584],[114.01779,22.29588],[114.01754,22.29668],[114.01816,22.29684],[114.01812,22.29697],[114.01798,22.29693],[114.01795,22.29703],[114.01748,22.29691],[114.01732,22.29686],[114.01727,22.29689],[114.01698,22.29681],[114.01685,22.29688],[114.01657,22.29679],[114.01613,22.29664],[114.01588,22.29702],[114.01558,22.29773],[114.01541,22.29861],[114.0154,22.29943],[114.01547,22.29989],[114.01568,22.30034],[114.01578,22.30038],[114.01602,22.3004],[114.01613,22.30035],[114.01633,22.30032],[114.0164,22.30032],[114.01648,22.30035],[114.01661,22.30036],[114.01684,22.30032],[114.01702,22.30032],[114.01711,22.30028],[114.01719,22.30028],[114.01726,22.30033],[114.01737,22.3003],[114.01744,22.3003],[114.01757,22.30033],[114.01761,22.30037],[114.01776,22.3004],[114.01795,22.30048],[114.01806,22.30049],[114.01818,22.30052],[114.01838,22.3006],[114.01847,22.3006],[114.01856,22.30065],[114.01867,22.30068],[114.01882,22.30074],[114.019,22.30086],[114.01906,22.30091],[114.01912,22.30096],[114.01916,22.30101],[114.01929,22.30106],[114.01949,22.30113],[114.01964,22.30116],[114.01967,22.30117],[114.0197,22.30113],[114.01973,22.30112],[114.01981,22.30115],[114.01986,22.30119],[114.01995,22.3013],[114.02002,22.30133],[114.02009,22.30134],[114.02016,22.30134],[114.02021,22.30134],[114.02028,22.30132],[114.02035,22.30128],[114.02042,22.30124],[114.02046,22.30122],[114.0205,22.30122],[114.02057,22.30123],[114.02067,22.30124],[114.02073,22.30125],[114.02074,22.30127],[114.02073,22.30133],[114.02063,22.30142],[114.02063,22.30147],[114.02063,22.30152],[114.0206,22.30156],[114.02052,22.30161],[114.02038,22.30172],[114.02034,22.30174],[114.02032,22.30176],[114.02029,22.30179],[114.02024,22.30181],[114.02019,22.30181],[114.02015,22.3018],[114.02011,22.30176],[114.02011,22.30177],[114.02005,22.30168],[114.02,22.30162],[114.01997,22.30159],[114.01995,22.30157],[114.01992,22.30156],[114.01989,22.30155],[114.01974,22.30157],[114.01963,22.30159],[114.01956,22.30161],[114.0195,22.30163],[114.01945,22.30165],[114.0194,22.30169],[114.01935,22.30174],[114.0193,22.30181],[114.01924,22.30191],[114.0192,22.302],[114.01918,22.30208],[114.01916,22.30216],[114.01915,22.30222],[114.01916,22.30228],[114.01917,22.30231],[114.01918,22.30233],[114.0192,22.30235],[114.01923,22.30238],[114.01931,22.30243],[114.01941,22.30249],[114.0195,22.30255],[114.01964,22.30262],[114.01982,22.3027],[114.01994,22.30276],[114.01996,22.30279],[114.01994,22.30281],[114.01987,22.30282],[114.0195,22.30283],[114.01943,22.30295],[114.0192,22.30299],[114.01885,22.30296],[114.01871,22.30294],[114.01861,22.30291],[114.01804,22.30292],[114.01798,22.30301],[114.01793,22.30306],[114.01775,22.30316],[114.0176,22.30323],[114.01727,22.30335],[114.01712,22.30346],[114.01709,22.30348],[114.01707,22.30347],[114.01706,22.30345],[114.01706,22.30343],[114.0171,22.30337],[114.01714,22.30332],[114.01722,22.30327],[114.01756,22.30314],[114.0177,22.30308],[114.01784,22.30299],[114.01781,22.30297],[114.01777,22.30298],[114.01759,22.30299],[114.01751,22.30302],[114.01742,22.30303],[114.01737,22.30305],[114.01735,22.30309],[114.01732,22.3031],[114.01726,22.30309],[114.01718,22.30309],[114.01711,22.30309],[114.01705,22.30311],[114.01698,22.30311],[114.0168,22.30304],[114.01669,22.30303],[114.01661,22.303],[114.0164,22.30307],[114.01632,22.30309],[114.01619,22.30309],[114.01546,22.30304],[114.01537,22.30306],[114.01519,22.30305],[114.0151,22.30304],[114.01502,22.30306],[114.01494,22.30308],[114.01482,22.30311],[114.01472,22.30318],[114.01472,22.30318],[114.01482,22.30314],[114.01488,22.30315],[114.01498,22.30319],[114.01509,22.30323],[114.0152,22.30328],[114.01527,22.30332],[114.01539,22.30345],[114.01549,22.30359],[114.01557,22.30371],[114.01561,22.3038],[114.01567,22.30389],[114.01568,22.30393],[114.01572,22.30387],[114.0159,22.3037],[114.0161,22.30359],[114.01642,22.30346],[114.01699,22.30331],[114.01701,22.30331],[114.01702,22.30331],[114.01703,22.30333],[114.01703,22.30334],[114.01702,22.30336],[114.01701,22.30338],[114.01698,22.3034],[114.01646,22.30355],[114.01615,22.30367],[114.01596,22.30377],[114.01575,22.30397],[114.01572,22.30406],[114.01574,22.3042],[114.01573,22.30453],[114.01559,22.30616],[114.01594,22.30634],[114.0164,22.30584],[114.01692,22.30603],[114.01687,22.30675],[114.01743,22.30697],[114.01726,22.30974],[114.01723,22.30985],[114.01726,22.30985],[114.01745,22.30997],[114.01758,22.31019],[114.01775,22.31034],[114.01806,22.31055],[114.01831,22.31062],[114.01868,22.31061],[114.01875,22.31067],[114.01872,22.31081],[114.01869,22.31089],[114.01892,22.31072],[114.01911,22.31053],[114.01935,22.31041],[114.01992,22.31029],[114.02008,22.31021],[114.02013,22.31023],[114.02016,22.31029],[114.02029,22.31027],[114.02072,22.31039],[114.02151,22.31045],[114.02161,22.3105],[114.02194,22.31046],[114.02228,22.31036],[114.02258,22.31021],[114.023,22.31006],[114.0231,22.31013],[114.02348,22.31014],[114.02362,22.31011],[114.02397,22.31004],[114.02405,22.30998],[114.02459,22.30998],[114.02473,22.30995],[114.02513,22.31002],[114.02533,22.30997],[114.02567,22.31006],[114.02586,22.31017],[114.026,22.31024],[114.02603,22.31036],[114.02606,22.31047],[114.02611,22.31053],[114.02642,22.31063],[114.02655,22.3106],[114.02666,22.31064],[114.02684,22.31082],[114.02685,22.3109],[114.02703,22.31121],[114.02723,22.31121],[114.02729,22.31119],[114.02732,22.31125],[114.02726,22.31129],[114.02739,22.31141],[114.02743,22.31139],[114.0275,22.31151],[114.02753,22.31163],[114.02765,22.31168],[114.02783,22.31183],[114.0279,22.31189],[114.02814,22.31199],[114.02812,22.31203],[114.02831,22.31213],[114.02833,22.31216],[114.02843,22.31244],[114.02842,22.31249],[114.02841,22.3125],[114.02851,22.31258],[114.02863,22.31266],[114.02867,22.3127],[114.02871,22.31272],[114.02878,22.31274],[114.02885,22.31276],[114.02905,22.31283],[114.0293,22.31291],[114.02946,22.31296],[114.02964,22.31298],[114.0297,22.31292],[114.02975,22.3129],[114.02989,22.31288],[114.03004,22.31284],[114.03011,22.3128],[114.03017,22.31272],[114.03037,22.31261],[114.03063,22.31241],[114.03125,22.31211],[114.03147,22.3119],[114.03175,22.31178],[114.03185,22.31165],[114.03206,22.3116],[114.03229,22.31137],[114.03242,22.31113],[114.03237,22.31101],[114.03238,22.31084],[114.03243,22.31088],[114.03254,22.31101],[114.03263,22.31113],[114.03269,22.31124],[114.03281,22.3114],[114.03302,22.31159],[114.03321,22.31181],[114.03341,22.31209],[114.03353,22.31234],[114.03357,22.31259],[114.03357,22.31293],[114.03351,22.31334],[114.03344,22.3138],[114.03339,22.3143],[114.03337,22.31441],[114.0333,22.3144],[114.03283,22.31437],[114.0327,22.31474],[114.0326,22.31504],[114.03245,22.31507],[114.03217,22.31504],[114.03188,22.31487],[114.03095,22.31447],[114.0307,22.31447],[114.03052,22.3145]]]]},"properties":{"M_NM_Eng":"Non-Metro","SR_Eng":"SWNT","PDD_Cat_En":"Other Areas","PDD_Eng":"SWNT (Other Area)","M_NM_Tc":"非都會區","SR_Tc":"新界西南","PDD_Cat_Tc":"其他地區","PDD_Tc":"新界西南 (其他地區)","M_NM_Sc":"非都会区","SR_Sc_1":"新界西南","PDD_Cat_Sc":"其他地区","PDD_Sc":"新界西南 (其他地区)","Y2019_Popu":74600,"Y2019_Empl":22500,"Y2026_Popu":70350,"Y2026_Empl":27200,"Y2031_Popu":64950,"Y2031_Empl":24100}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[114.21916,22.40707],[114.21915,22.40712],[114.21915,22.4072],[114.21915,22.4072],[114.21915,22.40702],[114.21917,22.40702],[114.21916,22.40707]]],[[[114.21929,22.40735],[114.21928,22.40736],[114.21928,22.40736],[114.21928,22.40736],[114.21915,22.40721],[114.21924,22.40732],[114.21924,22.40732],[114.21925,22.40731],[114.21926,22.40731],[114.21929,22.40735]]],[[[114.21979,22.40802],[114.21984,22.40809],[114.21993,22.40821],[114.21996,22.40826],[114.21972,22.40792],[114.21979,22.40802]]],[[[114.22006,22.40841],[114.22008,22.40844],[114.22019,22.40862],[114.22008,22.40845],[114.21997,22.40827],[114.22006,22.40841]]],[[[114.22104,22.41028],[114.22058,22.4093],[114.22061,22.40935],[114.22063,22.4094],[114.22068,22.4095],[114.22074,22.40963],[114.22083,22.4098],[114.2209,22.40997],[114.22091,22.40998],[114.22098,22.41014],[114.22104,22.41028]]],[[[114.22104,22.41028],[114.22109,22.41041],[114.22114,22.41053],[114.22114,22.41055],[114.2212,22.4107],[114.2212,22.4107],[114.22125,22.41084],[114.22127,22.41089],[114.22131,22.41099],[114.22104,22.41028]]],[[[114.22131,22.41099],[114.22132,22.41099],[114.22133,22.41102],[114.22132,22.41102],[114.22131,22.41102],[114.22131,22.41099]]],[[[114.22134,22.4111],[114.2214,22.41128],[114.22142,22.41136],[114.22145,22.41146],[114.2215,22.41162],[114.2215,22.41165],[114.22163,22.41216],[114.22132,22.41105],[114.22134,22.4111]]],[[[114.20756,22.4265],[114.20729,22.42667],[114.20726,22.42662],[114.20694,22.42587],[114.20674,22.42591],[114.20671,22.42586],[114.20659,22.42558],[114.2068,22.42548],[114.2067,22.42526],[114.20651,22.42532],[114.2064,22.42507],[114.2062,22.42512],[114.20613,22.42576],[114.20543,22.42526],[114.20515,22.4253],[114.20504,22.42577],[114.20446,22.42584],[114.20431,22.42562],[114.20396,22.42508],[114.20376,22.42469],[114.20349,22.42472],[114.20341,22.42437],[114.20364,22.42432],[114.2036,22.42412],[114.20337,22.42413],[114.20332,22.42393],[114.20399,22.42256],[114.20371,22.42261],[114.20351,22.42231],[114.20327,22.42243],[114.20354,22.42288],[114.20296,22.4234],[114.20274,22.42339],[114.20245,22.42288],[114.20225,22.42298],[114.20251,22.42349],[114.20233,22.42382],[114.2022,22.42412],[114.20208,22.42447],[114.20199,22.42493],[114.20232,22.42505],[114.20229,22.42533],[114.20183,22.42519],[114.20156,22.42476],[114.20108,22.4246],[114.20095,22.42434],[114.20038,22.42426],[114.20036,22.424],[114.20034,22.42372],[114.20017,22.42306],[114.19998,22.42256],[114.20027,22.42217],[114.20014,22.42146],[114.19958,22.42133],[114.19912,22.42158],[114.19849,22.42025],[114.19812,22.41948],[114.19766,22.41955],[114.19745,22.41958],[114.19715,22.41961],[114.19698,22.41963],[114.19684,22.41965],[114.19672,22.41967],[114.19664,22.4197],[114.19659,22.41972],[114.19655,22.41974],[114.19651,22.41976],[114.19646,22.41978],[114.19644,22.4198],[114.19641,22.41981],[114.19636,22.41985],[114.19628,22.41993],[114.1962,22.42003],[114.19618,22.42004],[114.19612,22.4201],[114.1961,22.42013],[114.19606,22.4202],[114.19606,22.42031],[114.19603,22.42043],[114.19598,22.42055],[114.19594,22.42073],[114.19592,22.42087],[114.19592,22.42098],[114.19593,22.42111],[114.19596,22.42123],[114.19601,22.42131],[114.19583,22.42125],[114.19582,22.42126],[114.19572,22.42127],[114.19559,22.42127],[114.1955,22.42125],[114.19539,22.4212],[114.19525,22.42113],[114.19514,22.42108],[114.19501,22.42098],[114.19466,22.42082],[114.19461,22.42081],[114.19452,22.42079],[114.19448,22.42077],[114.19444,22.42074],[114.1944,22.42072],[114.19437,22.42069],[114.19435,22.42067],[114.19434,22.42065],[114.19433,22.4206],[114.19431,22.42049],[114.1943,22.42047],[114.19429,22.42046],[114.19417,22.42029],[114.19414,22.42026],[114.19414,22.42026],[114.19413,22.42025],[114.19412,22.42023],[114.1941,22.42022],[114.19409,22.4202],[114.19408,22.42019],[114.19407,22.42018],[114.19406,22.42016],[114.19404,22.42015],[114.19403,22.42013],[114.19402,22.42012],[114.19401,22.4201],[114.194,22.42008],[114.194,22.42007],[114.19399,22.42005],[114.19399,22.42003],[114.19399,22.42001],[114.19399,22.42],[114.19399,22.41999],[114.19384,22.41968],[114.19382,22.41963],[114.19382,22.41962],[114.19381,22.4196],[114.19379,22.41959],[114.19378,22.41957],[114.19377,22.41956],[114.19376,22.41955],[114.19375,22.41953],[114.19374,22.41952],[114.19372,22.4195],[114.19371,22.41949],[114.1937,22.41947],[114.19369,22.41946],[114.19367,22.41945],[114.19366,22.41943],[114.19365,22.41942],[114.19365,22.4194],[114.19364,22.41938],[114.19363,22.41937],[114.19363,22.41935],[114.19363,22.41933],[114.19362,22.41931],[114.19362,22.41929],[114.19362,22.41928],[114.19362,22.41926],[114.19361,22.41924],[114.19361,22.41922],[114.19361,22.4192],[114.1936,22.41919],[114.1936,22.41917],[114.1936,22.41915],[114.19359,22.41913],[114.19359,22.41912],[114.19359,22.4191],[114.19359,22.41908],[114.19358,22.41906],[114.19358,22.41904],[114.19358,22.41903],[114.19358,22.41902],[114.19358,22.41899],[114.19357,22.41897],[114.19357,22.41895],[114.19357,22.41893],[114.19357,22.41892],[114.19357,22.4189],[114.19357,22.41888],[114.19358,22.41886],[114.19358,22.41884],[114.19358,22.41883],[114.19359,22.41881],[114.1936,22.4188],[114.19362,22.41878],[114.19363,22.41877],[114.19364,22.41875],[114.19366,22.41874],[114.19367,22.41873],[114.19368,22.41871],[114.19369,22.4187],[114.19371,22.41869],[114.19372,22.41868],[114.19374,22.41866],[114.19375,22.41865],[114.19376,22.41864],[114.19378,22.41863],[114.19379,22.41861],[114.19381,22.4186],[114.19382,22.41859],[114.19384,22.41858],[114.19385,22.41857],[114.19387,22.41855],[114.19388,22.41854],[114.19389,22.41853],[114.19391,22.41852],[114.19392,22.4185],[114.19394,22.41849],[114.19395,22.41848],[114.19396,22.41846],[114.19398,22.41845],[114.19399,22.41844],[114.194,22.41842],[114.19401,22.41841],[114.19402,22.41839],[114.19403,22.41838],[114.19404,22.41836],[114.19404,22.41834],[114.19405,22.41832],[114.19404,22.41831],[114.19404,22.41829],[114.19403,22.41827],[114.19402,22.41826],[114.19401,22.41824],[114.194,22.41823],[114.19399,22.41821],[114.19398,22.41819],[114.19397,22.41818],[114.19396,22.41816],[114.19395,22.41815],[114.19394,22.41813],[114.19394,22.41811],[114.19393,22.4181],[114.19392,22.41808],[114.19392,22.41806],[114.19391,22.41804],[114.19391,22.41803],[114.19391,22.41801],[114.19391,22.41799],[114.19391,22.41797],[114.19391,22.41795],[114.19391,22.41794],[114.19391,22.41792],[114.19392,22.4179],[114.19392,22.41788],[114.19393,22.41787],[114.19395,22.41785],[114.19396,22.41784],[114.19397,22.41783],[114.19399,22.41781],[114.194,22.4178],[114.19401,22.41779],[114.19403,22.41777],[114.19404,22.41776],[114.19405,22.41775],[114.19406,22.41773],[114.19408,22.41772],[114.19409,22.41771],[114.1941,22.41769],[114.19411,22.41768],[114.19413,22.41766],[114.19414,22.41765],[114.19415,22.41764],[114.19416,22.41762],[114.19418,22.41761],[114.19419,22.4176],[114.1942,22.41758],[114.19421,22.41757],[114.19423,22.41755],[114.19424,22.41754],[114.19425,22.41753],[114.19427,22.41751],[114.19428,22.4175],[114.19429,22.41749],[114.1943,22.41747],[114.19432,22.41746],[114.19433,22.41744],[114.19434,22.41743],[114.19436,22.41741],[114.19437,22.4174],[114.19438,22.41739],[114.19439,22.41737],[114.1944,22.41736],[114.19442,22.41734],[114.19443,22.41733],[114.19444,22.41731],[114.19445,22.4173],[114.19446,22.41729],[114.19448,22.41727],[114.19449,22.41726],[114.1945,22.41724],[114.19451,22.41723],[114.19453,22.41722],[114.19454,22.4172],[114.19455,22.41719],[114.19456,22.41718],[114.19458,22.41716],[114.19459,22.41715],[114.1946,22.41714],[114.19462,22.41712],[114.19463,22.41711],[114.19465,22.4171],[114.19466,22.41709],[114.19468,22.41708],[114.1947,22.41707],[114.19471,22.41706],[114.19473,22.41706],[114.19475,22.41705],[114.19477,22.41705],[114.19479,22.41704],[114.19481,22.41704],[114.19483,22.41704],[114.19485,22.41703],[114.19487,22.41703],[114.19489,22.41703],[114.19491,22.41703],[114.19492,22.41703],[114.19494,22.41703],[114.19496,22.41703],[114.19498,22.41703],[114.195,22.41703],[114.19502,22.41704],[114.19504,22.41704],[114.19506,22.41704],[114.19508,22.41704],[114.1951,22.41704],[114.19512,22.41704],[114.19514,22.41704],[114.19516,22.41704],[114.19518,22.41704],[114.1952,22.41704],[114.19522,22.41704],[114.19524,22.41704],[114.19526,22.41704],[114.19528,22.41703],[114.19529,22.41703],[114.19531,22.41703],[114.19533,22.41703],[114.19535,22.41702],[114.19537,22.41702],[114.19539,22.41702],[114.19541,22.41701],[114.19543,22.417],[114.19545,22.417],[114.19546,22.41699],[114.19548,22.41698],[114.19549,22.41697],[114.19551,22.41696],[114.19552,22.41694],[114.19554,22.41693],[114.19555,22.41692],[114.19556,22.4169],[114.19557,22.41689],[114.19558,22.41687],[114.19558,22.41685],[114.19559,22.41683],[114.19559,22.41682],[114.1956,22.4168],[114.1956,22.41678],[114.1956,22.41676],[114.19561,22.41674],[114.19561,22.41673],[114.19561,22.41671],[114.19561,22.41669],[114.19561,22.41667],[114.19561,22.41666],[114.1956,22.41664],[114.1956,22.41662],[114.1956,22.4166],[114.19559,22.41658],[114.19559,22.41657],[114.19558,22.41655],[114.19558,22.41653],[114.19557,22.41651],[114.19557,22.4165],[114.19556,22.41648],[114.19556,22.41646],[114.19555,22.41644],[114.19555,22.41643],[114.19555,22.41641],[114.19554,22.41639],[114.19554,22.41637],[114.19553,22.41635],[114.19553,22.41633],[114.19553,22.41632],[114.19553,22.4163],[114.19553,22.41628],[114.19554,22.41627],[114.19555,22.41625],[114.19556,22.41623],[114.19557,22.41622],[114.19559,22.41621],[114.1956,22.41619],[114.19562,22.41618],[114.19563,22.41617],[114.19565,22.41617],[114.19567,22.41616],[114.19569,22.41615],[114.19571,22.41614],[114.19573,22.41614],[114.19575,22.41614],[114.19577,22.41614],[114.19578,22.41615],[114.1958,22.41615],[114.19582,22.41616],[114.19584,22.41617],[114.19586,22.41617],[114.19587,22.41618],[114.19589,22.41619],[114.19591,22.4162],[114.19593,22.41621],[114.19594,22.41622],[114.19596,22.41623],[114.19598,22.41624],[114.19599,22.41625],[114.19601,22.41626],[114.19602,22.41627],[114.19604,22.41628],[114.19605,22.41629],[114.19607,22.4163],[114.19608,22.41631],[114.1961,22.41633],[114.19612,22.41634],[114.19613,22.41635],[114.19615,22.41636],[114.19616,22.41637],[114.19618,22.41638],[114.19619,22.41639],[114.19621,22.41641],[114.19622,22.41642],[114.19624,22.41643],[114.19625,22.41644],[114.19627,22.41645],[114.19628,22.41646],[114.1963,22.41647],[114.19631,22.41649],[114.19633,22.4165],[114.19634,22.41651],[114.19636,22.41652],[114.19637,22.41653],[114.19638,22.41655],[114.1964,22.41656],[114.19641,22.41657],[114.19643,22.41658],[114.19644,22.4166],[114.19645,22.41661],[114.19646,22.41662],[114.19648,22.41664],[114.19649,22.41665],[114.1965,22.41666],[114.19652,22.41668],[114.19654,22.41669],[114.19655,22.4167],[114.19657,22.41671],[114.19659,22.41671],[114.1966,22.41672],[114.19662,22.41672],[114.19664,22.41671],[114.19666,22.41671],[114.19668,22.4167],[114.19669,22.41669],[114.1967,22.41667],[114.19671,22.41665],[114.19671,22.41663],[114.19671,22.41661],[114.19671,22.4166],[114.1967,22.41658],[114.1967,22.41656],[114.19669,22.41654],[114.19668,22.41653],[114.19668,22.41651],[114.19667,22.41649],[114.19666,22.41648],[114.19665,22.41646],[114.19664,22.41645],[114.19663,22.41643],[114.19662,22.41641],[114.19662,22.4164],[114.19661,22.41638],[114.1966,22.41637],[114.19659,22.41635],[114.19658,22.41633],[114.19657,22.41632],[114.19656,22.4163],[114.19655,22.41629],[114.19654,22.41627],[114.19653,22.41625],[114.19652,22.41624],[114.19651,22.41622],[114.1965,22.41621],[114.19649,22.41619],[114.19648,22.41618],[114.19647,22.41616],[114.19646,22.41615],[114.19645,22.41613],[114.19644,22.41612],[114.19643,22.4161],[114.19642,22.41609],[114.19641,22.41607],[114.1964,22.41606],[114.19639,22.41604],[114.19637,22.41603],[114.19636,22.41601],[114.19635,22.416],[114.19634,22.41598],[114.19633,22.41597],[114.19632,22.41595],[114.19631,22.41594],[114.1963,22.41592],[114.19629,22.41591],[114.19628,22.41589],[114.19627,22.41587],[114.19626,22.41586],[114.19625,22.41584],[114.19624,22.41583],[114.19623,22.41581],[114.19622,22.41579],[114.19621,22.41578],[114.19621,22.41576],[114.1962,22.41575],[114.1962,22.41573],[114.19619,22.41571],[114.1962,22.41569],[114.1962,22.41567],[114.1962,22.41565],[114.1962,22.41564],[114.19621,22.41562],[114.19622,22.4156],[114.19623,22.41559],[114.19624,22.41557],[114.19622,22.41555],[114.19621,22.41553],[114.1962,22.41552],[114.1962,22.4155],[114.19619,22.41549],[114.19618,22.41547],[114.19617,22.41545],[114.19616,22.41544],[114.19615,22.41542],[114.19614,22.41541],[114.19613,22.41539],[114.19612,22.41537],[114.19611,22.41536],[114.1961,22.41534],[114.19609,22.41533],[114.19608,22.41531],[114.19607,22.4153],[114.19606,22.41528],[114.19605,22.41527],[114.19604,22.41525],[114.19603,22.41523],[114.19602,22.41522],[114.19601,22.4152],[114.196,22.41519],[114.196,22.41517],[114.19599,22.41515],[114.19599,22.41513],[114.19599,22.41512],[114.196,22.4151],[114.196,22.41508],[114.196,22.41506],[114.196,22.41504],[114.19601,22.41503],[114.19601,22.41501],[114.19601,22.41499],[114.196,22.41497],[114.196,22.41495],[114.19599,22.41494],[114.19599,22.41492],[114.19598,22.4149],[114.19598,22.41488],[114.19597,22.41487],[114.19597,22.41485],[114.19596,22.41483],[114.19595,22.41482],[114.19594,22.4148],[114.19594,22.41478],[114.19593,22.41477],[114.19592,22.41475],[114.19591,22.41473],[114.1959,22.41472],[114.19589,22.4147],[114.19588,22.41469],[114.19587,22.41467],[114.19586,22.41465],[114.19585,22.41464],[114.19585,22.41462],[114.19584,22.41461],[114.19583,22.41459],[114.19582,22.41457],[114.19582,22.41456],[114.19581,22.41454],[114.1958,22.41452],[114.1958,22.4145],[114.19579,22.41449],[114.19579,22.41447],[114.19579,22.41445],[114.19578,22.41443],[114.19578,22.41441],[114.19578,22.4144],[114.19579,22.41438],[114.19579,22.41436],[114.1958,22.41434],[114.19581,22.41433],[114.19582,22.41431],[114.19582,22.41429],[114.19583,22.41428],[114.19584,22.41426],[114.19585,22.41425],[114.19586,22.41423],[114.19588,22.41422],[114.19589,22.4142],[114.1959,22.41419],[114.19591,22.41418],[114.19593,22.41416],[114.19594,22.41415],[114.19595,22.41414],[114.19597,22.41413],[114.19598,22.41411],[114.196,22.4141],[114.19602,22.41409],[114.19603,22.41408],[114.19605,22.41407],[114.19606,22.41406],[114.19608,22.41405],[114.1961,22.41404],[114.19611,22.41403],[114.19613,22.41402],[114.19615,22.41402],[114.19616,22.41401],[114.19618,22.414],[114.1962,22.41399],[114.19621,22.41398],[114.19623,22.41397],[114.19652,22.41348],[114.19679,22.41336],[114.19711,22.4134],[114.1971,22.41338],[114.1971,22.41336],[114.19709,22.41335],[114.19709,22.41333],[114.19708,22.41331],[114.19707,22.4133],[114.19707,22.41328],[114.19706,22.41326],[114.19705,22.41325],[114.19705,22.41323],[114.19704,22.41321],[114.19703,22.41319],[114.19703,22.41318],[114.19702,22.41316],[114.19702,22.41314],[114.19701,22.41313],[114.197,22.41311],[114.197,22.41309],[114.19699,22.41307],[114.19698,22.41306],[114.19698,22.41304],[114.19697,22.41302],[114.19696,22.41301],[114.19696,22.41299],[114.19695,22.41297],[114.19694,22.41296],[114.19693,22.41294],[114.19693,22.41292],[114.19692,22.41291],[114.19691,22.41289],[114.19691,22.41287],[114.1969,22.41286],[114.19689,22.41284],[114.19689,22.41282],[114.19681,22.41268],[114.19672,22.41251],[114.19662,22.41239],[114.19649,22.41223],[114.19638,22.41212],[114.19614,22.41197],[114.19589,22.41182],[114.19582,22.4118],[114.19577,22.41178],[114.19569,22.41175],[114.19562,22.41173],[114.1954,22.41167],[114.1953,22.41165],[114.19518,22.41162],[114.1951,22.4116],[114.19503,22.41159],[114.19469,22.41156],[114.19454,22.41154],[114.19445,22.41153],[114.19437,22.41151],[114.19425,22.41148],[114.19418,22.41145],[114.1941,22.41142],[114.19407,22.41141],[114.19405,22.4114],[114.19403,22.41139],[114.19401,22.41138],[114.19397,22.41136],[114.19394,22.41134],[114.19385,22.41128],[114.19379,22.41125],[114.19372,22.4112],[114.1937,22.41119],[114.19361,22.41112],[114.19348,22.41102],[114.19337,22.41093],[114.19321,22.4108],[114.19298,22.41058],[114.19278,22.41037],[114.19249,22.41003],[114.19232,22.40981],[114.19213,22.40958],[114.19197,22.40936],[114.19179,22.40914],[114.19173,22.40906],[114.19168,22.409],[114.19161,22.40892],[114.19156,22.40886],[114.19151,22.40882],[114.19139,22.40871],[114.19119,22.40854],[114.19074,22.40828],[114.19038,22.40813],[114.19012,22.40804],[114.18974,22.40793],[114.18956,22.40784],[114.18937,22.40768],[114.18921,22.4075],[114.18915,22.40724],[114.18906,22.40678],[114.18895,22.40641],[114.1889,22.40632],[114.18878,22.406],[114.18851,22.4055],[114.18837,22.40523],[114.18824,22.40482],[114.18816,22.40456],[114.18807,22.40434],[114.18784,22.40394],[114.18773,22.4038],[114.18763,22.40369],[114.18734,22.40341],[114.18712,22.40324],[114.18695,22.40313],[114.18673,22.403],[114.18646,22.4029],[114.18619,22.40289],[114.18593,22.4029],[114.18562,22.40292],[114.18551,22.40291],[114.18539,22.40286],[114.18531,22.40279],[114.18528,22.40272],[114.18529,22.40266],[114.18548,22.4018],[114.18559,22.40132],[114.18558,22.40106],[114.18543,22.40053],[114.1851,22.39954],[114.18498,22.39918],[114.18403,22.39894],[114.18244,22.39845],[114.18242,22.39844],[114.1824,22.39843],[114.18239,22.39843],[114.18237,22.39842],[114.18235,22.39842],[114.18233,22.39841],[114.18231,22.39841],[114.18229,22.3984],[114.18227,22.3984],[114.18226,22.39839],[114.18224,22.39839],[114.18222,22.39839],[114.1822,22.39838],[114.18218,22.39838],[114.18216,22.39838],[114.18214,22.39838],[114.18212,22.39837],[114.1821,22.39837],[114.18208,22.39837],[114.18206,22.39837],[114.18204,22.39837],[114.18202,22.39837],[114.182,22.39837],[114.18199,22.39837],[114.18197,22.39838],[114.18195,22.39838],[114.18193,22.39838],[114.18191,22.39838],[114.18189,22.39838],[114.18187,22.39839],[114.18185,22.39839],[114.18183,22.39839],[114.18181,22.39839],[114.18179,22.3984],[114.18177,22.3984],[114.18175,22.3984],[114.18173,22.3984],[114.18172,22.39841],[114.1817,22.39841],[114.18168,22.39841],[114.18166,22.39841],[114.18164,22.39842],[114.18162,22.39842],[114.1816,22.39842],[114.18158,22.39842],[114.18156,22.39843],[114.18154,22.39843],[114.18152,22.39843],[114.1815,22.39843],[114.18148,22.39843],[114.18147,22.39844],[114.18145,22.39844],[114.18143,22.39844],[114.18141,22.39844],[114.18139,22.39844],[114.18137,22.39844],[114.18135,22.39844],[114.18133,22.39844],[114.18131,22.39845],[114.18129,22.39845],[114.18127,22.39845],[114.18125,22.39845],[114.18123,22.39845],[114.18121,22.39845],[114.18119,22.39845],[114.18117,22.39845],[114.18115,22.39845],[114.18114,22.39845],[114.18112,22.39845],[114.1811,22.39845],[114.18108,22.39845],[114.18106,22.39845],[114.18104,22.39845],[114.18102,22.39845],[114.181,22.39845],[114.18098,22.39845],[114.18096,22.39845],[114.18094,22.39845],[114.18092,22.39845],[114.1809,22.39845],[114.18088,22.39845],[114.18086,22.39845],[114.18084,22.39844],[114.18082,22.39844],[114.18081,22.39844],[114.18079,22.39844],[114.18077,22.39844],[114.18075,22.39844],[114.18073,22.39844],[114.18071,22.39844],[114.18069,22.39844],[114.18067,22.39844],[114.18065,22.39844],[114.18063,22.39844],[114.18061,22.39843],[114.18059,22.39843],[114.18057,22.39843],[114.18055,22.39843],[114.18053,22.39843],[114.18051,22.39843],[114.1805,22.39842],[114.18048,22.39842],[114.18046,22.39842],[114.18044,22.39842],[114.18042,22.39842],[114.1804,22.39841],[114.18038,22.39841],[114.18036,22.39841],[114.18034,22.39841],[114.18032,22.3984],[114.1803,22.3984],[114.18028,22.3984],[114.18026,22.39839],[114.18024,22.39839],[114.18023,22.39839],[114.18021,22.39839],[114.18019,22.39838],[114.18017,22.39838],[114.18015,22.39838],[114.18013,22.39838],[114.18011,22.39837],[114.18009,22.39837],[114.18007,22.39837],[114.18005,22.39837],[114.18003,22.39836],[114.18001,22.39836],[114.18,22.39836],[114.17998,22.39836],[114.17996,22.39835],[114.17994,22.39835],[114.17992,22.39835],[114.1799,22.39834],[114.17986,22.39834],[114.17985,22.39833],[114.17983,22.39833],[114.17981,22.39832],[114.17979,22.39832],[114.17977,22.39831],[114.17975,22.39831],[114.17973,22.39831],[114.17971,22.3983],[114.1797,22.3983],[114.17968,22.39829],[114.17966,22.39829],[114.17964,22.39828],[114.17962,22.39828],[114.1796,22.39827],[114.17958,22.39826],[114.17957,22.39826],[114.17955,22.39825],[114.17953,22.39824],[114.17951,22.39823],[114.1795,22.39823],[114.17948,22.39822],[114.17946,22.39821],[114.17944,22.3982],[114.17943,22.39819],[114.17941,22.39819],[114.17939,22.39818],[114.17937,22.39817],[114.17936,22.39816],[114.17934,22.39815],[114.17932,22.39814],[114.17931,22.39814],[114.17929,22.39813],[114.17927,22.39812],[114.17925,22.39811],[114.17924,22.3981],[114.17922,22.39809],[114.1792,22.39808],[114.17919,22.39807],[114.17917,22.39806],[114.17916,22.39805],[114.17914,22.39804],[114.17912,22.39803],[114.17911,22.39802],[114.17909,22.39801],[114.17908,22.39799],[114.17907,22.39798],[114.17906,22.39796],[114.17905,22.39795],[114.17905,22.39793],[114.17904,22.39791],[114.17903,22.39789],[114.17903,22.39788],[114.17902,22.39786],[114.17902,22.39784],[114.17902,22.39782],[114.17901,22.39781],[114.17901,22.39779],[114.17901,22.39777],[114.17901,22.39775],[114.179,22.39773],[114.179,22.39772],[114.179,22.3977],[114.179,22.39768],[114.179,22.39766],[114.179,22.39764],[114.179,22.39762],[114.179,22.39761],[114.17901,22.39759],[114.17901,22.39757],[114.17901,22.39755],[114.17902,22.39754],[114.17903,22.39752],[114.17904,22.3975],[114.17904,22.39749],[114.17905,22.39747],[114.17906,22.39745],[114.17907,22.39744],[114.17909,22.39743],[114.1791,22.39741],[114.17911,22.3974],[114.17912,22.39738],[114.17914,22.39737],[114.17915,22.39736],[114.17917,22.39735],[114.17918,22.39734],[114.1792,22.39733],[114.17922,22.39732],[114.17923,22.39731],[114.17925,22.3973],[114.17927,22.39729],[114.17928,22.39728],[114.1793,22.39727],[114.17932,22.39726],[114.17934,22.39726],[114.17935,22.39725],[114.17937,22.39724],[114.17939,22.39723],[114.17941,22.39722],[114.17942,22.39722],[114.17944,22.39721],[114.17946,22.3972],[114.17948,22.39719],[114.17949,22.39718],[114.17951,22.39718],[114.17953,22.39717],[114.17954,22.39716],[114.17956,22.39715],[114.17958,22.39714],[114.1796,22.39714],[114.17961,22.39713],[114.17963,22.39712],[114.17965,22.39711],[114.17967,22.3971],[114.17968,22.3971],[114.1797,22.39709],[114.17972,22.39708],[114.17974,22.39708],[114.17976,22.39707],[114.17977,22.39706],[114.17979,22.39706],[114.17981,22.39705],[114.17983,22.39704],[114.17985,22.39704],[114.17987,22.39703],[114.17988,22.39702],[114.1799,22.39702],[114.17992,22.39701],[114.17994,22.39701],[114.17996,22.397],[114.17998,22.397],[114.17999,22.39699],[114.18001,22.39699],[114.18003,22.39698],[114.18005,22.39698],[114.18007,22.39697],[114.18009,22.39697],[114.18011,22.39696],[114.18013,22.39696],[114.18014,22.39695],[114.18016,22.39695],[114.18018,22.39695],[114.1802,22.39694],[114.18022,22.39694],[114.18024,22.39693],[114.18026,22.39693],[114.18028,22.39693],[114.1803,22.39692],[114.18032,22.39692],[114.18033,22.39692],[114.18035,22.39691],[114.18037,22.39691],[114.18039,22.39691],[114.18041,22.3969],[114.18043,22.3969],[114.18045,22.3969],[114.18047,22.3969],[114.18049,22.3969],[114.18051,22.39689],[114.18053,22.39689],[114.18055,22.39689],[114.18057,22.39689],[114.18058,22.39688],[114.1806,22.39688],[114.18062,22.39687],[114.18064,22.39687],[114.18066,22.39686],[114.18068,22.39686],[114.1807,22.39685],[114.18071,22.39684],[114.18073,22.39684],[114.18075,22.39683],[114.18077,22.39682],[114.18079,22.39682],[114.1808,22.39681],[114.18082,22.3968],[114.18084,22.39679],[114.18086,22.39679],[114.18087,22.39678],[114.18089,22.39677],[114.18091,22.39676],[114.18092,22.39675],[114.18094,22.39673],[114.18095,22.39672],[114.18097,22.39671],[114.18098,22.3967],[114.181,22.39669],[114.18101,22.39668],[114.18103,22.39667],[114.18104,22.39666],[114.18106,22.39664],[114.18107,22.39663],[114.18109,22.39662],[114.1811,22.39661],[114.18112,22.3966],[114.18113,22.39658],[114.18115,22.39657],[114.18116,22.39656],[114.18117,22.39655],[114.18119,22.39654],[114.1812,22.39652],[114.18122,22.39651],[114.18123,22.3965],[114.18125,22.39649],[114.18126,22.39648],[114.18127,22.39646],[114.18129,22.39645],[114.1813,22.39644],[114.18132,22.39643],[114.18133,22.39642],[114.18135,22.39641],[114.18136,22.39639],[114.18138,22.39638],[114.1814,22.39637],[114.18141,22.39636],[114.18143,22.39635],[114.18144,22.39634],[114.18146,22.39633],[114.18147,22.39632],[114.18149,22.39631],[114.18151,22.3963],[114.18152,22.39629],[114.18154,22.39628],[114.18156,22.39627],[114.18157,22.39626],[114.18159,22.39626],[114.18161,22.39625],[114.18163,22.39624],[114.18165,22.39623],[114.18166,22.39623],[114.18168,22.39622],[114.1817,22.39621],[114.18172,22.39621],[114.18174,22.3962],[114.18175,22.3962],[114.18177,22.39619],[114.18179,22.39619],[114.18181,22.39618],[114.18183,22.39618],[114.18185,22.39617],[114.18187,22.39617],[114.18189,22.39616],[114.1819,22.39616],[114.18192,22.39615],[114.18194,22.39615],[114.18146,22.39579],[114.18142,22.3958],[114.18141,22.3958],[114.18139,22.39581],[114.18137,22.39582],[114.18135,22.39582],[114.18133,22.39583],[114.18132,22.39584],[114.1813,22.39584],[114.18128,22.39585],[114.18126,22.39585],[114.18124,22.39586],[114.18122,22.39587],[114.18121,22.39587],[114.18119,22.39588],[114.18117,22.39589],[114.18115,22.39589],[114.18113,22.3959],[114.18111,22.3959],[114.1811,22.39591],[114.18108,22.39592],[114.18106,22.39593],[114.18104,22.39593],[114.18102,22.39594],[114.18101,22.39595],[114.18099,22.39595],[114.18097,22.39596],[114.18095,22.39596],[114.18093,22.39597],[114.18091,22.39597],[114.18089,22.39597],[114.18087,22.39597],[114.18086,22.39597],[114.18084,22.39597],[114.18082,22.39596],[114.1808,22.39596],[114.18078,22.39596],[114.18076,22.39595],[114.18074,22.39595],[114.18072,22.39595],[114.1807,22.39594],[114.18068,22.39594],[114.18066,22.39594],[114.18064,22.39594],[114.18062,22.39594],[114.1806,22.39594],[114.18058,22.39594],[114.18057,22.39595],[114.18055,22.39596],[114.18053,22.39596],[114.18052,22.39598],[114.1805,22.39599],[114.18049,22.396],[114.18047,22.39602],[114.18046,22.39602],[114.18044,22.39603],[114.18042,22.39603],[114.1804,22.39604],[114.18038,22.39604],[114.18036,22.39603],[114.18034,22.39603],[114.18032,22.39603],[114.18031,22.39602],[114.18029,22.39602],[114.18027,22.39602],[114.18025,22.39603],[114.18023,22.39603],[114.18021,22.39604],[114.18019,22.39604],[114.18017,22.39604],[114.18015,22.39604],[114.18013,22.39604],[114.18011,22.39603],[114.1801,22.39602],[114.18008,22.39601],[114.18007,22.396],[114.18005,22.39599],[114.18004,22.39598],[114.18002,22.39597],[114.18,22.39597],[114.17998,22.39596],[114.17996,22.39596],[114.17994,22.39597],[114.17992,22.39597],[114.1799,22.39598],[114.17989,22.39599],[114.17988,22.39601],[114.17986,22.39602],[114.17985,22.39603],[114.17984,22.39605],[114.17983,22.39606],[114.17981,22.39607],[114.17979,22.39608],[114.17978,22.39609],[114.17976,22.3961],[114.17974,22.3961],[114.17972,22.39611],[114.1797,22.3961],[114.17968,22.3961],[114.17966,22.39609],[114.17964,22.39609],[114.17962,22.39609],[114.1796,22.39608],[114.17959,22.39608],[114.17957,22.39607],[114.17955,22.39606],[114.17954,22.39605],[114.17953,22.39603],[114.17952,22.39601],[114.17951,22.396],[114.1795,22.39598],[114.17949,22.39597],[114.17949,22.39595],[114.17948,22.39593],[114.17947,22.39591],[114.17946,22.3959],[114.17945,22.39589],[114.17943,22.39588],[114.17942,22.39587],[114.1794,22.39586],[114.17938,22.39585],[114.17936,22.39585],[114.17934,22.39584],[114.17932,22.39584],[114.1793,22.39584],[114.17928,22.39584],[114.17926,22.39584],[114.17924,22.39584],[114.17922,22.39585],[114.1792,22.39585],[114.17919,22.39586],[114.17917,22.39587],[114.17915,22.39587],[114.17913,22.39588],[114.17912,22.39589],[114.1791,22.39591],[114.17909,22.39592],[114.17907,22.39593],[114.17906,22.39594],[114.17905,22.39596],[114.17904,22.39597],[114.17904,22.39599],[114.17903,22.39601],[114.17903,22.39603],[114.17901,22.39604],[114.179,22.39605],[114.17898,22.39605],[114.17896,22.39605],[114.17894,22.39605],[114.17892,22.39605],[114.1789,22.39605],[114.17888,22.39605],[114.17886,22.39605],[114.17884,22.39606],[114.17882,22.39606],[114.1788,22.39606],[114.17878,22.39607],[114.17876,22.39607],[114.17875,22.39608],[114.17873,22.39608],[114.17871,22.39609],[114.17869,22.3961],[114.17867,22.3961],[114.17866,22.39611],[114.17864,22.39612],[114.17862,22.39613],[114.17861,22.39614],[114.17859,22.39615],[114.17858,22.39616],[114.17856,22.39618],[114.17855,22.39619],[114.17853,22.3962],[114.17852,22.39622],[114.17851,22.39623],[114.1785,22.39624],[114.17849,22.39626],[114.17847,22.39627],[114.17847,22.39629],[114.17846,22.3963],[114.17845,22.39632],[114.17844,22.39634],[114.17843,22.39635],[114.17841,22.39637],[114.1784,22.39638],[114.17839,22.39639],[114.17837,22.39641],[114.17835,22.39642],[114.17834,22.39642],[114.17832,22.39642],[114.1783,22.39642],[114.17828,22.39642],[114.17826,22.39641],[114.17824,22.39641],[114.17822,22.3964],[114.1782,22.3964],[114.17819,22.39639],[114.17817,22.39639],[114.17815,22.39638],[114.17813,22.39638],[114.17811,22.39637],[114.17809,22.39636],[114.17807,22.39636],[114.17806,22.39635],[114.17804,22.39635],[114.17802,22.39634],[114.178,22.39634],[114.17798,22.39633],[114.17796,22.39632],[114.17795,22.39632],[114.17793,22.39631],[114.17791,22.39631],[114.17789,22.3963],[114.17787,22.39629],[114.17785,22.39629],[114.17784,22.39628],[114.17782,22.39628],[114.1778,22.39627],[114.17778,22.39626],[114.17776,22.39626],[114.17774,22.39625],[114.17772,22.39625],[114.17771,22.39624],[114.17769,22.39624],[114.17767,22.39623],[114.17765,22.39622],[114.17763,22.39622],[114.17761,22.39621],[114.1776,22.39621],[114.17758,22.3962],[114.17756,22.39619],[114.17754,22.39619],[114.17752,22.39618],[114.1775,22.39618],[114.17749,22.39617],[114.17747,22.39616],[114.17745,22.39616],[114.17743,22.39615],[114.17741,22.39614],[114.1774,22.39614],[114.17738,22.39613],[114.17736,22.39612],[114.17734,22.39611],[114.17733,22.3961],[114.17731,22.39609],[114.1773,22.39608],[114.17729,22.39606],[114.17727,22.39605],[114.17727,22.39603],[114.17726,22.39602],[114.17726,22.396],[114.17725,22.39598],[114.17726,22.39596],[114.17726,22.39594],[114.17726,22.39593],[114.17726,22.39591],[114.17726,22.39589],[114.17726,22.39587],[114.17726,22.39585],[114.17726,22.39584],[114.17725,22.39582],[114.17724,22.3958],[114.17722,22.39579],[114.17721,22.39578],[114.17719,22.39577],[114.17717,22.39577],[114.17715,22.39578],[114.17713,22.39578],[114.17711,22.39579],[114.1771,22.39579],[114.17708,22.39579],[114.17706,22.39579],[114.17704,22.39579],[114.17702,22.39579],[114.177,22.39579],[114.17698,22.39579],[114.17696,22.3958],[114.17694,22.3958],[114.17692,22.39581],[114.1769,22.39581],[114.17689,22.39582],[114.17687,22.39583],[114.17685,22.39584],[114.17684,22.39585],[114.17682,22.39586],[114.1768,22.39587],[114.17679,22.39588],[114.17677,22.39589],[114.17675,22.3959],[114.17674,22.39591],[114.17672,22.39592],[114.1767,22.39592],[114.17668,22.39591],[114.17667,22.3959],[114.17666,22.39589],[114.17665,22.39587],[114.17665,22.39585],[114.17665,22.39583],[114.17665,22.39582],[114.17664,22.3958],[114.17664,22.39578],[114.17663,22.39576],[114.17662,22.39575],[114.17661,22.39574],[114.17659,22.39572],[114.17657,22.39571],[114.17656,22.3957],[114.17654,22.3957],[114.17652,22.39569],[114.1765,22.39568],[114.17648,22.39568],[114.17646,22.39568],[114.17645,22.39568],[114.17643,22.39569],[114.17641,22.39569],[114.17639,22.3957],[114.17637,22.3957],[114.17635,22.39571],[114.17634,22.39572],[114.17632,22.39573],[114.1763,22.39574],[114.17629,22.39575],[114.17627,22.39576],[114.17625,22.39577],[114.17624,22.39578],[114.17622,22.39579],[114.1762,22.3958],[114.17619,22.39581],[114.17617,22.39581],[114.17615,22.39582],[114.17613,22.39583],[114.17612,22.39583],[114.1761,22.39584],[114.17608,22.39584],[114.17606,22.39584],[114.17604,22.39585],[114.17602,22.39585],[114.176,22.39585],[114.17598,22.39585],[114.17596,22.39586],[114.17594,22.39586],[114.17592,22.39586],[114.1759,22.39586],[114.17588,22.39586],[114.17587,22.39585],[114.17585,22.39585],[114.17583,22.39584],[114.17581,22.39583],[114.1758,22.39582],[114.17578,22.39581],[114.17577,22.39579],[114.17575,22.39578],[114.17574,22.39577],[114.17573,22.39575],[114.17572,22.39574],[114.1757,22.39572],[114.17569,22.39571],[114.17569,22.39569],[114.17568,22.39568],[114.17567,22.39566],[114.17566,22.39564],[114.17566,22.39562],[114.17565,22.39561],[114.17565,22.39559],[114.17565,22.39557],[114.17565,22.39555],[114.17566,22.39554],[114.17567,22.39552],[114.17568,22.3955],[114.17569,22.39548],[114.1757,22.39546],[114.17571,22.39545],[114.17572,22.39543],[114.17573,22.39541],[114.17574,22.3954],[114.17575,22.39538],[114.17576,22.39537],[114.17577,22.39535],[114.17578,22.39533],[114.17578,22.39532],[114.17579,22.3953],[114.1758,22.39528],[114.17581,22.39527],[114.17582,22.39525],[114.17583,22.39524],[114.17584,22.39522],[114.17585,22.39521],[114.17586,22.3952],[114.17586,22.39519],[114.17587,22.39519],[114.17587,22.39518],[114.17589,22.39516],[114.1759,22.39515],[114.17591,22.39514],[114.17592,22.39512],[114.17594,22.39511],[114.17595,22.3951],[114.17596,22.39508],[114.17598,22.39507],[114.17599,22.39506],[114.176,22.39504],[114.17602,22.39503],[114.17603,22.39502],[114.17605,22.39501],[114.17606,22.39499],[114.17608,22.39498],[114.17609,22.39497],[114.17611,22.39496],[114.17612,22.39495],[114.17614,22.39494],[114.17615,22.39493],[114.17617,22.39492],[114.17619,22.39491],[114.1762,22.3949],[114.17622,22.39489],[114.17624,22.39488],[114.17625,22.39487],[114.17627,22.39486],[114.17629,22.39485],[114.1763,22.39485],[114.17632,22.39484],[114.17634,22.39483],[114.17636,22.39482],[114.17637,22.39481],[114.17639,22.39481],[114.17641,22.3948],[114.17643,22.39479],[114.17645,22.39479],[114.17646,22.39478],[114.17648,22.39477],[114.1765,22.39477],[114.17652,22.39476],[114.17654,22.39476],[114.17656,22.39475],[114.17657,22.39475],[114.17659,22.39474],[114.17661,22.39474],[114.17663,22.39473],[114.17665,22.39473],[114.17667,22.39472],[114.17669,22.39472],[114.17671,22.39471],[114.17672,22.39471],[114.17674,22.39471],[114.17676,22.3947],[114.17678,22.3947],[114.1768,22.39469],[114.17682,22.39469],[114.17684,22.39468],[114.17686,22.39468],[114.17688,22.39468],[114.1769,22.39467],[114.17691,22.39467],[114.17693,22.39466],[114.17695,22.39465],[114.17696,22.39464],[114.17698,22.39463],[114.17699,22.39461],[114.177,22.3946],[114.17701,22.39458],[114.17702,22.39457],[114.17703,22.39455],[114.17703,22.39453],[114.17704,22.39452],[114.17705,22.3945],[114.17707,22.39449],[114.17708,22.39448],[114.1771,22.39447],[114.17712,22.39446],[114.17714,22.39445],[114.17715,22.39445],[114.17717,22.39444],[114.17719,22.39444],[114.17721,22.39444],[114.17723,22.39444],[114.17725,22.39444],[114.17727,22.39444],[114.17729,22.39445],[114.17731,22.39445],[114.17733,22.39445],[114.17735,22.39446],[114.17736,22.39446],[114.17738,22.39446],[114.1774,22.39446],[114.17742,22.39446],[114.17744,22.39446],[114.17746,22.39445],[114.17748,22.39445],[114.1775,22.39445],[114.17752,22.39444],[114.17754,22.39444],[114.17755,22.39443],[114.17757,22.39442],[114.17759,22.39442],[114.17761,22.39441],[114.17762,22.3944],[114.17764,22.39439],[114.17765,22.39437],[114.17767,22.39436],[114.17768,22.39435],[114.17769,22.39433],[114.1777,22.39432],[114.1777,22.3943],[114.1777,22.39428],[114.1777,22.39426],[114.1777,22.39424],[114.1777,22.39423],[114.17771,22.39421],[114.17771,22.39419],[114.17772,22.39417],[114.17773,22.39416],[114.17774,22.39414],[114.17775,22.39413],[114.17776,22.39411],[114.17777,22.3941],[114.17779,22.39409],[114.17781,22.39408],[114.17783,22.39408],[114.17785,22.39408],[114.17787,22.39408],[114.17789,22.39408],[114.17791,22.39408],[114.17792,22.39408],[114.17794,22.39409],[114.17796,22.3941],[114.17798,22.39411],[114.17799,22.39412],[114.17801,22.39412],[114.17803,22.39413],[114.17805,22.39414],[114.17807,22.39414],[114.17809,22.39414],[114.17811,22.39414],[114.17813,22.39414],[114.17815,22.39414],[114.17816,22.39414],[114.17818,22.39413],[114.1782,22.39412],[114.17822,22.39411],[114.17823,22.3941],[114.17825,22.39409],[114.17827,22.39408],[114.17828,22.39407],[114.1783,22.39406],[114.17831,22.39405],[114.17833,22.39404],[114.17834,22.39403],[114.17836,22.39402],[114.17837,22.394],[114.17838,22.39399],[114.1784,22.39398],[114.17841,22.39396],[114.17842,22.39395],[114.17843,22.39393],[114.17844,22.39392],[114.17846,22.3939],[114.17847,22.39389],[114.17848,22.39387],[114.17849,22.39386],[114.1785,22.39384],[114.17851,22.39383],[114.17852,22.39381],[114.17853,22.3938],[114.17854,22.39378],[114.17855,22.39377],[114.17856,22.39375],[114.17857,22.39374],[114.17858,22.39372],[114.17859,22.39371],[114.1786,22.39369],[114.17861,22.39368],[114.17862,22.39366],[114.17863,22.39365],[114.17865,22.39363],[114.17866,22.39362],[114.17867,22.3936],[114.17868,22.39359],[114.17869,22.39357],[114.17871,22.39356],[114.17872,22.39355],[114.17873,22.39353],[114.17874,22.39352],[114.17876,22.39351],[114.17877,22.39349],[114.17879,22.39348],[114.1788,22.39347],[114.17882,22.39346],[114.17883,22.39345],[114.17885,22.39344],[114.17886,22.39343],[114.17888,22.39342],[114.1789,22.39341],[114.17892,22.3934],[114.17893,22.39339],[114.17895,22.39339],[114.17897,22.39338],[114.17899,22.39338],[114.17901,22.39337],[114.17903,22.39337],[114.17904,22.39336],[114.17906,22.39336],[114.17908,22.39335],[114.1791,22.39335],[114.17912,22.39334],[114.17913,22.39333],[114.17915,22.39331],[114.17916,22.3933],[114.17917,22.39328],[114.17918,22.39327],[114.17918,22.39325],[114.17918,22.39323],[114.17918,22.39322],[114.17918,22.3932],[114.17917,22.39318],[114.17916,22.39316],[114.17915,22.39314],[114.17914,22.39313],[114.17914,22.39311],[114.17913,22.3931],[114.17912,22.39308],[114.17911,22.39306],[114.1791,22.39305],[114.17909,22.39303],[114.17909,22.39301],[114.17908,22.393],[114.17907,22.39298],[114.17907,22.39296],[114.17906,22.39295],[114.17906,22.39293],[114.17906,22.39291],[114.17905,22.39289],[114.17905,22.39287],[114.17905,22.39286],[114.17905,22.39284],[114.17905,22.39282],[114.17905,22.3928],[114.17905,22.39278],[114.17905,22.39277],[114.17905,22.39275],[114.17905,22.39273],[114.17906,22.39271],[114.17906,22.39269],[114.17906,22.39267],[114.17906,22.39266],[114.17906,22.39264],[114.17907,22.39262],[114.17907,22.3926],[114.17907,22.39259],[114.17908,22.39257],[114.17908,22.39255],[114.17908,22.39253],[114.17909,22.39251],[114.17909,22.3925],[114.1791,22.39248],[114.1791,22.39246],[114.17911,22.39244],[114.17912,22.39243],[114.17912,22.39241],[114.17913,22.3924],[114.17914,22.39238],[114.17915,22.39236],[114.17916,22.39235],[114.17917,22.39233],[114.17918,22.39232],[114.17919,22.3923],[114.17921,22.39229],[114.17922,22.39227],[114.17923,22.39226],[114.17924,22.39225],[114.17926,22.39223],[114.17927,22.39222],[114.17928,22.39221],[114.1793,22.3922],[114.17931,22.39218],[114.17933,22.39217],[114.17934,22.39216],[114.17936,22.39215],[114.17937,22.39214],[114.17939,22.39213],[114.1794,22.39211],[114.17942,22.3921],[114.17943,22.39209],[114.17945,22.39208],[114.17946,22.39207],[114.17948,22.39206],[114.17949,22.39205],[114.17951,22.39204],[114.17952,22.39202],[114.17954,22.39201],[114.17955,22.392],[114.17957,22.39199],[114.17958,22.39198],[114.1796,22.39196],[114.17961,22.39195],[114.17962,22.39194],[114.17964,22.39192],[114.17965,22.39191],[114.17966,22.3919],[114.17968,22.39188],[114.17969,22.39187],[114.1797,22.39186],[114.17971,22.39184],[114.17972,22.39183],[114.17974,22.39181],[114.17975,22.3918],[114.17976,22.39178],[114.17977,22.39177],[114.17978,22.39175],[114.17979,22.39174],[114.1798,22.39173],[114.17982,22.39171],[114.17983,22.3917],[114.17984,22.39168],[114.17985,22.39166],[114.17986,22.39165],[114.17987,22.39163],[114.17988,22.39162],[114.17989,22.3916],[114.1799,22.39159],[114.1799,22.39157],[114.17991,22.39155],[114.17992,22.39154],[114.17993,22.39152],[114.17994,22.39151],[114.17995,22.39149],[114.17996,22.39147],[114.17997,22.39146],[114.17998,22.39144],[114.17998,22.39143],[114.17999,22.39141],[114.18,22.39139],[114.18001,22.39138],[114.18001,22.39136],[114.18002,22.39134],[114.18003,22.39132],[114.18004,22.39131],[114.18006,22.39131],[114.18008,22.39131],[114.1801,22.39131],[114.18012,22.39131],[114.18014,22.39131],[114.18016,22.39132],[114.18018,22.39132],[114.1802,22.39132],[114.18022,22.39132],[114.18023,22.39132],[114.18025,22.39132],[114.18027,22.39132],[114.18029,22.39132],[114.18031,22.39132],[114.18033,22.39133],[114.18035,22.39133],[114.18037,22.39133],[114.18039,22.39133],[114.18041,22.39133],[114.18043,22.39133],[114.18045,22.39133],[114.18047,22.39134],[114.18049,22.39134],[114.18051,22.39134],[114.18053,22.39134],[114.18055,22.39134],[114.18056,22.39134],[114.18058,22.39134],[114.1806,22.39134],[114.18062,22.39134],[114.18064,22.39134],[114.18066,22.39134],[114.18068,22.39134],[114.1807,22.39134],[114.18072,22.39134],[114.18074,22.39134],[114.18076,22.39134],[114.18078,22.39134],[114.1808,22.39134],[114.18082,22.39134],[114.18084,22.39133],[114.18085,22.39133],[114.18087,22.39133],[114.18089,22.39133],[114.18091,22.39132],[114.18093,22.39132],[114.18095,22.39132],[114.18097,22.39132],[114.18099,22.39131],[114.18101,22.39131],[114.18103,22.39131],[114.18105,22.39131],[114.18107,22.3913],[114.18109,22.3913],[114.1811,22.3913],[114.18112,22.39129],[114.18114,22.39129],[114.18116,22.39129],[114.18118,22.39128],[114.1812,22.39128],[114.18122,22.39128],[114.18124,22.39127],[114.18126,22.39127],[114.18128,22.39126],[114.18129,22.39126],[114.18131,22.39125],[114.18133,22.39125],[114.18135,22.39124],[114.18137,22.39124],[114.18139,22.39123],[114.18141,22.39123],[114.18143,22.39122],[114.18144,22.39122],[114.18146,22.39121],[114.18148,22.39121],[114.18152,22.3912],[114.18154,22.3912],[114.18156,22.39119],[114.18158,22.39119],[114.18159,22.39118],[114.18161,22.39118],[114.18163,22.39117],[114.18165,22.39117],[114.18167,22.39116],[114.18169,22.39116],[114.18171,22.39115],[114.18173,22.39115],[114.18174,22.39114],[114.18176,22.39114],[114.18178,22.39113],[114.1818,22.39113],[114.18182,22.39113],[114.18184,22.39112],[114.18186,22.39112],[114.18188,22.39111],[114.1819,22.39111],[114.18191,22.39111],[114.18193,22.3911],[114.18195,22.3911],[114.18197,22.3911],[114.18199,22.39109],[114.18201,22.39109],[114.18203,22.39109],[114.18205,22.39109],[114.18207,22.39108],[114.18209,22.39108],[114.18211,22.39108],[114.18213,22.39108],[114.18216,22.39107],[114.18218,22.39107],[114.1822,22.39107],[114.18222,22.39106],[114.18224,22.39106],[114.18226,22.39106],[114.18224,22.39103],[114.18223,22.39101],[114.18222,22.391],[114.18221,22.39098],[114.1822,22.39096],[114.18219,22.39095],[114.18219,22.39093],[114.18218,22.39092],[114.18217,22.3909],[114.18216,22.39089],[114.18215,22.39087],[114.18214,22.39085],[114.18213,22.39084],[114.18212,22.39082],[114.18211,22.39081],[114.1821,22.39079],[114.18209,22.39078],[114.18208,22.39076],[114.18207,22.39074],[114.18206,22.39073],[114.18205,22.39071],[114.18204,22.3907],[114.18203,22.39068],[114.18202,22.39067],[114.18201,22.39065],[114.182,22.39063],[114.18199,22.39062],[114.18198,22.3906],[114.18197,22.39059],[114.18196,22.39057],[114.18195,22.39056],[114.18194,22.39054],[114.18193,22.39053],[114.18192,22.39051],[114.18191,22.3905],[114.1819,22.39048],[114.18189,22.39047],[114.18188,22.39045],[114.18187,22.39044],[114.18186,22.39042],[114.18184,22.39041],[114.18183,22.39039],[114.18182,22.39038],[114.18181,22.39036],[114.1818,22.39035],[114.18179,22.39033],[114.18178,22.39032],[114.18176,22.39031],[114.18175,22.39029],[114.18174,22.39028],[114.18173,22.39026],[114.18171,22.39025],[114.1817,22.39024],[114.18169,22.39022],[114.18168,22.39021],[114.18166,22.3902],[114.18165,22.39018],[114.18164,22.39017],[114.18162,22.39016],[114.18161,22.39015],[114.18159,22.39013],[114.18158,22.39012],[114.18156,22.39011],[114.18155,22.3901],[114.18153,22.39009],[114.18151,22.39008],[114.1815,22.39007],[114.18148,22.39006],[114.18147,22.39005],[114.18145,22.39004],[114.18144,22.39003],[114.18142,22.39002],[114.1814,22.39001],[114.18139,22.39],[114.18137,22.38999],[114.18135,22.38998],[114.18134,22.38997],[114.18132,22.38996],[114.1813,22.38995],[114.18128,22.38995],[114.18127,22.38994],[114.18125,22.38993],[114.18123,22.38992],[114.18121,22.38991],[114.1812,22.38991],[114.18118,22.3899],[114.18116,22.38989],[114.18114,22.38989],[114.18112,22.38988],[114.18111,22.38987],[114.18109,22.38986],[114.18107,22.38986],[114.18105,22.38985],[114.18103,22.38985],[114.18102,22.38984],[114.181,22.38983],[114.18098,22.38983],[114.18096,22.38982],[114.18094,22.38982],[114.18092,22.38981],[114.1809,22.38981],[114.18089,22.3898],[114.18087,22.3898],[114.18085,22.3898],[114.18083,22.38979],[114.18081,22.38979],[114.18079,22.38979],[114.18077,22.38979],[114.18075,22.3898],[114.18073,22.3898],[114.18071,22.3898],[114.18069,22.3898],[114.18067,22.38981],[114.18065,22.38981],[114.18064,22.38982],[114.18062,22.38982],[114.1806,22.38983],[114.18058,22.38983],[114.18056,22.38984],[114.18054,22.38984],[114.18053,22.38985],[114.18051,22.38986],[114.18049,22.38987],[114.18047,22.38987],[114.18046,22.38988],[114.18044,22.38989],[114.18042,22.3899],[114.1804,22.38991],[114.18039,22.38992],[114.18037,22.38992],[114.18035,22.38993],[114.18033,22.38994],[114.18032,22.38995],[114.1803,22.38996],[114.18028,22.38997],[114.18027,22.38998],[114.18025,22.38998],[114.18023,22.38999],[114.18022,22.39],[114.1802,22.39001],[114.18018,22.39002],[114.18017,22.39003],[114.18015,22.39004],[114.18013,22.39005],[114.18011,22.39006],[114.1801,22.39006],[114.18008,22.39007],[114.18006,22.39008],[114.18005,22.39009],[114.18003,22.3901],[114.18001,22.39011],[114.18,22.39012],[114.17998,22.39013],[114.17996,22.39014],[114.17995,22.39015],[114.17993,22.39016],[114.17991,22.39017],[114.1799,22.39018],[114.17988,22.39018],[114.17986,22.39019],[114.17985,22.3902],[114.17983,22.39021],[114.17981,22.39022],[114.1798,22.39023],[114.17978,22.39024],[114.17976,22.39025],[114.17975,22.39026],[114.17973,22.39026],[114.17971,22.39027],[114.17969,22.39028],[114.17968,22.39029],[114.17966,22.3903],[114.17964,22.39031],[114.17963,22.39032],[114.17961,22.39033],[114.17959,22.39034],[114.17958,22.39035],[114.17956,22.39035],[114.17954,22.39036],[114.17952,22.39037],[114.17951,22.39038],[114.17949,22.39039],[114.17947,22.39039],[114.17946,22.3904],[114.17944,22.39041],[114.17942,22.39042],[114.1794,22.39042],[114.17938,22.39043],[114.17937,22.39044],[114.17935,22.39045],[114.17933,22.39045],[114.17931,22.39046],[114.17929,22.39046],[114.17928,22.39047],[114.17926,22.39048],[114.17924,22.39048],[114.17922,22.39049],[114.1792,22.39049],[114.17918,22.3905],[114.17916,22.3905],[114.17915,22.39051],[114.17913,22.39051],[114.17911,22.39052],[114.17909,22.39053],[114.17907,22.39053],[114.17905,22.39054],[114.17903,22.39054],[114.17902,22.39055],[114.179,22.39055],[114.17898,22.39056],[114.17896,22.39056],[114.17894,22.39057],[114.17892,22.39057],[114.1789,22.39057],[114.17888,22.39058],[114.17887,22.39058],[114.17885,22.39059],[114.17883,22.39059],[114.17881,22.3906],[114.17879,22.3906],[114.17877,22.39061],[114.17875,22.39061],[114.17873,22.39062],[114.17872,22.39062],[114.1787,22.39062],[114.17868,22.39063],[114.17866,22.39063],[114.17864,22.39064],[114.17862,22.39064],[114.1786,22.39064],[114.17858,22.39065],[114.17856,22.39065],[114.17854,22.39066],[114.17853,22.39066],[114.17851,22.39066],[114.17849,22.39067],[114.17847,22.39067],[114.17845,22.39067],[114.17843,22.39067],[114.17841,22.39068],[114.17839,22.39068],[114.17837,22.39068],[114.17835,22.39068],[114.17833,22.39069],[114.17831,22.39069],[114.1783,22.39069],[114.17828,22.39069],[114.17826,22.39069],[114.17824,22.3907],[114.17822,22.3907],[114.1782,22.3907],[114.17818,22.3907],[114.17817,22.3907],[114.1775,22.39072],[114.17587,22.39066],[114.1717,22.39038],[114.16615,22.38632],[114.16095,22.38251],[114.16071,22.3813],[114.16049,22.37978],[114.16042,22.37887],[114.16043,22.3783],[114.16049,22.37788],[114.16063,22.3774],[114.16077,22.37703],[114.1609,22.37679],[114.1611,22.37648],[114.16128,22.37628],[114.1615,22.37607],[114.16179,22.37588],[114.16201,22.37575],[114.16217,22.37566],[114.16233,22.37559],[114.1625,22.37552],[114.16261,22.37548],[114.16276,22.37543],[114.16287,22.3754],[114.16297,22.37536],[114.16305,22.37531],[114.16313,22.37524],[114.16322,22.37514],[114.16331,22.37502],[114.16347,22.37473],[114.16365,22.37434],[114.16375,22.37411],[114.16387,22.37381],[114.16398,22.3735],[114.16405,22.37327],[114.16409,22.37313],[114.1641,22.37309],[114.16412,22.37299],[114.16412,22.37297],[114.16412,22.37296],[114.16412,22.37295],[114.16412,22.37293],[114.16413,22.37291],[114.16413,22.3729],[114.16413,22.37289],[114.16414,22.37287],[114.16414,22.37286],[114.16415,22.37285],[114.16415,22.37283],[114.16416,22.37281],[114.16416,22.37278],[114.16417,22.37275],[114.16417,22.37274],[114.16419,22.37271],[114.1642,22.3727],[114.16421,22.37267],[114.16422,22.37266],[114.16422,22.37264],[114.16423,22.37263],[114.16423,22.37261],[114.16424,22.37259],[114.16425,22.37256],[114.16426,22.37254],[114.16427,22.37253],[114.16428,22.37251],[114.16429,22.37247],[114.16431,22.37244],[114.16431,22.37242],[114.16432,22.37239],[114.16433,22.37237],[114.16433,22.37236],[114.16435,22.37232],[114.16439,22.37226],[114.16439,22.37224],[114.1644,22.37223],[114.1644,22.37222],[114.1644,22.37221],[114.16441,22.3722],[114.16442,22.37218],[114.16443,22.37217],[114.16445,22.37214],[114.16448,22.37211],[114.16453,22.37204],[114.16454,22.37202],[114.16456,22.372],[114.16464,22.37189],[114.16467,22.37186],[114.1647,22.37183],[114.16473,22.3718],[114.16474,22.37179],[114.16477,22.37176],[114.1648,22.37174],[114.16481,22.37173],[114.16483,22.3717],[114.16484,22.37169],[114.16489,22.37164],[114.16491,22.37163],[114.16498,22.37156],[114.16499,22.37155],[114.16501,22.37153],[114.16506,22.37149],[114.1651,22.37147],[114.16512,22.37146],[114.16515,22.37143],[114.16517,22.37142],[114.16527,22.37132],[114.16528,22.37132],[114.1653,22.37131],[114.16531,22.37129],[114.16533,22.37128],[114.16534,22.37127],[114.16536,22.37126],[114.16537,22.37125],[114.16539,22.37124],[114.16541,22.37123],[114.16542,22.37122],[114.16544,22.37121],[114.16545,22.37119],[114.16547,22.37118],[114.16548,22.37117],[114.1655,22.37116],[114.16551,22.37115],[114.16553,22.37114],[114.16554,22.37113],[114.16556,22.37111],[114.16557,22.3711],[114.16559,22.37109],[114.1656,22.37108],[114.16562,22.37107],[114.16563,22.37106],[114.16565,22.37104],[114.16566,22.37103],[114.16568,22.37102],[114.16569,22.37101],[114.16571,22.371],[114.16572,22.37099],[114.16574,22.37098],[114.16575,22.37096],[114.16577,22.37095],[114.16578,22.37094],[114.1658,22.37093],[114.16581,22.37092],[114.16583,22.37091],[114.16584,22.3709],[114.16586,22.37089],[114.16587,22.37088],[114.16589,22.37086],[114.1659,22.37085],[114.16592,22.37084],[114.16594,22.37083],[114.16595,22.37082],[114.16597,22.37081],[114.16598,22.3708],[114.166,22.37079],[114.16601,22.37078],[114.16603,22.37077],[114.16605,22.37076],[114.16606,22.37075],[114.16608,22.37074],[114.16609,22.37073],[114.16611,22.37072],[114.16613,22.37071],[114.16614,22.3707],[114.16616,22.37069],[114.16618,22.37068],[114.16619,22.37067],[114.16621,22.37066],[114.16622,22.37065],[114.16624,22.37064],[114.16626,22.37063],[114.16627,22.37062],[114.16629,22.37061],[114.1663,22.3706],[114.16632,22.37059],[114.16634,22.37058],[114.1664,22.37054],[114.16606,22.3703],[114.16695,22.3696],[114.16738,22.36927],[114.16739,22.36925],[114.16741,22.36924],[114.16742,22.36923],[114.16743,22.36922],[114.16744,22.3692],[114.16745,22.36919],[114.16746,22.36917],[114.16747,22.36915],[114.16747,22.36914],[114.16748,22.36912],[114.16749,22.3691],[114.16749,22.36908],[114.1675,22.36907],[114.1675,22.36905],[114.16751,22.36903],[114.16751,22.36901],[114.16752,22.369],[114.16752,22.36898],[114.16753,22.36896],[114.16753,22.36894],[114.16753,22.36892],[114.16754,22.36891],[114.16754,22.36889],[114.16754,22.36887],[114.16754,22.36885],[114.16754,22.36883],[114.16754,22.36882],[114.16754,22.3688],[114.16754,22.36878],[114.16754,22.36876],[114.16754,22.36874],[114.16754,22.36873],[114.16753,22.36871],[114.16753,22.36869],[114.16753,22.36867],[114.16753,22.36866],[114.16752,22.36864],[114.16752,22.36862],[114.16752,22.3686],[114.16751,22.36858],[114.16751,22.36857],[114.16751,22.36855],[114.1675,22.36853],[114.1675,22.36851],[114.16749,22.36849],[114.16749,22.36848],[114.16748,22.36846],[114.16748,22.36844],[114.16747,22.36842],[114.16747,22.36841],[114.16746,22.36839],[114.16746,22.36837],[114.16745,22.36836],[114.16744,22.36834],[114.16744,22.36832],[114.16743,22.36831],[114.16742,22.36829],[114.16742,22.36827],[114.16741,22.36826],[114.1674,22.36824],[114.16739,22.36822],[114.16738,22.36821],[114.16737,22.36819],[114.16736,22.36818],[114.16735,22.36816],[114.16734,22.36815],[114.16733,22.36813],[114.16732,22.36811],[114.16731,22.3681],[114.1673,22.36808],[114.16728,22.36807],[114.16727,22.36805],[114.16726,22.36804],[114.16725,22.36803],[114.16723,22.36801],[114.16722,22.368],[114.1672,22.36799],[114.16719,22.36799],[114.16717,22.36798],[114.16715,22.36797],[114.16713,22.36797],[114.16711,22.36797],[114.16709,22.36796],[114.16707,22.36796],[114.16705,22.36796],[114.16703,22.36796],[114.16701,22.36795],[114.16699,22.36795],[114.16698,22.36795],[114.16696,22.36795],[114.16694,22.36795],[114.16692,22.36795],[114.1669,22.36794],[114.16688,22.36794],[114.16686,22.36794],[114.16684,22.36794],[114.16682,22.36794],[114.1668,22.36793],[114.16679,22.36792],[114.16677,22.36791],[114.16676,22.36789],[114.16674,22.36788],[114.16673,22.36787],[114.16672,22.36785],[114.16671,22.36783],[114.16671,22.36782],[114.16671,22.3678],[114.16671,22.36778],[114.1667,22.36776],[114.16671,22.36774],[114.16671,22.36773],[114.16671,22.36771],[114.16671,22.36769],[114.16671,22.36767],[114.16672,22.36765],[114.16672,22.36764],[114.16672,22.36762],[114.16672,22.3676],[114.16673,22.36758],[114.16673,22.36757],[114.16673,22.36755],[114.16674,22.36753],[114.16674,22.36751],[114.16674,22.36749],[114.16675,22.36748],[114.16675,22.36746],[114.16676,22.36744],[114.16676,22.36742],[114.16677,22.36741],[114.16678,22.36739],[114.16679,22.36737],[114.1668,22.36736],[114.16681,22.36734],[114.16682,22.36733],[114.16683,22.36732],[114.16685,22.3673],[114.16686,22.36729],[114.16688,22.36728],[114.16689,22.36727],[114.16691,22.36726],[114.16692,22.36725],[114.16694,22.36724],[114.16696,22.36723],[114.16698,22.36722],[114.16699,22.36722],[114.16701,22.36721],[114.16703,22.3672],[114.16705,22.3672],[114.16707,22.3672],[114.16709,22.36719],[114.16711,22.36719],[114.16713,22.36719],[114.16713,22.36719],[114.16712,22.36717],[114.16711,22.36716],[114.1671,22.36714],[114.1671,22.36714],[114.16709,22.36712],[114.16708,22.36711],[114.16707,22.36709],[114.16706,22.36708],[114.16705,22.36706],[114.16704,22.36705],[114.16703,22.36703],[114.16701,22.36702],[114.167,22.36701],[114.16699,22.36699],[114.16697,22.36698],[114.16696,22.36697],[114.16695,22.36695],[114.16693,22.36694],[114.16692,22.36693],[114.1669,22.36692],[114.16689,22.3669],[114.16688,22.36689],[114.16686,22.36688],[114.16685,22.36687],[114.16683,22.36686],[114.16682,22.36685],[114.1668,22.36683],[114.16679,22.36682],[114.16677,22.36681],[114.16676,22.3668],[114.16674,22.36679],[114.16672,22.36678],[114.16671,22.36677],[114.16669,22.36676],[114.16667,22.36675],[114.16666,22.36674],[114.16664,22.36673],[114.16662,22.36672],[114.16661,22.36672],[114.16659,22.36671],[114.16657,22.3667],[114.16656,22.36669],[114.16654,22.36668],[114.16652,22.36667],[114.1665,22.36666],[114.16649,22.36666],[114.16647,22.36665],[114.16645,22.36664],[114.16644,22.36663],[114.16642,22.36662],[114.1664,22.36662],[114.16638,22.36661],[114.16637,22.3666],[114.16635,22.36659],[114.16633,22.36658],[114.16631,22.36658],[114.16629,22.36657],[114.16628,22.36656],[114.16626,22.36655],[114.16624,22.36655],[114.16622,22.36654],[114.16621,22.36653],[114.16619,22.36653],[114.16617,22.36652],[114.16615,22.36651],[114.16614,22.3665],[114.16612,22.3665],[114.1661,22.36649],[114.16608,22.36648],[114.16606,22.36647],[114.16605,22.36647],[114.16603,22.36646],[114.16601,22.36645],[114.16599,22.36644],[114.16596,22.36643],[114.16594,22.36642],[114.16592,22.36641],[114.16591,22.3664],[114.16589,22.3664],[114.16587,22.36639],[114.16585,22.36638],[114.16584,22.36637],[114.16582,22.36636],[114.1658,22.36636],[114.16578,22.36635],[114.16577,22.36634],[114.16575,22.36633],[114.16573,22.36632],[114.16572,22.36632],[114.1657,22.36631],[114.16568,22.3663],[114.16566,22.36629],[114.16565,22.36628],[114.16563,22.36627],[114.16561,22.36627],[114.16559,22.36626],[114.16558,22.36625],[114.16556,22.36624],[114.16554,22.36623],[114.16553,22.36622],[114.16551,22.36622],[114.16549,22.36621],[114.16547,22.3662],[114.16546,22.36619],[114.16544,22.36618],[114.16542,22.36617],[114.16541,22.36616],[114.16539,22.36615],[114.16537,22.36615],[114.16536,22.36614],[114.16534,22.36613],[114.16532,22.36612],[114.16531,22.36611],[114.16529,22.3661],[114.16527,22.36609],[114.16526,22.36608],[114.16524,22.36607],[114.16522,22.36606],[114.16521,22.36605],[114.16519,22.36604],[114.16517,22.36603],[114.16516,22.36602],[114.16514,22.36601],[114.16512,22.366],[114.16511,22.36599],[114.16509,22.36598],[114.16508,22.36597],[114.16506,22.36596],[114.16504,22.36595],[114.16503,22.36594],[114.16501,22.36593],[114.16499,22.36592],[114.16498,22.36591],[114.16496,22.3659],[114.16495,22.36589],[114.16493,22.36588],[114.16491,22.36587],[114.1649,22.36586],[114.16488,22.36585],[114.16487,22.36584],[114.16485,22.36583],[114.16484,22.36582],[114.16482,22.36581],[114.16481,22.3658],[114.16479,22.36579],[114.16477,22.36578],[114.16476,22.36576],[114.16474,22.36575],[114.16473,22.36574],[114.16471,22.36573],[114.1647,22.36572],[114.16468,22.36571],[114.16466,22.3657],[114.16465,22.36569],[114.16463,22.36568],[114.16462,22.36567],[114.1646,22.36566],[114.16458,22.36565],[114.16457,22.36564],[114.16455,22.36563],[114.16453,22.36562],[114.16452,22.36562],[114.1645,22.36561],[114.16448,22.3656],[114.16446,22.3656],[114.16444,22.36559],[114.16442,22.36559],[114.16441,22.36558],[114.16439,22.36558],[114.16437,22.36557],[114.16435,22.36557],[114.16433,22.36557],[114.16431,22.36556],[114.16429,22.36556],[114.16427,22.36556],[114.16425,22.36556],[114.16423,22.36556],[114.16421,22.36556],[114.16419,22.36556],[114.16417,22.36556],[114.16416,22.36556],[114.16414,22.36556],[114.16412,22.36556],[114.1641,22.36557],[114.16408,22.36557],[114.16406,22.36557],[114.16404,22.36558],[114.16402,22.36558],[114.164,22.36559],[114.16398,22.36559],[114.16396,22.36559],[114.16395,22.3656],[114.16393,22.3656],[114.16391,22.36561],[114.16389,22.36561],[114.16387,22.36562],[114.16385,22.36562],[114.16383,22.36563],[114.16381,22.36563],[114.1638,22.36564],[114.16378,22.36564],[114.16376,22.36565],[114.16374,22.36565],[114.16372,22.36565],[114.1637,22.36566],[114.16368,22.36566],[114.16366,22.36567],[114.16365,22.36567],[114.16363,22.36568],[114.16361,22.36568],[114.16359,22.36569],[114.16357,22.3657],[114.16355,22.3657],[114.16353,22.36571],[114.16352,22.36571],[114.1635,22.36572],[114.16348,22.36572],[114.16346,22.36573],[114.16344,22.36573],[114.16342,22.36574],[114.1634,22.36575],[114.16339,22.36575],[114.16337,22.36576],[114.16335,22.36576],[114.16333,22.36577],[114.16331,22.36578],[114.1633,22.36578],[114.16328,22.36579],[114.16326,22.3658],[114.16324,22.3658],[114.16322,22.36581],[114.16321,22.36582],[114.16319,22.36582],[114.16317,22.36583],[114.16315,22.36584],[114.16313,22.36584],[114.16312,22.36585],[114.1631,22.36586],[114.16308,22.36587],[114.16306,22.36587],[114.16304,22.36588],[114.16303,22.36589],[114.16301,22.3659],[114.16299,22.36591],[114.16298,22.36591],[114.16296,22.36592],[114.16294,22.36593],[114.16292,22.36594],[114.16291,22.36595],[114.16289,22.36596],[114.16287,22.36597],[114.16286,22.36598],[114.16284,22.36599],[114.16282,22.366],[114.16281,22.36601],[114.16279,22.36602],[114.16278,22.36603],[114.16276,22.36604],[114.16274,22.36605],[114.16273,22.36606],[114.16271,22.36607],[114.1627,22.36608],[114.16268,22.36609],[114.16267,22.3661],[114.16265,22.36611],[114.16264,22.36613],[114.16262,22.36614],[114.16261,22.36615],[114.16259,22.36616],[114.16258,22.36617],[114.16256,22.36618],[114.16255,22.36619],[114.16253,22.36621],[114.16252,22.36622],[114.1625,22.36623],[114.16249,22.36624],[114.16247,22.36625],[114.16246,22.36626],[114.16244,22.36628],[114.16243,22.36629],[114.16241,22.3663],[114.1624,22.36631],[114.16239,22.36632],[114.16237,22.36634],[114.16236,22.36635],[114.16234,22.36636],[114.16233,22.36637],[114.16231,22.36639],[114.1623,22.3664],[114.16229,22.36641],[114.16227,22.36642],[114.16226,22.36644],[114.16224,22.36645],[114.16223,22.36646],[114.16222,22.36647],[114.1622,22.36649],[114.16219,22.3665],[114.16218,22.36651],[114.16216,22.36653],[114.16215,22.36654],[114.16214,22.36655],[114.16212,22.36657],[114.16211,22.36658],[114.1621,22.36659],[114.16208,22.36661],[114.16207,22.36662],[114.16206,22.36663],[114.16205,22.36665],[114.16203,22.36666],[114.16202,22.36667],[114.16201,22.36669],[114.162,22.3667],[114.16198,22.36672],[114.16197,22.36673],[114.16196,22.36675],[114.16195,22.36676],[114.16194,22.36677],[114.16192,22.36679],[114.16191,22.3668],[114.1619,22.36682],[114.16189,22.36683],[114.16188,22.36685],[114.16187,22.36686],[114.16185,22.36687],[114.16184,22.36689],[114.16183,22.3669],[114.16182,22.36692],[114.1618,22.36693],[114.16179,22.36694],[114.16178,22.36696],[114.16177,22.36697],[114.16175,22.36698],[114.16174,22.367],[114.16173,22.36701],[114.16171,22.36702],[114.1617,22.36704],[114.16169,22.36705],[114.16167,22.36706],[114.16166,22.36707],[114.16164,22.36709],[114.16163,22.3671],[114.16162,22.36711],[114.1616,22.36713],[114.16159,22.36714],[114.16158,22.36715],[114.16156,22.36716],[114.16155,22.36718],[114.16153,22.36719],[114.16152,22.3672],[114.16151,22.36721],[114.16149,22.36723],[114.16148,22.36724],[114.16146,22.36725],[114.16145,22.36726],[114.16143,22.36728],[114.16142,22.36729],[114.16141,22.3673],[114.16139,22.36731],[114.16138,22.36732],[114.16136,22.36734],[114.16135,22.36735],[114.16133,22.36736],[114.16132,22.36737],[114.1613,22.36738],[114.16129,22.36739],[114.16127,22.3674],[114.16126,22.36741],[114.16124,22.36743],[114.16122,22.36744],[114.16121,22.36745],[114.16119,22.36746],[114.16118,22.36747],[114.16116,22.36748],[114.16115,22.36749],[114.16113,22.3675],[114.16111,22.36751],[114.1611,22.36752],[114.16108,22.36753],[114.16107,22.36754],[114.16105,22.36755],[114.16103,22.36756],[114.16102,22.36757],[114.161,22.36758],[114.16099,22.36759],[114.16097,22.3676],[114.16095,22.36761],[114.16094,22.36762],[114.16092,22.36763],[114.1609,22.36764],[114.16089,22.36765],[114.16087,22.36766],[114.16085,22.36767],[114.16084,22.36768],[114.16082,22.36769],[114.1608,22.3677],[114.16079,22.3677],[114.16077,22.36771],[114.16075,22.36772],[114.16074,22.36773],[114.16072,22.36774],[114.1607,22.36775],[114.16068,22.36776],[114.16067,22.36776],[114.16065,22.36777],[114.16063,22.36778],[114.16062,22.36779],[114.1606,22.3678],[114.16058,22.3678],[114.16056,22.36781],[114.16055,22.36782],[114.16053,22.36783],[114.16051,22.36784],[114.16049,22.36784],[114.16048,22.36785],[114.16046,22.36786],[114.16044,22.36787],[114.16042,22.36787],[114.1604,22.36788],[114.16039,22.36789],[114.16037,22.3679],[114.16033,22.36791],[114.16032,22.36792],[114.1603,22.36793],[114.16028,22.36793],[114.16026,22.36794],[114.16025,22.36795],[114.16023,22.36796],[114.16021,22.36796],[114.16019,22.36797],[114.16017,22.36798],[114.16016,22.36798],[114.16014,22.36799],[114.16012,22.368],[114.1601,22.36801],[114.16009,22.36801],[114.16007,22.36802],[114.16005,22.36803],[114.16003,22.36804],[114.16001,22.36804],[114.16,22.36805],[114.15998,22.36806],[114.15996,22.36807],[114.15994,22.36807],[114.15993,22.36808],[114.15991,22.36809],[114.15989,22.3681],[114.15987,22.36811],[114.15986,22.36811],[114.15984,22.36812],[114.15982,22.36813],[114.1598,22.36814],[114.15979,22.36815],[114.15977,22.36816],[114.15975,22.36816],[114.15974,22.36817],[114.15972,22.36818],[114.1597,22.36819],[114.15969,22.3682],[114.15967,22.36821],[114.15965,22.36822],[114.15964,22.36823],[114.15962,22.36824],[114.1596,22.36825],[114.15959,22.36826],[114.15957,22.36827],[114.15955,22.36828],[114.15954,22.36829],[114.15952,22.3683],[114.1595,22.3683],[114.15949,22.36831],[114.15947,22.36832],[114.15945,22.36833],[114.15944,22.36834],[114.15942,22.36835],[114.1594,22.36836],[114.15939,22.36837],[114.15937,22.36838],[114.15935,22.36839],[114.15934,22.3684],[114.15932,22.3684],[114.1593,22.36841],[114.15929,22.36842],[114.15927,22.36843],[114.15925,22.36844],[114.15924,22.36845],[114.15922,22.36846],[114.15919,22.36848],[114.15917,22.36849],[114.15915,22.36849],[114.15913,22.3685],[114.15912,22.36851],[114.1591,22.36852],[114.15908,22.36853],[114.15907,22.36854],[114.15903,22.36856],[114.15902,22.36857],[114.159,22.36857],[114.15898,22.36858],[114.15897,22.36859],[114.15895,22.3686],[114.15893,22.36861],[114.15888,22.36863],[114.15886,22.36864],[114.15885,22.36865],[114.15883,22.36866],[114.15881,22.36867],[114.15879,22.36868],[114.15878,22.36869],[114.15876,22.36869],[114.15874,22.3687],[114.15872,22.36871],[114.15871,22.36872],[114.15869,22.36873],[114.15867,22.36873],[114.15865,22.36874],[114.15864,22.36875],[114.15862,22.36875],[114.1586,22.36876],[114.15858,22.36877],[114.15857,22.36878],[114.15855,22.36878],[114.15853,22.36879],[114.15851,22.3688],[114.15849,22.3688],[114.15848,22.36881],[114.15846,22.36882],[114.15844,22.36882],[114.15842,22.36883],[114.1584,22.36884],[114.15838,22.36884],[114.15837,22.36885],[114.15835,22.36886],[114.15833,22.36886],[114.15831,22.36887],[114.15829,22.36887],[114.15827,22.36888],[114.15826,22.36888],[114.15824,22.36889],[114.15822,22.3689],[114.1582,22.3689],[114.15818,22.36891],[114.15816,22.36891],[114.15814,22.36891],[114.15813,22.36892],[114.15811,22.36892],[114.15809,22.36893],[114.15807,22.36893],[114.15805,22.36893],[114.15803,22.36893],[114.15801,22.36893],[114.15799,22.36893],[114.15797,22.36894],[114.15795,22.36894],[114.15793,22.36894],[114.15791,22.36894],[114.15789,22.36894],[114.15787,22.36894],[114.15785,22.36894],[114.15783,22.36893],[114.15781,22.36893],[114.1578,22.36893],[114.15778,22.36893],[114.15776,22.36893],[114.15774,22.36892],[114.15772,22.36892],[114.1577,22.36892],[114.15768,22.36891],[114.15766,22.36891],[114.15764,22.3689],[114.15762,22.3689],[114.15761,22.36889],[114.15759,22.36889],[114.15757,22.36888],[114.15755,22.36887],[114.15753,22.36886],[114.15752,22.36885],[114.1575,22.36885],[114.15748,22.36884],[114.15747,22.36883],[114.15745,22.36882],[114.15744,22.3688],[114.15742,22.36879],[114.15741,22.36878],[114.15739,22.36877],[114.15738,22.36876],[114.15737,22.36874],[114.15735,22.36873],[114.15734,22.36872],[114.15733,22.3687],[114.15732,22.36869],[114.15731,22.36867],[114.1573,22.36865],[114.15729,22.36864],[114.15728,22.36862],[114.15727,22.36861],[114.15727,22.36859],[114.15726,22.36857],[114.15725,22.36855],[114.15725,22.36854],[114.15724,22.36852],[114.15724,22.3685],[114.15724,22.36848],[114.15723,22.36847],[114.15723,22.36845],[114.15723,22.36843],[114.15722,22.36841],[114.15722,22.36839],[114.15722,22.36838],[114.15722,22.36836],[114.15722,22.36834],[114.15723,22.36832],[114.15723,22.3683],[114.15723,22.36829],[114.15724,22.36827],[114.15724,22.36825],[114.15725,22.36823],[114.15725,22.36822],[114.15726,22.3682],[114.15726,22.36818],[114.15727,22.36816],[114.15727,22.36815],[114.15728,22.36813],[114.15729,22.36811],[114.15729,22.36809],[114.1573,22.36808],[114.1573,22.36806],[114.15731,22.36804],[114.15732,22.36803],[114.15732,22.36801],[114.15733,22.36799],[114.15734,22.36798],[114.15735,22.36796],[114.15736,22.36794],[114.15737,22.36793],[114.15737,22.36791],[114.15738,22.3679],[114.15739,22.36788],[114.1574,22.36786],[114.1574,22.36784],[114.15741,22.36783],[114.15741,22.36781],[114.15742,22.36779],[114.15742,22.36778],[114.15743,22.36776],[114.15743,22.36774],[114.15744,22.36772],[114.15744,22.36771],[114.15745,22.36769],[114.15745,22.36767],[114.15746,22.36765],[114.15746,22.36763],[114.15747,22.36762],[114.15747,22.3676],[114.15747,22.36758],[114.15748,22.36756],[114.15748,22.36755],[114.15748,22.36753],[114.15749,22.36751],[114.15749,22.36749],[114.15749,22.36747],[114.1575,22.36746],[114.1575,22.36744],[114.1575,22.36742],[114.1575,22.3674],[114.15751,22.36739],[114.15751,22.36737],[114.15751,22.36735],[114.15751,22.36733],[114.15752,22.36731],[114.15752,22.3673],[114.15752,22.36728],[114.15752,22.36726],[114.15753,22.36724],[114.15753,22.36722],[114.15753,22.36721],[114.15753,22.36719],[114.15753,22.36717],[114.15753,22.36715],[114.15753,22.36713],[114.15754,22.36712],[114.15754,22.3671],[114.15754,22.36708],[114.15754,22.36706],[114.15754,22.36704],[114.15754,22.36703],[114.15754,22.36701],[114.15754,22.36699],[114.15754,22.36697],[114.15754,22.36695],[114.15754,22.36694],[114.15754,22.36692],[114.15754,22.3669],[114.15753,22.36688],[114.15753,22.36686],[114.15753,22.36684],[114.15753,22.36683],[114.15753,22.36681],[114.15753,22.36679],[114.15753,22.36677],[114.15752,22.36675],[114.15752,22.36674],[114.15752,22.36672],[114.15752,22.3667],[114.15751,22.36668],[114.15751,22.36666],[114.15751,22.36665],[114.1575,22.36663],[114.1575,22.36661],[114.15749,22.36659],[114.15749,22.36658],[114.15748,22.36656],[114.15748,22.36654],[114.15747,22.36653],[114.15746,22.36651],[114.15745,22.36649],[114.15744,22.36648],[114.15743,22.36646],[114.15743,22.36644],[114.15742,22.36643],[114.15741,22.36641],[114.1574,22.3664],[114.15739,22.36638],[114.15737,22.36637],[114.15736,22.36635],[114.15735,22.36634],[114.15734,22.36633],[114.15733,22.36631],[114.15731,22.3663],[114.1573,22.36628],[114.15729,22.36627],[114.15727,22.36626],[114.15726,22.36624],[114.15725,22.36623],[114.15724,22.36622],[114.15722,22.3662],[114.15721,22.36619],[114.15719,22.36618],[114.15718,22.36617],[114.15717,22.36615],[114.15715,22.36614],[114.15714,22.36613],[114.15712,22.36612],[114.1571,22.36611],[114.15709,22.3661],[114.15707,22.36609],[114.15706,22.36608],[114.15704,22.36607],[114.15702,22.36606],[114.157,22.36605],[114.15699,22.36604],[114.15697,22.36604],[114.15695,22.36603],[114.15694,22.36602],[114.15692,22.36601],[114.1569,22.366],[114.15688,22.366],[114.15686,22.36599],[114.15685,22.36599],[114.15683,22.36598],[114.15681,22.36597],[114.15679,22.36597],[114.15677,22.36596],[114.15676,22.36595],[114.15674,22.36594],[114.15672,22.36593],[114.15671,22.36592],[114.15669,22.36591],[114.15667,22.3659],[114.15666,22.36589],[114.15664,22.36588],[114.15663,22.36587],[114.15661,22.36585],[114.1566,22.36584],[114.15659,22.36583],[114.15657,22.36586],[114.15591,22.36693],[114.15526,22.36773],[114.1547,22.36831],[114.15446,22.3685],[114.15409,22.3688],[114.15336,22.36932],[114.15256,22.36974],[114.15254,22.36975],[114.15243,22.3698],[114.15237,22.36983],[114.15229,22.36987],[114.15226,22.36989],[114.15224,22.36991],[114.15223,22.36992],[114.15218,22.36993],[114.15209,22.36998],[114.15202,22.37002],[114.15198,22.37007],[114.15196,22.37009],[114.15195,22.3701],[114.15193,22.3701],[114.15189,22.37011],[114.15174,22.37017],[114.15166,22.3702],[114.15158,22.37023],[114.15157,22.37023],[114.15149,22.37023],[114.15141,22.37025],[114.15138,22.37027],[114.15137,22.37027],[114.15135,22.37029],[114.15133,22.37031],[114.1513,22.37034],[114.15129,22.37035],[114.15123,22.37035],[114.1512,22.37036],[114.15118,22.37036],[114.15117,22.37037],[114.15115,22.37036],[114.15111,22.37036],[114.15104,22.37032],[114.15103,22.37032],[114.151,22.37032],[114.1509,22.37033],[114.15087,22.37033],[114.15086,22.37033],[114.15085,22.37032],[114.15083,22.3703],[114.15081,22.37029],[114.15079,22.3703],[114.15075,22.3703],[114.15073,22.3703],[114.15069,22.37029],[114.15068,22.37028],[114.15058,22.37029],[114.15056,22.3703],[114.15053,22.37034],[114.1505,22.37039],[114.15048,22.37046],[114.15047,22.37052],[114.15045,22.37055],[114.15043,22.37056],[114.15038,22.37057],[114.15029,22.37057],[114.15026,22.37057],[114.15024,22.37058],[114.1502,22.37061],[114.1501,22.37067],[114.15007,22.3707],[114.15004,22.37074],[114.14996,22.37086],[114.14993,22.3709],[114.1499,22.37095],[114.14984,22.37102],[114.14972,22.3711],[114.14966,22.37116],[114.14965,22.37118],[114.14962,22.37122],[114.14955,22.37128],[114.14952,22.37132],[114.1495,22.37135],[114.14949,22.37138],[114.14945,22.37144],[114.1494,22.3715],[114.14933,22.37156],[114.14929,22.37158],[114.14924,22.3716],[114.14917,22.3716],[114.14914,22.37161],[114.14911,22.37162],[114.14908,22.37165],[114.149,22.37168],[114.14891,22.37174],[114.14889,22.37176],[114.14888,22.37179],[114.14887,22.37183],[114.14885,22.37184],[114.14883,22.37186],[114.14882,22.37188],[114.14881,22.3719],[114.14881,22.37193],[114.14879,22.37197],[114.14877,22.37202],[114.14873,22.37205],[114.14873,22.37206],[114.14872,22.37209],[114.14872,22.37216],[114.14872,22.37218],[114.14873,22.37222],[114.14876,22.37225],[114.1488,22.37227],[114.14882,22.37229],[114.14882,22.37233],[114.14882,22.37237],[114.1488,22.37241],[114.14877,22.37245],[114.14872,22.37249],[114.14865,22.37252],[114.14863,22.37253],[114.14862,22.37256],[114.14863,22.37263],[114.14862,22.37269],[114.14862,22.37273],[114.14864,22.37278],[114.14872,22.37294],[114.14873,22.37297],[114.14873,22.37298],[114.14872,22.37301],[114.14871,22.37302],[114.14868,22.37304],[114.1486,22.37306],[114.14854,22.37309],[114.1485,22.37311],[114.14848,22.37314],[114.14845,22.37318],[114.14845,22.3732],[114.14845,22.37325],[114.14846,22.3733],[114.14847,22.37332],[114.14846,22.37333],[114.14843,22.37336],[114.14843,22.37339],[114.14843,22.37341],[114.14845,22.37343],[114.14854,22.37346],[114.14857,22.37347],[114.1486,22.3735],[114.14863,22.37352],[114.14869,22.37358],[114.1487,22.37362],[114.14871,22.37364],[114.1487,22.37376],[114.1487,22.37378],[114.14871,22.37381],[114.14873,22.37385],[114.14874,22.37387],[114.14874,22.37389],[114.14873,22.37392],[114.14872,22.37398],[114.1487,22.37405],[114.14868,22.37408],[114.14868,22.37412],[114.14869,22.37414],[114.14872,22.3742],[114.14873,22.37425],[114.14874,22.37429],[114.14874,22.37441],[114.14873,22.37445],[114.14872,22.37449],[114.1487,22.37452],[114.14867,22.37462],[114.14867,22.37466],[114.14866,22.37469],[114.14864,22.37472],[114.14861,22.37475],[114.14855,22.37479],[114.14851,22.3748],[114.14844,22.37481],[114.14832,22.37481],[114.14829,22.37481],[114.14826,22.37479],[114.14823,22.37479],[114.1482,22.3748],[114.14819,22.37482],[114.14822,22.37488],[114.14823,22.37492],[114.14822,22.37494],[114.14821,22.37496],[114.14819,22.37497],[114.14819,22.37499],[114.14819,22.37499],[114.14822,22.37503],[114.14825,22.37504],[114.14831,22.37509],[114.14833,22.37515],[114.14834,22.37518],[114.14837,22.37523],[114.14839,22.37526],[114.14843,22.37528],[114.14846,22.3753],[114.14846,22.37533],[114.1485,22.37539],[114.14853,22.37543],[114.14858,22.37551],[114.14859,22.37554],[114.14858,22.37557],[114.14857,22.3756],[114.14855,22.37562],[114.14846,22.37566],[114.14838,22.37572],[114.14832,22.37575],[114.14828,22.37577],[114.14821,22.37577],[114.14818,22.37578],[114.14817,22.37579],[114.14815,22.37581],[114.14801,22.37593],[114.14795,22.37597],[114.14788,22.37599],[114.14785,22.37609],[114.14784,22.3761],[114.14779,22.37614],[114.14779,22.37614],[114.14778,22.37619],[114.14778,22.3762],[114.14777,22.37622],[114.14775,22.37624],[114.14771,22.37627],[114.14771,22.37628],[114.14771,22.3763],[114.14772,22.37631],[114.14773,22.37632],[114.14737,22.37626],[114.14687,22.37609],[114.14641,22.37583],[114.14593,22.3754],[114.14587,22.3753],[114.14586,22.37528],[114.14586,22.37527],[114.14582,22.37526],[114.14574,22.37519],[114.14568,22.37515],[114.14553,22.37508],[114.14558,22.37493],[114.14558,22.37486],[114.14556,22.37483],[114.14554,22.3748],[114.14544,22.37475],[114.14541,22.37472],[114.14538,22.37468],[114.14537,22.37462],[114.1454,22.37451],[114.1454,22.37447],[114.14539,22.37445],[114.14536,22.37442],[114.14532,22.37441],[114.14522,22.37444],[114.14517,22.37443],[114.14505,22.37432],[114.14499,22.37425],[114.14498,22.37419],[114.14498,22.37414],[114.14505,22.37402],[114.14504,22.37397],[114.14503,22.3739],[114.14502,22.37383],[114.14496,22.37365],[114.14496,22.37359],[114.14508,22.37339],[114.14511,22.37334],[114.14514,22.37332],[114.14517,22.37331],[114.14527,22.37331],[114.14532,22.37329],[114.14548,22.37314],[114.14557,22.373],[114.14558,22.37295],[114.14556,22.37289],[114.14557,22.37281],[114.14553,22.37271],[114.14553,22.37268],[114.14554,22.37265],[114.1456,22.37258],[114.14562,22.37253],[114.1456,22.37241],[114.14552,22.3723],[114.14552,22.37227],[114.14553,22.37224],[114.14555,22.37221],[114.14559,22.37219],[114.14574,22.37217],[114.14593,22.37208],[114.14599,22.37204],[114.14604,22.37197],[114.14611,22.37191],[114.14614,22.37187],[114.14619,22.37167],[114.14621,22.37164],[114.14624,22.37163],[114.14625,22.37161],[114.14623,22.37155],[114.14624,22.37152],[114.14628,22.37149],[114.14631,22.37144],[114.14635,22.3714],[114.14642,22.37135],[114.14651,22.37132],[114.14654,22.3713],[114.14655,22.37128],[114.14655,22.37123],[114.14656,22.37121],[114.1466,22.37118],[114.14668,22.37109],[114.14677,22.37091],[114.14681,22.37085],[114.14686,22.37081],[114.14699,22.37079],[114.14686,22.37057],[114.14651,22.37016],[114.14631,22.36986],[114.14617,22.3697],[114.14571,22.36961],[114.14566,22.36959],[114.14561,22.36955],[114.14539,22.36938],[114.14534,22.36937],[114.14518,22.36935],[114.14509,22.36933],[114.14502,22.36929],[114.14498,22.36925],[114.14497,22.36923],[114.14497,22.36918],[114.14499,22.36911],[114.14504,22.36906],[114.14514,22.36901],[114.14518,22.36896],[114.14532,22.36859],[114.14533,22.36854],[114.14532,22.36851],[114.14531,22.36848],[114.14529,22.36844],[114.14523,22.3684],[114.14514,22.36837],[114.14488,22.36829],[114.14479,22.36826],[114.14477,22.36824],[114.14475,22.36821],[114.14474,22.36816],[114.14474,22.36813],[114.14476,22.36809],[114.1448,22.36805],[114.14514,22.36776],[114.1452,22.3677],[114.14537,22.36747],[114.14538,22.36744],[114.14539,22.36741],[114.14537,22.36737],[114.14534,22.36732],[114.14531,22.36729],[114.14528,22.36728],[114.14524,22.36728],[114.14517,22.36731],[114.14507,22.36733],[114.14461,22.36734],[114.14455,22.36732],[114.1445,22.3673],[114.14448,22.36727],[114.14446,22.36721],[114.14446,22.36709],[114.14446,22.36694],[114.14448,22.36689],[114.14454,22.36679],[114.14455,22.36677],[114.14455,22.36677],[114.14455,22.36677],[114.14455,22.36676],[114.14455,22.36676],[114.14455,22.36675],[114.14456,22.36675],[114.14456,22.36674],[114.14456,22.36674],[114.14456,22.36673],[114.14456,22.36673],[114.14456,22.36672],[114.14457,22.36672],[114.14457,22.36672],[114.14457,22.36671],[114.14457,22.36671],[114.14457,22.3667],[114.14457,22.3667],[114.14457,22.36669],[114.14457,22.36669],[114.14458,22.36669],[114.14458,22.36668],[114.14458,22.36668],[114.14458,22.36667],[114.14458,22.36667],[114.14458,22.36666],[114.14458,22.36665],[114.14458,22.36665],[114.14459,22.36665],[114.14459,22.36664],[114.14459,22.36664],[114.14459,22.36663],[114.14459,22.36663],[114.14459,22.36662],[114.14459,22.36662],[114.14459,22.36661],[114.14459,22.36661],[114.14459,22.3666],[114.14459,22.3666],[114.1446,22.3666],[114.1446,22.36659],[114.1446,22.36659],[114.1446,22.36658],[114.1446,22.36658],[114.1446,22.36657],[114.1446,22.36656],[114.1446,22.36656],[114.1446,22.36656],[114.1446,22.36655],[114.14461,22.36655],[114.14461,22.36654],[114.14461,22.36654],[114.14461,22.36653],[114.14461,22.36653],[114.14462,22.36652],[114.14462,22.36652],[114.14462,22.36652],[114.14462,22.36651],[114.14462,22.36651],[114.14463,22.3665],[114.14463,22.3665],[114.14463,22.3665],[114.14463,22.36649],[114.14464,22.36649],[114.14464,22.36648],[114.14464,22.36648],[114.14464,22.36648],[114.14465,22.36647],[114.14465,22.36647],[114.14465,22.36647],[114.14466,22.36646],[114.14466,22.36646],[114.14466,22.36645],[114.14467,22.36645],[114.14467,22.36645],[114.14467,22.36644],[114.14467,22.36644],[114.14468,22.36644],[114.14468,22.36643],[114.14468,22.36643],[114.14468,22.36642],[114.14469,22.36642],[114.14469,22.36642],[114.14469,22.36641],[114.14469,22.36641],[114.14469,22.3664],[114.1447,22.3664],[114.1447,22.36639],[114.1447,22.36639],[114.1447,22.36638],[114.14471,22.36638],[114.14471,22.36637],[114.14471,22.36637],[114.14471,22.36636],[114.14471,22.36636],[114.14471,22.36636],[114.14471,22.36635],[114.14471,22.36635],[114.14471,22.36634],[114.14472,22.36634],[114.14472,22.36633],[114.14472,22.36633],[114.14472,22.36632],[114.14472,22.36632],[114.14472,22.36631],[114.14472,22.36631],[114.14472,22.36631],[114.14472,22.3663],[114.14472,22.3663],[114.14471,22.36622],[114.14471,22.36613],[114.14475,22.36613],[114.14476,22.36613],[114.14476,22.36612],[114.14477,22.36612],[114.14477,22.36612],[114.14478,22.36612],[114.14478,22.36612],[114.14478,22.36612],[114.14479,22.36611],[114.14479,22.36611],[114.1448,22.36611],[114.1448,22.36611],[114.14481,22.3661],[114.14481,22.3661],[114.14481,22.3661],[114.14482,22.3661],[114.14482,22.36609],[114.14483,22.36609],[114.14483,22.36609],[114.14483,22.36608],[114.14484,22.36608],[114.14484,22.36608],[114.14484,22.36607],[114.14484,22.36607],[114.14485,22.36606],[114.14485,22.36606],[114.14485,22.36606],[114.14486,22.36605],[114.14486,22.36605],[114.14486,22.36605],[114.14486,22.36604],[114.14487,22.36604],[114.14487,22.36603],[114.14487,22.36603],[114.14487,22.36603],[114.14488,22.36602],[114.14488,22.36602],[114.14488,22.36602],[114.14489,22.36601],[114.14489,22.366],[114.14489,22.366],[114.14489,22.366],[114.1449,22.36599],[114.1449,22.36599],[114.1449,22.36599],[114.14491,22.36598],[114.14491,22.36598],[114.14492,22.36598],[114.14492,22.36597],[114.14493,22.36597],[114.14493,22.36597],[114.14501,22.36591],[114.14503,22.3659],[114.14505,22.36588],[114.14506,22.36587],[114.14507,22.36586],[114.14508,22.36586],[114.1451,22.36585],[114.14511,22.36584],[114.14512,22.36583],[114.14513,22.36583],[114.14514,22.36582],[114.14514,22.36582],[114.14514,22.36582],[114.14515,22.36581],[114.14517,22.36579],[114.14518,22.36578],[114.14519,22.36577],[114.1452,22.36576],[114.14521,22.36574],[114.14522,22.36573],[114.14523,22.36572],[114.14523,22.36571],[114.14524,22.3657],[114.14524,22.36569],[114.14525,22.36568],[114.14525,22.36567],[114.14525,22.36566],[114.14525,22.36564],[114.14526,22.36563],[114.14526,22.36562],[114.14526,22.36561],[114.14526,22.3656],[114.14526,22.36559],[114.14525,22.36558],[114.14525,22.36557],[114.14524,22.36555],[114.14524,22.36554],[114.14523,22.36553],[114.14523,22.36552],[114.14523,22.36552],[114.14522,22.36551],[114.14521,22.36549],[114.14521,22.36548],[114.14521,22.36547],[114.1452,22.36545],[114.1452,22.36544],[114.1452,22.36542],[114.1452,22.3654],[114.14521,22.36539],[114.14521,22.36537],[114.14522,22.36536],[114.14522,22.36535],[114.14523,22.36533],[114.14524,22.36532],[114.14525,22.36531],[114.14526,22.3653],[114.14527,22.36529],[114.14528,22.36528],[114.14531,22.36526],[114.14533,22.36525],[114.14535,22.36523],[114.14538,22.36522],[114.1454,22.36521],[114.14543,22.3652],[114.14557,22.36515],[114.14558,22.36514],[114.1456,22.36514],[114.14562,22.36512],[114.14563,22.36512],[114.14564,22.36511],[114.14566,22.3651],[114.14569,22.36508],[114.1457,22.36506],[114.14572,22.36504],[114.14578,22.36498],[114.14581,22.36494],[114.14584,22.36491],[114.14587,22.36487],[114.1459,22.36483],[114.14593,22.36479],[114.14596,22.36475],[114.14597,22.36473],[114.14598,22.36472],[114.14599,22.3647],[114.14599,22.36468],[114.146,22.36466],[114.14601,22.36464],[114.14601,22.36462],[114.14602,22.3646],[114.14602,22.36457],[114.14602,22.36454],[114.14603,22.36451],[114.14603,22.36448],[114.14603,22.36445],[114.14603,22.36439],[114.14603,22.36435],[114.14603,22.36433],[114.14602,22.3643],[114.14602,22.36426],[114.14602,22.36424],[114.14601,22.3642],[114.14601,22.36418],[114.14601,22.36417],[114.146,22.36415],[114.146,22.36413],[114.146,22.36412],[114.14599,22.3641],[114.14598,22.36408],[114.14597,22.36406],[114.14597,22.36405],[114.14596,22.36403],[114.14594,22.36401],[114.14592,22.36397],[114.14589,22.36393],[114.14586,22.3639],[114.14583,22.36387],[114.14581,22.36384],[114.1458,22.36383],[114.14576,22.36377],[114.14576,22.36377],[114.14574,22.36368],[114.1457,22.36349],[114.14568,22.3634],[114.14564,22.36334],[114.1456,22.36331],[114.14556,22.36328],[114.14553,22.36323],[114.14552,22.36318],[114.1455,22.36315],[114.14547,22.36314],[114.14546,22.36313],[114.14538,22.36315],[114.1453,22.36315],[114.14529,22.36313],[114.14526,22.36308],[114.14526,22.36303],[114.14526,22.36294],[114.14526,22.36282],[114.1453,22.36281],[114.14535,22.36277],[114.14537,22.36274],[114.1454,22.36262],[114.14539,22.36259],[114.14538,22.36256],[114.14538,22.36254],[114.14538,22.36253],[114.14538,22.36251],[114.14539,22.36251],[114.14539,22.3625],[114.14539,22.36249],[114.1454,22.36248],[114.14541,22.36247],[114.14541,22.36247],[114.14542,22.36246],[114.14543,22.36246],[114.14544,22.36246],[114.14545,22.36245],[114.14547,22.36244],[114.14548,22.36244],[114.14549,22.36243],[114.14549,22.36242],[114.1455,22.36241],[114.14551,22.3624],[114.14551,22.36239],[114.14551,22.36239],[114.14552,22.36238],[114.14552,22.36237],[114.14552,22.36237],[114.14551,22.36236],[114.14551,22.36235],[114.1455,22.36233],[114.14548,22.3623],[114.14547,22.36228],[114.14546,22.36226],[114.14544,22.36224],[114.14542,22.36222],[114.1454,22.3622],[114.14538,22.36218],[114.14535,22.36216],[114.14531,22.36212],[114.14529,22.3621],[114.14527,22.36208],[114.14525,22.36206],[114.14524,22.36205],[114.14523,22.36204],[114.14522,22.36203],[114.14521,22.36202],[114.1452,22.36202],[114.14518,22.362],[114.14517,22.362],[114.14516,22.362],[114.14515,22.36199],[114.14515,22.36199],[114.14513,22.36199],[114.14509,22.36198],[114.14504,22.36198],[114.14499,22.362],[114.14494,22.362],[114.1449,22.36202],[114.14483,22.36199],[114.14478,22.36196],[114.14469,22.36191],[114.1446,22.36187],[114.14454,22.3618],[114.14448,22.36172],[114.14444,22.36169],[114.14442,22.36166],[114.14442,22.36166],[114.14429,22.36151],[114.14416,22.36141],[114.14414,22.36132],[114.14411,22.36126],[114.14402,22.36113],[114.14394,22.36107],[114.14382,22.36099],[114.14357,22.36081],[114.14345,22.36073],[114.14335,22.36068],[114.14329,22.36064],[114.14318,22.36053],[114.14316,22.36035],[114.14312,22.36027],[114.14313,22.36021],[114.14305,22.36009],[114.14304,22.35994],[114.14303,22.35989],[114.14301,22.35983],[114.14297,22.35976],[114.14288,22.35968],[114.14282,22.35965],[114.14278,22.35964],[114.14268,22.35965],[114.14246,22.35968],[114.14233,22.35963],[114.14228,22.35958],[114.14224,22.35956],[114.14219,22.35951],[114.14209,22.35946],[114.14195,22.35935],[114.14194,22.35932],[114.14194,22.35929],[114.14183,22.35918],[114.1418,22.35914],[114.14179,22.35913],[114.14177,22.35912],[114.14176,22.3591],[114.14175,22.35908],[114.14174,22.35907],[114.14173,22.35905],[114.1417,22.35898],[114.14167,22.35894],[114.14165,22.3589],[114.14164,22.35888],[114.14164,22.35888],[114.14163,22.35886],[114.14162,22.35883],[114.14161,22.3588],[114.1416,22.35877],[114.14159,22.35874],[114.14158,22.35872],[114.14158,22.35869],[114.14157,22.35867],[114.14157,22.35865],[114.14156,22.35862],[114.14156,22.35858],[114.14156,22.35854],[114.14155,22.3585],[114.14155,22.35847],[114.14155,22.35839],[114.14154,22.35834],[114.14154,22.3583],[114.14154,22.35826],[114.14153,22.35821],[114.14153,22.35818],[114.14152,22.35813],[114.14152,22.35809],[114.14151,22.35805],[114.14151,22.35802],[114.1415,22.35798],[114.1415,22.35794],[114.14149,22.3579],[114.14148,22.35786],[114.14147,22.35782],[114.14146,22.35778],[114.14145,22.35773],[114.14145,22.35768],[114.14143,22.35761],[114.14143,22.35759],[114.14142,22.35756],[114.14141,22.35752],[114.14141,22.35749],[114.14139,22.35744],[114.14138,22.35739],[114.14137,22.35734],[114.14136,22.35729],[114.14136,22.35727],[114.14135,22.35725],[114.14135,22.35722],[114.14135,22.3572],[114.14135,22.35718],[114.14136,22.35715],[114.14136,22.35713],[114.14136,22.3571],[114.14136,22.35708],[114.14137,22.35705],[114.14138,22.35701],[114.14139,22.35698],[114.14141,22.35693],[114.14142,22.35689],[114.14144,22.35686],[114.14144,22.35685],[114.14144,22.35683],[114.14145,22.3568],[114.14145,22.35678],[114.14146,22.35676],[114.14146,22.35674],[114.14146,22.35671],[114.14145,22.35669],[114.14145,22.35667],[114.14145,22.35664],[114.14144,22.35662],[114.14144,22.3566],[114.14143,22.35659],[114.14142,22.35656],[114.14141,22.35655],[114.14141,22.35653],[114.1414,22.35651],[114.1414,22.3565],[114.1414,22.35649],[114.1414,22.35647],[114.1414,22.35645],[114.1414,22.35642],[114.14141,22.35639],[114.14141,22.35637],[114.14141,22.35634],[114.14141,22.35632],[114.14141,22.35629],[114.1414,22.35626],[114.1414,22.35624],[114.1414,22.35622],[114.14139,22.3562],[114.14139,22.35617],[114.14139,22.35616],[114.14138,22.35614],[114.14138,22.35612],[114.14137,22.35611],[114.14137,22.35609],[114.14135,22.35605],[114.14134,22.35602],[114.14133,22.35598],[114.14131,22.35594],[114.14131,22.35593],[114.1413,22.35591],[114.1413,22.35589],[114.1413,22.35588],[114.14129,22.35585],[114.14129,22.35581],[114.14128,22.35578],[114.14128,22.35574],[114.14128,22.3557],[114.14129,22.35567],[114.14129,22.35563],[114.1413,22.35559],[114.14131,22.35555],[114.14133,22.3555],[114.14136,22.35534],[114.14138,22.35528],[114.14139,22.35524],[114.14139,22.35515],[114.1414,22.35497],[114.14141,22.35489],[114.14143,22.35479],[114.14143,22.3547],[114.14142,22.35457],[114.14141,22.35449],[114.1414,22.35435],[114.1414,22.35433],[114.1414,22.35433],[114.14141,22.35432],[114.14141,22.3543],[114.14142,22.35429],[114.14142,22.35428],[114.14142,22.35427],[114.14142,22.35426],[114.14143,22.35423],[114.14144,22.35419],[114.14145,22.35415],[114.14146,22.35412],[114.14147,22.3541],[114.14148,22.35409],[114.14148,22.35408],[114.14149,22.35407],[114.14152,22.354],[114.14152,22.35399],[114.14153,22.35398],[114.14153,22.35398],[114.14153,22.35397],[114.14153,22.35393],[114.14154,22.3539],[114.14154,22.35387],[114.14154,22.35384],[114.14154,22.35382],[114.14154,22.3538],[114.14154,22.35377],[114.14154,22.35375],[114.14154,22.35361],[114.14154,22.35359],[114.14154,22.35357],[114.14154,22.35355],[114.14154,22.35352],[114.14155,22.3535],[114.14155,22.35347],[114.14155,22.35345],[114.14156,22.35343],[114.14155,22.35341],[114.14156,22.35328],[114.14156,22.3532],[114.14157,22.35313],[114.14158,22.35312],[114.14158,22.35311],[114.14159,22.3531],[114.14159,22.35308],[114.14161,22.35304],[114.14163,22.35297],[114.14167,22.35291],[114.14171,22.35285],[114.14172,22.35283],[114.14174,22.35281],[114.14175,22.35279],[114.14177,22.35274],[114.14182,22.3526],[114.14182,22.35258],[114.14182,22.35256],[114.14182,22.35254],[114.14182,22.35252],[114.14182,22.35249],[114.14181,22.35246],[114.14181,22.35245],[114.1418,22.35243],[114.14179,22.35241],[114.14178,22.35239],[114.14177,22.35238],[114.14176,22.35236],[114.14175,22.35234],[114.14175,22.35234],[114.14174,22.35234],[114.14174,22.35233],[114.14174,22.35233],[114.14174,22.35233],[114.14173,22.35232],[114.14173,22.3523],[114.14173,22.35229],[114.14173,22.35226],[114.14173,22.35223],[114.14173,22.3522],[114.14173,22.35217],[114.14173,22.35214],[114.14173,22.35212],[114.14173,22.35211],[114.14173,22.35209],[114.14173,22.35208],[114.14174,22.35204],[114.14174,22.35203],[114.14175,22.352],[114.14176,22.35198],[114.14176,22.35197],[114.14177,22.35195],[114.14178,22.35193],[114.14179,22.35192],[114.1418,22.3519],[114.1418,22.35189],[114.14181,22.35189],[114.14181,22.35188],[114.14181,22.35188],[114.14182,22.35187],[114.14182,22.35186],[114.14183,22.35185],[114.14183,22.35185],[114.14183,22.35184],[114.14183,22.35183],[114.14183,22.35182],[114.14183,22.35181],[114.14184,22.3518],[114.14185,22.35178],[114.14186,22.35176],[114.14187,22.35175],[114.14188,22.35173],[114.1419,22.35171],[114.1419,22.3517],[114.14192,22.35168],[114.14194,22.35165],[114.14197,22.35161],[114.142,22.35157],[114.14201,22.35155],[114.14203,22.35153],[114.14204,22.35152],[114.14204,22.35152],[114.14204,22.35151],[114.14205,22.3515],[114.14207,22.35148],[114.14208,22.35146],[114.14208,22.35145],[114.14209,22.35145],[114.14209,22.35144],[114.1421,22.35144],[114.14211,22.35143],[114.14211,22.35143],[114.14213,22.35141],[114.14214,22.3514],[114.14215,22.35138],[114.14216,22.35137],[114.14217,22.35137],[114.14218,22.35136],[114.14219,22.35134],[114.14219,22.35134],[114.1422,22.35133],[114.1422,22.35132],[114.14221,22.3513],[114.14222,22.3513],[114.14222,22.35128],[114.14223,22.35128],[114.14224,22.35126],[114.14224,22.35125],[114.14225,22.35123],[114.14226,22.35122],[114.14226,22.35121],[114.14226,22.35121],[114.14226,22.3512],[114.14226,22.35119],[114.14226,22.35119],[114.14227,22.35118],[114.14227,22.35117],[114.14226,22.35116],[114.14226,22.35116],[114.14226,22.35115],[114.14226,22.35114],[114.14226,22.35113],[114.14226,22.35112],[114.14226,22.35111],[114.14225,22.3511],[114.14225,22.35109],[114.14225,22.35108],[114.14224,22.35107],[114.14224,22.35106],[114.14223,22.35105],[114.14222,22.35104],[114.14222,22.35103],[114.14222,22.35102],[114.1422,22.351],[114.14219,22.35098],[114.14219,22.35097],[114.14218,22.35096],[114.14217,22.35093],[114.14216,22.35092],[114.14214,22.35089],[114.14213,22.35087],[114.14213,22.35085],[114.14212,22.35083],[114.14211,22.35082],[114.14211,22.35081],[114.1421,22.35079],[114.14209,22.35077],[114.14208,22.35074],[114.14207,22.35072],[114.14206,22.3507],[114.14205,22.35067],[114.14205,22.35065],[114.14204,22.35063],[114.14203,22.35061],[114.14203,22.35059],[114.14203,22.35057],[114.14202,22.35055],[114.14202,22.35053],[114.14202,22.35051],[114.14202,22.35048],[114.14201,22.35045],[114.14201,22.35043],[114.14201,22.3504],[114.14201,22.35037],[114.14201,22.35035],[114.14201,22.35033],[114.14201,22.35031],[114.14201,22.35028],[114.14201,22.35026],[114.14201,22.35023],[114.14201,22.35022],[114.14201,22.3502],[114.14201,22.35017],[114.14202,22.35013],[114.14202,22.3501],[114.14202,22.35007],[114.14203,22.35004],[114.14203,22.35001],[114.14204,22.34997],[114.14205,22.34995],[114.14205,22.34994],[114.14205,22.34992],[114.14205,22.34991],[114.14205,22.3499],[114.14205,22.34988],[114.14205,22.34986],[114.14206,22.34984],[114.14206,22.34983],[114.14205,22.3497],[114.14205,22.34969],[114.14206,22.34968],[114.14206,22.34967],[114.14207,22.3496],[114.14207,22.34958],[114.14208,22.34955],[114.14208,22.34953],[114.14209,22.34951],[114.14209,22.3495],[114.1421,22.34948],[114.1421,22.34946],[114.14211,22.34943],[114.14212,22.3494],[114.14213,22.34938],[114.14213,22.34937],[114.14214,22.34936],[114.14214,22.34934],[114.14215,22.34932],[114.14216,22.3493],[114.14217,22.34928],[114.14218,22.34926],[114.14219,22.34924],[114.1422,22.34924],[114.1422,22.34923],[114.14221,22.34922],[114.14221,22.34921],[114.14222,22.3492],[114.14223,22.34919],[114.14224,22.34918],[114.14225,22.34917],[114.14226,22.34916],[114.14227,22.34915],[114.14228,22.34914],[114.14229,22.34914],[114.1423,22.34913],[114.14231,22.34912],[114.14232,22.34912],[114.14232,22.34911],[114.14233,22.34911],[114.14234,22.3491],[114.14235,22.3491],[114.14236,22.3491],[114.14236,22.3491],[114.14236,22.34909],[114.14237,22.34909],[114.14239,22.34908],[114.1424,22.34908],[114.14241,22.34907],[114.14242,22.34907],[114.14243,22.34907],[114.14245,22.34906],[114.14247,22.34906],[114.14248,22.34906],[114.14249,22.34906],[114.1425,22.34905],[114.14251,22.34905],[114.14252,22.34905],[114.14253,22.34905],[114.14255,22.34905],[114.14256,22.34905],[114.14257,22.34905],[114.14258,22.34905],[114.1426,22.34906],[114.14262,22.34906],[114.14264,22.34906],[114.14266,22.34907],[114.14267,22.34907],[114.14269,22.34907],[114.14271,22.34908],[114.14273,22.34908],[114.14276,22.34909],[114.14278,22.34909],[114.14281,22.3491],[114.14288,22.34912],[114.14289,22.34913],[114.14291,22.34913],[114.14293,22.34914],[114.14295,22.34914],[114.14297,22.34914],[114.14299,22.34915],[114.14301,22.34915],[114.14304,22.34915],[114.14306,22.34916],[114.14307,22.34916],[114.14308,22.34916],[114.14308,22.34916],[114.14308,22.34916],[114.14309,22.34916],[114.14309,22.34916],[114.1431,22.34916],[114.14313,22.34916],[114.14314,22.34916],[114.14316,22.34917],[114.14317,22.34917],[114.14319,22.34917],[114.1432,22.34917],[114.14322,22.34917],[114.14323,22.34916],[114.14326,22.34916],[114.14327,22.34916],[114.14335,22.34915],[114.14336,22.34915],[114.14338,22.34915],[114.14341,22.34915],[114.14343,22.34914],[114.14346,22.34914],[114.14348,22.34914],[114.1435,22.34913],[114.14359,22.34911],[114.14362,22.3491],[114.14367,22.34909],[114.1437,22.34909],[114.14373,22.34908],[114.14386,22.34905],[114.14387,22.34905],[114.1439,22.34904],[114.14392,22.34904],[114.14395,22.34904],[114.14402,22.34903],[114.14409,22.34902],[114.14411,22.34901],[114.14414,22.34901],[114.14416,22.34901],[114.14419,22.349],[114.14422,22.349],[114.14425,22.34899],[114.14429,22.34899],[114.14435,22.34897],[114.14438,22.34897],[114.14442,22.34896],[114.14446,22.34895],[114.14453,22.34893],[114.14457,22.34892],[114.14458,22.34892],[114.14459,22.34892],[114.14461,22.34891],[114.14463,22.34891],[114.14465,22.34891],[114.14466,22.34891],[114.14468,22.34891],[114.14469,22.34891],[114.1447,22.34891],[114.14471,22.34891],[114.14473,22.34891],[114.14474,22.34891],[114.14475,22.34891],[114.14476,22.34891],[114.14478,22.34891],[114.14479,22.34891],[114.1448,22.34891],[114.14482,22.34891],[114.14483,22.34892],[114.14484,22.34892],[114.14486,22.34892],[114.14491,22.34894],[114.14481,22.34864],[114.1448,22.34863],[114.14477,22.34856],[114.14477,22.34856],[114.14477,22.34855],[114.14476,22.34854],[114.14476,22.34853],[114.14467,22.34846],[114.14466,22.34845],[114.14464,22.34844],[114.14462,22.34841],[114.14461,22.3484],[114.14461,22.34839],[114.1446,22.34839],[114.14459,22.34837],[114.14459,22.34836],[114.14459,22.34834],[114.14458,22.34833],[114.14458,22.34832],[114.14458,22.34831],[114.14458,22.34831],[114.14459,22.3482],[114.1446,22.3482],[114.14466,22.34821],[114.14466,22.34814],[114.14467,22.348],[114.14467,22.34799],[114.14468,22.34797],[114.14468,22.34797],[114.14468,22.34797],[114.14469,22.34796],[114.14469,22.34796],[114.14469,22.34795],[114.1447,22.34795],[114.1447,22.34795],[114.14473,22.34793],[114.14474,22.34793],[114.14474,22.34793],[114.14475,22.34793],[114.14476,22.34792],[114.14478,22.34792],[114.1448,22.34791],[114.14482,22.3479],[114.14484,22.3479],[114.14487,22.34789],[114.14489,22.34789],[114.14492,22.34788],[114.14512,22.34774],[114.14514,22.3477],[114.14513,22.34736],[114.14513,22.34732],[114.14512,22.34732],[114.14512,22.34731],[114.14512,22.34731],[114.14512,22.34729],[114.14512,22.34728],[114.14513,22.34728],[114.14513,22.34727],[114.14514,22.34726],[114.14514,22.34725],[114.14515,22.34724],[114.14515,22.34724],[114.14521,22.34717],[114.14525,22.34711],[114.14526,22.3471],[114.14527,22.34709],[114.14528,22.34708],[114.14528,22.34707],[114.1453,22.34706],[114.14531,22.34704],[114.14532,22.34703],[114.14534,22.34701],[114.14535,22.347],[114.14537,22.34698],[114.14538,22.34698],[114.14539,22.34697],[114.1454,22.34696],[114.14541,22.34695],[114.14541,22.34695],[114.14544,22.34693],[114.14544,22.34692],[114.14545,22.34692],[114.14546,22.34691],[114.14547,22.3469],[114.14548,22.3469],[114.14549,22.34689],[114.1455,22.34688],[114.14555,22.34685],[114.14558,22.34684],[114.14559,22.34683],[114.14561,22.34683],[114.14562,22.34682],[114.14563,22.34682],[114.14566,22.34681],[114.14572,22.34678],[114.14577,22.34676],[114.14591,22.34671],[114.14592,22.34671],[114.14592,22.34671],[114.14593,22.34671],[114.14597,22.34667],[114.146,22.34665],[114.14612,22.34656],[114.14615,22.34655],[114.14616,22.34654],[114.14632,22.34643],[114.14635,22.3464],[114.14637,22.34633],[114.14641,22.3462],[114.14646,22.34603],[114.14648,22.34599],[114.14649,22.34596],[114.14652,22.34582],[114.14656,22.34565],[114.14659,22.34548],[114.1466,22.34544],[114.1466,22.34544],[114.14663,22.3454],[114.14663,22.34539],[114.14666,22.34535],[114.14668,22.34533],[114.14671,22.34526],[114.14709,22.34445],[114.1471,22.34444],[114.14711,22.34443],[114.14713,22.34457],[114.14731,22.34463],[114.14818,22.34526],[114.14863,22.34525],[114.14863,22.34485],[114.14864,22.34485],[114.14864,22.34485],[114.14865,22.34485],[114.14866,22.34484],[114.14867,22.34484],[114.1487,22.34482],[114.14871,22.34482],[114.14872,22.34482],[114.14872,22.34481],[114.14873,22.34481],[114.14874,22.34481],[114.14874,22.3448],[114.14875,22.3448],[114.14876,22.3448],[114.14877,22.3448],[114.14877,22.34479],[114.14878,22.34479],[114.14879,22.34479],[114.14879,22.34479],[114.14879,22.34479],[114.1488,22.34479],[114.14882,22.34478],[114.14882,22.34478],[114.14883,22.34478],[114.14884,22.34478],[114.14884,22.34478],[114.14885,22.34478],[114.14887,22.34477],[114.14887,22.34477],[114.14888,22.34477],[114.14889,22.34477],[114.14889,22.34477],[114.1489,22.34477],[114.14891,22.34477],[114.14892,22.34477],[114.14893,22.34477],[114.14894,22.34478],[114.14894,22.34478],[114.14895,22.34478],[114.14896,22.34478],[114.14897,22.34478],[114.14897,22.34478],[114.14898,22.34478],[114.14899,22.34478],[114.149,22.34478],[114.149,22.34479],[114.14901,22.34479],[114.14902,22.34479],[114.14903,22.34479],[114.14904,22.34479],[114.14904,22.34479],[114.14905,22.34479],[114.14906,22.34479],[114.14918,22.34482],[114.14919,22.34484],[114.14919,22.34484],[114.14924,22.34484],[114.14935,22.34485],[114.14946,22.34487],[114.14951,22.34489],[114.14953,22.34489],[114.14954,22.3449],[114.14955,22.3449],[114.14956,22.34491],[114.14957,22.34492],[114.14959,22.34492],[114.14959,22.34493],[114.1496,22.34494],[114.14964,22.34497],[114.14974,22.34504],[114.14974,22.34504],[114.14975,22.34504],[114.14976,22.34505],[114.14977,22.34505],[114.14977,22.34505],[114.14978,22.34505],[114.14979,22.34505],[114.1498,22.34505],[114.14981,22.34505],[114.14981,22.34504],[114.14982,22.34504],[114.14983,22.34504],[114.14983,22.34504],[114.14984,22.34503],[114.14985,22.34502],[114.14987,22.34502],[114.14988,22.34501],[114.14989,22.345],[114.1499,22.34499],[114.14991,22.34499],[114.14991,22.34498],[114.14992,22.34498],[114.14993,22.34497],[114.14993,22.34497],[114.14994,22.34497],[114.14995,22.34497],[114.14996,22.34497],[114.14997,22.34497],[114.14997,22.34497],[114.15003,22.34497],[114.15011,22.34497],[114.15015,22.34497],[114.15025,22.34497],[114.1503,22.34496],[114.15031,22.345],[114.15033,22.34505],[114.15036,22.34509],[114.15042,22.34518],[114.15048,22.34525],[114.15051,22.34528],[114.15053,22.3453],[114.15054,22.34531],[114.15056,22.34532],[114.15058,22.34533],[114.1506,22.34535],[114.15063,22.34536],[114.15064,22.34537],[114.15078,22.34526],[114.15078,22.34526],[114.15079,22.34527],[114.15081,22.3453],[114.15096,22.34541],[114.15101,22.34544],[114.15111,22.34553],[114.15116,22.34563],[114.15119,22.34573],[114.1512,22.34588],[114.15118,22.34603],[114.15111,22.3463],[114.15108,22.34655],[114.15107,22.34671],[114.15109,22.34687],[114.15113,22.34701],[114.15118,22.34712],[114.1512,22.34717],[114.15123,22.34715],[114.15129,22.3471],[114.15231,22.34634],[114.15231,22.34634],[114.15231,22.34634],[114.15232,22.34634],[114.15232,22.34633],[114.15232,22.34633],[114.15232,22.34633],[114.15233,22.34633],[114.15233,22.34632],[114.15233,22.34632],[114.15234,22.34632],[114.15234,22.34632],[114.15234,22.34632],[114.15235,22.34631],[114.15235,22.34631],[114.15235,22.34631],[114.15236,22.34631],[114.15236,22.34631],[114.15236,22.3463],[114.15237,22.3463],[114.15237,22.3463],[114.15237,22.3463],[114.15238,22.3463],[114.15238,22.34629],[114.15238,22.34629],[114.15238,22.34629],[114.15239,22.34629],[114.15239,22.34628],[114.15239,22.34628],[114.1524,22.34628],[114.1524,22.34628],[114.1524,22.34628],[114.15241,22.34627],[114.15241,22.34627],[114.15241,22.34627],[114.15242,22.34627],[114.15242,22.34627],[114.15242,22.34626],[114.15243,22.34626],[114.15243,22.34626],[114.15248,22.34623],[114.15248,22.34623],[114.15249,22.34623],[114.1525,22.34623],[114.1525,22.34622],[114.15252,22.34622],[114.15252,22.34622],[114.15253,22.34621],[114.15254,22.34621],[114.15254,22.34621],[114.15256,22.34621],[114.1527,22.34618],[114.15347,22.3463],[114.15441,22.34665],[114.15474,22.34678],[114.15475,22.34678],[114.15476,22.34678],[114.15476,22.34678],[114.15477,22.34678],[114.15478,22.34678],[114.15479,22.34679],[114.1548,22.34679],[114.1548,22.34679],[114.15481,22.34679],[114.15483,22.34679],[114.15484,22.34679],[114.15484,22.34679],[114.15486,22.34679],[114.15489,22.34678],[114.15492,22.34678],[114.15495,22.34678],[114.15497,22.34678],[114.15504,22.34677],[114.15505,22.34677],[114.15506,22.34677],[114.15507,22.34677],[114.15507,22.34677],[114.15508,22.34677],[114.15509,22.34677],[114.15509,22.34676],[114.1551,22.34676],[114.15511,22.34676],[114.15512,22.34675],[114.15513,22.34675],[114.15513,22.34675],[114.15514,22.34675],[114.15515,22.34674],[114.15515,22.34674],[114.15516,22.34674],[114.15517,22.34674],[114.15518,22.34673],[114.15518,22.34673],[114.15519,22.34673],[114.1552,22.34673],[114.1552,22.34672],[114.15521,22.34672],[114.15522,22.34672],[114.15523,22.34671],[114.15523,22.34671],[114.15524,22.34671],[114.15524,22.34671],[114.15525,22.3467],[114.15526,22.3467],[114.15527,22.34669],[114.15527,22.34669],[114.15528,22.34668],[114.15528,22.34668],[114.15529,22.34668],[114.1553,22.34667],[114.1553,22.34667],[114.15531,22.34666],[114.15532,22.34666],[114.15533,22.34665],[114.15535,22.34665],[114.15536,22.34665],[114.15536,22.34665],[114.15537,22.34665],[114.15537,22.34665],[114.15537,22.34665],[114.15537,22.34665],[114.15537,22.34665],[114.15537,22.34664],[114.15538,22.34664],[114.15538,22.34664],[114.15538,22.34664],[114.15538,22.34664],[114.15538,22.34664],[114.15538,22.34664],[114.15539,22.34664],[114.15539,22.34664],[114.15539,22.34664],[114.15539,22.34664],[114.15539,22.34664],[114.15539,22.34664],[114.1554,22.34664],[114.1554,22.34664],[114.1554,22.34664],[114.1554,22.34664],[114.1554,22.34664],[114.15541,22.34664],[114.15541,22.34664],[114.15541,22.34664],[114.15541,22.34664],[114.15541,22.34664],[114.15542,22.34664],[114.15542,22.34664],[114.15542,22.34664],[114.15542,22.34664],[114.15542,22.34664],[114.15542,22.34664],[114.15542,22.34664],[114.15543,22.34663],[114.15543,22.34663],[114.15543,22.34663],[114.15543,22.34663],[114.15543,22.34663],[114.15543,22.34663],[114.15543,22.34663],[114.15544,22.34663],[114.15544,22.34663],[114.15544,22.34663],[114.15544,22.34663],[114.15544,22.34663],[114.15544,22.34663],[114.15545,22.34663],[114.15545,22.34663],[114.15545,22.34663],[114.15545,22.34663],[114.15545,22.34663],[114.15545,22.34663],[114.15546,22.34663],[114.15546,22.34663],[114.15546,22.34663],[114.15546,22.34663],[114.15546,22.34662],[114.15547,22.34662],[114.15547,22.34662],[114.15547,22.34662],[114.15547,22.34662],[114.15547,22.34662],[114.15547,22.34662],[114.15547,22.34662],[114.15548,22.34662],[114.15548,22.34662],[114.15548,22.34662],[114.1555,22.34662],[114.15553,22.34661],[114.15555,22.34661],[114.15558,22.34661],[114.15561,22.34661],[114.15564,22.34661],[114.15564,22.34661],[114.15565,22.3466],[114.15566,22.3466],[114.15567,22.3466],[114.15568,22.34659],[114.15568,22.34659],[114.1557,22.34659],[114.1557,22.34659],[114.15571,22.34659],[114.15572,22.34659],[114.15573,22.34659],[114.15573,22.34659],[114.15575,22.3466],[114.15575,22.3466],[114.15576,22.3466],[114.15577,22.3466],[114.15577,22.34661],[114.15578,22.34661],[114.15579,22.34662],[114.15579,22.34662],[114.1558,22.34663],[114.1558,22.34664],[114.15581,22.34664],[114.15582,22.34665],[114.15583,22.34665],[114.15583,22.34665],[114.15584,22.34665],[114.15585,22.34665],[114.15586,22.34666],[114.15586,22.34666],[114.15587,22.34666],[114.15588,22.34666],[114.15589,22.34666],[114.15589,22.34666],[114.1559,22.34666],[114.15591,22.34666],[114.15592,22.34666],[114.15592,22.34666],[114.15593,22.34666],[114.15594,22.34666],[114.15594,22.34666],[114.15595,22.34665],[114.15596,22.34665],[114.15597,22.34665],[114.15598,22.34665],[114.15598,22.34665],[114.15599,22.34664],[114.156,22.34664],[114.156,22.34664],[114.15601,22.34663],[114.15601,22.34663],[114.15602,22.34662],[114.15602,22.34662],[114.15603,22.34661],[114.15603,22.3466],[114.15604,22.3466],[114.15604,22.34659],[114.15604,22.34659],[114.15605,22.34658],[114.15605,22.34657],[114.15606,22.34657],[114.15606,22.34656],[114.15606,22.34656],[114.15607,22.34655],[114.15607,22.34654],[114.15607,22.34654],[114.15608,22.34653],[114.15608,22.34653],[114.15608,22.34652],[114.15609,22.34651],[114.15609,22.34651],[114.15609,22.3465],[114.1561,22.34649],[114.1561,22.34649],[114.1561,22.34648],[114.15611,22.34647],[114.15611,22.34647],[114.15611,22.34646],[114.15611,22.34646],[114.15612,22.34645],[114.15612,22.34644],[114.15612,22.34644],[114.15613,22.34643],[114.15613,22.34642],[114.15613,22.34642],[114.15613,22.34641],[114.15614,22.34641],[114.15614,22.3464],[114.15614,22.34639],[114.15615,22.34638],[114.15615,22.34638],[114.15615,22.34637],[114.15616,22.34636],[114.15616,22.34636],[114.15616,22.34635],[114.15617,22.34634],[114.15617,22.34634],[114.15617,22.34633],[114.15617,22.34633],[114.15618,22.34632],[114.15618,22.34631],[114.15618,22.34631],[114.15619,22.3463],[114.15619,22.34629],[114.15619,22.34629],[114.1562,22.34628],[114.1562,22.34628],[114.15621,22.34627],[114.15621,22.34626],[114.15621,22.34626],[114.15622,22.34625],[114.15622,22.34624],[114.15623,22.34624],[114.15623,22.34623],[114.15624,22.34622],[114.15624,22.34622],[114.15624,22.34621],[114.15625,22.34621],[114.15625,22.3462],[114.15626,22.3462],[114.15626,22.34619],[114.15627,22.34619],[114.15627,22.34618],[114.15628,22.34618],[114.15628,22.34617],[114.15629,22.34617],[114.1563,22.34616],[114.1563,22.34616],[114.15631,22.34615],[114.15632,22.34615],[114.15632,22.34614],[114.15633,22.34614],[114.15634,22.34614],[114.15634,22.34613],[114.15635,22.34613],[114.15636,22.34613],[114.15636,22.34613],[114.15637,22.34612],[114.15638,22.34612],[114.15638,22.34612],[114.15639,22.34612],[114.1564,22.34612],[114.15641,22.34613],[114.15641,22.34613],[114.15642,22.34613],[114.15643,22.34613],[114.15644,22.34613],[114.15645,22.34614],[114.15645,22.34614],[114.15646,22.34615],[114.15647,22.34615],[114.15648,22.34616],[114.15648,22.34616],[114.15649,22.34616],[114.1565,22.34617],[114.1565,22.34617],[114.15651,22.34617],[114.15652,22.34618],[114.15652,22.34618],[114.15653,22.34618],[114.15654,22.34619],[114.15654,22.34619],[114.15655,22.34619],[114.15666,22.34624],[114.15667,22.34625],[114.15667,22.34625],[114.15668,22.34625],[114.15669,22.34626],[114.15669,22.34626],[114.1567,22.34626],[114.1567,22.34627],[114.15671,22.34627],[114.15672,22.34627],[114.15672,22.34628],[114.15673,22.34628],[114.15674,22.34629],[114.15674,22.34629],[114.15675,22.34629],[114.15675,22.3463],[114.15676,22.3463],[114.15677,22.34631],[114.15677,22.34631],[114.15678,22.34631],[114.15679,22.34631],[114.15679,22.34632],[114.1568,22.34632],[114.15681,22.34632],[114.15681,22.34632],[114.15682,22.34632],[114.15683,22.34632],[114.15684,22.34632],[114.15684,22.34632],[114.15685,22.34633],[114.15686,22.34633],[114.15687,22.34633],[114.15688,22.34633],[114.15689,22.34633],[114.15689,22.34633],[114.1569,22.34633],[114.15691,22.34634],[114.15691,22.34634],[114.15692,22.34634],[114.15693,22.34635],[114.15693,22.34635],[114.15694,22.34636],[114.15695,22.34636],[114.15695,22.34637],[114.15696,22.34637],[114.15696,22.34638],[114.15697,22.34638],[114.15697,22.34639],[114.15698,22.34639],[114.15698,22.3464],[114.15699,22.3464],[114.15699,22.34641],[114.157,22.34642],[114.157,22.34642],[114.15701,22.34643],[114.15701,22.34643],[114.15702,22.34644],[114.15703,22.34644],[114.15703,22.34645],[114.15704,22.34645],[114.15704,22.34645],[114.15705,22.34646],[114.15706,22.34647],[114.15706,22.34647],[114.15707,22.34647],[114.15707,22.34648],[114.15708,22.34648],[114.15709,22.34648],[114.1571,22.34648],[114.15711,22.34648],[114.15711,22.34648],[114.15712,22.34648],[114.15713,22.34648],[114.15713,22.34648],[114.15714,22.34647],[114.15715,22.34646],[114.15716,22.34646],[114.15716,22.34645],[114.15716,22.34645],[114.15717,22.34644],[114.15717,22.34644],[114.15718,22.34643],[114.15719,22.34642],[114.15719,22.34641],[114.15719,22.34641],[114.1572,22.3464],[114.1572,22.3464],[114.1572,22.34639],[114.15721,22.34638],[114.15721,22.34638],[114.15722,22.34637],[114.15722,22.34637],[114.15723,22.34635],[114.15723,22.34635],[114.15723,22.34634],[114.15724,22.34634],[114.15724,22.34633],[114.15725,22.34632],[114.15725,22.34632],[114.15725,22.34631],[114.15726,22.34631],[114.15726,22.3463],[114.15726,22.34629],[114.15727,22.34629],[114.15727,22.34628],[114.15727,22.34628],[114.15727,22.34627],[114.15728,22.34627],[114.15728,22.34626],[114.15728,22.34626],[114.15728,22.34625],[114.15729,22.34624],[114.15728,22.34623],[114.15728,22.34622],[114.15728,22.34622],[114.15728,22.34621],[114.15728,22.3462],[114.15728,22.3462],[114.15728,22.34619],[114.15728,22.34618],[114.15728,22.34617],[114.15728,22.34617],[114.15728,22.34616],[114.15729,22.34615],[114.15729,22.34615],[114.15729,22.34615],[114.15729,22.34615],[114.15729,22.34615],[114.1573,22.34615],[114.1573,22.34615],[114.1573,22.34615],[114.1573,22.34615],[114.1573,22.34615],[114.1573,22.34615],[114.1573,22.34615],[114.1573,22.34615],[114.1573,22.34615],[114.1573,22.34615],[114.15731,22.34615],[114.15731,22.34615],[114.15731,22.34615],[114.15731,22.34615],[114.15731,22.34614],[114.15731,22.34614],[114.15731,22.34614],[114.15731,22.34614],[114.15731,22.34614],[114.15731,22.34614],[114.15731,22.34614],[114.15732,22.34614],[114.15732,22.34614],[114.15732,22.34614],[114.15732,22.34614],[114.15732,22.34614],[114.15732,22.34614],[114.15732,22.34614],[114.15732,22.34614],[114.15732,22.34614],[114.15732,22.34614],[114.15732,22.34614],[114.15732,22.34614],[114.15733,22.34614],[114.15733,22.34614],[114.15733,22.34614],[114.15733,22.34614],[114.15733,22.34613],[114.15733,22.34613],[114.15733,22.34613],[114.15734,22.34613],[114.15734,22.34613],[114.15734,22.34613],[114.15734,22.34613],[114.15734,22.34613],[114.15734,22.34613],[114.15735,22.34613],[114.15735,22.34613],[114.15735,22.34612],[114.15735,22.34612],[114.15735,22.34612],[114.15735,22.34612],[114.15736,22.34612],[114.15736,22.34612],[114.15736,22.34612],[114.15736,22.34612],[114.15736,22.34612],[114.15736,22.34612],[114.15736,22.34612],[114.15736,22.34611],[114.15736,22.34611],[114.15736,22.34611],[114.15736,22.34611],[114.15736,22.34611],[114.15737,22.34611],[114.15737,22.34611],[114.15737,22.34611],[114.15737,22.34611],[114.15737,22.34611],[114.15737,22.34611],[114.15737,22.34611],[114.15737,22.34611],[114.15737,22.34611],[114.15737,22.34611],[114.15737,22.3461],[114.15737,22.3461],[114.15737,22.3461],[114.15737,22.3461],[114.15737,22.3461],[114.15738,22.3461],[114.15738,22.3461],[114.15738,22.3461],[114.15738,22.3461],[114.15738,22.3461],[114.15738,22.3461],[114.15738,22.3461],[114.15738,22.3461],[114.15738,22.3461],[114.15738,22.34609],[114.15738,22.34609],[114.15738,22.34609],[114.15739,22.34609],[114.15739,22.34609],[114.15739,22.34609],[114.15739,22.34609],[114.15739,22.34609],[114.15739,22.34609],[114.15739,22.34608],[114.1574,22.34608],[114.1574,22.34608],[114.1574,22.34608],[114.1574,22.34608],[114.1574,22.34608],[114.1574,22.34608],[114.15741,22.34608],[114.15741,22.34608],[114.15741,22.34608],[114.15741,22.34608],[114.15741,22.34608],[114.15742,22.34608],[114.15742,22.34608],[114.15742,22.34608],[114.15742,22.34607],[114.15742,22.34607],[114.15742,22.34607],[114.15742,22.34607],[114.15742,22.34607],[114.15742,22.34607],[114.15743,22.34607],[114.15743,22.34607],[114.15743,22.34607],[114.15743,22.34607],[114.15743,22.34607],[114.15743,22.34607],[114.15743,22.34607],[114.15743,22.34607],[114.15743,22.34607],[114.15743,22.34607],[114.15743,22.34607],[114.15744,22.34607],[114.15744,22.34607],[114.15744,22.34607],[114.15744,22.34607],[114.15744,22.34607],[114.15744,22.34607],[114.15744,22.34607],[114.15744,22.34607],[114.15744,22.34607],[114.15744,22.34607],[114.15745,22.34607],[114.15745,22.34607],[114.15745,22.34607],[114.15745,22.34607],[114.15745,22.34607],[114.15745,22.34607],[114.15745,22.34607],[114.15745,22.34607],[114.15745,22.34606],[114.15745,22.34606],[114.15745,22.34606],[114.15746,22.34606],[114.15746,22.34606],[114.15746,22.34606],[114.15746,22.34606],[114.15746,22.34606],[114.15746,22.34606],[114.15746,22.34606],[114.15746,22.34606],[114.15746,22.34606],[114.15747,22.34606],[114.15747,22.34606],[114.15747,22.34606],[114.15747,22.34606],[114.15747,22.34606],[114.15747,22.34606],[114.15748,22.34606],[114.15748,22.34605],[114.15748,22.34605],[114.15748,22.34605],[114.15748,22.34605],[114.15749,22.34605],[114.15749,22.34605],[114.15749,22.34605],[114.15749,22.34605],[114.15749,22.34605],[114.15749,22.34605],[114.1575,22.34605],[114.1575,22.34604],[114.1575,22.34604],[114.1575,22.34604],[114.1575,22.34604],[114.1575,22.34604],[114.1575,22.34604],[114.1575,22.34604],[114.15751,22.34604],[114.15751,22.34604],[114.15751,22.34604],[114.15751,22.34604],[114.15751,22.34604],[114.15751,22.34604],[114.15751,22.34604],[114.15751,22.34604],[114.15751,22.34603],[114.15752,22.34603],[114.15752,22.34603],[114.15752,22.34603],[114.15752,22.34603],[114.15752,22.34603],[114.15752,22.34603],[114.15752,22.34603],[114.15752,22.34603],[114.15752,22.34603],[114.15752,22.34603],[114.15753,22.34603],[114.15753,22.34603],[114.15753,22.34603],[114.15753,22.34603],[114.15753,22.34603],[114.15753,22.34602],[114.15753,22.34602],[114.15753,22.34602],[114.15753,22.34602],[114.15753,22.34602],[114.15753,22.34602],[114.15754,22.34602],[114.15754,22.34602],[114.15754,22.34602],[114.15754,22.34602],[114.15754,22.34602],[114.15754,22.34602],[114.15754,22.34602],[114.15754,22.34602],[114.15755,22.34601],[114.15755,22.34601],[114.15755,22.34601],[114.15755,22.34601],[114.15755,22.34601],[114.15755,22.34601],[114.15755,22.34601],[114.15756,22.34601],[114.15756,22.34601],[114.15756,22.34601],[114.15756,22.34601],[114.15756,22.346],[114.15756,22.346],[114.15756,22.346],[114.15757,22.346],[114.15757,22.346],[114.15757,22.346],[114.15757,22.346],[114.15757,22.346],[114.15757,22.346],[114.15758,22.34599],[114.15758,22.34599],[114.15758,22.34599],[114.15758,22.34599],[114.15758,22.34599],[114.15758,22.34599],[114.15758,22.34599],[114.15758,22.34599],[114.15759,22.34599],[114.15759,22.34598],[114.15759,22.34598],[114.15759,22.34598],[114.15759,22.34598],[114.15759,22.34598],[114.15759,22.34598],[114.15759,22.34598],[114.15759,22.34598],[114.15759,22.34598],[114.1576,22.34598],[114.1576,22.34597],[114.1576,22.34597],[114.1576,22.34597],[114.1576,22.34597],[114.1576,22.34597],[114.15762,22.34596],[114.15762,22.34595],[114.15763,22.34595],[114.15763,22.34595],[114.15764,22.34595],[114.15765,22.34595],[114.15766,22.34595],[114.15768,22.34595],[114.15768,22.34595],[114.15769,22.34595],[114.1577,22.34594],[114.15771,22.34594],[114.15775,22.34589],[114.15775,22.34588],[114.15776,22.34588],[114.15776,22.34587],[114.15776,22.34586],[114.15777,22.34585],[114.15777,22.34585],[114.15778,22.34582],[114.15778,22.34581],[114.15778,22.34581],[114.15779,22.3458],[114.15779,22.34579],[114.15781,22.34578],[114.15783,22.34576],[114.15785,22.34574],[114.15787,22.34573],[114.15787,22.34572],[114.15787,22.34572],[114.15788,22.34572],[114.15789,22.34572],[114.1579,22.34572],[114.15791,22.34572],[114.15792,22.34572],[114.15792,22.34572],[114.15793,22.34572],[114.15794,22.34572],[114.15795,22.34572],[114.15796,22.34571],[114.15796,22.34571],[114.15797,22.3457],[114.15797,22.3457],[114.15798,22.3457],[114.15798,22.34569],[114.15799,22.34569],[114.15799,22.34568],[114.158,22.34568],[114.158,22.34567],[114.15801,22.34567],[114.15802,22.34566],[114.15802,22.34565],[114.15803,22.34565],[114.15803,22.34564],[114.15804,22.34563],[114.15804,22.34563],[114.15805,22.34562],[114.15805,22.34561],[114.15806,22.34561],[114.15806,22.3456],[114.15807,22.3456],[114.15807,22.34559],[114.15808,22.34558],[114.15808,22.34558],[114.15809,22.34557],[114.15809,22.34556],[114.15809,22.34556],[114.1581,22.34555],[114.1581,22.34555],[114.1581,22.34554],[114.15811,22.34553],[114.15811,22.34553],[114.15811,22.34552],[114.15812,22.34551],[114.15812,22.3455],[114.15813,22.3455],[114.15813,22.34549],[114.15814,22.34549],[114.15815,22.34548],[114.15815,22.34548],[114.15816,22.34548],[114.15816,22.34547],[114.15817,22.34547],[114.15818,22.34547],[114.15818,22.34546],[114.15819,22.34546],[114.1582,22.34545],[114.15821,22.34545],[114.15821,22.34545],[114.15822,22.34544],[114.15823,22.34544],[114.15823,22.34544],[114.15824,22.34543],[114.15825,22.34543],[114.15825,22.34543],[114.15826,22.34542],[114.15827,22.34542],[114.15827,22.34542],[114.15828,22.34541],[114.15829,22.34541],[114.1583,22.34541],[114.1583,22.34541],[114.15831,22.3454],[114.15832,22.3454],[114.15833,22.3454],[114.15834,22.3454],[114.15834,22.3454],[114.15835,22.3454],[114.15836,22.3454],[114.15837,22.3454],[114.15837,22.3454],[114.15838,22.3454],[114.15839,22.3454],[114.1584,22.3454],[114.1584,22.34539],[114.15841,22.34539],[114.15841,22.34539],[114.15842,22.34539],[114.15843,22.34539],[114.15844,22.34539],[114.15844,22.34539],[114.15845,22.34538],[114.15846,22.34538],[114.15846,22.34537],[114.15847,22.34537],[114.15848,22.34537],[114.15848,22.34536],[114.15849,22.34536],[114.1585,22.34536],[114.1585,22.34535],[114.15851,22.34535],[114.15852,22.34535],[114.15853,22.34535],[114.15853,22.34534],[114.15854,22.34534],[114.15855,22.34534],[114.15855,22.34534],[114.15856,22.34534],[114.15857,22.34533],[114.15858,22.34533],[114.15859,22.34533],[114.1586,22.34533],[114.1586,22.34533],[114.15861,22.34533],[114.15862,22.34533],[114.15862,22.34534],[114.15863,22.34534],[114.15864,22.34535],[114.15865,22.34536],[114.15865,22.34536],[114.15865,22.34537],[114.15866,22.34537],[114.15866,22.34539],[114.15867,22.34539],[114.15868,22.34539],[114.15869,22.34539],[114.15869,22.34539],[114.1587,22.34539],[114.15871,22.34539],[114.15871,22.34539],[114.15872,22.34539],[114.15873,22.34538],[114.15874,22.34538],[114.15875,22.34538],[114.15876,22.34538],[114.15876,22.34538],[114.15877,22.34538],[114.15878,22.34539],[114.15878,22.34539],[114.15879,22.34539],[114.1588,22.34539],[114.1588,22.3454],[114.15881,22.3454],[114.15882,22.34541],[114.15883,22.34541],[114.15883,22.34541],[114.15884,22.34542],[114.1589,22.34548],[114.15891,22.34548],[114.15891,22.34549],[114.15892,22.34549],[114.15892,22.3455],[114.15893,22.3455],[114.15893,22.34551],[114.15894,22.34552],[114.15894,22.34552],[114.15894,22.34553],[114.15895,22.34553],[114.15895,22.34554],[114.15896,22.34555],[114.15896,22.34555],[114.15896,22.34556],[114.15897,22.34556],[114.15897,22.34557],[114.15897,22.34558],[114.15898,22.34559],[114.15898,22.34559],[114.15898,22.3456],[114.15899,22.3456],[114.15899,22.34561],[114.159,22.34562],[114.159,22.34562],[114.15901,22.34563],[114.15901,22.34563],[114.15902,22.34564],[114.15902,22.34564],[114.15903,22.34565],[114.15903,22.34565],[114.15904,22.34566],[114.15904,22.34566],[114.15905,22.34567],[114.15905,22.34567],[114.15906,22.34568],[114.15906,22.34568],[114.15907,22.34569],[114.15907,22.34569],[114.15908,22.3457],[114.15908,22.34571],[114.15909,22.34571],[114.15909,22.34572],[114.1591,22.34572],[114.1591,22.34573],[114.1591,22.34574],[114.15911,22.34575],[114.15911,22.34575],[114.15911,22.34576],[114.15912,22.34576],[114.15912,22.34577],[114.15912,22.34578],[114.15913,22.34579],[114.15913,22.34579],[114.15913,22.3458],[114.15914,22.3458],[114.15914,22.34581],[114.15914,22.34582],[114.15915,22.34582],[114.15915,22.34583],[114.15915,22.34583],[114.15916,22.34584],[114.15916,22.34585],[114.15917,22.34585],[114.15917,22.34586],[114.15917,22.34587],[114.15918,22.34587],[114.15918,22.34588],[114.15919,22.34588],[114.15919,22.34589],[114.1592,22.34589],[114.1592,22.3459],[114.15921,22.34591],[114.15921,22.34591],[114.15922,22.34592],[114.15922,22.34592],[114.15923,22.34592],[114.15924,22.34593],[114.15924,22.34593],[114.15925,22.34593],[114.15926,22.34594],[114.15926,22.34594],[114.15927,22.34594],[114.15928,22.34594],[114.15928,22.34595],[114.15929,22.34595],[114.1593,22.34595],[114.15931,22.34595],[114.15931,22.34595],[114.15932,22.34596],[114.15933,22.34596],[114.15933,22.34596],[114.15934,22.34596],[114.15935,22.34596],[114.15936,22.34596],[114.15937,22.34596],[114.15937,22.34597],[114.15938,22.34597],[114.15939,22.34597],[114.1594,22.34597],[114.1594,22.34597],[114.15941,22.34597],[114.15942,22.34597],[114.15943,22.34597],[114.15944,22.34597],[114.15944,22.34597],[114.15945,22.34597],[114.15946,22.34597],[114.15947,22.34597],[114.15947,22.34597],[114.15949,22.34597],[114.15949,22.34597],[114.1595,22.34597],[114.15951,22.34597],[114.15952,22.34597],[114.15952,22.34597],[114.15953,22.34597],[114.15954,22.34597],[114.15955,22.34597],[114.15955,22.34598],[114.15956,22.34598],[114.15956,22.34599],[114.15957,22.34599],[114.15957,22.346],[114.15957,22.34601],[114.15957,22.34601],[114.15957,22.34602],[114.15957,22.34603],[114.15957,22.34604],[114.15957,22.34604],[114.15957,22.34605],[114.15957,22.34606],[114.15957,22.34606],[114.15957,22.34607],[114.15957,22.34608],[114.15957,22.34608],[114.15957,22.34609],[114.15957,22.3461],[114.15957,22.3461],[114.15957,22.34611],[114.15958,22.34612],[114.15958,22.34613],[114.15958,22.34614],[114.15958,22.34614],[114.15958,22.34615],[114.15959,22.34616],[114.15959,22.34616],[114.15959,22.34617],[114.1596,22.34618],[114.1596,22.34618],[114.1596,22.34619],[114.15961,22.34619],[114.15961,22.3462],[114.15962,22.34621],[114.15963,22.34621],[114.15963,22.34622],[114.15964,22.34623],[114.15964,22.34624],[114.15965,22.34624],[114.15965,22.34625],[114.15965,22.34625],[114.15966,22.34626],[114.15966,22.34627],[114.15967,22.34627],[114.15967,22.34629],[114.15968,22.34629],[114.15968,22.3463],[114.15968,22.3463],[114.15969,22.34631],[114.15969,22.34632],[114.15969,22.34632],[114.1597,22.34633],[114.1597,22.34634],[114.1597,22.34635],[114.15971,22.34636],[114.15971,22.34636],[114.15971,22.34637],[114.15971,22.34638],[114.15971,22.3464],[114.15972,22.34641],[114.15972,22.34642],[114.15972,22.34644],[114.15972,22.34645],[114.15972,22.34646],[114.15972,22.34647],[114.15972,22.34648],[114.15972,22.34649],[114.15973,22.34651],[114.15973,22.34653],[114.15974,22.34654],[114.15975,22.34657],[114.15975,22.34658],[114.15975,22.34658],[114.15975,22.34658],[114.15975,22.34659],[114.15976,22.34659],[114.15975,22.3466],[114.15975,22.3466],[114.15975,22.3466],[114.15975,22.34661],[114.15975,22.34661],[114.15975,22.34661],[114.15975,22.34661],[114.15975,22.34661],[114.15975,22.34661],[114.15975,22.34661],[114.15975,22.34661],[114.15975,22.34661],[114.15975,22.34662],[114.15975,22.34662],[114.15975,22.34662],[114.15975,22.34662],[114.15975,22.34662],[114.15975,22.34662],[114.15975,22.34662],[114.15975,22.34662],[114.15975,22.34662],[114.15975,22.34663],[114.15975,22.34663],[114.15975,22.34663],[114.15975,22.34663],[114.15975,22.34663],[114.15975,22.34663],[114.15975,22.34663],[114.15975,22.34664],[114.15975,22.34664],[114.15975,22.34664],[114.15975,22.34664],[114.15975,22.34664],[114.15975,22.34665],[114.15975,22.34665],[114.15975,22.34665],[114.15975,22.34665],[114.15975,22.34666],[114.15975,22.34666],[114.15975,22.34666],[114.15975,22.34666],[114.15975,22.34666],[114.15975,22.34666],[114.15975,22.34667],[114.15975,22.34667],[114.15975,22.34667],[114.15975,22.34667],[114.15975,22.34667],[114.15975,22.34668],[114.15975,22.34668],[114.15975,22.34668],[114.15975,22.34668],[114.15975,22.34668],[114.15975,22.34668],[114.15975,22.34668],[114.15975,22.34668],[114.15974,22.34669],[114.15974,22.34669],[114.15974,22.34669],[114.15974,22.34669],[114.15974,22.34669],[114.15974,22.34669],[114.15974,22.3467],[114.15974,22.3467],[114.15974,22.3467],[114.15974,22.3467],[114.15974,22.3467],[114.15974,22.3467],[114.15974,22.3467],[114.15974,22.34671],[114.15974,22.34671],[114.15974,22.34671],[114.15974,22.34671],[114.15974,22.34671],[114.15974,22.34671],[114.15974,22.34672],[114.15974,22.34672],[114.15974,22.34672],[114.15974,22.34672],[114.15974,22.34672],[114.15974,22.34672],[114.15974,22.34673],[114.15974,22.34673],[114.15973,22.34673],[114.15973,22.34673],[114.15973,22.34673],[114.15973,22.34674],[114.15973,22.34674],[114.15973,22.34674],[114.15973,22.34674],[114.15973,22.34674],[114.15973,22.34674],[114.15973,22.34675],[114.15973,22.34675],[114.15973,22.34675],[114.15973,22.34675],[114.15973,22.34675],[114.15973,22.34675],[114.15973,22.34676],[114.15973,22.34676],[114.15973,22.34676],[114.15973,22.34676],[114.15973,22.34676],[114.15973,22.34676],[114.15973,22.34677],[114.15973,22.34677],[114.15973,22.34677],[114.15973,22.34677],[114.15972,22.34677],[114.15972,22.34677],[114.15972,22.34677],[114.15972,22.34678],[114.15972,22.34678],[114.15972,22.34678],[114.15972,22.34678],[114.15972,22.34678],[114.15972,22.34678],[114.15972,22.34678],[114.15972,22.34679],[114.15972,22.34679],[114.15972,22.34679],[114.15972,22.34679],[114.15972,22.34679],[114.15972,22.34679],[114.15972,22.3468],[114.15972,22.3468],[114.15972,22.3468],[114.15972,22.3468],[114.15972,22.3468],[114.15972,22.3468],[114.15972,22.34681],[114.15971,22.34681],[114.15971,22.34682],[114.15972,22.34683],[114.15972,22.34684],[114.15973,22.34685],[114.15976,22.34686],[114.15978,22.34687],[114.15983,22.3469],[114.15986,22.34693],[114.15988,22.34695],[114.15991,22.347],[114.15998,22.3471],[114.16003,22.34717],[114.16006,22.34721],[114.16008,22.34723],[114.1601,22.34725],[114.16012,22.34727],[114.16019,22.34732],[114.16026,22.34738],[114.16028,22.34739],[114.1603,22.34739],[114.16034,22.34739],[114.16037,22.34738],[114.1604,22.34737],[114.16043,22.34736],[114.16049,22.34732],[114.16053,22.34728],[114.16057,22.34724],[114.16061,22.3472],[114.16064,22.34716],[114.16065,22.34714],[114.16067,22.34708],[114.1607,22.34703],[114.16072,22.34699],[114.16074,22.34698],[114.16075,22.34697],[114.16078,22.34697],[114.16081,22.34697],[114.16082,22.34697],[114.16082,22.34697],[114.16082,22.34697],[114.16082,22.34697],[114.16082,22.34697],[114.16083,22.34697],[114.16083,22.34697],[114.16083,22.34697],[114.16083,22.34697],[114.16083,22.34697],[114.16083,22.34697],[114.16083,22.34698],[114.16083,22.34698],[114.16083,22.34698],[114.16083,22.34698],[114.16084,22.34698],[114.16084,22.34698],[114.16084,22.34698],[114.16084,22.34698],[114.16084,22.34698],[114.16084,22.34698],[114.16085,22.34698],[114.16085,22.34698],[114.16085,22.34698],[114.16085,22.34698],[114.16085,22.34698],[114.16085,22.34698],[114.16086,22.34698],[114.16086,22.34697],[114.16086,22.34697],[114.16086,22.34697],[114.16086,22.34697],[114.16086,22.34697],[114.16086,22.34697],[114.16086,22.34697],[114.16086,22.34697],[114.16086,22.34697],[114.16087,22.34697],[114.16087,22.34697],[114.16087,22.34697],[114.16087,22.34697],[114.16087,22.34697],[114.16087,22.34697],[114.16087,22.34697],[114.16087,22.34697],[114.16088,22.34697],[114.16088,22.34697],[114.16088,22.34697],[114.16088,22.34697],[114.16088,22.34697],[114.16088,22.34697],[114.16089,22.34697],[114.16089,22.34697],[114.16089,22.34697],[114.16089,22.34697],[114.16089,22.34697],[114.16089,22.34697],[114.1609,22.34696],[114.1609,22.34696],[114.1609,22.34696],[114.1609,22.34696],[114.1609,22.34696],[114.1609,22.34696],[114.1609,22.34696],[114.16091,22.34696],[114.16091,22.34696],[114.16091,22.34696],[114.16091,22.34696],[114.16091,22.34696],[114.16091,22.34696],[114.16091,22.34696],[114.16091,22.34696],[114.16091,22.34696],[114.16092,22.34696],[114.16092,22.34696],[114.16092,22.34696],[114.16092,22.34696],[114.16092,22.34696],[114.16092,22.34696],[114.16092,22.34696],[114.16092,22.34696],[114.16092,22.34696],[114.16092,22.34696],[114.16093,22.34696],[114.16093,22.34696],[114.16093,22.34696],[114.16093,22.34696],[114.16093,22.34696],[114.16094,22.34696],[114.16094,22.34696],[114.16094,22.34696],[114.16094,22.34696],[114.16094,22.34696],[114.16095,22.34696],[114.16095,22.34696],[114.16095,22.34696],[114.16095,22.34696],[114.16095,22.34696],[114.16095,22.34696],[114.16095,22.34696],[114.16095,22.34696],[114.16095,22.34696],[114.16096,22.34696],[114.16096,22.34696],[114.16096,22.34696],[114.16096,22.34696],[114.16096,22.34696],[114.16096,22.34696],[114.16096,22.34696],[114.16096,22.34697],[114.16097,22.34697],[114.16097,22.34697],[114.16097,22.34697],[114.16097,22.34697],[114.16099,22.34698],[114.16101,22.34699],[114.16104,22.347],[114.16107,22.34702],[114.16109,22.34704],[114.16111,22.34707],[114.16112,22.34709],[114.16114,22.34714],[114.16115,22.34717],[114.16115,22.34718],[114.16115,22.34726],[114.16115,22.34727],[114.16115,22.34729],[114.16117,22.34735],[114.16118,22.34738],[114.16119,22.3474],[114.1612,22.34741],[114.16122,22.34743],[114.16126,22.34745],[114.16129,22.34747],[114.16131,22.34748],[114.16132,22.34748],[114.16138,22.3475],[114.1614,22.34751],[114.16141,22.34751],[114.16142,22.34752],[114.16143,22.34752],[114.1615,22.34754],[114.16151,22.34754],[114.16154,22.34755],[114.16156,22.34755],[114.16157,22.34755],[114.16163,22.34754],[114.16167,22.34754],[114.16169,22.34755],[114.16173,22.34759],[114.16176,22.34764],[114.16177,22.34765],[114.16178,22.34765],[114.1618,22.34765],[114.16185,22.34764],[114.16189,22.34764],[114.16191,22.34764],[114.16194,22.34766],[114.16196,22.34767],[114.16198,22.34768],[114.16201,22.34771],[114.16205,22.34776],[114.1621,22.34781],[114.16211,22.34782],[114.16212,22.34783],[114.16212,22.34784],[114.16214,22.34785],[114.16215,22.34786],[114.16217,22.34787],[114.16218,22.34789],[114.16218,22.34789],[114.1622,22.3479],[114.16221,22.34791],[114.16221,22.34791],[114.16222,22.34792],[114.16224,22.34792],[114.16225,22.34793],[114.16227,22.34793],[114.16229,22.34794],[114.1623,22.34794],[114.16231,22.34795],[114.16233,22.34795],[114.16234,22.34796],[114.16235,22.34796],[114.16244,22.348],[114.16245,22.348],[114.16246,22.348],[114.16249,22.34801],[114.1625,22.34802],[114.16252,22.34803],[114.16254,22.34803],[114.16256,22.34804],[114.16257,22.34804],[114.16259,22.34805],[114.1626,22.34805],[114.16261,22.34805],[114.16262,22.34806],[114.16274,22.34809],[114.16276,22.3481],[114.16279,22.34811],[114.1628,22.34811],[114.1628,22.34812],[114.16281,22.34812],[114.16282,22.34812],[114.16282,22.34813],[114.16283,22.34813],[114.16284,22.34814],[114.16285,22.34815],[114.16286,22.34816],[114.16287,22.34816],[114.16287,22.34817],[114.16288,22.34818],[114.16288,22.34818],[114.16289,22.34819],[114.16289,22.3482],[114.16289,22.34821],[114.1629,22.34823],[114.1629,22.34824],[114.16291,22.34825],[114.16291,22.34827],[114.16291,22.34829],[114.16292,22.3483],[114.16292,22.34831],[114.16292,22.34833],[114.16292,22.34834],[114.16293,22.34835],[114.16293,22.34835],[114.16293,22.34836],[114.16294,22.34837],[114.16294,22.34837],[114.16295,22.34837],[114.16296,22.34837],[114.16297,22.34838],[114.16298,22.34838],[114.16298,22.34838],[114.16299,22.34838],[114.163,22.34838],[114.16301,22.34838],[114.16302,22.34838],[114.16304,22.34839],[114.16305,22.34839],[114.16306,22.34839],[114.16307,22.34839],[114.16308,22.34839],[114.16309,22.34839],[114.16311,22.34839],[114.16311,22.34839],[114.16313,22.34839],[114.16314,22.34839],[114.1632,22.34838],[114.16324,22.34838],[114.16324,22.34838],[114.16325,22.34838],[114.16326,22.34838],[114.16327,22.34838],[114.16327,22.34838],[114.1633,22.34839],[114.16332,22.3484],[114.16335,22.34842],[114.1634,22.34845],[114.16342,22.34847],[114.16343,22.34848],[114.16343,22.34848],[114.16344,22.34849],[114.16344,22.34849],[114.16345,22.3485],[114.16346,22.3485],[114.16352,22.34856],[114.16352,22.34856],[114.16353,22.34856],[114.16354,22.34857],[114.16355,22.34857],[114.16355,22.34857],[114.16356,22.34857],[114.16357,22.34857],[114.16358,22.34857],[114.16358,22.34857],[114.1636,22.34857],[114.1636,22.34857],[114.16361,22.34857],[114.16362,22.34856],[114.16362,22.34856],[114.16363,22.34855],[114.16363,22.34855],[114.16364,22.34854],[114.16364,22.34854],[114.16365,22.34853],[114.16365,22.34853],[114.16366,22.34852],[114.16367,22.34852],[114.16368,22.34851],[114.16368,22.34851],[114.16369,22.3485],[114.16369,22.3485],[114.1637,22.34849],[114.1637,22.34849],[114.16371,22.34848],[114.16372,22.34847],[114.16372,22.34847],[114.16373,22.34847],[114.16374,22.34847],[114.16374,22.34846],[114.16375,22.34846],[114.16376,22.34846],[114.16377,22.34846],[114.16377,22.34846],[114.16378,22.34846],[114.16379,22.34846],[114.1638,22.34847],[114.16381,22.34847],[114.16381,22.34847],[114.16383,22.34847],[114.16383,22.34848],[114.16384,22.34848],[114.16385,22.34848],[114.16385,22.34848],[114.16386,22.34848],[114.16387,22.34849],[114.16388,22.34849],[114.16389,22.34849],[114.16389,22.34848],[114.1639,22.34847],[114.16391,22.34846],[114.16392,22.34842],[114.16392,22.34841],[114.16393,22.34841],[114.16393,22.3484],[114.16393,22.34839],[114.16393,22.34839],[114.16393,22.34838],[114.16393,22.34837],[114.16394,22.34837],[114.16394,22.34836],[114.16394,22.34835],[114.16394,22.34835],[114.16394,22.34834],[114.16394,22.34833],[114.16394,22.34833],[114.16394,22.34832],[114.16394,22.34831],[114.16394,22.3483],[114.16394,22.3483],[114.16394,22.34829],[114.16394,22.34828],[114.16394,22.34828],[114.16394,22.34827],[114.16394,22.34826],[114.16394,22.34826],[114.16394,22.34825],[114.16394,22.34824],[114.16394,22.34824],[114.16394,22.34823],[114.16394,22.34822],[114.16395,22.34821],[114.16395,22.3482],[114.16395,22.34819],[114.16395,22.34819],[114.16395,22.34818],[114.16395,22.34817],[114.16395,22.34817],[114.16395,22.34816],[114.16396,22.34815],[114.16396,22.34815],[114.16396,22.34814],[114.16396,22.34813],[114.16396,22.34813],[114.16397,22.34812],[114.16397,22.34811],[114.16397,22.34811],[114.16397,22.3481],[114.16398,22.34809],[114.16398,22.34809],[114.16398,22.34808],[114.16399,22.34807],[114.16399,22.34807],[114.16399,22.34806],[114.164,22.34806],[114.164,22.34805],[114.164,22.34804],[114.16401,22.34804],[114.16401,22.34803],[114.16402,22.34802],[114.16402,22.34802],[114.16403,22.34801],[114.16403,22.34801],[114.16404,22.348],[114.16404,22.348],[114.16405,22.34799],[114.16405,22.34799],[114.16406,22.34798],[114.16406,22.34798],[114.16407,22.34797],[114.16408,22.34797],[114.16408,22.34796],[114.16409,22.34796],[114.16409,22.34796],[114.1641,22.34795],[114.16411,22.34795],[114.16412,22.34795],[114.16412,22.34794],[114.16413,22.34794],[114.16414,22.34794],[114.16415,22.34793],[114.16416,22.34793],[114.16417,22.34793],[114.16417,22.34793],[114.16418,22.34792],[114.16419,22.34792],[114.16419,22.34793],[114.1642,22.34793],[114.16421,22.34793],[114.16422,22.34793],[114.16422,22.34793],[114.16423,22.34794],[114.16424,22.34794],[114.16425,22.34795],[114.16425,22.34795],[114.16426,22.34795],[114.16427,22.34796],[114.16427,22.34796],[114.16428,22.34796],[114.1643,22.34796],[114.1643,22.34796],[114.16431,22.34796],[114.16432,22.34796],[114.16433,22.34796],[114.16433,22.34796],[114.16435,22.34796],[114.16435,22.34795],[114.16436,22.34795],[114.16437,22.34795],[114.16438,22.34795],[114.16438,22.34795],[114.16439,22.34794],[114.1644,22.34794],[114.1644,22.34794],[114.16441,22.34793],[114.16442,22.34793],[114.1645,22.34789],[114.16451,22.34788],[114.16451,22.34787],[114.16451,22.34787],[114.16451,22.34786],[114.16451,22.34785],[114.16452,22.34785],[114.16452,22.34784],[114.16452,22.34783],[114.16452,22.34783],[114.16452,22.34782],[114.16452,22.34781],[114.16452,22.34781],[114.16452,22.3478],[114.16452,22.34779],[114.16452,22.34779],[114.16452,22.34777],[114.16452,22.34777],[114.16452,22.34776],[114.16452,22.34775],[114.16452,22.34775],[114.16452,22.34774],[114.16453,22.34773],[114.16453,22.34773],[114.16453,22.34772],[114.16454,22.34771],[114.16454,22.34771],[114.16454,22.3477],[114.16455,22.34769],[114.16455,22.34768],[114.16456,22.34768],[114.16456,22.34767],[114.16457,22.34767],[114.16457,22.34766],[114.16458,22.34766],[114.16458,22.34765],[114.16458,22.34764],[114.16459,22.34764],[114.16459,22.34763],[114.1646,22.34763],[114.1646,22.34762],[114.16461,22.34762],[114.16461,22.34761],[114.16462,22.3476],[114.16462,22.34759],[114.16463,22.34759],[114.16463,22.34758],[114.16464,22.34758],[114.16464,22.34757],[114.16465,22.34757],[114.16465,22.34756],[114.16466,22.34756],[114.16466,22.34756],[114.16467,22.34755],[114.16468,22.34754],[114.16469,22.34754],[114.16469,22.34753],[114.1647,22.34753],[114.1647,22.34753],[114.16471,22.34752],[114.16472,22.34752],[114.16472,22.34751],[114.16473,22.34751],[114.16473,22.3475],[114.16474,22.3475],[114.16475,22.34749],[114.16476,22.34748],[114.16477,22.34748],[114.16478,22.34747],[114.16479,22.34747],[114.1648,22.34747],[114.16481,22.34747],[114.16482,22.34747],[114.16483,22.34747],[114.16483,22.34747],[114.16484,22.34747],[114.16485,22.34747],[114.16486,22.34747],[114.16487,22.34747],[114.16487,22.34747],[114.16498,22.34746],[114.16499,22.34746],[114.16499,22.34746],[114.16501,22.34746],[114.16501,22.34746],[114.16502,22.34747],[114.16503,22.34747],[114.16504,22.34747],[114.16504,22.34747],[114.16505,22.34747],[114.16506,22.34747],[114.16507,22.34747],[114.16508,22.34747],[114.16508,22.34746],[114.16509,22.34746],[114.16509,22.34745],[114.16509,22.34744],[114.16509,22.34743],[114.16508,22.34743],[114.16508,22.34742],[114.16507,22.34741],[114.16507,22.34741],[114.16507,22.3474],[114.16507,22.34739],[114.16507,22.34738],[114.16507,22.34738],[114.16508,22.34737],[114.16508,22.34736],[114.16508,22.34736],[114.16509,22.34735],[114.16509,22.34735],[114.1651,22.34734],[114.16518,22.34725],[114.16519,22.34725],[114.1652,22.34724],[114.16521,22.34724],[114.16522,22.34724],[114.16522,22.34724],[114.16523,22.34724],[114.16524,22.34724],[114.16525,22.34724],[114.16525,22.34724],[114.16526,22.34725],[114.16526,22.34725],[114.16527,22.34725],[114.16528,22.34725],[114.16529,22.34725],[114.16529,22.34725],[114.1653,22.34725],[114.16531,22.34725],[114.16532,22.34725],[114.16532,22.34725],[114.16533,22.34724],[114.16534,22.34724],[114.16545,22.34719],[114.16546,22.34719],[114.16547,22.34718],[114.16547,22.34717],[114.16547,22.34716],[114.16547,22.34716],[114.16547,22.34715],[114.16545,22.34707],[114.16544,22.34706],[114.16544,22.34706],[114.16544,22.34705],[114.16536,22.34681],[114.16535,22.3468],[114.16535,22.3468],[114.16535,22.34679],[114.16535,22.34678],[114.16535,22.34678],[114.16535,22.34677],[114.16535,22.34676],[114.16535,22.34674],[114.16535,22.34654],[114.16535,22.34653],[114.16535,22.34652],[114.16535,22.34651],[114.16535,22.3465],[114.16535,22.3465],[114.16535,22.34649],[114.16535,22.34648],[114.16534,22.34647],[114.16534,22.34647],[114.16534,22.34646],[114.16534,22.34645],[114.16534,22.34644],[114.16534,22.34643],[114.16534,22.34642],[114.16535,22.34642],[114.16535,22.3464],[114.16536,22.34638],[114.16537,22.34636],[114.16537,22.34636],[114.16538,22.34635],[114.16538,22.34635],[114.16539,22.34634],[114.16539,22.34634],[114.1654,22.34633],[114.1654,22.34633],[114.16541,22.34632],[114.16541,22.34632],[114.16541,22.34631],[114.1654,22.3463],[114.1654,22.34629],[114.1654,22.34629],[114.16539,22.34628],[114.16539,22.34628],[114.16538,22.34628],[114.16537,22.34627],[114.16536,22.34627],[114.16535,22.34626],[114.16534,22.34626],[114.16533,22.34626],[114.16533,22.34626],[114.16533,22.34626],[114.16532,22.34625],[114.16532,22.34625],[114.16532,22.34625],[114.16532,22.34625],[114.16532,22.34624],[114.16533,22.34624],[114.16533,22.34624],[114.16533,22.34624],[114.16534,22.34624],[114.16534,22.34623],[114.16535,22.34623],[114.16535,22.34623],[114.16537,22.34623],[114.16538,22.34623],[114.16539,22.34623],[114.16539,22.34623],[114.1654,22.34623],[114.16541,22.34623],[114.16541,22.34624],[114.16542,22.34624],[114.16543,22.34624],[114.16544,22.34625],[114.16545,22.34625],[114.16545,22.34626],[114.16546,22.34626],[114.16546,22.34627],[114.16558,22.34625],[114.16558,22.34624],[114.16559,22.34624],[114.1656,22.34624],[114.1656,22.34624],[114.16561,22.34624],[114.16561,22.34624],[114.16562,22.34625],[114.16562,22.34626],[114.16562,22.34626],[114.16563,22.34626],[114.16563,22.34626],[114.16563,22.34626],[114.16563,22.34626],[114.16564,22.34626],[114.16564,22.34626],[114.16565,22.34626],[114.16565,22.34625],[114.16565,22.34625],[114.16565,22.34625],[114.16565,22.34624],[114.16565,22.34618],[114.16565,22.34612],[114.16565,22.34611],[114.16565,22.3461],[114.16566,22.3461],[114.16566,22.34609],[114.16566,22.34609],[114.16566,22.34608],[114.16566,22.34608],[114.16566,22.34607],[114.16566,22.34606],[114.16567,22.34606],[114.16567,22.34605],[114.16567,22.34604],[114.16567,22.34604],[114.16567,22.34603],[114.16568,22.34602],[114.16568,22.34601],[114.16568,22.34601],[114.16568,22.346],[114.16568,22.34599],[114.16569,22.34599],[114.16569,22.34598],[114.16569,22.34597],[114.16569,22.34597],[114.16569,22.34596],[114.1657,22.34595],[114.1657,22.34594],[114.16573,22.34589],[114.16582,22.34594],[114.16583,22.34594],[114.16584,22.34592],[114.16585,22.34591],[114.16585,22.3459],[114.16586,22.3459],[114.16586,22.34589],[114.16586,22.34589],[114.16587,22.34588],[114.16587,22.34587],[114.16588,22.34587],[114.16588,22.34586],[114.16593,22.34579],[114.16593,22.34578],[114.16594,22.34578],[114.16594,22.34577],[114.16594,22.34577],[114.16595,22.34576],[114.16595,22.34575],[114.16596,22.34574],[114.16605,22.34563],[114.16605,22.34562],[114.16606,22.34562],[114.16606,22.34561],[114.16606,22.34561],[114.16607,22.3456],[114.16607,22.34559],[114.16607,22.34559],[114.16608,22.34558],[114.16608,22.34557],[114.16616,22.34548],[114.16617,22.34547],[114.16617,22.34547],[114.16618,22.34547],[114.16619,22.34546],[114.1662,22.34546],[114.16621,22.34546],[114.16622,22.34546],[114.16622,22.34546],[114.16623,22.34546],[114.16624,22.34546],[114.16625,22.34546],[114.16625,22.34546],[114.16626,22.34546],[114.16627,22.34546],[114.16628,22.34546],[114.16629,22.34547],[114.16629,22.34547],[114.1663,22.34547],[114.16631,22.34547],[114.16647,22.34551],[114.16653,22.34553],[114.16654,22.34554],[114.16654,22.34554],[114.16655,22.34555],[114.16658,22.34563],[114.16661,22.34575],[114.16661,22.34579],[114.16661,22.34579],[114.16661,22.3458],[114.16661,22.34581],[114.16661,22.34581],[114.16661,22.34582],[114.16661,22.34583],[114.16662,22.34583],[114.16662,22.34584],[114.16662,22.34585],[114.16662,22.34585],[114.16662,22.34586],[114.16662,22.34587],[114.16662,22.34588],[114.16662,22.34588],[114.16662,22.34589],[114.16662,22.3459],[114.16662,22.34591],[114.16661,22.34591],[114.16661,22.34592],[114.16661,22.34593],[114.16661,22.34593],[114.16661,22.34594],[114.16661,22.34595],[114.16661,22.34595],[114.16661,22.34596],[114.16661,22.34597],[114.16661,22.34598],[114.1666,22.34599],[114.1666,22.34599],[114.1666,22.346],[114.1666,22.34601],[114.1666,22.34601],[114.1666,22.34602],[114.1666,22.34603],[114.1666,22.34603],[114.1666,22.34604],[114.16661,22.34607],[114.16661,22.3461],[114.16662,22.34611],[114.16663,22.34612],[114.16664,22.34612],[114.16664,22.34613],[114.16665,22.34613],[114.16666,22.34613],[114.16666,22.34614],[114.16669,22.34614],[114.1667,22.34614],[114.1667,22.34614],[114.16671,22.34614],[114.16672,22.34614],[114.16673,22.34614],[114.16673,22.34614],[114.16674,22.34614],[114.16675,22.34614],[114.16676,22.34614],[114.16676,22.34614],[114.16677,22.34614],[114.16678,22.34614],[114.16679,22.34614],[114.16679,22.34614],[114.1668,22.34614],[114.16682,22.34613],[114.16682,22.34613],[114.16683,22.34613],[114.16684,22.34613],[114.16684,22.34613],[114.16685,22.34613],[114.16686,22.34613],[114.16687,22.34613],[114.16688,22.34613],[114.16688,22.34613],[114.16689,22.34614],[114.1669,22.34614],[114.1669,22.34614],[114.16691,22.34616],[114.16691,22.34616],[114.16691,22.34617],[114.16692,22.34617],[114.16692,22.34618],[114.16692,22.34619],[114.16692,22.3462],[114.16693,22.3462],[114.16693,22.34621],[114.16694,22.34622],[114.16694,22.34622],[114.16695,22.34623],[114.16695,22.34623],[114.16696,22.34623],[114.16697,22.34624],[114.16698,22.34624],[114.16698,22.34624],[114.16699,22.34624],[114.16699,22.34624],[114.167,22.34623],[114.16701,22.34623],[114.16702,22.34622],[114.16702,22.34622],[114.16703,22.34622],[114.16703,22.34621],[114.16704,22.34619],[114.16704,22.34619],[114.16705,22.34618],[114.16705,22.34617],[114.16706,22.34617],[114.16706,22.34616],[114.16707,22.34615],[114.16708,22.34615],[114.16708,22.34614],[114.16709,22.34614],[114.16709,22.34614],[114.1671,22.34614],[114.16712,22.34614],[114.16714,22.34614],[114.16714,22.34614],[114.16715,22.34614],[114.16715,22.34613],[114.16716,22.34613],[114.16716,22.34613],[114.16717,22.34612],[114.16718,22.34611],[114.16718,22.3461],[114.16719,22.34609],[114.1672,22.34608],[114.16721,22.34607],[114.16722,22.34606],[114.16722,22.34606],[114.16723,22.34605],[114.16725,22.34604],[114.16726,22.34604],[114.16727,22.34603],[114.16728,22.34603],[114.16729,22.34602],[114.1673,22.34601],[114.16731,22.34601],[114.16732,22.346],[114.16733,22.346],[114.16735,22.34599],[114.16736,22.34599],[114.16737,22.34598],[114.16738,22.34598],[114.16739,22.34597],[114.1674,22.34597],[114.16742,22.34596],[114.16743,22.34596],[114.16744,22.34596],[114.16746,22.34595],[114.16747,22.34595],[114.16748,22.34594],[114.16749,22.34594],[114.1675,22.34594],[114.16751,22.34593],[114.16753,22.34593],[114.16754,22.34593],[114.16755,22.34592],[114.16756,22.34592],[114.16757,22.34592],[114.16758,22.34591],[114.1676,22.34591],[114.16761,22.34591],[114.16762,22.3459],[114.16763,22.3459],[114.16764,22.3459],[114.16766,22.3459],[114.16767,22.34589],[114.16768,22.34589],[114.168,22.34584],[114.16801,22.34584],[114.16803,22.34583],[114.16804,22.34583],[114.16805,22.34583],[114.16806,22.34583],[114.16808,22.34582],[114.16809,22.34582],[114.1681,22.34582],[114.16811,22.34582],[114.16813,22.34581],[114.16814,22.34581],[114.16815,22.34581],[114.16816,22.3458],[114.16817,22.3458],[114.16818,22.3458],[114.1682,22.34579],[114.16821,22.34579],[114.16823,22.34579],[114.16824,22.34578],[114.16825,22.34578],[114.16827,22.34577],[114.16828,22.34577],[114.1683,22.34577],[114.16835,22.34577],[114.1684,22.34577],[114.16841,22.34577],[114.16842,22.34578],[114.16843,22.34578],[114.16844,22.34579],[114.16845,22.34581],[114.16846,22.34581],[114.16847,22.34582],[114.16848,22.34583],[114.16849,22.34584],[114.1685,22.34585],[114.16851,22.34585],[114.16852,22.34585],[114.16853,22.34586],[114.16854,22.34586],[114.16856,22.34586],[114.16857,22.34586],[114.16858,22.34585],[114.16859,22.34585],[114.1686,22.34585],[114.1686,22.34584],[114.16861,22.34583],[114.16862,22.34581],[114.16863,22.3458],[114.16863,22.3458],[114.16864,22.34579],[114.16865,22.34579],[114.16866,22.34579],[114.16867,22.34578],[114.16868,22.34579],[114.16869,22.34579],[114.16871,22.34579],[114.16872,22.34579],[114.16873,22.34579],[114.16874,22.3458],[114.16875,22.3458],[114.16877,22.3458],[114.16878,22.34581],[114.16879,22.34581],[114.1688,22.34581],[114.16881,22.34582],[114.16883,22.34582],[114.16884,22.34583],[114.16885,22.34583],[114.16886,22.34584],[114.16887,22.34584],[114.16888,22.34585],[114.16889,22.34585],[114.16891,22.34586],[114.16892,22.34586],[114.16893,22.34586],[114.16894,22.34587],[114.16895,22.34587],[114.16897,22.34587],[114.16898,22.34587],[114.16899,22.34588],[114.169,22.34588],[114.16901,22.34588],[114.16903,22.34588],[114.16904,22.34588],[114.16905,22.34588],[114.16906,22.34588],[114.16908,22.34588],[114.16909,22.34588],[114.1691,22.34588],[114.16911,22.34588],[114.16913,22.34588],[114.16914,22.34588],[114.16915,22.34587],[114.16916,22.34587],[114.16917,22.34587],[114.16919,22.34587],[114.1692,22.34586],[114.16924,22.34585],[114.16928,22.34585],[114.16939,22.34582],[114.16939,22.34582],[114.16942,22.34583],[114.16943,22.34583],[114.16944,22.34584],[114.16945,22.34584],[114.16947,22.34585],[114.16948,22.34585],[114.16949,22.34586],[114.16951,22.34587],[114.16952,22.34587],[114.16953,22.34588],[114.16954,22.34588],[114.16955,22.34589],[114.16957,22.3459],[114.16957,22.3459],[114.16958,22.3459],[114.16959,22.34591],[114.16959,22.34591],[114.16959,22.34592],[114.16959,22.34592],[114.16959,22.34594],[114.16959,22.34595],[114.16957,22.346],[114.16957,22.34601],[114.16956,22.34602],[114.16956,22.34603],[114.16956,22.34608],[114.16956,22.34609],[114.16956,22.34609],[114.16962,22.34617],[114.16963,22.34617],[114.16963,22.34617],[114.16964,22.34617],[114.16964,22.34618],[114.16965,22.34618],[114.16966,22.34618],[114.16967,22.34617],[114.16981,22.34612],[114.16982,22.34611],[114.16983,22.34611],[114.16984,22.34611],[114.16986,22.3461],[114.16987,22.3461],[114.16988,22.3461],[114.16992,22.3461],[114.16998,22.34609],[114.17005,22.34609],[114.17006,22.34609],[114.17008,22.34608],[114.17009,22.34608],[114.1701,22.34608],[114.17011,22.34608],[114.17013,22.34608],[114.17014,22.34608],[114.17015,22.34608],[114.17016,22.34608],[114.17017,22.34608],[114.17019,22.34607],[114.1702,22.34607],[114.17021,22.34606],[114.17022,22.34606],[114.17023,22.34605],[114.17023,22.34604],[114.17024,22.34603],[114.17024,22.34602],[114.17025,22.34601],[114.17025,22.346],[114.17026,22.34599],[114.17027,22.34598],[114.17028,22.34597],[114.17029,22.34597],[114.1703,22.34596],[114.17031,22.34596],[114.17033,22.34595],[114.17035,22.34594],[114.17036,22.34594],[114.17037,22.34593],[114.17038,22.34593],[114.17038,22.34592],[114.17039,22.34592],[114.17039,22.34592],[114.17039,22.34592],[114.1704,22.34592],[114.1704,22.34592],[114.17041,22.34592],[114.17041,22.34592],[114.17042,22.34593],[114.17042,22.34593],[114.17043,22.34593],[114.17043,22.34594],[114.17044,22.34594],[114.17044,22.34595],[114.17045,22.34596],[114.17045,22.34597],[114.17054,22.34605],[114.17056,22.34606],[114.17059,22.34608],[114.1706,22.34608],[114.17061,22.34608],[114.17061,22.34608],[114.17062,22.34608],[114.17062,22.34608],[114.17064,22.34608],[114.17066,22.34607],[114.17067,22.34607],[114.17068,22.34606],[114.17069,22.34606],[114.17071,22.34607],[114.17072,22.34607],[114.17073,22.34607],[114.17074,22.34608],[114.17074,22.34609],[114.17075,22.34609],[114.17075,22.3461],[114.17075,22.34611],[114.17075,22.34613],[114.17076,22.34614],[114.17077,22.34615],[114.17078,22.34616],[114.17079,22.34616],[114.1708,22.34616],[114.17082,22.34617],[114.17083,22.34617],[114.17084,22.34617],[114.17085,22.34618],[114.17086,22.34618],[114.17087,22.34619],[114.17089,22.34621],[114.1709,22.34622],[114.1709,22.34623],[114.17091,22.34624],[114.17092,22.34625],[114.17092,22.34626],[114.17093,22.34626],[114.17094,22.34628],[114.17095,22.34629],[114.17095,22.34629],[114.17095,22.34629],[114.17096,22.34629],[114.17097,22.34629],[114.17098,22.34629],[114.171,22.34629],[114.17101,22.34629],[114.17102,22.34629],[114.17103,22.34629],[114.17105,22.3463],[114.17107,22.34631],[114.17108,22.34631],[114.17117,22.34638],[114.17118,22.34638],[114.17119,22.34639],[114.1712,22.34639],[114.17121,22.3464],[114.17122,22.3464],[114.17124,22.34641],[114.17125,22.34642],[114.17126,22.34642],[114.17127,22.34643],[114.17128,22.34643],[114.1713,22.34644],[114.17131,22.34644],[114.17132,22.34645],[114.17133,22.34645],[114.17134,22.34646],[114.17136,22.34646],[114.17137,22.34647],[114.17138,22.34648],[114.17139,22.34649],[114.1714,22.34649],[114.17141,22.3465],[114.17142,22.34651],[114.17143,22.34652],[114.17144,22.34652],[114.17145,22.34653],[114.17146,22.34654],[114.17148,22.34655],[114.17149,22.34656],[114.1715,22.34656],[114.17151,22.34657],[114.17153,22.34657],[114.17154,22.34657],[114.17155,22.34656],[114.17155,22.34656],[114.17157,22.34656],[114.17157,22.34655],[114.17158,22.34654],[114.17159,22.34653],[114.1716,22.34652],[114.1716,22.34651],[114.1716,22.34651],[114.1716,22.3465],[114.1716,22.34648],[114.17161,22.34647],[114.17161,22.34647],[114.17161,22.34647],[114.17162,22.34647],[114.17162,22.34647],[114.17163,22.34647],[114.17164,22.34648],[114.17165,22.34648],[114.17165,22.34648],[114.17165,22.34648],[114.17166,22.34647],[114.1718,22.34641],[114.17181,22.3464],[114.17182,22.3464],[114.17183,22.34639],[114.17186,22.34639],[114.17187,22.34638],[114.17188,22.34638],[114.17189,22.34637],[114.17191,22.34636],[114.17192,22.34636],[114.17193,22.34635],[114.17194,22.34635],[114.17195,22.34634],[114.17196,22.34634],[114.17197,22.34634],[114.17199,22.34633],[114.172,22.34633],[114.17201,22.34633],[114.17202,22.34632],[114.17203,22.34632],[114.17205,22.34632],[114.17216,22.34632],[114.17217,22.34632],[114.17217,22.34632],[114.17218,22.34632],[114.17219,22.34631],[114.17219,22.34631],[114.1722,22.3463],[114.17221,22.3463],[114.17222,22.3463],[114.17223,22.3463],[114.17224,22.3463],[114.17225,22.34631],[114.17225,22.34631],[114.17226,22.34631],[114.17227,22.34632],[114.17228,22.34632],[114.17229,22.34632],[114.1723,22.34632],[114.17239,22.34633],[114.17241,22.34634],[114.17243,22.34633],[114.17244,22.34633],[114.17245,22.34632],[114.17246,22.34632],[114.17247,22.34631],[114.17253,22.34628],[114.17254,22.34627],[114.17254,22.34627],[114.17256,22.34626],[114.17258,22.34626],[114.17261,22.34625],[114.17263,22.34626],[114.17264,22.34628],[114.17266,22.3463],[114.17266,22.34631],[114.17267,22.34632],[114.17266,22.34633],[114.17266,22.34635],[114.17266,22.34635],[114.17266,22.34636],[114.17266,22.34636],[114.17266,22.34637],[114.17268,22.3464],[114.17268,22.3464],[114.17271,22.34641],[114.17271,22.34642],[114.17274,22.34643],[114.17275,22.34645],[114.17278,22.34648],[114.1728,22.3465],[114.17282,22.34653],[114.17284,22.34654],[114.17285,22.34655],[114.17286,22.34656],[114.17289,22.34658],[114.1729,22.34659],[114.17293,22.34662],[114.17297,22.34665],[114.17299,22.34667],[114.173,22.34668],[114.17304,22.34672],[114.17305,22.34673],[114.17307,22.34675],[114.17308,22.34677],[114.17309,22.34677],[114.17309,22.34678],[114.1731,22.34678],[114.17311,22.3468],[114.17313,22.34681],[114.17318,22.34684],[114.17318,22.34685],[114.17319,22.34685],[114.17319,22.34685],[114.17319,22.34686],[114.17319,22.34686],[114.17318,22.34688],[114.17317,22.34689],[114.17316,22.34692],[114.17316,22.34693],[114.17314,22.34695],[114.17313,22.34696],[114.17313,22.34697],[114.17313,22.34697],[114.17313,22.34698],[114.17313,22.34698],[114.17314,22.34698],[114.17315,22.34698],[114.17317,22.34699],[114.17318,22.34699],[114.17318,22.34698],[114.1732,22.34698],[114.1732,22.34697],[114.17321,22.34696],[114.17324,22.34693],[114.17325,22.34691],[114.17326,22.3469],[114.17327,22.3469],[114.17328,22.3469],[114.17329,22.3469],[114.17331,22.34691],[114.17334,22.34694],[114.17337,22.34695],[114.17339,22.34697],[114.1734,22.34698],[114.17341,22.34699],[114.17341,22.347],[114.17342,22.34701],[114.17342,22.34702],[114.17342,22.34704],[114.17342,22.34706],[114.17341,22.34708],[114.1734,22.34711],[114.17339,22.34713],[114.17338,22.34716],[114.17332,22.34727],[114.17331,22.34729],[114.17327,22.34735],[114.17326,22.34736],[114.17325,22.34739],[114.17323,22.34745],[114.17323,22.34747],[114.17322,22.34749],[114.17322,22.34752],[114.17322,22.34755],[114.17322,22.34758],[114.17322,22.3476],[114.17322,22.34761],[114.17322,22.34762],[114.17321,22.34766],[114.1732,22.34768],[114.17319,22.3477],[114.17317,22.34774],[114.17315,22.34777],[114.17313,22.34779],[114.17311,22.34781],[114.17309,22.34783],[114.17305,22.34785],[114.17305,22.34786],[114.17304,22.34786],[114.17296,22.3479],[114.17295,22.34791],[114.17294,22.34792],[114.17294,22.34793],[114.17294,22.34793],[114.17294,22.34794],[114.17295,22.34794],[114.173,22.34794],[114.17303,22.34795],[114.17304,22.34795],[114.17307,22.34796],[114.1731,22.34797],[114.17311,22.34797],[114.17311,22.34797],[114.17312,22.34798],[114.17315,22.34799],[114.1732,22.34801],[114.17325,22.34803],[114.17331,22.34805],[114.17331,22.34805],[114.17332,22.34805],[114.17332,22.34806],[114.17333,22.34806],[114.17333,22.34807],[114.17334,22.34807],[114.17334,22.34808],[114.17334,22.34808],[114.17335,22.34811],[114.17335,22.34812],[114.17338,22.34817],[114.17339,22.34819],[114.1734,22.3482],[114.17341,22.3482],[114.17343,22.34823],[114.17344,22.34824],[114.17346,22.34826],[114.17346,22.34828],[114.17347,22.3483],[114.17348,22.34834],[114.17348,22.34835],[114.17349,22.34836],[114.1735,22.34838],[114.17351,22.34839],[114.17351,22.34839],[114.17352,22.34839],[114.17353,22.34838],[114.17354,22.34838],[114.17356,22.34836],[114.17359,22.34833],[114.17362,22.3483],[114.17362,22.3483],[114.17364,22.34828],[114.17367,22.34824],[114.17369,22.34822],[114.17371,22.3482],[114.17372,22.34819],[114.17372,22.34819],[114.17374,22.34817],[114.17374,22.34817],[114.17376,22.34815],[114.17379,22.34813],[114.17382,22.3481],[114.17384,22.34809],[114.17385,22.34808],[114.17386,22.34808],[114.17387,22.34807],[114.17388,22.34807],[114.17393,22.34805],[114.17393,22.34805],[114.17402,22.34802],[114.17407,22.348],[114.1741,22.34799],[114.1741,22.34799],[114.17411,22.34799],[114.17413,22.34798],[114.17415,22.34797],[114.17417,22.34797],[114.17423,22.34796],[114.17426,22.34796],[114.17427,22.34796],[114.17429,22.34796],[114.17431,22.34796],[114.17434,22.34797],[114.17437,22.34798],[114.17438,22.34798],[114.17439,22.34799],[114.1744,22.348],[114.17444,22.34803],[114.17444,22.34804],[114.17445,22.34805],[114.17446,22.34806],[114.17447,22.34808],[114.17448,22.3481],[114.1745,22.34814],[114.17451,22.34819],[114.17452,22.3482],[114.17453,22.34822],[114.17453,22.34822],[114.17454,22.34823],[114.17455,22.34823],[114.17457,22.34825],[114.17459,22.34827],[114.17461,22.34828],[114.17462,22.34828],[114.17464,22.34828],[114.17464,22.34828],[114.17468,22.34831],[114.17474,22.34835],[114.17477,22.34836],[114.1748,22.34837],[114.17482,22.34838],[114.17483,22.34839],[114.17485,22.34839],[114.17486,22.3484],[114.1749,22.3484],[114.17492,22.34841],[114.17494,22.34842],[114.17496,22.34843],[114.17496,22.34844],[114.17496,22.34844],[114.17497,22.34846],[114.17498,22.34848],[114.17498,22.3485],[114.175,22.34856],[114.175,22.34857],[114.175,22.34861],[114.17501,22.34865],[114.17501,22.34866],[114.17501,22.34867],[114.17501,22.34867],[114.17501,22.34868],[114.17501,22.34868],[114.17502,22.34868],[114.17503,22.3487],[114.17504,22.34871],[114.17504,22.34872],[114.17505,22.34872],[114.17506,22.34874],[114.17507,22.34875],[114.17508,22.34875],[114.17508,22.34876],[114.1751,22.34877],[114.17512,22.34878],[114.17512,22.34879],[114.17513,22.34879],[114.17513,22.34879],[114.17515,22.3488],[114.17516,22.3488],[114.17519,22.34882],[114.17519,22.34882],[114.17521,22.34884],[114.17523,22.34887],[114.17524,22.34888],[114.17525,22.34888],[114.17526,22.34889],[114.17526,22.34889],[114.17531,22.3489],[114.17531,22.34891],[114.17536,22.34893],[114.17537,22.34894],[114.17537,22.34895],[114.17537,22.34896],[114.17538,22.34896],[114.17538,22.34897],[114.17539,22.34899],[114.17541,22.349],[114.17542,22.34901],[114.17545,22.34904],[114.17545,22.34904],[114.17545,22.34904],[114.17547,22.34906],[114.17548,22.34906],[114.17549,22.34907],[114.1755,22.34907],[114.17556,22.3491],[114.17557,22.34911],[114.17559,22.34911],[114.17561,22.3491],[114.17562,22.34909],[114.17565,22.34908],[114.17565,22.34907],[114.17568,22.34905],[114.1757,22.34904],[114.1757,22.34904],[114.17571,22.34904],[114.17572,22.34903],[114.17572,22.34903],[114.17573,22.34903],[114.17576,22.34902],[114.17577,22.34901],[114.17578,22.34901],[114.17578,22.34901],[114.17579,22.349],[114.1758,22.34899],[114.1758,22.34899],[114.1758,22.34899],[114.17582,22.34899],[114.17584,22.34899],[114.17585,22.34899],[114.17585,22.34899],[114.17589,22.349],[114.1759,22.34901],[114.17592,22.34902],[114.17594,22.34905],[114.17597,22.3491],[114.17598,22.34911],[114.17599,22.34912],[114.176,22.34912],[114.17601,22.34912],[114.17601,22.34913],[114.17602,22.34913],[114.17602,22.34912],[114.17603,22.34912],[114.17603,22.34911],[114.17603,22.34909],[114.17604,22.34908],[114.17605,22.34905],[114.17609,22.349],[114.17612,22.34896],[114.17614,22.34895],[114.17614,22.34894],[114.17618,22.34892],[114.1762,22.34891],[114.17621,22.34891],[114.17622,22.3489],[114.17623,22.34889],[114.17624,22.34888],[114.17625,22.34888],[114.17626,22.34889],[114.17627,22.34889],[114.17628,22.34891],[114.17628,22.34893],[114.17629,22.34894],[114.17631,22.34896],[114.17633,22.34899],[114.17634,22.34899],[114.17636,22.34901],[114.17636,22.34902],[114.17637,22.34902],[114.17639,22.34905],[114.17641,22.34906],[114.17645,22.34908],[114.17648,22.34911],[114.17649,22.34911],[114.17651,22.34913],[114.17652,22.34914],[114.17652,22.34915],[114.17652,22.34916],[114.17652,22.34918],[114.17653,22.34919],[114.17655,22.3492],[114.17657,22.34921],[114.17658,22.34922],[114.17659,22.34922],[114.1766,22.34922],[114.17662,22.34922],[114.17666,22.34922],[114.1767,22.34923],[114.17671,22.34923],[114.17673,22.34925],[114.17675,22.34926],[114.17676,22.34926],[114.17679,22.34927],[114.17681,22.34927],[114.17682,22.34927],[114.17684,22.34928],[114.17685,22.34928],[114.17687,22.3493],[114.17688,22.3493],[114.17689,22.3493],[114.17689,22.3493],[114.1769,22.3493],[114.1769,22.3493],[114.1769,22.34928],[114.17691,22.34924],[114.17691,22.34922],[114.17692,22.34919],[114.17692,22.34917],[114.17692,22.34915],[114.17692,22.34914],[114.17692,22.3491],[114.17692,22.34907],[114.17692,22.34905],[114.17693,22.34903],[114.17694,22.349],[114.17696,22.34895],[114.17697,22.34893],[114.17698,22.34889],[114.17701,22.34885],[114.17704,22.34882],[114.17704,22.34881],[114.17706,22.34879],[114.17707,22.34878],[114.17707,22.34878],[114.17708,22.34876],[114.1771,22.34875],[114.17711,22.34875],[114.17712,22.34874],[114.17714,22.34872],[114.17714,22.34872],[114.17714,22.34871],[114.17716,22.3487],[114.17717,22.3487],[114.17719,22.3487],[114.1772,22.3487],[114.17723,22.3487],[114.17724,22.3487],[114.17728,22.34871],[114.17729,22.34871],[114.17734,22.34873],[114.17735,22.34874],[114.1774,22.34876],[114.17742,22.34877],[114.17747,22.34879],[114.17754,22.34883],[114.17756,22.34884],[114.17759,22.34885],[114.17759,22.34885],[114.1776,22.34885],[114.17761,22.34886],[114.17765,22.34885],[114.1777,22.34885],[114.17773,22.34886],[114.17775,22.34887],[114.17777,22.34887],[114.17778,22.34888],[114.17779,22.34889],[114.17782,22.34891],[114.17783,22.34892],[114.17786,22.34894],[114.17789,22.34895],[114.17789,22.34896],[114.17792,22.34898],[114.17794,22.34901],[114.17794,22.34901],[114.17795,22.34901],[114.17797,22.349],[114.17798,22.349],[114.17799,22.34899],[114.17799,22.34899],[114.178,22.34899],[114.17801,22.349],[114.17801,22.349],[114.17804,22.34902],[114.17805,22.34902],[114.17806,22.34902],[114.17807,22.34902],[114.17808,22.34902],[114.17808,22.349],[114.1781,22.34899],[114.17811,22.34899],[114.17813,22.34897],[114.17814,22.34896],[114.17816,22.34896],[114.17816,22.34895],[114.17817,22.34895],[114.17817,22.34894],[114.17817,22.34894],[114.17818,22.34893],[114.17817,22.34891],[114.17817,22.34887],[114.17817,22.34886],[114.17817,22.34886],[114.17817,22.34884],[114.17818,22.34883],[114.17818,22.34882],[114.17819,22.34881],[114.1782,22.3488],[114.17822,22.34879],[114.17824,22.34879],[114.17824,22.34879],[114.17826,22.3488],[114.17828,22.34881],[114.17833,22.34883],[114.17834,22.34884],[114.17836,22.34885],[114.17837,22.34885],[114.17838,22.34885],[114.17839,22.34885],[114.17839,22.34885],[114.1784,22.34883],[114.17842,22.34879],[114.17843,22.34876],[114.17844,22.34875],[114.17845,22.3487],[114.17846,22.34867],[114.17846,22.34866],[114.17846,22.34865],[114.17846,22.34864],[114.17847,22.34863],[114.17848,22.34862],[114.17848,22.34862],[114.17849,22.34861],[114.17851,22.34861],[114.17851,22.34861],[114.17851,22.3486],[114.17852,22.3486],[114.17853,22.34861],[114.17858,22.34861],[114.17859,22.34862],[114.17861,22.34863],[114.17862,22.34863],[114.17865,22.34863],[114.17866,22.34863],[114.17873,22.34863],[114.17874,22.34864],[114.17875,22.34865],[114.17878,22.34866],[114.1788,22.34867],[114.17881,22.34867],[114.17881,22.34868],[114.17881,22.34869],[114.17881,22.34871],[114.17882,22.34875],[114.17882,22.34877],[114.17883,22.34877],[114.17883,22.34879],[114.17884,22.3488],[114.17885,22.34881],[114.17886,22.34882],[114.17887,22.34883],[114.17887,22.34884],[114.17887,22.34885],[114.17886,22.34887],[114.17886,22.3489],[114.17885,22.34892],[114.17885,22.34894],[114.17886,22.34895],[114.17886,22.34897],[114.17887,22.34902],[114.17888,22.34903],[114.17888,22.34905],[114.17889,22.34907],[114.1789,22.34907],[114.1789,22.34908],[114.17891,22.34908],[114.17892,22.34908],[114.17893,22.34908],[114.17896,22.34907],[114.17897,22.34907],[114.17901,22.34909],[114.17905,22.3491],[114.17906,22.3491],[114.17907,22.34909],[114.17908,22.34909],[114.17909,22.34908],[114.17909,22.34908],[114.17909,22.34907],[114.1791,22.34907],[114.1791,22.34907],[114.17912,22.34906],[114.17915,22.34905],[114.17919,22.34904],[114.17919,22.34904],[114.1792,22.34903],[114.17921,22.34903],[114.17922,22.34902],[114.17923,22.34901],[114.17925,22.349],[114.17926,22.34899],[114.17928,22.34898],[114.17928,22.34898],[114.17929,22.34897],[114.1793,22.34897],[114.17932,22.34897],[114.17935,22.34897],[114.17938,22.34898],[114.17939,22.34899],[114.17941,22.34899],[114.17942,22.34899],[114.17936,22.34907],[114.17933,22.3491],[114.17935,22.34911],[114.17938,22.34912],[114.17939,22.34912],[114.17942,22.34911],[114.17945,22.3491],[114.17946,22.3491],[114.17948,22.34909],[114.17957,22.34904],[114.17959,22.34903],[114.17962,22.34901],[114.17965,22.349],[114.17969,22.349],[114.17978,22.34899],[114.17981,22.34898],[114.17994,22.34895],[114.18009,22.3489],[114.18013,22.34889],[114.18021,22.34888],[114.18028,22.34888],[114.18031,22.34889],[114.18033,22.3489],[114.18039,22.34893],[114.18041,22.34894],[114.18042,22.34895],[114.18043,22.34897],[114.18046,22.349],[114.1805,22.34905],[114.1805,22.34906],[114.18051,22.34912],[114.18053,22.34915],[114.18054,22.34917],[114.1806,22.34921],[114.18063,22.34923],[114.18066,22.34925],[114.18069,22.34926],[114.18071,22.34926],[114.18072,22.34926],[114.18078,22.34927],[114.18115,22.34923],[114.18118,22.34923],[114.18122,22.34923],[114.18123,22.34923],[114.18126,22.34924],[114.18129,22.34926],[114.1813,22.34927],[114.18133,22.3493],[114.18134,22.34931],[114.18135,22.34932],[114.18139,22.34934],[114.18141,22.34935],[114.18142,22.34935],[114.1815,22.34936],[114.18153,22.34936],[114.18155,22.34937],[114.18156,22.34938],[114.18157,22.34939],[114.18158,22.34941],[114.18158,22.34943],[114.18158,22.34947],[114.18159,22.34951],[114.18159,22.34951],[114.1816,22.34953],[114.18161,22.34955],[114.18164,22.34958],[114.18165,22.34958],[114.18169,22.3496],[114.18173,22.3496],[114.18179,22.34961],[114.18184,22.34962],[114.18186,22.34963],[114.18193,22.34967],[114.18202,22.34974],[114.18209,22.34981],[114.18214,22.34987],[114.1822,22.34991],[114.18222,22.34992],[114.18252,22.35],[114.18319,22.35018],[114.18322,22.35018],[114.18323,22.35018],[114.18327,22.35018],[114.18337,22.35016],[114.18342,22.35015],[114.18349,22.35015],[114.18354,22.35015],[114.1836,22.35016],[114.18365,22.35017],[114.18368,22.35017],[114.18385,22.35017],[114.18395,22.35016],[114.18396,22.35016],[114.18402,22.35015],[114.18409,22.35011],[114.18411,22.3501],[114.18417,22.35009],[114.18424,22.3501],[114.18428,22.3501],[114.1843,22.3501],[114.18434,22.35009],[114.1844,22.35006],[114.18445,22.35003],[114.18451,22.34997],[114.18462,22.34987],[114.18463,22.34985],[114.18466,22.34981],[114.18468,22.34978],[114.18471,22.34973],[114.18472,22.34972],[114.18474,22.34971],[114.18475,22.34969],[114.18477,22.34968],[114.18478,22.34968],[114.18481,22.34968],[114.18484,22.34967],[114.18485,22.34968],[114.18487,22.34969],[114.18489,22.34969],[114.1849,22.3497],[114.1849,22.3497],[114.18493,22.34975],[114.18497,22.34981],[114.18501,22.34991],[114.18501,22.34992],[114.18501,22.34993],[114.185,22.34997],[114.185,22.34999],[114.18499,22.35004],[114.18497,22.35007],[114.18497,22.35009],[114.18497,22.35014],[114.18499,22.35019],[114.18499,22.3502],[114.18502,22.35022],[114.18505,22.35025],[114.18506,22.35025],[114.18508,22.35026],[114.18513,22.35028],[114.18515,22.35028],[114.18518,22.35028],[114.18519,22.35028],[114.18555,22.35029],[114.18567,22.35028],[114.18581,22.35028],[114.18591,22.35027],[114.186,22.35026],[114.18622,22.35024],[114.18628,22.35023],[114.1864,22.35022],[114.18649,22.35022],[114.18653,22.35023],[114.18656,22.35023],[114.18666,22.35025],[114.1867,22.35026],[114.18675,22.35026],[114.18685,22.35026],[114.18691,22.35026],[114.18695,22.35025],[114.18702,22.35024],[114.18704,22.35024],[114.1871,22.35022],[114.18715,22.35019],[114.18718,22.35018],[114.18734,22.35011],[114.18746,22.35006],[114.18748,22.35006],[114.18761,22.35003],[114.18776,22.35],[114.18779,22.35],[114.18786,22.34999],[114.1879,22.34999],[114.18792,22.35],[114.18803,22.35001],[114.18806,22.35002],[114.18809,22.35003],[114.18817,22.35007],[114.18833,22.35016],[114.18839,22.35018],[114.18845,22.35021],[114.18852,22.35023],[114.18854,22.35024],[114.1886,22.35026],[114.18868,22.35027],[114.18876,22.35027],[114.18881,22.35026],[114.18883,22.35026],[114.18884,22.35026],[114.18889,22.35024],[114.18894,22.35023],[114.18895,22.35022],[114.18896,22.35022],[114.18899,22.35021],[114.18902,22.35019],[114.18908,22.35016],[114.18909,22.35015],[114.18912,22.35012],[114.18916,22.35009],[114.18921,22.35006],[114.18922,22.35004],[114.18925,22.35003],[114.18927,22.35002],[114.18933,22.34998],[114.18938,22.34997],[114.18939,22.34996],[114.18942,22.34996],[114.18948,22.34994],[114.18948,22.34992],[114.18956,22.34991],[114.18967,22.34989],[114.19006,22.34993],[114.19055,22.34974],[114.19099,22.34974],[114.1913,22.34969],[114.19143,22.34965],[114.19152,22.34966],[114.19156,22.34971],[114.19157,22.3498],[114.19152,22.34992],[114.19141,22.35008],[114.19139,22.35015],[114.19141,22.35019],[114.19166,22.35049],[114.19174,22.35064],[114.19176,22.35075],[114.19172,22.35085],[114.19156,22.3511],[114.19145,22.35124],[114.19151,22.35134],[114.19156,22.35148],[114.19158,22.35156],[114.1916,22.35165],[114.19154,22.35175],[114.1915,22.35181],[114.19144,22.35192],[114.19137,22.35203],[114.19129,22.35211],[114.19127,22.35218],[114.19131,22.35229],[114.1913,22.35243],[114.19125,22.35262],[114.19103,22.35299],[114.19102,22.35305],[114.19117,22.35301],[114.19125,22.35302],[114.19134,22.35304],[114.19142,22.35303],[114.19178,22.35285],[114.19193,22.35283],[114.19204,22.3528],[114.19218,22.35276],[114.19239,22.3527],[114.19252,22.35267],[114.19266,22.35266],[114.19282,22.35271],[114.19291,22.35276],[114.19295,22.35285],[114.19298,22.35312],[114.19291,22.35336],[114.19297,22.35344],[114.19299,22.35354],[114.19297,22.35364],[114.19294,22.35374],[114.19299,22.35381],[114.19312,22.3538],[114.19331,22.35374],[114.19349,22.35369],[114.19361,22.35364],[114.1937,22.35362],[114.1938,22.35361],[114.19387,22.35354],[114.19399,22.35349],[114.19411,22.35339],[114.19418,22.35338],[114.19453,22.3534],[114.19459,22.35339],[114.19464,22.35335],[114.19476,22.35328],[114.19491,22.35312],[114.19511,22.35303],[114.19524,22.35301],[114.19542,22.353],[114.19553,22.353],[114.19566,22.353],[114.19587,22.35297],[114.19601,22.35293],[114.19619,22.35287],[114.19628,22.35285],[114.19637,22.35277],[114.19644,22.35269],[114.19649,22.35257],[114.19662,22.35251],[114.19672,22.35248],[114.19685,22.3525],[114.19695,22.35252],[114.197,22.3526],[114.19707,22.3527],[114.19724,22.35299],[114.19728,22.35311],[114.19728,22.35329],[114.19729,22.35339],[114.19739,22.35377],[114.19741,22.35394],[114.19741,22.35411],[114.19745,22.35413],[114.19748,22.35412],[114.19754,22.35408],[114.19764,22.35409],[114.19781,22.354],[114.19795,22.35392],[114.19803,22.3539],[114.19809,22.35391],[114.19813,22.35394],[114.19819,22.35402],[114.1982,22.35412],[114.1982,22.35419],[114.19816,22.3543],[114.19816,22.35437],[114.19819,22.35443],[114.19828,22.35449],[114.19833,22.35451],[114.19841,22.35457],[114.19852,22.35465],[114.1986,22.35471],[114.19868,22.3548],[114.19879,22.35493],[114.19893,22.35512],[114.19899,22.35521],[114.19899,22.35522],[114.1991,22.35528],[114.19915,22.35528],[114.19923,22.35519],[114.19928,22.35512],[114.1993,22.35508],[114.19933,22.35505],[114.19937,22.35503],[114.19945,22.35506],[114.19943,22.35512],[114.19942,22.35516],[114.19937,22.35522],[114.19933,22.35529],[114.1992,22.3554],[114.19896,22.35551],[114.19891,22.35553],[114.19891,22.35556],[114.19896,22.35557],[114.19904,22.35556],[114.19939,22.35549],[114.19955,22.35542],[114.19969,22.35534],[114.19978,22.35525],[114.19987,22.35512],[114.19988,22.35512],[114.19996,22.35494],[114.20001,22.35483],[114.20006,22.35473],[114.20011,22.35465],[114.2002,22.35461],[114.20029,22.3546],[114.20042,22.35462],[114.20054,22.35467],[114.20071,22.35469],[114.20081,22.35465],[114.20093,22.35456],[114.20114,22.35445],[114.20123,22.35443],[114.20133,22.35446],[114.20155,22.35453],[114.20157,22.35453],[114.20212,22.35469],[114.20224,22.35469],[114.20235,22.35463],[114.20245,22.35448],[114.20248,22.35444],[114.20264,22.35438],[114.20284,22.35436],[114.20301,22.35434],[114.20311,22.35435],[114.20325,22.3544],[114.20334,22.35442],[114.20341,22.35441],[114.20359,22.35435],[114.20367,22.35435],[114.20379,22.3544],[114.20396,22.35452],[114.20407,22.3546],[114.20421,22.35471],[114.20428,22.35476],[114.20441,22.35485],[114.20455,22.35493],[114.20473,22.35497],[114.20494,22.35497],[114.205,22.35497],[114.20516,22.35496],[114.20516,22.35497],[114.20625,22.35492],[114.20642,22.35486],[114.20653,22.35477],[114.20656,22.35475],[114.20664,22.35468],[114.20664,22.35468],[114.20666,22.35466],[114.20672,22.35464],[114.20673,22.35464],[114.20675,22.35464],[114.20677,22.35464],[114.20678,22.35464],[114.20685,22.35465],[114.20691,22.35468],[114.20708,22.35483],[114.20719,22.35493],[114.20725,22.35497],[114.20733,22.355],[114.20768,22.35509],[114.20772,22.35509],[114.20782,22.3551],[114.20785,22.3551],[114.20791,22.35509],[114.20794,22.3551],[114.20798,22.3551],[114.20803,22.35513],[114.2081,22.35516],[114.20817,22.35521],[114.20865,22.3556],[114.20871,22.35565],[114.20887,22.3558],[114.20891,22.35583],[114.20895,22.35586],[114.20899,22.35588],[114.20905,22.35591],[114.20909,22.35591],[114.2091,22.35592],[114.20919,22.35591],[114.20954,22.35583],[114.2096,22.35582],[114.20962,22.35581],[114.20966,22.35578],[114.20968,22.35577],[114.20971,22.35574],[114.2098,22.35561],[114.20984,22.35557],[114.20989,22.35553],[114.20995,22.35549],[114.21007,22.35543],[114.21012,22.35541],[114.21015,22.3554],[114.21022,22.35539],[114.21027,22.35538],[114.21037,22.35538],[114.2105,22.3554],[114.21057,22.35539],[114.21066,22.35536],[114.21081,22.35525],[114.21088,22.35522],[114.21089,22.35521],[114.21089,22.35521],[114.21097,22.3552],[114.21102,22.3552],[114.21109,22.35521],[114.21117,22.35524],[114.21136,22.35531],[114.21155,22.35536],[114.21168,22.35538],[114.21188,22.35538],[114.21196,22.35539],[114.21207,22.35544],[114.21251,22.3556],[114.21261,22.35563],[114.21269,22.35566],[114.21273,22.35566],[114.2128,22.35567],[114.21307,22.35572],[114.21312,22.35574],[114.2132,22.35576],[114.21332,22.35578],[114.21335,22.35578],[114.21348,22.35579],[114.21351,22.35579],[114.21353,22.3558],[114.21357,22.3558],[114.21379,22.35581],[114.21417,22.3558],[114.2142,22.35587],[114.21417,22.35594],[114.21413,22.35605],[114.21413,22.35607],[114.21413,22.35608],[114.21415,22.35614],[114.21415,22.35618],[114.21415,22.35624],[114.21413,22.35632],[114.21409,22.3564],[114.21405,22.35647],[114.21402,22.35655],[114.21397,22.35661],[114.21394,22.3568],[114.21392,22.35684],[114.21382,22.35695],[114.21381,22.35698],[114.2138,22.35701],[114.21381,22.35703],[114.21383,22.35704],[114.21386,22.35704],[114.21391,22.35705],[114.21393,22.35704],[114.21399,22.35703],[114.2141,22.35697],[114.21426,22.35689],[114.21432,22.35688],[114.21433,22.35688],[114.21458,22.3569],[114.21462,22.35691],[114.21463,22.35692],[114.21466,22.35694],[114.21467,22.35695],[114.21466,22.35695],[114.21459,22.35696],[114.21458,22.35697],[114.21458,22.35697],[114.21445,22.35701],[114.21434,22.35711],[114.2143,22.35716],[114.21428,22.35718],[114.21428,22.35719],[114.21429,22.35721],[114.21431,22.35724],[114.21432,22.35725],[114.21435,22.35728],[114.21438,22.3573],[114.2145,22.35731],[114.21458,22.3573],[114.21464,22.3573],[114.21487,22.35727],[114.21518,22.35723],[114.21527,22.35723],[114.21527,22.35723],[114.21546,22.3572],[114.21555,22.35719],[114.21558,22.35719],[114.21597,22.35718],[114.2161,22.35717],[114.21611,22.35717],[114.21645,22.3572],[114.21651,22.35722],[114.21662,22.35725],[114.21679,22.35732],[114.21685,22.35734],[114.21692,22.35737],[114.21709,22.3575],[114.2171,22.35751],[114.21716,22.35756],[114.21722,22.35763],[114.21723,22.35764],[114.21726,22.35769],[114.21736,22.35783],[114.21738,22.35789],[114.2174,22.35793],[114.21744,22.35798],[114.21744,22.35799],[114.21747,22.35802],[114.21749,22.35803],[114.21754,22.35807],[114.21763,22.3581],[114.21764,22.35811],[114.2178,22.35813],[114.21808,22.35816],[114.21808,22.35817],[114.21853,22.35817],[114.21906,22.3582],[114.22234,22.35841],[114.22241,22.35828],[114.22242,22.35827],[114.22242,22.35821],[114.22241,22.35815],[114.2224,22.35811],[114.22241,22.35798],[114.22241,22.35794],[114.22238,22.35783],[114.22235,22.35769],[114.22229,22.35752],[114.22228,22.35745],[114.22228,22.35735],[114.22228,22.35734],[114.22228,22.35733],[114.2223,22.35725],[114.22234,22.35717],[114.22236,22.35713],[114.22239,22.3571],[114.22244,22.35703],[114.22247,22.357],[114.22247,22.35698],[114.22248,22.35697],[114.22248,22.35694],[114.22247,22.35691],[114.22246,22.35687],[114.22254,22.35695],[114.22255,22.35695],[114.22255,22.35695],[114.22255,22.35696],[114.22256,22.35696],[114.22256,22.35696],[114.22256,22.35697],[114.22257,22.35698],[114.22258,22.35699],[114.22259,22.357],[114.22259,22.357],[114.22259,22.357],[114.2226,22.35701],[114.22261,22.35702],[114.22261,22.35702],[114.22261,22.35702],[114.22262,22.35703],[114.22263,22.35704],[114.22263,22.35704],[114.22264,22.35705],[114.22265,22.35706],[114.22265,22.35706],[114.22266,22.35706],[114.22266,22.35707],[114.22267,22.35707],[114.22268,22.35708],[114.22269,22.35709],[114.2227,22.3571],[114.22272,22.35711],[114.22274,22.35713],[114.22274,22.35713],[114.22274,22.35713],[114.22274,22.35714],[114.22275,22.35714],[114.22276,22.35715],[114.22276,22.35715],[114.22276,22.35716],[114.22277,22.35716],[114.22278,22.35717],[114.22278,22.35717],[114.22278,22.35717],[114.22279,22.35718],[114.2228,22.35718],[114.2228,22.35719],[114.22281,22.35719],[114.22281,22.35719],[114.22282,22.3572],[114.22282,22.3572],[114.22283,22.35721],[114.22283,22.35721],[114.22283,22.35721],[114.22283,22.35721],[114.22283,22.35722],[114.22284,22.35722],[114.22284,22.35722],[114.22285,22.35723],[114.22285,22.35723],[114.22285,22.35724],[114.22286,22.35725],[114.22286,22.35725],[114.22286,22.35726],[114.22287,22.35726],[114.22287,22.35726],[114.22287,22.35726],[114.22287,22.35727],[114.22287,22.35727],[114.22287,22.35727],[114.22288,22.35727],[114.22288,22.35728],[114.22289,22.35728],[114.22289,22.35728],[114.22289,22.35729],[114.22289,22.35729],[114.22289,22.35729],[114.2229,22.3573],[114.2229,22.3573],[114.2229,22.3573],[114.22291,22.3573],[114.22291,22.3573],[114.22291,22.3573],[114.22291,22.3573],[114.22292,22.35731],[114.22292,22.35731],[114.22292,22.35731],[114.22293,22.35731],[114.22293,22.35731],[114.22294,22.35731],[114.22294,22.35731],[114.22294,22.35732],[114.22295,22.35732],[114.22295,22.35732],[114.22296,22.35733],[114.22296,22.35733],[114.22297,22.35734],[114.22297,22.35734],[114.22298,22.35734],[114.22298,22.35735],[114.22299,22.35736],[114.22299,22.35736],[114.223,22.35737],[114.223,22.35737],[114.22301,22.35738],[114.22301,22.35738],[114.22301,22.35738],[114.22301,22.35738],[114.22302,22.35738],[114.22302,22.35739],[114.22303,22.35739],[114.22303,22.35739],[114.22303,22.35739],[114.22304,22.3574],[114.22305,22.3574],[114.22306,22.35741],[114.22306,22.35741],[114.22307,22.35742],[114.22308,22.35742],[114.22308,22.35743],[114.22309,22.35744],[114.2231,22.35744],[114.2231,22.35744],[114.22311,22.35744],[114.22312,22.35745],[114.22312,22.35745],[114.22312,22.35746],[114.22313,22.35746],[114.22313,22.35746],[114.22314,22.35747],[114.22314,22.35747],[114.22317,22.35751],[114.22318,22.35752],[114.22318,22.35753],[114.22319,22.35753],[114.2232,22.35755],[114.22321,22.35755],[114.22321,22.35755],[114.22321,22.35756],[114.22324,22.35759],[114.22324,22.35759],[114.22324,22.35759],[114.22325,22.3576],[114.22325,22.35761],[114.22325,22.35761],[114.22325,22.35762],[114.22325,22.35762],[114.22326,22.35762],[114.22326,22.35762],[114.22326,22.35762],[114.22326,22.35763],[114.22326,22.35764],[114.22326,22.35764],[114.22326,22.35764],[114.22326,22.35765],[114.22327,22.35766],[114.22327,22.35766],[114.22327,22.35767],[114.22327,22.35767],[114.22327,22.35773],[114.22327,22.35773],[114.22328,22.35776],[114.22328,22.35776],[114.22328,22.35776],[114.22328,22.35777],[114.22328,22.35777],[114.22328,22.35777],[114.22328,22.35777],[114.22328,22.35777],[114.22328,22.35777],[114.22328,22.35778],[114.22328,22.35778],[114.22329,22.35778],[114.22329,22.35778],[114.22329,22.35779],[114.22329,22.35779],[114.22329,22.35779],[114.22329,22.35779],[114.22329,22.35779],[114.22329,22.35779],[114.2233,22.3578],[114.2233,22.3578],[114.2233,22.3578],[114.2233,22.3578],[114.22331,22.3578],[114.22331,22.3578],[114.22334,22.35782],[114.22335,22.35782],[114.22335,22.35783],[114.22335,22.35783],[114.22335,22.35783],[114.22336,22.35783],[114.22337,22.35784],[114.22337,22.35784],[114.22337,22.35784],[114.22337,22.35784],[114.22338,22.35784],[114.22338,22.35784],[114.22338,22.35784],[114.22339,22.35784],[114.22339,22.35784],[114.2234,22.35784],[114.2234,22.35784],[114.22341,22.35784],[114.22341,22.35784],[114.22341,22.35784],[114.22341,22.35784],[114.22342,22.35785],[114.22342,22.35785],[114.22342,22.35785],[114.22342,22.35785],[114.22342,22.35785],[114.22343,22.35785],[114.22343,22.35785],[114.22343,22.35785],[114.22343,22.35785],[114.22343,22.35785],[114.22343,22.35785],[114.22343,22.35786],[114.22343,22.35786],[114.22344,22.35786],[114.22344,22.35786],[114.22344,22.35786],[114.22344,22.35786],[114.22344,22.35786],[114.22344,22.35787],[114.22344,22.35787],[114.22346,22.35788],[114.22348,22.35791],[114.22349,22.35792],[114.2235,22.35792],[114.22351,22.35793],[114.22351,22.35793],[114.22352,22.35794],[114.22353,22.35794],[114.22354,22.35795],[114.22355,22.35795],[114.2236,22.35798],[114.22361,22.35799],[114.22365,22.35802],[114.22365,22.35802],[114.22365,22.35802],[114.22365,22.35803],[114.22366,22.35803],[114.22367,22.35804],[114.22368,22.35804],[114.22368,22.35804],[114.22368,22.35805],[114.22369,22.35805],[114.22369,22.35805],[114.22372,22.35807],[114.22374,22.35808],[114.22375,22.35809],[114.22376,22.35809],[114.22376,22.35809],[114.22378,22.3581],[114.22378,22.3581],[114.22379,22.35811],[114.22379,22.35811],[114.22379,22.35811],[114.2238,22.35811],[114.2238,22.35811],[114.2238,22.35811],[114.2238,22.35811],[114.2238,22.35811],[114.2238,22.35812],[114.2238,22.35812],[114.22381,22.35812],[114.22381,22.35812],[114.22381,22.35812],[114.22381,22.35813],[114.22381,22.35813],[114.22381,22.35813],[114.22381,22.35813],[114.22381,22.35813],[114.22381,22.35814],[114.22381,22.35814],[114.22382,22.35814],[114.22382,22.35815],[114.22382,22.35818],[114.22382,22.35818],[114.22382,22.35818],[114.22382,22.35819],[114.22382,22.35819],[114.22383,22.35819],[114.22383,22.35819],[114.22383,22.35819],[114.22383,22.35819],[114.22383,22.35819],[114.22383,22.35819],[114.22383,22.35819],[114.22383,22.3582],[114.22384,22.3582],[114.22384,22.3582],[114.22384,22.3582],[114.22384,22.3582],[114.22384,22.3582],[114.22385,22.3582],[114.22386,22.35821],[114.22388,22.35822],[114.22388,22.35822],[114.22389,22.35822],[114.22389,22.35822],[114.22389,22.35822],[114.22389,22.35823],[114.2239,22.35823],[114.2239,22.35823],[114.2239,22.35823],[114.2239,22.35823],[114.2239,22.35823],[114.22391,22.35824],[114.22391,22.35824],[114.22391,22.35824],[114.22391,22.35824],[114.22391,22.35824],[114.22392,22.35825],[114.22392,22.35826],[114.22393,22.35826],[114.22394,22.35829],[114.22395,22.35829],[114.22395,22.3583],[114.22395,22.3583],[114.22395,22.3583],[114.22395,22.3583],[114.22395,22.3583],[114.22395,22.3583],[114.22395,22.35831],[114.22395,22.35831],[114.22395,22.35831],[114.22394,22.35832],[114.22394,22.35832],[114.22394,22.35832],[114.22394,22.35833],[114.22394,22.35833],[114.22394,22.35833],[114.22394,22.35833],[114.22395,22.35834],[114.22395,22.35834],[114.22395,22.35834],[114.22395,22.35834],[114.22395,22.35834],[114.22395,22.35834],[114.22395,22.35835],[114.22395,22.35835],[114.22396,22.35835],[114.22396,22.35835],[114.22396,22.35835],[114.22397,22.35835],[114.22398,22.35835],[114.22398,22.35835],[114.22399,22.35836],[114.22399,22.35836],[114.224,22.35836],[114.224,22.35836],[114.224,22.35836],[114.224,22.35836],[114.22401,22.35836],[114.22401,22.35836],[114.22401,22.35837],[114.22402,22.35837],[114.22403,22.35837],[114.22403,22.35837],[114.22403,22.35837],[114.22403,22.35837],[114.22403,22.35837],[114.22403,22.35838],[114.22404,22.35838],[114.22404,22.35838],[114.22405,22.35838],[114.22405,22.35838],[114.22405,22.35838],[114.22406,22.35838],[114.22406,22.35838],[114.22407,22.35838],[114.22407,22.35838],[114.22417,22.3584],[114.22419,22.3584],[114.22419,22.3584],[114.2242,22.3584],[114.2242,22.35841],[114.2242,22.35841],[114.22421,22.35841],[114.22421,22.35841],[114.22421,22.35841],[114.22422,22.35841],[114.22422,22.35841],[114.22422,22.35841],[114.22423,22.35842],[114.22423,22.35842],[114.22423,22.35842],[114.22424,22.35842],[114.22424,22.35842],[114.22425,22.35842],[114.22425,22.35842],[114.22425,22.35842],[114.22426,22.35842],[114.22426,22.35842],[114.22426,22.35843],[114.22433,22.3585],[114.22435,22.35853],[114.22435,22.35853],[114.22435,22.35853],[114.22435,22.35853],[114.22435,22.35854],[114.22435,22.35855],[114.22435,22.35855],[114.22435,22.35855],[114.22435,22.35856],[114.22435,22.35856],[114.22435,22.35856],[114.22435,22.35857],[114.22435,22.35857],[114.22436,22.35857],[114.22436,22.35858],[114.22436,22.35858],[114.22436,22.35858],[114.22436,22.35859],[114.2244,22.35864],[114.22441,22.35865],[114.22441,22.35866],[114.22442,22.35867],[114.22442,22.35868],[114.22442,22.35869],[114.22443,22.35871],[114.22443,22.35872],[114.22443,22.35872],[114.22444,22.35873],[114.22445,22.35874],[114.22445,22.35875],[114.22445,22.35875],[114.22445,22.35876],[114.22445,22.35876],[114.22446,22.35877],[114.22447,22.35879],[114.22447,22.35881],[114.22447,22.35881],[114.22448,22.35883],[114.22448,22.35883],[114.22448,22.35884],[114.22448,22.35884],[114.22448,22.35885],[114.22449,22.35886],[114.22449,22.35888],[114.2245,22.3589],[114.2245,22.3589],[114.22451,22.35894],[114.22451,22.35895],[114.22451,22.35897],[114.22451,22.35897],[114.22451,22.35897],[114.22451,22.35898],[114.22451,22.35898],[114.22451,22.35899],[114.22451,22.35899],[114.22451,22.35899],[114.22451,22.359],[114.22451,22.35901],[114.22451,22.35901],[114.22451,22.35902],[114.22451,22.35902],[114.22451,22.35902],[114.2245,22.35903],[114.2245,22.35903],[114.2245,22.35904],[114.2245,22.35904],[114.2245,22.35905],[114.2245,22.35906],[114.2245,22.35907],[114.2245,22.35907],[114.2245,22.35908],[114.2245,22.35909],[114.2245,22.3591],[114.2245,22.3591],[114.2245,22.3591],[114.2245,22.35922],[114.2245,22.35928],[114.22449,22.35931],[114.22449,22.35932],[114.22449,22.35933],[114.22449,22.35933],[114.22449,22.35933],[114.22449,22.35934],[114.22448,22.35935],[114.22448,22.35936],[114.22447,22.35938],[114.22447,22.35939],[114.22447,22.35939],[114.22447,22.35939],[114.22447,22.3594],[114.22446,22.35941],[114.22446,22.35941],[114.22446,22.35941],[114.22446,22.35942],[114.22446,22.35943],[114.22445,22.35943],[114.22445,22.35944],[114.22445,22.35944],[114.22444,22.35946],[114.22444,22.35946],[114.22443,22.35948],[114.22443,22.35948],[114.22443,22.35949],[114.22442,22.35949],[114.22442,22.35949],[114.22442,22.35949],[114.22442,22.3595],[114.22441,22.35951],[114.22441,22.35951],[114.22441,22.35952],[114.2244,22.35953],[114.2244,22.35953],[114.2244,22.35954],[114.22439,22.35956],[114.22438,22.35957],[114.22438,22.35958],[114.22438,22.35959],[114.22437,22.3596],[114.22436,22.35962],[114.22435,22.35964],[114.22435,22.35964],[114.22434,22.35965],[114.22434,22.35965],[114.22434,22.35965],[114.22434,22.35966],[114.22434,22.35966],[114.22434,22.35967],[114.22434,22.35967],[114.22433,22.35967],[114.22433,22.35967],[114.22433,22.35968],[114.22433,22.35968],[114.22433,22.35969],[114.22433,22.35969],[114.22433,22.35969],[114.22433,22.3597],[114.22433,22.3597],[114.22433,22.3597],[114.22433,22.35971],[114.22433,22.35971],[114.22433,22.35971],[114.22432,22.35973],[114.22432,22.35973],[114.22432,22.35973],[114.22432,22.35974],[114.22432,22.35975],[114.22431,22.35977],[114.22431,22.35977],[114.22431,22.35977],[114.22431,22.35977],[114.22431,22.35979],[114.22431,22.3598],[114.2243,22.3598],[114.2243,22.3598],[114.2243,22.3598],[114.2243,22.3598],[114.2243,22.35981],[114.2243,22.35981],[114.2243,22.35982],[114.22429,22.35983],[114.22429,22.35983],[114.22429,22.35983],[114.22429,22.35984],[114.22429,22.35984],[114.22429,22.35984],[114.22429,22.35984],[114.22428,22.35985],[114.22428,22.35985],[114.22427,22.35985],[114.22427,22.35986],[114.22427,22.35986],[114.22427,22.35986],[114.22426,22.35987],[114.22426,22.35988],[114.22425,22.35988],[114.22425,22.35989],[114.22425,22.35989],[114.22425,22.35989],[114.22424,22.3599],[114.22424,22.3599],[114.22424,22.3599],[114.22424,22.35991],[114.22423,22.35993],[114.22423,22.35993],[114.22423,22.35993],[114.22423,22.35993],[114.22423,22.35993],[114.22423,22.35994],[114.22423,22.35994],[114.22423,22.35995],[114.22423,22.35996],[114.22423,22.35996],[114.22423,22.35996],[114.22422,22.35998],[114.22422,22.36],[114.22422,22.36002],[114.22422,22.36004],[114.22422,22.36004],[114.22421,22.36007],[114.22421,22.3601],[114.22421,22.36011],[114.22421,22.36012],[114.22421,22.36013],[114.22421,22.36013],[114.22421,22.36013],[114.22421,22.36014],[114.22421,22.36014],[114.22421,22.36014],[114.22421,22.36015],[114.22421,22.36015],[114.22421,22.36015],[114.22421,22.36016],[114.22421,22.36017],[114.22421,22.36017],[114.22421,22.36017],[114.22421,22.36017],[114.22421,22.36018],[114.22421,22.36018],[114.2242,22.36018],[114.2242,22.36018],[114.2242,22.36019],[114.2242,22.3602],[114.22419,22.36021],[114.22419,22.36022],[114.22419,22.36023],[114.22418,22.36025],[114.22418,22.36027],[114.22417,22.36028],[114.22417,22.36029],[114.22417,22.36029],[114.22417,22.36031],[114.22416,22.36034],[114.22415,22.36036],[114.22413,22.36042],[114.22412,22.36044],[114.22412,22.36045],[114.22412,22.36045],[114.22411,22.36046],[114.22411,22.36046],[114.22411,22.36047],[114.22411,22.36047],[114.22411,22.36047],[114.22411,22.36048],[114.22411,22.36049],[114.2241,22.36049],[114.2241,22.36049],[114.2241,22.3605],[114.2241,22.36051],[114.2241,22.36052],[114.2241,22.36052],[114.2241,22.36052],[114.2241,22.36052],[114.2241,22.36053],[114.2241,22.36054],[114.2241,22.36054],[114.2241,22.36055],[114.22411,22.36056],[114.22411,22.36057],[114.22411,22.36058],[114.2241,22.3606],[114.2241,22.3606],[114.22409,22.36063],[114.22409,22.36064],[114.22407,22.36067],[114.22407,22.36067],[114.22407,22.36067],[114.22406,22.36068],[114.22406,22.36069],[114.22405,22.3607],[114.22405,22.36071],[114.22405,22.36071],[114.22405,22.36071],[114.22404,22.36072],[114.22404,22.36073],[114.22404,22.36073],[114.22404,22.36073],[114.22403,22.36073],[114.22403,22.36073],[114.22402,22.36076],[114.22401,22.36077],[114.22401,22.36077],[114.22401,22.36077],[114.224,22.36078],[114.22399,22.36078],[114.22398,22.36079],[114.22398,22.36079],[114.22398,22.36079],[114.22397,22.36081],[114.22396,22.36081],[114.22396,22.36082],[114.22395,22.36083],[114.22395,22.36084],[114.22395,22.36085],[114.22395,22.36085],[114.22395,22.36085],[114.22395,22.36085],[114.22395,22.36087],[114.22395,22.36088],[114.22395,22.36088],[114.22395,22.36088],[114.22394,22.36089],[114.22394,22.36089],[114.22394,22.3609],[114.22394,22.3609],[114.22394,22.3609],[114.22394,22.3609],[114.22394,22.36091],[114.22393,22.36091],[114.22393,22.36092],[114.22393,22.36093],[114.22393,22.36094],[114.22393,22.36094],[114.22393,22.36095],[114.22393,22.36095],[114.22393,22.36097],[114.22393,22.36097],[114.22393,22.36098],[114.22393,22.36099],[114.22393,22.36099],[114.22393,22.36099],[114.22393,22.36099],[114.22393,22.361],[114.22393,22.36101],[114.22393,22.36101],[114.22393,22.36102],[114.22392,22.36102],[114.22392,22.36104],[114.22391,22.36104],[114.22391,22.36104],[114.22391,22.36105],[114.22389,22.36107],[114.22389,22.36107],[114.22388,22.3611],[114.22387,22.3611],[114.22387,22.36112],[114.22387,22.36113],[114.22387,22.36113],[114.22387,22.36114],[114.22387,22.36115],[114.22387,22.36116],[114.22387,22.36116],[114.22386,22.36117],[114.22386,22.36118],[114.22386,22.36118],[114.22385,22.36118],[114.22385,22.36119],[114.22384,22.3612],[114.22384,22.3612],[114.22384,22.3612],[114.22384,22.36121],[114.22384,22.36121],[114.22384,22.36121],[114.22383,22.36121],[114.22383,22.36122],[114.22382,22.36124],[114.22381,22.36125],[114.22381,22.36125],[114.22381,22.36125],[114.22381,22.36125],[114.22381,22.36126],[114.22381,22.36127],[114.22381,22.36127],[114.22381,22.36127],[114.22381,22.36127],[114.22381,22.36128],[114.22381,22.36129],[114.22381,22.3613],[114.22381,22.36131],[114.22382,22.36132],[114.22382,22.36132],[114.22382,22.36134],[114.22382,22.36134],[114.22382,22.36134],[114.22383,22.36136],[114.22382,22.36136],[114.22382,22.36138],[114.22382,22.36138],[114.22382,22.36138],[114.22382,22.36139],[114.22382,22.36139],[114.22382,22.3614],[114.22381,22.36141],[114.22381,22.36141],[114.22381,22.36142],[114.2238,22.36143],[114.2238,22.36143],[114.2238,22.36143],[114.2238,22.36143],[114.2238,22.36144],[114.2238,22.36144],[114.2238,22.36145],[114.2238,22.36145],[114.22379,22.36145],[114.22379,22.36145],[114.2238,22.36146],[114.2238,22.36147],[114.22381,22.36148],[114.22381,22.36148],[114.22381,22.36149],[114.22381,22.36149],[114.22381,22.3615],[114.2238,22.36153],[114.2238,22.36154],[114.2238,22.36154],[114.22381,22.36155],[114.22381,22.36155],[114.22381,22.36155],[114.22381,22.36155],[114.22382,22.36156],[114.22382,22.36156],[114.22382,22.36157],[114.22383,22.36157],[114.22383,22.36158],[114.22383,22.36158],[114.22384,22.36159],[114.22384,22.36159],[114.22384,22.36162],[114.22383,22.36163],[114.22383,22.36164],[114.22383,22.36165],[114.22384,22.36168],[114.22383,22.36169],[114.22383,22.36169],[114.22383,22.36172],[114.22383,22.36174],[114.22383,22.36177],[114.22382,22.36177],[114.22382,22.36178],[114.22382,22.36179],[114.22382,22.3618],[114.22382,22.3618],[114.22382,22.36182],[114.22383,22.36182],[114.22383,22.36183],[114.22383,22.36183],[114.22383,22.36184],[114.22383,22.36186],[114.22383,22.36187],[114.22383,22.36188],[114.22383,22.36189],[114.22382,22.36191],[114.22382,22.36192],[114.22381,22.36194],[114.22381,22.36196],[114.22381,22.36196],[114.2238,22.36198],[114.2238,22.362],[114.2238,22.36201],[114.2238,22.36201],[114.22381,22.36202],[114.22381,22.36204],[114.22381,22.36204],[114.22381,22.36204],[114.22381,22.36205],[114.2238,22.36208],[114.2238,22.36209],[114.2238,22.36209],[114.2238,22.3621],[114.2238,22.36211],[114.2238,22.36211],[114.22379,22.36211],[114.22378,22.36213],[114.22378,22.36214],[114.22378,22.36214],[114.22377,22.36215],[114.22377,22.36215],[114.22377,22.36215],[114.22377,22.36215],[114.22377,22.36216],[114.22377,22.36216],[114.22377,22.36217],[114.22377,22.36218],[114.22377,22.3622],[114.22377,22.36221],[114.22377,22.36222],[114.22377,22.36222],[114.22377,22.36223],[114.22377,22.36223],[114.22378,22.36225],[114.22378,22.36225],[114.22378,22.36226],[114.22378,22.36228],[114.22378,22.36228],[114.22377,22.36229],[114.22378,22.3623],[114.22378,22.3623],[114.22378,22.36232],[114.22378,22.36233],[114.22378,22.36233],[114.22378,22.36235],[114.22378,22.36238],[114.22379,22.3624],[114.22379,22.3624],[114.22379,22.36241],[114.22379,22.36242],[114.22379,22.36243],[114.22379,22.36244],[114.2238,22.36247],[114.2238,22.36249],[114.2238,22.36249],[114.22381,22.3625],[114.22381,22.36251],[114.22381,22.36251],[114.22381,22.36251],[114.22381,22.36252],[114.22382,22.36253],[114.22382,22.36253],[114.22382,22.36256],[114.22382,22.36257],[114.22382,22.36257],[114.22382,22.36258],[114.22383,22.3626],[114.22383,22.3626],[114.22383,22.3626],[114.22383,22.3626],[114.22383,22.36261],[114.22383,22.36267],[114.22383,22.36267],[114.22383,22.36267],[114.22383,22.36267],[114.22383,22.36268],[114.22383,22.3627],[114.22383,22.36271],[114.22383,22.36272],[114.22382,22.36276],[114.22382,22.36277],[114.22382,22.36279],[114.22382,22.3628],[114.22382,22.3628],[114.22382,22.3628],[114.22381,22.36281],[114.2238,22.36284],[114.2238,22.36284],[114.2238,22.36287],[114.22379,22.36287],[114.22379,22.36287],[114.22379,22.36287],[114.22379,22.36289],[114.22378,22.3629],[114.22378,22.36291],[114.22377,22.36292],[114.22377,22.36294],[114.22377,22.36295],[114.22377,22.36295],[114.22376,22.36296],[114.22376,22.36298],[114.22376,22.36298],[114.22376,22.36298],[114.22376,22.36298],[114.22376,22.36299],[114.22376,22.363],[114.22376,22.36301],[114.22376,22.36302],[114.22376,22.36304],[114.22376,22.36305],[114.22375,22.36308],[114.22375,22.36309],[114.22375,22.36309],[114.22375,22.3631],[114.22374,22.36312],[114.22375,22.36313],[114.22375,22.36314],[114.22375,22.36315],[114.22375,22.36315],[114.22375,22.36315],[114.22376,22.36317],[114.22377,22.36318],[114.22377,22.36318],[114.22377,22.36319],[114.22377,22.36321],[114.22377,22.36321],[114.22377,22.36322],[114.22377,22.36324],[114.22378,22.36326],[114.22378,22.36328],[114.22379,22.36329],[114.2238,22.36331],[114.22381,22.36335],[114.22381,22.36337],[114.22381,22.36338],[114.22381,22.36339],[114.22381,22.36339],[114.22381,22.3634],[114.22381,22.3634],[114.22381,22.36341],[114.22381,22.36342],[114.22381,22.36343],[114.22381,22.36344],[114.22381,22.36344],[114.22381,22.36344],[114.22381,22.36345],[114.22381,22.36345],[114.22382,22.36346],[114.22382,22.36347],[114.22382,22.36348],[114.22382,22.36348],[114.22382,22.36349],[114.22383,22.36349],[114.22383,22.3635],[114.22383,22.3635],[114.22383,22.36351],[114.22383,22.36352],[114.22382,22.36354],[114.22382,22.36356],[114.22382,22.36356],[114.22382,22.36356],[114.22382,22.36357],[114.22382,22.36357],[114.22381,22.3636],[114.22381,22.36361],[114.22381,22.36363],[114.22381,22.36363],[114.2238,22.36364],[114.2238,22.36365],[114.2238,22.36366],[114.22379,22.36367],[114.22379,22.36367],[114.22379,22.36367],[114.22376,22.36368],[114.22376,22.36368],[114.22376,22.36368],[114.22376,22.36369],[114.22375,22.36369],[114.22375,22.3637],[114.22375,22.3637],[114.22375,22.3637],[114.22375,22.3637],[114.22375,22.36371],[114.22375,22.36371],[114.22375,22.36372],[114.22375,22.36373],[114.22375,22.36373],[114.22375,22.36373],[114.22375,22.36373],[114.22375,22.36374],[114.22375,22.36375],[114.22374,22.36377],[114.22374,22.36378],[114.22374,22.36378],[114.22374,22.36378],[114.22374,22.36379],[114.22374,22.3638],[114.22374,22.3638],[114.22374,22.3638],[114.22375,22.36381],[114.22375,22.36382],[114.22375,22.36382],[114.22375,22.36382],[114.22375,22.36383],[114.22375,22.36384],[114.22375,22.36385],[114.22375,22.36385],[114.22375,22.36386],[114.22374,22.36387],[114.22374,22.36388],[114.22374,22.36388],[114.22373,22.36389],[114.22373,22.36389],[114.22373,22.3639],[114.22372,22.3639],[114.22369,22.36391],[114.22368,22.36392],[114.22368,22.36392],[114.22367,22.36392],[114.22367,22.36392],[114.22366,22.36393],[114.22366,22.36393],[114.22366,22.36393],[114.22366,22.36394],[114.22365,22.36394],[114.22365,22.36394],[114.22365,22.36396],[114.22365,22.36396],[114.22365,22.36396],[114.22365,22.36397],[114.22363,22.36398],[114.22363,22.36398],[114.22363,22.36398],[114.22362,22.36399],[114.22362,22.36399],[114.22362,22.36399],[114.22361,22.364],[114.2236,22.36402],[114.22359,22.36403],[114.22359,22.36403],[114.22359,22.36403],[114.22359,22.36403],[114.22359,22.36403],[114.2236,22.36404],[114.22361,22.36404],[114.22361,22.36405],[114.22361,22.36405],[114.22363,22.36405],[114.22366,22.36406],[114.22368,22.36407],[114.22369,22.36408],[114.2237,22.36409],[114.2237,22.36409],[114.22371,22.36411],[114.22371,22.36411],[114.22371,22.36411],[114.22372,22.36412],[114.22373,22.36412],[114.22374,22.36412],[114.22375,22.36412],[114.22375,22.36412],[114.22375,22.36412],[114.22376,22.36412],[114.22377,22.36413],[114.22377,22.36414],[114.22378,22.36414],[114.22378,22.36414],[114.22378,22.36414],[114.22378,22.36414],[114.22378,22.36415],[114.22379,22.36416],[114.22379,22.36416],[114.22379,22.36416],[114.2238,22.36417],[114.2238,22.36417],[114.22381,22.36417],[114.22382,22.36417],[114.22382,22.36417],[114.22383,22.36418],[114.22384,22.36417],[114.22384,22.36417],[114.22385,22.36417],[114.22387,22.36417],[114.22387,22.36417],[114.22388,22.36417],[114.22388,22.36417],[114.22389,22.36418],[114.2239,22.36418],[114.22391,22.36419],[114.22392,22.36419],[114.22392,22.36419],[114.22393,22.36419],[114.22393,22.36419],[114.22394,22.36419],[114.22395,22.36418],[114.22396,22.36418],[114.22396,22.36418],[114.22398,22.36417],[114.22398,22.36417],[114.22399,22.36417],[114.22399,22.36417],[114.22401,22.36417],[114.22403,22.36417],[114.22405,22.36417],[114.22405,22.36417],[114.22406,22.36417],[114.22407,22.36417],[114.22407,22.36417],[114.22408,22.36417],[114.22408,22.36417],[114.22408,22.36417],[114.22408,22.36417],[114.22409,22.36417],[114.22409,22.36417],[114.22409,22.36417],[114.2241,22.36418],[114.2241,22.36418],[114.2241,22.36418],[114.2241,22.36419],[114.22411,22.36419],[114.22412,22.3642],[114.22412,22.3642],[114.22413,22.3642],[114.22413,22.3642],[114.22414,22.3642],[114.22414,22.3642],[114.22415,22.3642],[114.22417,22.3642],[114.22419,22.3642],[114.22419,22.36421],[114.2242,22.36421],[114.22421,22.36421],[114.22422,22.36422],[114.22423,22.36422],[114.22424,22.36423],[114.22424,22.36423],[114.22424,22.36423],[114.22425,22.36424],[114.22425,22.36424],[114.22425,22.36424],[114.22425,22.36424],[114.22426,22.36424],[114.22427,22.36426],[114.22428,22.36427],[114.22428,22.36429],[114.22428,22.36429],[114.22428,22.36429],[114.22429,22.3643],[114.22429,22.36431],[114.2243,22.36432],[114.2243,22.36432],[114.2243,22.36432],[114.2243,22.36433],[114.22431,22.36433],[114.22432,22.36435],[114.22433,22.36436],[114.22433,22.36437],[114.22435,22.36439],[114.22435,22.36439],[114.22435,22.3644],[114.22436,22.3644],[114.22439,22.36442],[114.22442,22.36444],[114.22444,22.36446],[114.22445,22.36446],[114.22449,22.36448],[114.2245,22.36448],[114.22452,22.36449],[114.22452,22.3645],[114.22453,22.3645],[114.22455,22.36451],[114.22455,22.36451],[114.22456,22.36452],[114.2246,22.36455],[114.22461,22.36456],[114.22461,22.36456],[114.22462,22.36457],[114.22463,22.36458],[114.22465,22.36459],[114.22468,22.36462],[114.22469,22.36463],[114.22469,22.36463],[114.22469,22.36463],[114.22471,22.36464],[114.22472,22.36465],[114.22472,22.36465],[114.22472,22.36465],[114.22473,22.36466],[114.22473,22.36466],[114.22474,22.36467],[114.22474,22.36467],[114.22475,22.36468],[114.22475,22.36468],[114.22476,22.36468],[114.22477,22.36469],[114.22477,22.3647],[114.22478,22.3647],[114.22478,22.36471],[114.2248,22.36472],[114.2248,22.36472],[114.2248,22.36472],[114.22481,22.36473],[114.22481,22.36473],[114.22482,22.36474],[114.22482,22.36474],[114.22482,22.36475],[114.22484,22.36477],[114.22485,22.36478],[114.22485,22.36478],[114.22485,22.36478],[114.22485,22.36478],[114.22485,22.36478],[114.22486,22.36479],[114.22486,22.36479],[114.22486,22.36479],[114.22487,22.3648],[114.22491,22.36483],[114.22495,22.36485],[114.22495,22.36485],[114.22495,22.36486],[114.22495,22.36486],[114.22496,22.36486],[114.22497,22.36487],[114.22497,22.36487],[114.22499,22.36489],[114.22499,22.36489],[114.22499,22.3649],[114.22503,22.36495],[114.22504,22.36495],[114.22504,22.36496],[114.22505,22.36497],[114.22505,22.36497],[114.22505,22.36497],[114.22505,22.36498],[114.22506,22.36499],[114.22507,22.365],[114.22507,22.365],[114.22508,22.36502],[114.22509,22.36503],[114.22509,22.36503],[114.22509,22.36503],[114.2251,22.36504],[114.22513,22.36508],[114.22513,22.36509],[114.22514,22.36509],[114.22514,22.3651],[114.22515,22.36511],[114.22515,22.36511],[114.22515,22.36511],[114.22515,22.36512],[114.22515,22.36512],[114.22515,22.36512],[114.22515,22.36513],[114.22516,22.36514],[114.22516,22.36514],[114.22516,22.36514],[114.22516,22.36514],[114.22516,22.36514],[114.22516,22.36515],[114.22516,22.36517],[114.22516,22.36518],[114.22516,22.36519],[114.22516,22.3652],[114.22516,22.36521],[114.22516,22.36527],[114.22516,22.36529],[114.22516,22.3653],[114.22516,22.3653],[114.22517,22.36534],[114.22518,22.36535],[114.22518,22.36536],[114.22518,22.36536],[114.22519,22.36539],[114.22519,22.36539],[114.22519,22.36541],[114.22519,22.36542],[114.2252,22.36543],[114.2252,22.36545],[114.2252,22.36547],[114.22521,22.36549],[114.22521,22.3655],[114.22521,22.3655],[114.22521,22.36551],[114.22521,22.36552],[114.22521,22.36552],[114.22521,22.36553],[114.22521,22.36556],[114.22521,22.36556],[114.22522,22.36558],[114.22523,22.36561],[114.22523,22.36563],[114.22523,22.36564],[114.22523,22.36564],[114.22523,22.36564],[114.22524,22.36566],[114.22524,22.36567],[114.22525,22.36567],[114.22525,22.36567],[114.22525,22.36568],[114.22527,22.36572],[114.22527,22.36574],[114.22527,22.36577],[114.22527,22.3658],[114.22527,22.36582],[114.22528,22.36582],[114.22528,22.36582],[114.22528,22.36583],[114.22528,22.36585],[114.22529,22.36588],[114.22529,22.36589],[114.22529,22.3659],[114.22529,22.3659],[114.22529,22.36592],[114.22529,22.36592],[114.22529,22.36592],[114.2253,22.36593],[114.2253,22.36594],[114.22531,22.36594],[114.22531,22.36595],[114.22531,22.36595],[114.22531,22.36595],[114.22535,22.36601],[114.22538,22.3661],[114.22541,22.36618],[114.22541,22.36618],[114.22544,22.36625],[114.22544,22.36626],[114.22545,22.36628],[114.22544,22.36635],[114.22545,22.36639],[114.22546,22.3664],[114.22537,22.36768],[114.22544,22.36881],[114.22566,22.3695],[114.22566,22.36952],[114.22571,22.36968],[114.22593,22.3699],[114.22626,22.37023],[114.22637,22.37028],[114.22683,22.37051],[114.22687,22.37055],[114.22687,22.37055],[114.22692,22.37061],[114.22697,22.37069],[114.22698,22.3707],[114.22699,22.37071],[114.227,22.37071],[114.227,22.37071],[114.22701,22.37072],[114.22702,22.37072],[114.22705,22.37072],[114.22707,22.37073],[114.22707,22.37073],[114.22709,22.37073],[114.22709,22.37073],[114.2271,22.37074],[114.2271,22.37074],[114.2271,22.37074],[114.22711,22.37074],[114.22712,22.37073],[114.22712,22.37073],[114.22713,22.37073],[114.22714,22.37073],[114.22715,22.37072],[114.22716,22.37071],[114.22717,22.37071],[114.22717,22.37071],[114.22718,22.37071],[114.22718,22.3707],[114.22718,22.3707],[114.22718,22.3707],[114.22718,22.3707],[114.22719,22.3707],[114.2272,22.3707],[114.2272,22.3707],[114.22722,22.37069],[114.22723,22.37069],[114.22723,22.37069],[114.22723,22.37069],[114.22724,22.37069],[114.22724,22.37069],[114.22725,22.37069],[114.22725,22.37069],[114.22725,22.37069],[114.22725,22.37069],[114.22726,22.37069],[114.22727,22.3707],[114.22728,22.3707],[114.22729,22.3707],[114.2273,22.3707],[114.2273,22.3707],[114.22731,22.3707],[114.22732,22.3707],[114.22732,22.3707],[114.22734,22.3707],[114.22735,22.3707],[114.22736,22.3707],[114.22736,22.3707],[114.22736,22.3707],[114.22736,22.3707],[114.22738,22.3707],[114.22738,22.3707],[114.22739,22.3707],[114.22741,22.3707],[114.22743,22.37069],[114.22744,22.37068],[114.22745,22.37068],[114.22746,22.37068],[114.22747,22.37067],[114.22747,22.37067],[114.22747,22.37067],[114.22748,22.37067],[114.22748,22.37067],[114.2275,22.37066],[114.22753,22.37065],[114.22755,22.37064],[114.22756,22.37064],[114.22756,22.37064],[114.22756,22.37064],[114.22757,22.37063],[114.22758,22.37063],[114.2276,22.37062],[114.22761,22.37062],[114.22762,22.37062],[114.22762,22.37062],[114.22763,22.37062],[114.22763,22.37061],[114.22764,22.37061],[114.22765,22.37061],[114.22766,22.3706],[114.22767,22.3706],[114.22767,22.3706],[114.22767,22.3706],[114.22768,22.3706],[114.22768,22.3706],[114.2277,22.37059],[114.2277,22.37059],[114.22771,22.37059],[114.22772,22.37059],[114.22772,22.37059],[114.22774,22.37059],[114.22777,22.37059],[114.22777,22.37059],[114.22778,22.37059],[114.22778,22.37059],[114.22779,22.37059],[114.22781,22.37059],[114.22782,22.3706],[114.22782,22.3706],[114.22782,22.3706],[114.22784,22.3706],[114.22785,22.37061],[114.22786,22.37062],[114.22787,22.37063],[114.22787,22.37063],[114.22789,22.37064],[114.2279,22.37065],[114.22791,22.37067],[114.22793,22.37069],[114.22794,22.3707],[114.22794,22.3707],[114.22794,22.3707],[114.22795,22.37071],[114.22796,22.37071],[114.22797,22.37072],[114.22798,22.37072],[114.22798,22.37073],[114.22799,22.37073],[114.22799,22.37073],[114.228,22.37075],[114.22801,22.37076],[114.22801,22.37076],[114.22801,22.37077],[114.22802,22.37077],[114.22802,22.37077],[114.22802,22.37078],[114.22803,22.37078],[114.22803,22.37078],[114.22803,22.37078],[114.22804,22.37078],[114.22804,22.37078],[114.22805,22.37078],[114.22806,22.37079],[114.22806,22.37079],[114.22806,22.37079],[114.22807,22.37079],[114.22807,22.37079],[114.22809,22.37079],[114.22809,22.37079],[114.22811,22.37079],[114.22814,22.37078],[114.22817,22.37077],[114.22817,22.37077],[114.22819,22.37077],[114.22821,22.37076],[114.22822,22.37076],[114.22822,22.37076],[114.22822,22.37076],[114.22824,22.37075],[114.22824,22.37075],[114.22825,22.37075],[114.22825,22.37075],[114.22825,22.37075],[114.22826,22.37074],[114.22828,22.37073],[114.22828,22.37073],[114.22829,22.37072],[114.22832,22.3707],[114.22832,22.3707],[114.22832,22.3707],[114.22833,22.37069],[114.22835,22.37068],[114.22837,22.37067],[114.22837,22.37067],[114.22837,22.37067],[114.22838,22.37067],[114.22838,22.37067],[114.22838,22.37067],[114.22839,22.37067],[114.22839,22.37067],[114.2284,22.37067],[114.22842,22.37067],[114.22842,22.37067],[114.22842,22.37067],[114.22844,22.37067],[114.22845,22.37067],[114.22846,22.37067],[114.22846,22.37067],[114.22846,22.37067],[114.22846,22.37067],[114.22848,22.37067],[114.22849,22.37067],[114.22849,22.37067],[114.22851,22.37067],[114.22853,22.37068],[114.22854,22.37068],[114.22855,22.37068],[114.22856,22.37068],[114.22857,22.37069],[114.22857,22.37069],[114.22857,22.37069],[114.22858,22.37069],[114.22858,22.37069],[114.22859,22.37069],[114.22859,22.3707],[114.2286,22.3707],[114.2286,22.37071],[114.2286,22.37071],[114.2286,22.37071],[114.22862,22.37073],[114.22864,22.37075],[114.22865,22.37075],[114.22867,22.37076],[114.22868,22.37077],[114.22868,22.37077],[114.22869,22.37078],[114.2287,22.37078],[114.2287,22.37078],[114.22872,22.37078],[114.22879,22.37079],[114.22879,22.37079],[114.2288,22.3708],[114.22882,22.3708],[114.22882,22.3708],[114.22882,22.3708],[114.22883,22.37081],[114.22884,22.37081],[114.22884,22.37081],[114.22886,22.37081],[114.22886,22.37081],[114.22886,22.3708],[114.22886,22.3708],[114.22888,22.3708],[114.22888,22.3708],[114.22888,22.3708],[114.22889,22.37079],[114.22889,22.37079],[114.22889,22.37079],[114.22891,22.37079],[114.22893,22.37079],[114.22896,22.37079],[114.22897,22.37079],[114.22899,22.37079],[114.229,22.37079],[114.22902,22.37079],[114.22902,22.37079],[114.22902,22.37079],[114.22903,22.37079],[114.22904,22.37079],[114.22906,22.37079],[114.22906,22.37079],[114.22908,22.37079],[114.22908,22.37079],[114.22909,22.37079],[114.2291,22.3708],[114.22911,22.3708],[114.22912,22.3708],[114.22912,22.3708],[114.22913,22.37081],[114.22913,22.37081],[114.22914,22.37081],[114.22915,22.37082],[114.22915,22.37082],[114.22916,22.37082],[114.22917,22.37083],[114.22917,22.37083],[114.22918,22.37083],[114.22918,22.37084],[114.22918,22.37084],[114.2292,22.37086],[114.2292,22.37086],[114.22921,22.37087],[114.22921,22.37088],[114.22922,22.37088],[114.22923,22.37089],[114.22923,22.37089],[114.22923,22.37089],[114.22924,22.37089],[114.22925,22.37089],[114.22925,22.37089],[114.22926,22.37089],[114.22927,22.37088],[114.22932,22.37087],[114.22934,22.37086],[114.22936,22.37085],[114.22937,22.37083],[114.22938,22.37083],[114.22938,22.37083],[114.22939,22.37082],[114.22939,22.37082],[114.22939,22.37082],[114.22939,22.37082],[114.2294,22.37082],[114.2294,22.37082],[114.2294,22.37082],[114.22942,22.37083],[114.22943,22.37083],[114.22944,22.37083],[114.22944,22.37083],[114.22944,22.37084],[114.22945,22.37084],[114.22945,22.37085],[114.22945,22.37085],[114.22946,22.37085],[114.22947,22.37086],[114.22948,22.37087],[114.22949,22.37087],[114.2295,22.37087],[114.22951,22.37088],[114.22952,22.37088],[114.22952,22.37088],[114.22952,22.37088],[114.22953,22.37088],[114.22953,22.37088],[114.22954,22.37088],[114.22954,22.37089],[114.22955,22.37089],[114.22955,22.37089],[114.22955,22.37089],[114.22955,22.37089],[114.22956,22.3709],[114.22958,22.37091],[114.22959,22.37091],[114.2296,22.37091],[114.22961,22.37092],[114.22961,22.37092],[114.22963,22.37092],[114.22964,22.37092],[114.22965,22.37093],[114.22968,22.37094],[114.22968,22.37094],[114.22968,22.37094],[114.22969,22.37094],[114.22971,22.37094],[114.22973,22.37095],[114.22975,22.37095],[114.22975,22.37096],[114.22975,22.37096],[114.22977,22.37096],[114.22978,22.37096],[114.22984,22.37095],[114.22986,22.37094],[114.22986,22.37094],[114.22986,22.37094],[114.22987,22.37094],[114.22988,22.37093],[114.22988,22.37093],[114.22989,22.37093],[114.2299,22.37092],[114.2299,22.37092],[114.2299,22.37092],[114.2299,22.37092],[114.2299,22.37091],[114.22992,22.3709],[114.22993,22.37089],[114.22993,22.37088],[114.22993,22.37088],[114.22994,22.37088],[114.22996,22.37087],[114.22996,22.37087],[114.22996,22.37087],[114.22997,22.37087],[114.22997,22.37087],[114.22998,22.37087],[114.23002,22.37086],[114.23003,22.37086],[114.23004,22.37086],[114.23007,22.37085],[114.23007,22.37085],[114.23007,22.37085],[114.23007,22.37085],[114.23008,22.37085],[114.23008,22.37085],[114.23008,22.37085],[114.23009,22.37085],[114.23009,22.37085],[114.2301,22.37085],[114.23012,22.37084],[114.23014,22.37084],[114.23014,22.37084],[114.23014,22.37084],[114.23016,22.37084],[114.23017,22.37084],[114.23017,22.37083],[114.23019,22.37083],[114.2302,22.37083],[114.23023,22.37083],[114.23023,22.37083],[114.23023,22.37083],[114.23024,22.37083],[114.23024,22.37083],[114.23025,22.37083],[114.23026,22.37083],[114.23028,22.37084],[114.23028,22.37084],[114.23028,22.37084],[114.23028,22.37084],[114.23029,22.37084],[114.23031,22.37083],[114.23032,22.37083],[114.23033,22.37083],[114.23035,22.37083],[114.23037,22.37083],[114.23037,22.37083],[114.23038,22.37083],[114.23041,22.37083],[114.23045,22.37083],[114.23046,22.37083],[114.23048,22.37083],[114.23049,22.37082],[114.23049,22.37082],[114.23049,22.37082],[114.23051,22.37082],[114.23052,22.37082],[114.23053,22.37082],[114.23054,22.37082],[114.23055,22.37082],[114.23057,22.37083],[114.23059,22.37083],[114.23062,22.37083],[114.23062,22.37083],[114.23064,22.37083],[114.23064,22.37083],[114.23064,22.37083],[114.23065,22.37083],[114.23066,22.37084],[114.23067,22.37084],[114.23069,22.37084],[114.23071,22.37084],[114.23072,22.37084],[114.23075,22.37084],[114.23079,22.37085],[114.23085,22.37085],[114.23085,22.37085],[114.23085,22.37085],[114.23086,22.37085],[114.23087,22.37086],[114.23091,22.37086],[114.23093,22.37086],[114.23094,22.37086],[114.23095,22.37086],[114.23097,22.37086],[114.23097,22.37086],[114.23098,22.37086],[114.23098,22.37086],[114.23099,22.37086],[114.231,22.37086],[114.23103,22.37086],[114.23104,22.37086],[114.23105,22.37086],[114.23105,22.37086],[114.23108,22.37086],[114.23108,22.37086],[114.23109,22.37086],[114.23111,22.37085],[114.23112,22.37085],[114.23116,22.37085],[114.23119,22.37085],[114.23121,22.37085],[114.23122,22.37085],[114.23124,22.37085],[114.23126,22.37084],[114.23128,22.37084],[114.23128,22.37084],[114.2313,22.37084],[114.23131,22.37084],[114.23132,22.37084],[114.23132,22.37084],[114.23135,22.37084],[114.23135,22.37084],[114.23135,22.37084],[114.23137,22.37085],[114.2314,22.37084],[114.23141,22.37084],[114.23143,22.37084],[114.23144,22.37084],[114.23145,22.37083],[114.23147,22.37083],[114.23149,22.37082],[114.2315,22.37082],[114.2315,22.37082],[114.23151,22.37082],[114.23152,22.37082],[114.23154,22.37081],[114.23156,22.37081],[114.23157,22.37081],[114.23158,22.37081],[114.23158,22.37081],[114.23161,22.3708],[114.23161,22.3708],[114.23162,22.3708],[114.23164,22.3708],[114.23166,22.3708],[114.23167,22.3708],[114.23169,22.37079],[114.23171,22.37079],[114.23171,22.37079],[114.23171,22.37079],[114.23173,22.3708],[114.23177,22.3708],[114.2318,22.37081],[114.23183,22.37081],[114.23184,22.37082],[114.23187,22.37082],[114.23188,22.37082],[114.23188,22.37082],[114.23189,22.37083],[114.2319,22.37083],[114.2319,22.37083],[114.23193,22.37084],[114.23197,22.37084],[114.23199,22.37084],[114.232,22.37084],[114.23204,22.37085],[114.23205,22.37085],[114.23206,22.37085],[114.2321,22.37086],[114.2321,22.37086],[114.23211,22.37086],[114.23211,22.37086],[114.23212,22.37086],[114.23213,22.37086],[114.23215,22.37087],[114.23216,22.37087],[114.23217,22.37087],[114.23217,22.37087],[114.23219,22.37087],[114.2322,22.37088],[114.2322,22.37088],[114.2322,22.37088],[114.23221,22.37088],[114.23223,22.37089],[114.23224,22.37089],[114.23228,22.3709],[114.2323,22.3709],[114.2323,22.3709],[114.23231,22.3709],[114.23233,22.37091],[114.23236,22.37093],[114.23238,22.37094],[114.23238,22.37094],[114.2324,22.37095],[114.23241,22.37096],[114.23242,22.37096],[114.23245,22.37098],[114.23247,22.37099],[114.23249,22.37101],[114.2325,22.37101],[114.2325,22.37101],[114.23252,22.37103],[114.23252,22.37103],[114.23253,22.37103],[114.23255,22.37103],[114.23255,22.37103],[114.23257,22.37104],[114.23258,22.37104],[114.2326,22.37104],[114.23261,22.37104],[114.23261,22.37104],[114.23262,22.37104],[114.23265,22.37105],[114.23267,22.37106],[114.23271,22.37107],[114.23272,22.37108],[114.23273,22.37108],[114.23273,22.37108],[114.23273,22.37108],[114.23276,22.37109],[114.23277,22.37109],[114.23279,22.37109],[114.2328,22.37109],[114.23281,22.3711],[114.23285,22.3711],[114.23287,22.37111],[114.23287,22.37111],[114.23288,22.37112],[114.23289,22.37112],[114.23289,22.37112],[114.23291,22.37113],[114.23293,22.37113],[114.23294,22.37114],[114.23296,22.37115],[114.23296,22.37115],[114.23297,22.37116],[114.23298,22.37116],[114.23299,22.37117],[114.23301,22.37118],[114.23302,22.37119],[114.23302,22.3712],[114.23304,22.3712],[114.23305,22.37121],[114.23305,22.37121],[114.23305,22.37121],[114.23305,22.37121],[114.23307,22.37122],[114.23309,22.37123],[114.23312,22.37123],[114.23316,22.37125],[114.23316,22.37125],[114.23318,22.37126],[114.2332,22.37126],[114.23321,22.37127],[114.23322,22.37127],[114.23323,22.37127],[114.23323,22.37127],[114.23324,22.37127],[114.23327,22.37127],[114.23328,22.37127],[114.23329,22.37127],[114.2333,22.37128],[114.23331,22.37128],[114.23333,22.37129],[114.23334,22.37129],[114.23334,22.37129],[114.23336,22.37129],[114.23337,22.37129],[114.23338,22.37129],[114.2334,22.37129],[114.2334,22.37129],[114.2334,22.37129],[114.23341,22.37129],[114.23343,22.37129],[114.23343,22.37129],[114.23344,22.37128],[114.23346,22.37128],[114.23348,22.37129],[114.2335,22.37129],[114.23352,22.3713],[114.23352,22.3713],[114.23353,22.37131],[114.23355,22.37132],[114.23356,22.37132],[114.23357,22.37133],[114.23359,22.37134],[114.23361,22.37135],[114.23362,22.37136],[114.23365,22.37137],[114.23365,22.37137],[114.23366,22.37138],[114.23367,22.37138],[114.23368,22.37139],[114.23369,22.37139],[114.23369,22.37139],[114.2337,22.37139],[114.23371,22.37139],[114.23372,22.37139],[114.23373,22.3714],[114.23373,22.3714],[114.23374,22.3714],[114.23375,22.37141],[114.23377,22.37142],[114.23379,22.37143],[114.2338,22.37143],[114.2338,22.37143],[114.23383,22.37144],[114.23383,22.37145],[114.23384,22.37145],[114.23385,22.37145],[114.23385,22.37145],[114.23387,22.37146],[114.23389,22.37147],[114.23389,22.37147],[114.23389,22.37148],[114.23394,22.37151],[114.23395,22.37151],[114.23395,22.37152],[114.23396,22.37152],[114.23396,22.37152],[114.23396,22.37152],[114.23397,22.37152],[114.23398,22.37153],[114.23399,22.37153],[114.234,22.37153],[114.23401,22.37154],[114.23405,22.37156],[114.23405,22.37156],[114.23406,22.37156],[114.23407,22.37159],[114.23407,22.37159],[114.23408,22.37161],[114.23409,22.37162],[114.23409,22.37162],[114.2341,22.37163],[114.23411,22.37165],[114.23411,22.37166],[114.23411,22.37166],[114.23411,22.37167],[114.23412,22.37168],[114.23412,22.37168],[114.23412,22.37169],[114.23413,22.37169],[114.23413,22.3717],[114.23414,22.3717],[114.23414,22.3717],[114.23414,22.3717],[114.23414,22.37171],[114.23417,22.37172],[114.23418,22.37172],[114.23418,22.37173],[114.23419,22.37173],[114.2342,22.37173],[114.2342,22.37173],[114.23421,22.37173],[114.23423,22.37173],[114.23424,22.37174],[114.23425,22.37174],[114.23429,22.37174],[114.23429,22.37174],[114.23431,22.37174],[114.23433,22.37173],[114.23433,22.37173],[114.23434,22.37173],[114.23435,22.37173],[114.23437,22.37173],[114.23438,22.37173],[114.2344,22.37172],[114.2344,22.37172],[114.23441,22.37172],[114.23441,22.37172],[114.23442,22.37172],[114.23443,22.37171],[114.23443,22.37171],[114.23444,22.37171],[114.23444,22.3717],[114.23445,22.3717],[114.23446,22.3717],[114.23446,22.3717],[114.23448,22.3717],[114.23451,22.37171],[114.23452,22.37171],[114.23452,22.37171],[114.23452,22.37171],[114.23453,22.37171],[114.23453,22.37172],[114.23454,22.37172],[114.23456,22.37173],[114.23457,22.37174],[114.23457,22.37174],[114.23458,22.37175],[114.23458,22.37176],[114.23458,22.37176],[114.23458,22.37176],[114.2346,22.37179],[114.2346,22.3718],[114.23461,22.3718],[114.23462,22.37184],[114.23463,22.37184],[114.23463,22.37186],[114.23464,22.37187],[114.23531,22.37227],[114.23587,22.37256],[114.23588,22.37257],[114.23588,22.37257],[114.2359,22.37259],[114.23591,22.3726],[114.23592,22.37261],[114.23594,22.37262],[114.23594,22.37263],[114.23595,22.37263],[114.23595,22.37263],[114.23595,22.37263],[114.23595,22.37263],[114.23596,22.37264],[114.23597,22.37265],[114.23597,22.37266],[114.236,22.37267],[114.23601,22.37268],[114.23602,22.37269],[114.23605,22.3727],[114.23608,22.37271],[114.23608,22.37271],[114.23608,22.37271],[114.23609,22.37272],[114.2361,22.37272],[114.23611,22.37273],[114.23611,22.37273],[114.23612,22.37273],[114.23612,22.37273],[114.23612,22.37274],[114.23613,22.37274],[114.23616,22.37275],[114.23616,22.37275],[114.23619,22.37276],[114.23621,22.37277],[114.23622,22.37277],[114.23625,22.37278],[114.23625,22.37278],[114.23629,22.3728],[114.23631,22.37281],[114.23631,22.37281],[114.23634,22.37282],[114.23635,22.37283],[114.23637,22.37284],[114.23639,22.37285],[114.23639,22.37285],[114.23641,22.37286],[114.23646,22.37288],[114.23649,22.37289],[114.23649,22.37289],[114.23651,22.3729],[114.23652,22.37291],[114.23653,22.37291],[114.23654,22.37291],[114.23655,22.37292],[114.23657,22.37292],[114.23659,22.37293],[114.2366,22.37293],[114.2366,22.37293],[114.2366,22.37293],[114.23664,22.37296],[114.23664,22.37296],[114.23665,22.37296],[114.23666,22.37297],[114.23669,22.37297],[114.2367,22.37298],[114.23673,22.37299],[114.23674,22.37299],[114.23674,22.373],[114.23675,22.373],[114.23677,22.37301],[114.23678,22.37301],[114.23679,22.37301],[114.23679,22.37301],[114.2368,22.37302],[114.2368,22.37302],[114.23681,22.37303],[114.23681,22.37303],[114.23681,22.37303],[114.23681,22.37303],[114.23682,22.37305],[114.23683,22.37305],[114.23683,22.37306],[114.23683,22.37306],[114.23684,22.37307],[114.23684,22.37307],[114.23685,22.37307],[114.23688,22.37308],[114.23689,22.37309],[114.23689,22.37309],[114.23693,22.3731],[114.23693,22.3731],[114.23694,22.3731],[114.23695,22.37311],[114.23695,22.37311],[114.23696,22.37311],[114.23696,22.37311],[114.23697,22.37312],[114.23698,22.37312],[114.23698,22.37312],[114.23699,22.37313],[114.237,22.37314],[114.23702,22.37315],[114.23703,22.37316],[114.23704,22.37317],[114.23707,22.3732],[114.23707,22.3732],[114.23708,22.37321],[114.2371,22.37323],[114.23711,22.37323],[114.23713,22.37324],[114.23714,22.37325],[114.23715,22.37326],[114.23716,22.37326],[114.23717,22.37326],[114.23718,22.37327],[114.23721,22.37328],[114.23721,22.37328],[114.23721,22.37328],[114.23722,22.37329],[114.23722,22.37329],[114.23722,22.37329],[114.23722,22.37329],[114.23725,22.37329],[114.23725,22.37329],[114.23725,22.37329],[114.23726,22.37328],[114.23727,22.37327],[114.23727,22.37326],[114.23727,22.37326],[114.23729,22.37325],[114.23729,22.37324],[114.2373,22.37324],[114.2373,22.37324],[114.2373,22.37324],[114.23731,22.37324],[114.23731,22.37324],[114.23733,22.37323],[114.23734,22.37323],[114.23734,22.37323],[114.23735,22.37323],[114.23736,22.37323],[114.23736,22.37323],[114.23737,22.37323],[114.23737,22.37324],[114.23738,22.37324],[114.23738,22.37324],[114.23739,22.37324],[114.23739,22.37325],[114.2374,22.37325],[114.23742,22.37327],[114.23742,22.37327],[114.23743,22.37328],[114.23744,22.3733],[114.23744,22.3733],[114.23745,22.37331],[114.23745,22.37331],[114.23746,22.37331],[114.23746,22.37332],[114.23746,22.37333],[114.23746,22.37334],[114.23746,22.37334],[114.23746,22.37335],[114.23747,22.37336],[114.23747,22.37336],[114.23747,22.37336],[114.23747,22.37336],[114.23749,22.37337],[114.23749,22.37337],[114.23751,22.37339],[114.23752,22.37339],[114.23752,22.3734],[114.23755,22.37342],[114.23755,22.37342],[114.23755,22.37342],[114.23755,22.37342],[114.23758,22.37344],[114.23759,22.37346],[114.23761,22.37348],[114.23762,22.37349],[114.23762,22.37349],[114.23763,22.37349],[114.23763,22.37349],[114.23764,22.3735],[114.23766,22.37351],[114.23769,22.37353],[114.23769,22.37353],[114.23769,22.37353],[114.2377,22.37355],[114.23771,22.37356],[114.23772,22.37356],[114.23868,22.37399],[114.23937,22.37439],[114.23989,22.37466],[114.24052,22.37501],[114.24084,22.37524],[114.24123,22.37552],[114.24223,22.37618],[114.24313,22.37683],[114.2444,22.37787],[114.24442,22.37788],[114.24443,22.3779],[114.24445,22.37792],[114.24446,22.37793],[114.24447,22.37795],[114.24448,22.37796],[114.2445,22.37801],[114.24451,22.37803],[114.24453,22.37805],[114.24454,22.37806],[114.24455,22.37808],[114.24456,22.37809],[114.2446,22.37815],[114.24462,22.37817],[114.24463,22.37818],[114.24463,22.37819],[114.24465,22.37828],[114.24466,22.37831],[114.24467,22.37834],[114.24468,22.37836],[114.24469,22.37838],[114.2447,22.37845],[114.24471,22.37848],[114.24472,22.37851],[114.24472,22.37853],[114.24474,22.37857],[114.24475,22.37858],[114.24476,22.37859],[114.24478,22.37859],[114.24479,22.3786],[114.24481,22.37859],[114.24483,22.3786],[114.24485,22.3786],[114.24487,22.37862],[114.24489,22.37865],[114.2449,22.37867],[114.24494,22.37869],[114.24495,22.3787],[114.24497,22.37872],[114.245,22.37874],[114.24502,22.37875],[114.24503,22.37875],[114.24507,22.37877],[114.24509,22.37878],[114.24511,22.37878],[114.24516,22.3788],[114.24518,22.37882],[114.2452,22.37882],[114.24523,22.37883],[114.24524,22.37883],[114.24527,22.37883],[114.24529,22.37883],[114.24532,22.37885],[114.24533,22.37885],[114.24536,22.37887],[114.24537,22.37888],[114.24539,22.37892],[114.24542,22.37895],[114.24543,22.37897],[114.24545,22.37901],[114.24548,22.37907],[114.24548,22.37909],[114.24549,22.37911],[114.2455,22.37913],[114.24551,22.37915],[114.24548,22.37927],[114.24549,22.3794],[114.24549,22.37943],[114.24549,22.37953],[114.24548,22.37965],[114.24549,22.37968],[114.24554,22.37982],[114.24555,22.37984],[114.24555,22.3799],[114.24555,22.37994],[114.24552,22.38005],[114.24552,22.38008],[114.24552,22.3801],[114.24553,22.38012],[114.24555,22.3802],[114.24564,22.38035],[114.24565,22.38037],[114.24566,22.38041],[114.24567,22.38047],[114.24569,22.38055],[114.24572,22.38063],[114.24576,22.38069],[114.24578,22.38074],[114.24581,22.38085],[114.24582,22.38091],[114.24583,22.38093],[114.24583,22.38108],[114.24584,22.38116],[114.24584,22.38123],[114.24586,22.38132],[114.24586,22.38151],[114.24585,22.38156],[114.24582,22.38167],[114.24582,22.38168],[114.24583,22.3817],[114.24586,22.38173],[114.24586,22.38173],[114.24587,22.38174],[114.2459,22.38178],[114.24598,22.38188],[114.246,22.38192],[114.24602,22.38194],[114.24608,22.38199],[114.24613,22.38205],[114.24615,22.38207],[114.24618,22.3821],[114.24623,22.38213],[114.24622,22.3822],[114.24612,22.38277],[114.24609,22.38324],[114.24609,22.38324],[114.24609,22.38324],[114.24609,22.38387],[114.24028,22.38648],[114.24019,22.38675],[114.24012,22.38681],[114.24005,22.38687],[114.23982,22.38697],[114.23981,22.38697],[114.2398,22.38697],[114.23977,22.38698],[114.23974,22.38699],[114.23973,22.38699],[114.23973,22.38699],[114.23972,22.38699],[114.23972,22.38699],[114.23971,22.387],[114.23971,22.387],[114.23969,22.38701],[114.23969,22.38702],[114.23968,22.38702],[114.23968,22.38702],[114.23968,22.38702],[114.23967,22.38703],[114.23967,22.38703],[114.23967,22.38704],[114.23967,22.38704],[114.23966,22.38705],[114.23966,22.38706],[114.23966,22.38706],[114.23964,22.3871],[114.23964,22.3871],[114.23963,22.38711],[114.23963,22.38714],[114.23962,22.38717],[114.23961,22.38719],[114.23961,22.38721],[114.2396,22.38723],[114.2396,22.38724],[114.2396,22.38726],[114.23959,22.3873],[114.23959,22.38731],[114.23958,22.38736],[114.23958,22.38737],[114.23957,22.38741],[114.23957,22.38742],[114.23957,22.38743],[114.23956,22.38744],[114.23956,22.38745],[114.23955,22.38747],[114.23954,22.38747],[114.23954,22.38748],[114.23952,22.3875],[114.23952,22.38751],[114.23951,22.38751],[114.23948,22.38754],[114.23943,22.38759],[114.23942,22.38759],[114.23941,22.3876],[114.2394,22.38761],[114.23939,22.38762],[114.23939,22.38762],[114.23938,22.38764],[114.23936,22.38765],[114.23934,22.38766],[114.23933,22.38767],[114.23933,22.38767],[114.2393,22.3877],[114.2393,22.3877],[114.23928,22.38771],[114.23927,22.38773],[114.23923,22.38776],[114.23921,22.38777],[114.23919,22.38779],[114.23917,22.3878],[114.23917,22.3878],[114.23915,22.38782],[114.23911,22.38786],[114.2391,22.38787],[114.23909,22.38787],[114.23906,22.38789],[114.23905,22.3879],[114.23898,22.38794],[114.23895,22.38796],[114.23894,22.38797],[114.23892,22.38798],[114.2389,22.38799],[114.23888,22.38801],[114.23885,22.38803],[114.23883,22.38805],[114.23883,22.38805],[114.23881,22.38806],[114.23878,22.38811],[114.23876,22.38813],[114.23875,22.38816],[114.23875,22.38817],[114.23874,22.38818],[114.23874,22.38819],[114.23873,22.38819],[114.23873,22.3882],[114.23872,22.38822],[114.23872,22.38823],[114.23872,22.38823],[114.2387,22.38825],[114.23869,22.38827],[114.23868,22.38828],[114.23867,22.38829],[114.23865,22.38831],[114.23861,22.38834],[114.23859,22.38835],[114.23857,22.38836],[114.23854,22.38838],[114.23853,22.38838],[114.23852,22.38839],[114.2385,22.3884],[114.23848,22.38841],[114.23847,22.38842],[114.23846,22.38843],[114.2384,22.38846],[114.23835,22.38851],[114.23834,22.38852],[114.23833,22.38853],[114.23831,22.38854],[114.23829,22.38856],[114.23828,22.38856],[114.23825,22.3886],[114.23822,22.38863],[114.2382,22.38865],[114.23819,22.38866],[114.23819,22.38867],[114.23817,22.38868],[114.23813,22.38872],[114.23812,22.38873],[114.2381,22.38875],[114.23808,22.38876],[114.23804,22.38879],[114.23803,22.3888],[114.23802,22.38881],[114.238,22.38882],[114.23798,22.38883],[114.23798,22.38883],[114.23795,22.38887],[114.23793,22.38888],[114.23792,22.38888],[114.2379,22.38889],[114.23788,22.3889],[114.23787,22.38891],[114.23784,22.38893],[114.23783,22.38893],[114.23783,22.38894],[114.23782,22.38895],[114.23781,22.38895],[114.23777,22.38899],[114.23776,22.389],[114.23776,22.389],[114.2377,22.38907],[114.23769,22.38908],[114.23768,22.3891],[114.23767,22.38911],[114.23765,22.38912],[114.23765,22.38913],[114.23764,22.38913],[114.23762,22.38915],[114.23761,22.38916],[114.23759,22.3892],[114.23759,22.3892],[114.23757,22.38921],[114.23755,22.38923],[114.23751,22.38926],[114.2375,22.38928],[114.23749,22.38929],[114.23745,22.38933],[114.23741,22.38936],[114.2374,22.38938],[114.23738,22.3894],[114.23736,22.38943],[114.23736,22.38944],[114.23735,22.38945],[114.23732,22.3895],[114.2373,22.38952],[114.23729,22.38954],[114.23726,22.38956],[114.23724,22.38959],[114.23723,22.3896],[114.2372,22.38964],[114.2371,22.38975],[114.23707,22.3898],[114.23706,22.38981],[114.23703,22.38984],[114.23701,22.38986],[114.237,22.38987],[114.23698,22.38989],[114.23696,22.38991],[114.23689,22.38999],[114.23688,22.39],[114.23688,22.39],[114.2368,22.39009],[114.23676,22.39012],[114.23676,22.39011],[114.23646,22.39025],[114.23642,22.39008],[114.23632,22.38974],[114.23632,22.38973],[114.23632,22.38973],[114.23631,22.38973],[114.23631,22.38972],[114.23631,22.38972],[114.23631,22.38971],[114.23631,22.38971],[114.23631,22.3897],[114.23631,22.3897],[114.2363,22.38969],[114.2363,22.38969],[114.2363,22.38969],[114.2363,22.38968],[114.2363,22.38968],[114.2363,22.38967],[114.2363,22.38967],[114.2363,22.38966],[114.23629,22.38966],[114.23629,22.38965],[114.23629,22.38965],[114.23629,22.38965],[114.23629,22.38964],[114.23629,22.38964],[114.23629,22.38963],[114.23629,22.38963],[114.23628,22.38962],[114.23628,22.38962],[114.23628,22.38961],[114.23628,22.38961],[114.23628,22.38961],[114.23628,22.3896],[114.23628,22.3896],[114.23627,22.38959],[114.23627,22.38959],[114.23627,22.38958],[114.23627,22.38958],[114.23627,22.38957],[114.23627,22.38957],[114.23627,22.38957],[114.23627,22.38956],[114.23627,22.38955],[114.23626,22.38955],[114.23626,22.38955],[114.23626,22.38954],[114.23626,22.38954],[114.23626,22.38953],[114.23626,22.38953],[114.23626,22.38952],[114.23626,22.38952],[114.23625,22.38951],[114.23625,22.38951],[114.23625,22.38951],[114.23625,22.3895],[114.23625,22.3895],[114.23625,22.38949],[114.23625,22.38949],[114.23624,22.38948],[114.23624,22.38948],[114.23624,22.38947],[114.23624,22.38947],[114.23624,22.38947],[114.23624,22.38946],[114.23624,22.38946],[114.23623,22.38945],[114.23623,22.38945],[114.23623,22.38944],[114.23623,22.38944],[114.23623,22.38943],[114.23623,22.38943],[114.23622,22.38943],[114.23622,22.38942],[114.23622,22.38942],[114.23622,22.38941],[114.23622,22.38941],[114.23621,22.3894],[114.23621,22.3894],[114.23621,22.38939],[114.23621,22.38939],[114.2362,22.38939],[114.2362,22.38938],[114.2362,22.38938],[114.2362,22.38937],[114.2362,22.38937],[114.23619,22.38937],[114.23619,22.38936],[114.23619,22.38936],[114.23619,22.38935],[114.23618,22.38935],[114.23618,22.38935],[114.23545,22.3899],[114.23452,22.38994],[114.23377,22.38997],[114.23254,22.39003],[114.23245,22.39004],[114.23242,22.39005],[114.2324,22.39005],[114.23238,22.39005],[114.23235,22.39006],[114.23233,22.39006],[114.23231,22.39007],[114.23231,22.39007],[114.23231,22.39007],[114.2323,22.39007],[114.2323,22.39007],[114.23229,22.39007],[114.23229,22.39007],[114.23229,22.39007],[114.23228,22.39007],[114.23228,22.39008],[114.23228,22.39008],[114.23227,22.39008],[114.23227,22.39008],[114.23227,22.39008],[114.23226,22.39008],[114.23226,22.39008],[114.23225,22.39009],[114.23224,22.39009],[114.23223,22.3901],[114.23223,22.3901],[114.23222,22.39011],[114.23221,22.39011],[114.23221,22.39012],[114.2322,22.39012],[114.23219,22.39013],[114.23219,22.39013],[114.23218,22.39013],[114.23218,22.39014],[114.23217,22.39014],[114.23217,22.39015],[114.23216,22.39015],[114.23216,22.39015],[114.23216,22.39016],[114.23216,22.39016],[114.23216,22.39016],[114.23215,22.39016],[114.23215,22.39017],[114.23215,22.39017],[114.23215,22.39017],[114.23215,22.39017],[114.23214,22.39018],[114.23214,22.39018],[114.23214,22.39018],[114.23214,22.39018],[114.23214,22.39019],[114.23214,22.39019],[114.23213,22.39019],[114.23213,22.39019],[114.23213,22.39019],[114.23213,22.3902],[114.23213,22.3902],[114.23213,22.3902],[114.23213,22.3902],[114.23212,22.3902],[114.23212,22.39021],[114.23212,22.39021],[114.23212,22.39021],[114.23212,22.39021],[114.23212,22.39022],[114.23212,22.39022],[114.23212,22.39022],[114.23212,22.39022],[114.23212,22.39022],[114.23212,22.39022],[114.23211,22.39023],[114.23211,22.39023],[114.23211,22.39023],[114.23211,22.39023],[114.23211,22.39023],[114.23211,22.39023],[114.23211,22.39024],[114.23211,22.39024],[114.23211,22.39024],[114.23211,22.39024],[114.23211,22.39024],[114.23211,22.39025],[114.23211,22.39025],[114.23211,22.39025],[114.23211,22.39025],[114.23211,22.39025],[114.23211,22.39025],[114.23211,22.39025],[114.23211,22.39026],[114.23211,22.39026],[114.23211,22.39026],[114.23211,22.39026],[114.23211,22.39026],[114.23211,22.39026],[114.23211,22.39026],[114.23211,22.39026],[114.23211,22.39026],[114.23212,22.39026],[114.23212,22.39026],[114.23212,22.39026],[114.23212,22.39027],[114.23212,22.39027],[114.23212,22.39027],[114.23212,22.39027],[114.23212,22.39027],[114.23212,22.39027],[114.23212,22.39027],[114.23212,22.39027],[114.23212,22.39027],[114.23212,22.39028],[114.23212,22.39028],[114.23213,22.39028],[114.23213,22.39029],[114.23213,22.39029],[114.23213,22.3903],[114.23213,22.3903],[114.23213,22.3903],[114.23214,22.39031],[114.23214,22.39031],[114.23214,22.39032],[114.23214,22.39032],[114.23214,22.39032],[114.23214,22.39032],[114.23214,22.39033],[114.23215,22.39033],[114.23215,22.39033],[114.23215,22.39033],[114.23215,22.39034],[114.23215,22.39034],[114.23215,22.39034],[114.23215,22.39034],[114.23216,22.39035],[114.23216,22.39035],[114.23217,22.39036],[114.23217,22.39037],[114.23218,22.39038],[114.23218,22.39039],[114.23219,22.39039],[114.23219,22.3904],[114.23219,22.39041],[114.23219,22.39041],[114.2322,22.39042],[114.2322,22.39042],[114.2322,22.39042],[114.2322,22.39043],[114.2322,22.39043],[114.2322,22.39044],[114.23221,22.39045],[114.23221,22.39046],[114.23221,22.39046],[114.23221,22.39047],[114.23221,22.39048],[114.23222,22.39049],[114.23222,22.39049],[114.23223,22.39054],[114.23224,22.39054],[114.23224,22.39055],[114.23224,22.39055],[114.23224,22.39055],[114.23224,22.39055],[114.23224,22.39055],[114.23224,22.39055],[114.23224,22.39056],[114.23224,22.39056],[114.23224,22.39056],[114.23224,22.39056],[114.23225,22.39056],[114.23225,22.39057],[114.23225,22.39057],[114.23225,22.39057],[114.23225,22.39057],[114.23225,22.39057],[114.23226,22.39058],[114.23227,22.39059],[114.23228,22.3906],[114.23229,22.39061],[114.23229,22.39061],[114.2323,22.39061],[114.2323,22.39061],[114.2323,22.39062],[114.23231,22.39062],[114.23231,22.39062],[114.23231,22.39063],[114.23232,22.39063],[114.23232,22.39063],[114.23232,22.39063],[114.23233,22.39064],[114.23233,22.39064],[114.23234,22.39064],[114.23234,22.39065],[114.23234,22.39065],[114.23235,22.39065],[114.23235,22.39066],[114.23236,22.39066],[114.23236,22.39066],[114.23236,22.39067],[114.23237,22.39067],[114.23237,22.39068],[114.23238,22.39068],[114.23238,22.39068],[114.23239,22.39069],[114.23239,22.39069],[114.23239,22.3907],[114.2324,22.3907],[114.2324,22.39071],[114.23241,22.39071],[114.23244,22.39075],[114.23244,22.39075],[114.23244,22.39076],[114.23245,22.39077],[114.23245,22.39077],[114.23246,22.39078],[114.23246,22.39078],[114.23247,22.39079],[114.23247,22.39079],[114.23247,22.3908],[114.23248,22.39081],[114.23249,22.39081],[114.23249,22.39082],[114.2325,22.39082],[114.2325,22.39083],[114.2325,22.39083],[114.23251,22.39084],[114.23251,22.39084],[114.23252,22.39085],[114.23252,22.39085],[114.23252,22.39086],[114.23253,22.39086],[114.23253,22.39087],[114.23253,22.39087],[114.23253,22.39087],[114.23254,22.39088],[114.23254,22.39088],[114.23254,22.39088],[114.23256,22.3909],[114.23257,22.39092],[114.23258,22.39093],[114.23259,22.39095],[114.23259,22.39096],[114.23259,22.391],[114.23259,22.39103],[114.23258,22.39106],[114.23256,22.39112],[114.23256,22.39114],[114.23254,22.39118],[114.23253,22.3912],[114.23253,22.3912],[114.23253,22.3912],[114.23253,22.39121],[114.23253,22.39121],[114.23253,22.39122],[114.23253,22.39123],[114.23253,22.39123],[114.23253,22.39123],[114.23253,22.39124],[114.23253,22.39124],[114.23253,22.39125],[114.23253,22.39125],[114.23253,22.39125],[114.23253,22.39126],[114.23253,22.39126],[114.23253,22.39127],[114.23253,22.39127],[114.23253,22.39127],[114.23253,22.39127],[114.23253,22.39127],[114.23253,22.39128],[114.23253,22.39128],[114.23253,22.39128],[114.23253,22.39128],[114.23253,22.39128],[114.23253,22.39129],[114.23253,22.39129],[114.23253,22.39129],[114.23253,22.39129],[114.23253,22.39129],[114.23253,22.3913],[114.23254,22.3913],[114.23254,22.39132],[114.23255,22.39133],[114.23256,22.39134],[114.23259,22.39136],[114.23266,22.3914],[114.2327,22.39142],[114.23272,22.39143],[114.23278,22.39146],[114.23283,22.39149],[114.23286,22.39151],[114.23288,22.39153],[114.23274,22.39186],[114.23254,22.3923],[114.23253,22.39232],[114.23252,22.39236],[114.23252,22.39238],[114.23251,22.39241],[114.2325,22.39243],[114.2325,22.39245],[114.2325,22.39246],[114.23249,22.39248],[114.23249,22.39249],[114.23248,22.39259],[114.23248,22.39261],[114.23248,22.39262],[114.23248,22.39264],[114.23248,22.39266],[114.23248,22.39267],[114.23248,22.39277],[114.23248,22.3928],[114.23248,22.39283],[114.23248,22.39285],[114.23248,22.39295],[114.23248,22.39304],[114.23248,22.39327],[114.23244,22.39328],[114.23239,22.39329],[114.23234,22.39331],[114.2323,22.39332],[114.23226,22.39334],[114.23222,22.39335],[114.23218,22.39337],[114.23214,22.39339],[114.23211,22.39341],[114.23208,22.39344],[114.23206,22.39345],[114.23204,22.39346],[114.23201,22.39349],[114.23199,22.39351],[114.23197,22.39354],[114.23194,22.39356],[114.23192,22.39359],[114.2319,22.39363],[114.23188,22.39366],[114.23186,22.39369],[114.23183,22.39373],[114.23181,22.39377],[114.23179,22.39381],[114.23177,22.39386],[114.23174,22.39394],[114.23171,22.39403],[114.23165,22.39419],[114.23164,22.39422],[114.23163,22.39425],[114.23161,22.39428],[114.2316,22.3943],[114.23158,22.39433],[114.23155,22.39437],[114.23153,22.3944],[114.23151,22.39443],[114.23148,22.39445],[114.23145,22.39448],[114.23143,22.39451],[114.2314,22.39454],[114.23134,22.39459],[114.23129,22.39463],[114.23117,22.39473],[114.23114,22.39476],[114.23112,22.39478],[114.23107,22.39482],[114.23104,22.39485],[114.23101,22.39488],[114.23099,22.39492],[114.23096,22.39495],[114.23093,22.39499],[114.23091,22.39502],[114.2309,22.39504],[114.23089,22.39506],[114.23087,22.3951],[114.23078,22.39529],[114.23068,22.39549],[114.23066,22.39553],[114.23065,22.39556],[114.23063,22.3956],[114.23061,22.39563],[114.23058,22.39567],[114.23055,22.39571],[114.23052,22.39575],[114.23049,22.39579],[114.23045,22.39584],[114.2304,22.3959],[114.23032,22.396],[114.23023,22.3961],[114.23018,22.39616],[114.23012,22.39622],[114.23006,22.39629],[114.22999,22.39638],[114.22994,22.39643],[114.2299,22.39649],[114.22986,22.39654],[114.22982,22.39659],[114.2298,22.39662],[114.22979,22.39665],[114.22977,22.39667],[114.22976,22.3967],[114.22974,22.39673],[114.22973,22.39676],[114.22971,22.39679],[114.2297,22.39682],[114.22968,22.39689],[114.22966,22.39697],[114.22959,22.39719],[114.22957,22.39724],[114.22956,22.39729],[114.22948,22.39761],[114.22946,22.39765],[114.22945,22.39769],[114.22943,22.39773],[114.22941,22.39777],[114.22939,22.39781],[114.22936,22.39784],[114.22933,22.39788],[114.2293,22.39792],[114.22926,22.39795],[114.22923,22.39798],[114.22919,22.39801],[114.22912,22.39806],[114.22905,22.39811],[114.22899,22.39816],[114.22893,22.39821],[114.22887,22.39827],[114.22881,22.39832],[114.22874,22.39839],[114.22869,22.39845],[114.22868,22.39846],[114.22863,22.39851],[114.22858,22.39857],[114.22854,22.3986],[114.22851,22.39864],[114.2285,22.39865],[114.22848,22.39867],[114.22845,22.3987],[114.22843,22.39873],[114.2284,22.39876],[114.22837,22.39879],[114.22835,22.39882],[114.22833,22.39884],[114.22831,22.39887],[114.2283,22.39889],[114.22828,22.39892],[114.22826,22.39894],[114.22825,22.39897],[114.22823,22.399],[114.22822,22.39902],[114.22819,22.39908],[114.22817,22.39913],[114.22813,22.39922],[114.22795,22.39969],[114.2278,22.40002],[114.22778,22.40005],[114.22777,22.40007],[114.22776,22.4001],[114.22774,22.40013],[114.22772,22.40015],[114.22771,22.40018],[114.22769,22.4002],[114.22767,22.40022],[114.22765,22.40024],[114.22764,22.40026],[114.22762,22.40028],[114.2276,22.40029],[114.22758,22.40031],[114.22756,22.40032],[114.22754,22.40034],[114.22734,22.40048],[114.22619,22.40125],[114.22591,22.40169],[114.22663,22.40189],[114.22675,22.40193],[114.22674,22.40194],[114.22672,22.40195],[114.22671,22.40196],[114.2267,22.40197],[114.22669,22.40198],[114.22667,22.402],[114.22666,22.40201],[114.22664,22.40202],[114.22664,22.40203],[114.22663,22.40204],[114.22658,22.40211],[114.22655,22.40217],[114.22653,22.40219],[114.22651,22.40222],[114.22645,22.40229],[114.22643,22.40232],[114.2264,22.40235],[114.22638,22.40237],[114.22635,22.4024],[114.2263,22.40245],[114.22624,22.40249],[114.22619,22.40254],[114.22613,22.40258],[114.22609,22.40261],[114.22606,22.40263],[114.22603,22.40265],[114.22599,22.40267],[114.22596,22.40269],[114.22592,22.40272],[114.22589,22.40274],[114.22585,22.40276],[114.22582,22.40277],[114.2258,22.40279],[114.22579,22.40279],[114.22576,22.40281],[114.22571,22.40283],[114.22567,22.40286],[114.22563,22.40288],[114.22558,22.40291],[114.22549,22.40296],[114.22541,22.403],[114.22537,22.40302],[114.22533,22.40304],[114.22529,22.40306],[114.22526,22.40308],[114.2252,22.40311],[114.22519,22.40312],[114.22518,22.40312],[114.22511,22.40316],[114.22504,22.40319],[114.22501,22.40321],[114.22497,22.40322],[114.22495,22.40323],[114.22492,22.40325],[114.22485,22.40328],[114.22482,22.40329],[114.22479,22.40331],[114.22476,22.40332],[114.22473,22.40333],[114.22469,22.40335],[114.22465,22.40337],[114.22462,22.40338],[114.22458,22.4034],[114.22454,22.40341],[114.2245,22.40343],[114.22444,22.40345],[114.22437,22.40348],[114.2243,22.40351],[114.22426,22.40353],[114.22423,22.40354],[114.22416,22.40356],[114.22412,22.40358],[114.22409,22.40359],[114.22406,22.4036],[114.22401,22.40362],[114.22398,22.40363],[114.22396,22.40364],[114.22393,22.40364],[114.22385,22.40367],[114.22383,22.40368],[114.22381,22.40368],[114.22379,22.40369],[114.22378,22.40369],[114.22374,22.40371],[114.22371,22.40372],[114.22363,22.40374],[114.22359,22.40375],[114.22356,22.40376],[114.22351,22.40378],[114.22345,22.40379],[114.22341,22.40381],[114.22337,22.40382],[114.22332,22.40384],[114.22328,22.40385],[114.22324,22.40387],[114.22321,22.40388],[114.22319,22.40388],[114.2231,22.40392],[114.22302,22.40395],[114.22289,22.40401],[114.22282,22.40405],[114.22274,22.40409],[114.2227,22.40412],[114.22266,22.40414],[114.22263,22.40416],[114.22259,22.40419],[114.22254,22.40422],[114.2225,22.40425],[114.22246,22.40428],[114.22245,22.40429],[114.22241,22.40432],[114.22232,22.40439],[114.22228,22.40442],[114.22225,22.40445],[114.22221,22.40448],[114.22218,22.40451],[114.22212,22.40457],[114.22205,22.40464],[114.22203,22.40466],[114.22202,22.40467],[114.22201,22.40469],[114.222,22.4047],[114.22199,22.40472],[114.22196,22.40475],[114.22193,22.40478],[114.22189,22.4048],[114.22186,22.40483],[114.22169,22.40493],[114.22168,22.40494],[114.22163,22.40497],[114.22159,22.40499],[114.22159,22.40499],[114.22158,22.40499],[114.22158,22.40499],[114.22158,22.40499],[114.22157,22.40499],[114.22157,22.405],[114.22156,22.405],[114.22155,22.405],[114.22154,22.40501],[114.22153,22.40501],[114.22148,22.40502],[114.22143,22.40504],[114.22139,22.40507],[114.22134,22.40509],[114.22129,22.40512],[114.22116,22.4052],[114.22114,22.40521],[114.2211,22.40523],[114.22107,22.40525],[114.22102,22.40528],[114.22098,22.40531],[114.22094,22.40535],[114.22073,22.40553],[114.22065,22.40559],[114.2206,22.40563],[114.22055,22.40567],[114.22048,22.40574],[114.22035,22.40584],[114.22025,22.40594],[114.21999,22.40618],[114.21962,22.40649],[114.21946,22.40663],[114.21942,22.40666],[114.21939,22.40668],[114.21938,22.4067],[114.21936,22.40671],[114.21934,22.40673],[114.21933,22.40675],[114.21931,22.40677],[114.2193,22.40679],[114.21928,22.40681],[114.21927,22.40683],[114.21918,22.40701],[114.21918,22.40691],[114.21922,22.40681],[114.21931,22.40669],[114.21945,22.40657],[114.21925,22.40637],[114.21903,22.40649],[114.21897,22.40652],[114.21888,22.40653],[114.21881,22.40653],[114.21875,22.40652],[114.21867,22.40651],[114.21862,22.4065],[114.21858,22.40648],[114.21854,22.40645],[114.2185,22.40642],[114.21814,22.40606],[114.21455,22.40236],[114.20405,22.39145],[114.19101,22.37804],[114.18999,22.37904],[114.19278,22.38198],[114.19864,22.38818],[114.20583,22.39583],[114.20972,22.39994],[114.21662,22.40723],[114.21735,22.408],[114.21576,22.4093],[114.21551,22.40951],[114.21558,22.40957],[114.21564,22.40958],[114.21597,22.4093],[114.21612,22.40918],[114.2162,22.40926],[114.21615,22.4093],[114.21553,22.40981],[114.21545,22.40973],[114.21551,22.40968],[114.21551,22.40962],[114.21545,22.40955],[114.2145,22.41033],[114.21445,22.41037],[114.21371,22.41098],[114.21364,22.41206],[114.2137,22.41207],[114.21372,22.41207],[114.21373,22.41208],[114.21375,22.41209],[114.21377,22.41211],[114.21377,22.41212],[114.21425,22.41326],[114.21425,22.41329],[114.21424,22.41331],[114.21422,22.41332],[114.21478,22.41493],[114.21464,22.41557],[114.21466,22.41557],[114.21467,22.41558],[114.21468,22.41559],[114.21468,22.4156],[114.21468,22.41562],[114.21455,22.4162],[114.21455,22.41622],[114.21454,22.41623],[114.21454,22.41624],[114.21453,22.41626],[114.21452,22.41627],[114.21452,22.41628],[114.21451,22.41629],[114.2145,22.4163],[114.21449,22.41631],[114.21447,22.41632],[114.21446,22.41633],[114.21445,22.41634],[114.21444,22.41635],[114.21423,22.41647],[114.21421,22.41648],[114.2142,22.41649],[114.21418,22.4165],[114.21416,22.41652],[114.21415,22.41653],[114.21413,22.41656],[114.21412,22.41658],[114.21408,22.41663],[114.21412,22.41671],[114.21414,22.41676],[114.21421,22.41692],[114.21423,22.41697],[114.21423,22.41699],[114.21423,22.41703],[114.21423,22.41719],[114.2147,22.41706],[114.21472,22.41713],[114.21424,22.41726],[114.21438,22.41759],[114.21441,22.41768],[114.21452,22.41791],[114.21463,22.41824],[114.21459,22.41833],[114.21465,22.4184],[114.2146,22.41939],[114.21451,22.42143],[114.2145,22.42145],[114.21442,22.42174],[114.21439,22.42181],[114.21439,22.42181],[114.21437,22.42187],[114.21436,22.42189],[114.21425,22.4222],[114.21424,22.42222],[114.21406,22.42272],[114.21406,22.42273],[114.21405,22.42275],[114.21392,22.4231],[114.21389,22.42319],[114.2138,22.42316],[114.21351,22.42309],[114.21349,22.42308],[114.21343,22.42305],[114.21343,22.42305],[114.21315,22.42289],[114.21313,22.42288],[114.21311,22.42286],[114.21308,22.42285],[114.21306,22.42284],[114.21304,22.42284],[114.21253,22.42274],[114.21239,22.42291],[114.21236,22.42295],[114.2123,22.42303],[114.21212,22.42323],[114.21186,22.42348],[114.21181,22.42353],[114.21168,22.42366],[114.21152,22.4238],[114.21141,22.4239],[114.21127,22.42402],[114.21111,22.42415],[114.21091,22.42429],[114.21078,22.42439],[114.21063,22.42449],[114.21043,22.42463],[114.2101,22.42484],[114.2097,22.42511],[114.20924,22.42542],[114.20873,22.42575],[114.20756,22.4265]]]]},"properties":{"M_NM_Eng":"Non-Metro","SR_Eng":"NENT","PDD_Cat_En":"New Town","PDD_Eng":"Sha Tin","M_NM_Tc":"非都會區","SR_Tc":"新界東北","PDD_Cat_Tc":"新市鎮","PDD_Tc":"沙田","M_NM_Sc":"非都会区","SR_Sc_1":"新界东北","PDD_Cat_Sc":"新市镇","PDD_Sc":"沙田","Y2019_Popu":483000,"Y2019_Empl":200050,"Y2026_Popu":493750,"Y2026_Empl":186250,"Y2031_Popu":461100,"Y2031_Empl":179400}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[114.14192,22.3259],[114.14191,22.3259],[114.14191,22.3259],[114.14192,22.3259]]],[[[114.14195,22.32591],[114.14193,22.32591],[114.14193,22.32591],[114.14195,22.32591]]],[[[114.16376,22.34846],[114.16375,22.34846],[114.16374,22.34846],[114.16374,22.34847],[114.16373,22.34847],[114.16372,22.34847],[114.16372,22.34847],[114.16371,22.34848],[114.1637,22.34849],[114.1637,22.34849],[114.16369,22.3485],[114.16369,22.3485],[114.16368,22.34851],[114.16368,22.34851],[114.16367,22.34852],[114.16366,22.34852],[114.16365,22.34853],[114.16365,22.34853],[114.16364,22.34854],[114.16364,22.34854],[114.16363,22.34855],[114.16363,22.34855],[114.16362,22.34856],[114.16362,22.34856],[114.16361,22.34857],[114.1636,22.34857],[114.1636,22.34857],[114.16358,22.34857],[114.16358,22.34857],[114.16357,22.34857],[114.16356,22.34857],[114.16355,22.34857],[114.16355,22.34857],[114.16354,22.34857],[114.16353,22.34856],[114.16352,22.34856],[114.16352,22.34856],[114.16346,22.3485],[114.16345,22.3485],[114.16344,22.34849],[114.16344,22.34849],[114.16343,22.34848],[114.16343,22.34848],[114.16342,22.34847],[114.1634,22.34845],[114.16335,22.34842],[114.16332,22.3484],[114.1633,22.34839],[114.16327,22.34838],[114.16327,22.34838],[114.16326,22.34838],[114.16325,22.34838],[114.16324,22.34838],[114.16324,22.34838],[114.1632,22.34838],[114.16314,22.34839],[114.16313,22.34839],[114.16311,22.34839],[114.16311,22.34839],[114.16309,22.34839],[114.16308,22.34839],[114.16307,22.34839],[114.16306,22.34839],[114.16305,22.34839],[114.16304,22.34839],[114.16302,22.34838],[114.16301,22.34838],[114.163,22.34838],[114.16299,22.34838],[114.16298,22.34838],[114.16298,22.34838],[114.16297,22.34838],[114.16296,22.34837],[114.16295,22.34837],[114.16294,22.34837],[114.16294,22.34837],[114.16293,22.34836],[114.16293,22.34835],[114.16293,22.34835],[114.16292,22.34834],[114.16292,22.34833],[114.16292,22.34831],[114.16292,22.3483],[114.16291,22.34829],[114.16291,22.34827],[114.16291,22.34825],[114.1629,22.34824],[114.1629,22.34823],[114.16289,22.34821],[114.16289,22.3482],[114.16289,22.34819],[114.16288,22.34818],[114.16288,22.34818],[114.16287,22.34817],[114.16287,22.34816],[114.16286,22.34816],[114.16285,22.34815],[114.16284,22.34814],[114.16283,22.34813],[114.16282,22.34813],[114.16282,22.34812],[114.16281,22.34812],[114.1628,22.34812],[114.1628,22.34811],[114.16279,22.34811],[114.16276,22.3481],[114.16274,22.34809],[114.16262,22.34806],[114.16261,22.34805],[114.1626,22.34805],[114.16259,22.34805],[114.16257,22.34804],[114.16256,22.34804],[114.16254,22.34803],[114.16252,22.34803],[114.1625,22.34802],[114.16249,22.34801],[114.16246,22.348],[114.16245,22.348],[114.16244,22.348],[114.16235,22.34796],[114.16234,22.34796],[114.16233,22.34795],[114.16231,22.34795],[114.1623,22.34794],[114.16229,22.34794],[114.16227,22.34793],[114.16225,22.34793],[114.16224,22.34792],[114.16222,22.34792],[114.16221,22.34791],[114.16221,22.34791],[114.1622,22.3479],[114.16218,22.34789],[114.16218,22.34789],[114.16217,22.34787],[114.16215,22.34786],[114.16214,22.34785],[114.16212,22.34784],[114.16212,22.34783],[114.16211,22.34782],[114.1621,22.34781],[114.16205,22.34776],[114.16201,22.34771],[114.16198,22.34768],[114.16196,22.34767],[114.16194,22.34766],[114.16191,22.34764],[114.16189,22.34764],[114.16185,22.34764],[114.1618,22.34765],[114.16178,22.34765],[114.16177,22.34765],[114.16176,22.34764],[114.16173,22.34759],[114.16169,22.34755],[114.16167,22.34754],[114.16163,22.34754],[114.16157,22.34755],[114.16156,22.34755],[114.16154,22.34755],[114.16151,22.34754],[114.1615,22.34754],[114.16143,22.34752],[114.16142,22.34752],[114.16141,22.34751],[114.1614,22.34751],[114.16138,22.3475],[114.16132,22.34748],[114.16131,22.34748],[114.16129,22.34747],[114.16126,22.34745],[114.16122,22.34743],[114.1612,22.34741],[114.16119,22.3474],[114.16118,22.34738],[114.16117,22.34735],[114.16115,22.34729],[114.16115,22.34727],[114.16115,22.34726],[114.16115,22.34718],[114.16115,22.34717],[114.16114,22.34714],[114.16112,22.34709],[114.16111,22.34707],[114.16109,22.34704],[114.16107,22.34702],[114.16104,22.347],[114.16101,22.34699],[114.16099,22.34698],[114.16097,22.34697],[114.16097,22.34697],[114.16097,22.34697],[114.16097,22.34697],[114.16096,22.34697],[114.16096,22.34696],[114.16096,22.34696],[114.16096,22.34696],[114.16096,22.34696],[114.16096,22.34696],[114.16096,22.34696],[114.16096,22.34696],[114.16095,22.34696],[114.16095,22.34696],[114.16095,22.34696],[114.16095,22.34696],[114.16095,22.34696],[114.16095,22.34696],[114.16095,22.34696],[114.16095,22.34696],[114.16095,22.34696],[114.16094,22.34696],[114.16094,22.34696],[114.16094,22.34696],[114.16094,22.34696],[114.16094,22.34696],[114.16093,22.34696],[114.16093,22.34696],[114.16093,22.34696],[114.16093,22.34696],[114.16093,22.34696],[114.16092,22.34696],[114.16092,22.34696],[114.16092,22.34696],[114.16092,22.34696],[114.16092,22.34696],[114.16092,22.34696],[114.16092,22.34696],[114.16092,22.34696],[114.16092,22.34696],[114.16092,22.34696],[114.16091,22.34696],[114.16091,22.34696],[114.16091,22.34696],[114.16091,22.34696],[114.16091,22.34696],[114.16091,22.34696],[114.16091,22.34696],[114.16091,22.34696],[114.16091,22.34696],[114.1609,22.34696],[114.1609,22.34696],[114.1609,22.34696],[114.1609,22.34696],[114.1609,22.34696],[114.1609,22.34696],[114.1609,22.34696],[114.16089,22.34697],[114.16089,22.34697],[114.16089,22.34697],[114.16089,22.34697],[114.16089,22.34697],[114.16089,22.34697],[114.16088,22.34697],[114.16088,22.34697],[114.16088,22.34697],[114.16088,22.34697],[114.16088,22.34697],[114.16088,22.34697],[114.16087,22.34697],[114.16087,22.34697],[114.16087,22.34697],[114.16087,22.34697],[114.16087,22.34697],[114.16087,22.34697],[114.16087,22.34697],[114.16087,22.34697],[114.16086,22.34697],[114.16086,22.34697],[114.16086,22.34697],[114.16086,22.34697],[114.16086,22.34697],[114.16086,22.34697],[114.16086,22.34697],[114.16086,22.34697],[114.16086,22.34697],[114.16086,22.34698],[114.16085,22.34698],[114.16085,22.34698],[114.16085,22.34698],[114.16085,22.34698],[114.16085,22.34698],[114.16085,22.34698],[114.16084,22.34698],[114.16084,22.34698],[114.16084,22.34698],[114.16084,22.34698],[114.16084,22.34698],[114.16084,22.34698],[114.16083,22.34698],[114.16083,22.34698],[114.16083,22.34698],[114.16083,22.34698],[114.16083,22.34697],[114.16083,22.34697],[114.16083,22.34697],[114.16083,22.34697],[114.16083,22.34697],[114.16083,22.34697],[114.16082,22.34697],[114.16082,22.34697],[114.16082,22.34697],[114.16082,22.34697],[114.16082,22.34697],[114.16081,22.34697],[114.16078,22.34697],[114.16075,22.34697],[114.16074,22.34698],[114.16072,22.34699],[114.1607,22.34703],[114.16067,22.34708],[114.16065,22.34714],[114.16064,22.34716],[114.16061,22.3472],[114.16057,22.34724],[114.16053,22.34728],[114.16049,22.34732],[114.16043,22.34736],[114.1604,22.34737],[114.16037,22.34738],[114.16034,22.34739],[114.1603,22.34739],[114.16028,22.34739],[114.16026,22.34738],[114.16019,22.34732],[114.16012,22.34727],[114.1601,22.34725],[114.16008,22.34723],[114.16006,22.34721],[114.16003,22.34717],[114.15998,22.3471],[114.15991,22.347],[114.15988,22.34695],[114.15986,22.34693],[114.15983,22.3469],[114.15978,22.34687],[114.15976,22.34686],[114.15973,22.34685],[114.15972,22.34684],[114.15972,22.34683],[114.15971,22.34682],[114.15971,22.34681],[114.15972,22.34681],[114.15972,22.3468],[114.15972,22.3468],[114.15972,22.3468],[114.15972,22.3468],[114.15972,22.3468],[114.15972,22.3468],[114.15972,22.34679],[114.15972,22.34679],[114.15972,22.34679],[114.15972,22.34679],[114.15972,22.34679],[114.15972,22.34679],[114.15972,22.34678],[114.15972,22.34678],[114.15972,22.34678],[114.15972,22.34678],[114.15972,22.34678],[114.15972,22.34678],[114.15972,22.34678],[114.15972,22.34677],[114.15972,22.34677],[114.15972,22.34677],[114.15973,22.34677],[114.15973,22.34677],[114.15973,22.34677],[114.15973,22.34677],[114.15973,22.34676],[114.15973,22.34676],[114.15973,22.34676],[114.15973,22.34676],[114.15973,22.34676],[114.15973,22.34676],[114.15973,22.34675],[114.15973,22.34675],[114.15973,22.34675],[114.15973,22.34675],[114.15973,22.34675],[114.15973,22.34675],[114.15973,22.34674],[114.15973,22.34674],[114.15973,22.34674],[114.15973,22.34674],[114.15973,22.34674],[114.15973,22.34674],[114.15973,22.34673],[114.15973,22.34673],[114.15973,22.34673],[114.15974,22.34673],[114.15974,22.34673],[114.15974,22.34672],[114.15974,22.34672],[114.15974,22.34672],[114.15974,22.34672],[114.15974,22.34672],[114.15974,22.34672],[114.15974,22.34671],[114.15974,22.34671],[114.15974,22.34671],[114.15974,22.34671],[114.15974,22.34671],[114.15974,22.34671],[114.15974,22.3467],[114.15974,22.3467],[114.15974,22.3467],[114.15974,22.3467],[114.15974,22.3467],[114.15974,22.3467],[114.15974,22.3467],[114.15974,22.34669],[114.15974,22.34669],[114.15974,22.34669],[114.15974,22.34669],[114.15974,22.34669],[114.15974,22.34669],[114.15975,22.34668],[114.15975,22.34668],[114.15975,22.34668],[114.15975,22.34668],[114.15975,22.34668],[114.15975,22.34668],[114.15975,22.34668],[114.15975,22.34668],[114.15975,22.34667],[114.15975,22.34667],[114.15975,22.34667],[114.15975,22.34667],[114.15975,22.34667],[114.15975,22.34666],[114.15975,22.34666],[114.15975,22.34666],[114.15975,22.34666],[114.15975,22.34666],[114.15975,22.34666],[114.15975,22.34665],[114.15975,22.34665],[114.15975,22.34665],[114.15975,22.34665],[114.15975,22.34664],[114.15975,22.34664],[114.15975,22.34664],[114.15975,22.34664],[114.15975,22.34664],[114.15975,22.34663],[114.15975,22.34663],[114.15975,22.34663],[114.15975,22.34663],[114.15975,22.34663],[114.15975,22.34663],[114.15975,22.34663],[114.15975,22.34662],[114.15975,22.34662],[114.15975,22.34662],[114.15975,22.34662],[114.15975,22.34662],[114.15975,22.34662],[114.15975,22.34662],[114.15975,22.34662],[114.15975,22.34662],[114.15975,22.34661],[114.15975,22.34661],[114.15975,22.34661],[114.15975,22.34661],[114.15975,22.34661],[114.15975,22.34661],[114.15975,22.34661],[114.15975,22.34661],[114.15975,22.34661],[114.15975,22.3466],[114.15975,22.3466],[114.15975,22.3466],[114.15976,22.34659],[114.15975,22.34659],[114.15975,22.34658],[114.15975,22.34658],[114.15975,22.34658],[114.15975,22.34657],[114.15974,22.34654],[114.15973,22.34653],[114.15973,22.34651],[114.15972,22.34649],[114.15972,22.34648],[114.15972,22.34647],[114.15972,22.34646],[114.15972,22.34645],[114.15972,22.34644],[114.15972,22.34642],[114.15972,22.34641],[114.15971,22.3464],[114.15971,22.34638],[114.15971,22.34637],[114.15971,22.34636],[114.15971,22.34636],[114.1597,22.34635],[114.1597,22.34634],[114.1597,22.34633],[114.15969,22.34632],[114.15969,22.34632],[114.15969,22.34631],[114.15968,22.3463],[114.15968,22.3463],[114.15968,22.34629],[114.15967,22.34629],[114.15967,22.34627],[114.15966,22.34627],[114.15966,22.34626],[114.15965,22.34625],[114.15965,22.34625],[114.15965,22.34624],[114.15964,22.34624],[114.15964,22.34623],[114.15963,22.34622],[114.15963,22.34621],[114.15962,22.34621],[114.15961,22.3462],[114.15961,22.34619],[114.1596,22.34619],[114.1596,22.34618],[114.1596,22.34618],[114.15959,22.34617],[114.15959,22.34616],[114.15959,22.34616],[114.15958,22.34615],[114.15958,22.34614],[114.15958,22.34614],[114.15958,22.34613],[114.15958,22.34612],[114.15957,22.34611],[114.15957,22.3461],[114.15957,22.3461],[114.15957,22.34609],[114.15957,22.34608],[114.15957,22.34608],[114.15957,22.34607],[114.15957,22.34606],[114.15957,22.34606],[114.15957,22.34605],[114.15957,22.34604],[114.15957,22.34604],[114.15957,22.34603],[114.15957,22.34602],[114.15957,22.34601],[114.15957,22.34601],[114.15957,22.346],[114.15957,22.34599],[114.15956,22.34599],[114.15956,22.34598],[114.15955,22.34598],[114.15955,22.34597],[114.15954,22.34597],[114.15953,22.34597],[114.15952,22.34597],[114.15952,22.34597],[114.15951,22.34597],[114.1595,22.34597],[114.15949,22.34597],[114.15949,22.34597],[114.15947,22.34597],[114.15947,22.34597],[114.15946,22.34597],[114.15945,22.34597],[114.15944,22.34597],[114.15944,22.34597],[114.15943,22.34597],[114.15942,22.34597],[114.15941,22.34597],[114.1594,22.34597],[114.1594,22.34597],[114.15939,22.34597],[114.15938,22.34597],[114.15937,22.34597],[114.15937,22.34596],[114.15936,22.34596],[114.15935,22.34596],[114.15934,22.34596],[114.15933,22.34596],[114.15933,22.34596],[114.15932,22.34596],[114.15931,22.34595],[114.15931,22.34595],[114.1593,22.34595],[114.15929,22.34595],[114.15928,22.34595],[114.15928,22.34594],[114.15927,22.34594],[114.15926,22.34594],[114.15926,22.34594],[114.15925,22.34593],[114.15924,22.34593],[114.15924,22.34593],[114.15923,22.34592],[114.15922,22.34592],[114.15922,22.34592],[114.15921,22.34591],[114.15921,22.34591],[114.1592,22.3459],[114.1592,22.34589],[114.15919,22.34589],[114.15919,22.34588],[114.15918,22.34588],[114.15918,22.34587],[114.15917,22.34587],[114.15917,22.34586],[114.15917,22.34585],[114.15916,22.34585],[114.15916,22.34584],[114.15915,22.34583],[114.15915,22.34583],[114.15915,22.34582],[114.15914,22.34582],[114.15914,22.34581],[114.15914,22.3458],[114.15913,22.3458],[114.15913,22.34579],[114.15913,22.34579],[114.15912,22.34578],[114.15912,22.34577],[114.15912,22.34576],[114.15911,22.34576],[114.15911,22.34575],[114.15911,22.34575],[114.1591,22.34574],[114.1591,22.34573],[114.1591,22.34572],[114.15909,22.34572],[114.15909,22.34571],[114.15908,22.34571],[114.15908,22.3457],[114.15907,22.34569],[114.15907,22.34569],[114.15906,22.34568],[114.15906,22.34568],[114.15905,22.34567],[114.15905,22.34567],[114.15904,22.34566],[114.15904,22.34566],[114.15903,22.34565],[114.15903,22.34565],[114.15902,22.34564],[114.15902,22.34564],[114.15901,22.34563],[114.15901,22.34563],[114.159,22.34562],[114.159,22.34562],[114.15899,22.34561],[114.15899,22.3456],[114.15898,22.3456],[114.15898,22.34559],[114.15898,22.34559],[114.15897,22.34558],[114.15897,22.34557],[114.15897,22.34556],[114.15896,22.34556],[114.15896,22.34555],[114.15896,22.34555],[114.15895,22.34554],[114.15895,22.34553],[114.15894,22.34553],[114.15894,22.34552],[114.15894,22.34552],[114.15893,22.34551],[114.15893,22.3455],[114.15892,22.3455],[114.15892,22.34549],[114.15891,22.34549],[114.15891,22.34548],[114.1589,22.34548],[114.15884,22.34542],[114.15883,22.34541],[114.15883,22.34541],[114.15882,22.34541],[114.15881,22.3454],[114.1588,22.3454],[114.1588,22.34539],[114.15879,22.34539],[114.15878,22.34539],[114.15878,22.34539],[114.15877,22.34538],[114.15876,22.34538],[114.15876,22.34538],[114.15875,22.34538],[114.15874,22.34538],[114.15873,22.34538],[114.15872,22.34539],[114.15871,22.34539],[114.15871,22.34539],[114.1587,22.34539],[114.15869,22.34539],[114.15869,22.34539],[114.15868,22.34539],[114.15867,22.34539],[114.15866,22.34539],[114.15866,22.34537],[114.15865,22.34537],[114.15865,22.34536],[114.15865,22.34536],[114.15864,22.34535],[114.15863,22.34534],[114.15862,22.34534],[114.15862,22.34533],[114.15861,22.34533],[114.1586,22.34533],[114.1586,22.34533],[114.15859,22.34533],[114.15858,22.34533],[114.15857,22.34533],[114.15856,22.34534],[114.15855,22.34534],[114.15855,22.34534],[114.15854,22.34534],[114.15853,22.34534],[114.15853,22.34535],[114.15852,22.34535],[114.15851,22.34535],[114.1585,22.34535],[114.1585,22.34536],[114.15849,22.34536],[114.15848,22.34536],[114.15848,22.34537],[114.15847,22.34537],[114.15846,22.34537],[114.15846,22.34538],[114.15845,22.34538],[114.15844,22.34539],[114.15844,22.34539],[114.15843,22.34539],[114.15842,22.34539],[114.15841,22.34539],[114.15841,22.34539],[114.1584,22.34539],[114.1584,22.3454],[114.15839,22.3454],[114.15838,22.3454],[114.15837,22.3454],[114.15837,22.3454],[114.15836,22.3454],[114.15835,22.3454],[114.15834,22.3454],[114.15834,22.3454],[114.15833,22.3454],[114.15832,22.3454],[114.15831,22.3454],[114.1583,22.34541],[114.1583,22.34541],[114.15829,22.34541],[114.15828,22.34541],[114.15827,22.34542],[114.15827,22.34542],[114.15826,22.34542],[114.15825,22.34543],[114.15825,22.34543],[114.15824,22.34543],[114.15823,22.34544],[114.15823,22.34544],[114.15822,22.34544],[114.15821,22.34545],[114.15821,22.34545],[114.1582,22.34545],[114.15819,22.34546],[114.15818,22.34546],[114.15818,22.34547],[114.15817,22.34547],[114.15816,22.34547],[114.15816,22.34548],[114.15815,22.34548],[114.15815,22.34548],[114.15814,22.34549],[114.15813,22.34549],[114.15813,22.3455],[114.15812,22.3455],[114.15812,22.34551],[114.15811,22.34552],[114.15811,22.34553],[114.15811,22.34553],[114.1581,22.34554],[114.1581,22.34555],[114.1581,22.34555],[114.15809,22.34556],[114.15809,22.34556],[114.15809,22.34557],[114.15808,22.34558],[114.15808,22.34558],[114.15807,22.34559],[114.15807,22.3456],[114.15806,22.3456],[114.15806,22.34561],[114.15805,22.34561],[114.15805,22.34562],[114.15804,22.34563],[114.15804,22.34563],[114.15803,22.34564],[114.15803,22.34565],[114.15802,22.34565],[114.15802,22.34566],[114.15801,22.34567],[114.158,22.34567],[114.158,22.34568],[114.15799,22.34568],[114.15799,22.34569],[114.15798,22.34569],[114.15798,22.3457],[114.15797,22.3457],[114.15797,22.3457],[114.15796,22.34571],[114.15796,22.34571],[114.15795,22.34572],[114.15794,22.34572],[114.15793,22.34572],[114.15792,22.34572],[114.15792,22.34572],[114.15791,22.34572],[114.1579,22.34572],[114.15789,22.34572],[114.15788,22.34572],[114.15787,22.34572],[114.15787,22.34572],[114.15787,22.34573],[114.15785,22.34574],[114.15783,22.34576],[114.15781,22.34578],[114.15779,22.34579],[114.15779,22.3458],[114.15778,22.34581],[114.15778,22.34581],[114.15778,22.34582],[114.15777,22.34585],[114.15777,22.34585],[114.15776,22.34586],[114.15776,22.34587],[114.15776,22.34588],[114.15775,22.34588],[114.15775,22.34589],[114.15771,22.34594],[114.1577,22.34594],[114.15769,22.34595],[114.15768,22.34595],[114.15768,22.34595],[114.15766,22.34595],[114.15765,22.34595],[114.15764,22.34595],[114.15763,22.34595],[114.15763,22.34595],[114.15762,22.34595],[114.15762,22.34596],[114.1576,22.34597],[114.1576,22.34597],[114.1576,22.34597],[114.1576,22.34597],[114.1576,22.34597],[114.1576,22.34598],[114.15759,22.34598],[114.15759,22.34598],[114.15759,22.34598],[114.15759,22.34598],[114.15759,22.34598],[114.15759,22.34598],[114.15759,22.34598],[114.15759,22.34598],[114.15759,22.34598],[114.15759,22.34599],[114.15758,22.34599],[114.15758,22.34599],[114.15758,22.34599],[114.15758,22.34599],[114.15758,22.34599],[114.15758,22.34599],[114.15758,22.34599],[114.15758,22.34599],[114.15757,22.346],[114.15757,22.346],[114.15757,22.346],[114.15757,22.346],[114.15757,22.346],[114.15757,22.346],[114.15756,22.346],[114.15756,22.346],[114.15756,22.346],[114.15756,22.34601],[114.15756,22.34601],[114.15756,22.34601],[114.15756,22.34601],[114.15755,22.34601],[114.15755,22.34601],[114.15755,22.34601],[114.15755,22.34601],[114.15755,22.34601],[114.15755,22.34601],[114.15755,22.34601],[114.15754,22.34602],[114.15754,22.34602],[114.15754,22.34602],[114.15754,22.34602],[114.15754,22.34602],[114.15754,22.34602],[114.15754,22.34602],[114.15754,22.34602],[114.15753,22.34602],[114.15753,22.34602],[114.15753,22.34602],[114.15753,22.34602],[114.15753,22.34602],[114.15753,22.34602],[114.15753,22.34603],[114.15753,22.34603],[114.15753,22.34603],[114.15753,22.34603],[114.15753,22.34603],[114.15752,22.34603],[114.15752,22.34603],[114.15752,22.34603],[114.15752,22.34603],[114.15752,22.34603],[114.15752,22.34603],[114.15752,22.34603],[114.15752,22.34603],[114.15752,22.34603],[114.15752,22.34603],[114.15751,22.34603],[114.15751,22.34604],[114.15751,22.34604],[114.15751,22.34604],[114.15751,22.34604],[114.15751,22.34604],[114.15751,22.34604],[114.15751,22.34604],[114.15751,22.34604],[114.1575,22.34604],[114.1575,22.34604],[114.1575,22.34604],[114.1575,22.34604],[114.1575,22.34604],[114.1575,22.34604],[114.1575,22.34604],[114.1575,22.34605],[114.15749,22.34605],[114.15749,22.34605],[114.15749,22.34605],[114.15749,22.34605],[114.15749,22.34605],[114.15749,22.34605],[114.15748,22.34605],[114.15748,22.34605],[114.15748,22.34605],[114.15748,22.34605],[114.15748,22.34606],[114.15747,22.34606],[114.15747,22.34606],[114.15747,22.34606],[114.15747,22.34606],[114.15747,22.34606],[114.15747,22.34606],[114.15746,22.34606],[114.15746,22.34606],[114.15746,22.34606],[114.15746,22.34606],[114.15746,22.34606],[114.15746,22.34606],[114.15746,22.34606],[114.15746,22.34606],[114.15746,22.34606],[114.15745,22.34606],[114.15745,22.34606],[114.15745,22.34606],[114.15745,22.34607],[114.15745,22.34607],[114.15745,22.34607],[114.15745,22.34607],[114.15745,22.34607],[114.15745,22.34607],[114.15745,22.34607],[114.15745,22.34607],[114.15744,22.34607],[114.15744,22.34607],[114.15744,22.34607],[114.15744,22.34607],[114.15744,22.34607],[114.15744,22.34607],[114.15744,22.34607],[114.15744,22.34607],[114.15744,22.34607],[114.15744,22.34607],[114.15743,22.34607],[114.15743,22.34607],[114.15743,22.34607],[114.15743,22.34607],[114.15743,22.34607],[114.15743,22.34607],[114.15743,22.34607],[114.15743,22.34607],[114.15743,22.34607],[114.15743,22.34607],[114.15743,22.34607],[114.15742,22.34607],[114.15742,22.34607],[114.15742,22.34607],[114.15742,22.34607],[114.15742,22.34607],[114.15742,22.34607],[114.15742,22.34608],[114.15742,22.34608],[114.15742,22.34608],[114.15741,22.34608],[114.15741,22.34608],[114.15741,22.34608],[114.15741,22.34608],[114.15741,22.34608],[114.1574,22.34608],[114.1574,22.34608],[114.1574,22.34608],[114.1574,22.34608],[114.1574,22.34608],[114.1574,22.34608],[114.15739,22.34608],[114.15739,22.34609],[114.15739,22.34609],[114.15739,22.34609],[114.15739,22.34609],[114.15739,22.34609],[114.15739,22.34609],[114.15738,22.34609],[114.15738,22.34609],[114.15738,22.34609],[114.15738,22.3461],[114.15738,22.3461],[114.15738,22.3461],[114.15738,22.3461],[114.15738,22.3461],[114.15738,22.3461],[114.15738,22.3461],[114.15738,22.3461],[114.15738,22.3461],[114.15737,22.3461],[114.15737,22.3461],[114.15737,22.3461],[114.15737,22.3461],[114.15737,22.3461],[114.15737,22.34611],[114.15737,22.34611],[114.15737,22.34611],[114.15737,22.34611],[114.15737,22.34611],[114.15737,22.34611],[114.15737,22.34611],[114.15737,22.34611],[114.15737,22.34611],[114.15737,22.34611],[114.15736,22.34611],[114.15736,22.34611],[114.15736,22.34611],[114.15736,22.34611],[114.15736,22.34611],[114.15736,22.34612],[114.15736,22.34612],[114.15736,22.34612],[114.15736,22.34612],[114.15736,22.34612],[114.15736,22.34612],[114.15736,22.34612],[114.15735,22.34612],[114.15735,22.34612],[114.15735,22.34612],[114.15735,22.34612],[114.15735,22.34613],[114.15735,22.34613],[114.15734,22.34613],[114.15734,22.34613],[114.15734,22.34613],[114.15734,22.34613],[114.15734,22.34613],[114.15734,22.34613],[114.15733,22.34613],[114.15733,22.34613],[114.15733,22.34613],[114.15733,22.34614],[114.15733,22.34614],[114.15733,22.34614],[114.15733,22.34614],[114.15732,22.34614],[114.15732,22.34614],[114.15732,22.34614],[114.15732,22.34614],[114.15732,22.34614],[114.15732,22.34614],[114.15732,22.34614],[114.15732,22.34614],[114.15732,22.34614],[114.15732,22.34614],[114.15732,22.34614],[114.15732,22.34614],[114.15731,22.34614],[114.15731,22.34614],[114.15731,22.34614],[114.15731,22.34614],[114.15731,22.34614],[114.15731,22.34614],[114.15731,22.34614],[114.15731,22.34615],[114.15731,22.34615],[114.15731,22.34615],[114.15731,22.34615],[114.1573,22.34615],[114.1573,22.34615],[114.1573,22.34615],[114.1573,22.34615],[114.1573,22.34615],[114.1573,22.34615],[114.1573,22.34615],[114.1573,22.34615],[114.1573,22.34615],[114.1573,22.34615],[114.15729,22.34615],[114.15729,22.34615],[114.15729,22.34615],[114.15729,22.34615],[114.15729,22.34615],[114.15728,22.34616],[114.15728,22.34617],[114.15728,22.34617],[114.15728,22.34618],[114.15728,22.34619],[114.15728,22.3462],[114.15728,22.3462],[114.15728,22.34621],[114.15728,22.34622],[114.15728,22.34622],[114.15728,22.34623],[114.15729,22.34624],[114.15728,22.34625],[114.15728,22.34626],[114.15728,22.34626],[114.15728,22.34627],[114.15727,22.34627],[114.15727,22.34628],[114.15727,22.34628],[114.15727,22.34629],[114.15726,22.34629],[114.15726,22.3463],[114.15726,22.34631],[114.15725,22.34631],[114.15725,22.34632],[114.15725,22.34632],[114.15724,22.34633],[114.15724,22.34634],[114.15723,22.34634],[114.15723,22.34635],[114.15723,22.34635],[114.15722,22.34637],[114.15722,22.34637],[114.15721,22.34638],[114.15721,22.34638],[114.1572,22.34639],[114.1572,22.3464],[114.1572,22.3464],[114.15719,22.34641],[114.15719,22.34641],[114.15719,22.34642],[114.15718,22.34643],[114.15717,22.34644],[114.15717,22.34644],[114.15716,22.34645],[114.15716,22.34645],[114.15716,22.34646],[114.15715,22.34646],[114.15714,22.34647],[114.15713,22.34648],[114.15713,22.34648],[114.15712,22.34648],[114.15711,22.34648],[114.15711,22.34648],[114.1571,22.34648],[114.15709,22.34648],[114.15708,22.34648],[114.15707,22.34648],[114.15707,22.34647],[114.15706,22.34647],[114.15706,22.34647],[114.15705,22.34646],[114.15704,22.34645],[114.15704,22.34645],[114.15703,22.34645],[114.15703,22.34644],[114.15702,22.34644],[114.15701,22.34643],[114.15701,22.34643],[114.157,22.34642],[114.157,22.34642],[114.15699,22.34641],[114.15699,22.3464],[114.15698,22.3464],[114.15698,22.34639],[114.15697,22.34639],[114.15697,22.34638],[114.15696,22.34638],[114.15696,22.34637],[114.15695,22.34637],[114.15695,22.34636],[114.15694,22.34636],[114.15693,22.34635],[114.15693,22.34635],[114.15692,22.34634],[114.15691,22.34634],[114.15691,22.34634],[114.1569,22.34633],[114.15689,22.34633],[114.15689,22.34633],[114.15688,22.34633],[114.15687,22.34633],[114.15686,22.34633],[114.15685,22.34633],[114.15684,22.34632],[114.15684,22.34632],[114.15683,22.34632],[114.15682,22.34632],[114.15681,22.34632],[114.15681,22.34632],[114.1568,22.34632],[114.15679,22.34632],[114.15679,22.34631],[114.15678,22.34631],[114.15677,22.34631],[114.15677,22.34631],[114.15676,22.3463],[114.15675,22.3463],[114.15675,22.34629],[114.15674,22.34629],[114.15674,22.34629],[114.15673,22.34628],[114.15672,22.34628],[114.15672,22.34627],[114.15671,22.34627],[114.1567,22.34627],[114.1567,22.34626],[114.15669,22.34626],[114.15669,22.34626],[114.15668,22.34625],[114.15667,22.34625],[114.15667,22.34625],[114.15666,22.34624],[114.15655,22.34619],[114.15654,22.34619],[114.15654,22.34619],[114.15653,22.34618],[114.15652,22.34618],[114.15652,22.34618],[114.15651,22.34617],[114.1565,22.34617],[114.1565,22.34617],[114.15649,22.34616],[114.15648,22.34616],[114.15648,22.34616],[114.15647,22.34615],[114.15646,22.34615],[114.15645,22.34614],[114.15645,22.34614],[114.15644,22.34613],[114.15643,22.34613],[114.15642,22.34613],[114.15641,22.34613],[114.15641,22.34613],[114.1564,22.34612],[114.15639,22.34612],[114.15638,22.34612],[114.15638,22.34612],[114.15637,22.34612],[114.15636,22.34613],[114.15636,22.34613],[114.15635,22.34613],[114.15634,22.34613],[114.15634,22.34614],[114.15633,22.34614],[114.15632,22.34614],[114.15632,22.34615],[114.15631,22.34615],[114.1563,22.34616],[114.1563,22.34616],[114.15629,22.34617],[114.15628,22.34617],[114.15628,22.34618],[114.15627,22.34618],[114.15627,22.34619],[114.15626,22.34619],[114.15626,22.3462],[114.15625,22.3462],[114.15625,22.34621],[114.15624,22.34621],[114.15624,22.34622],[114.15624,22.34622],[114.15623,22.34623],[114.15623,22.34624],[114.15622,22.34624],[114.15622,22.34625],[114.15621,22.34626],[114.15621,22.34626],[114.15621,22.34627],[114.1562,22.34628],[114.1562,22.34628],[114.15619,22.34629],[114.15619,22.34629],[114.15619,22.3463],[114.15618,22.34631],[114.15618,22.34631],[114.15618,22.34632],[114.15617,22.34633],[114.15617,22.34633],[114.15617,22.34634],[114.15617,22.34634],[114.15616,22.34635],[114.15616,22.34636],[114.15616,22.34636],[114.15615,22.34637],[114.15615,22.34638],[114.15615,22.34638],[114.15614,22.34639],[114.15614,22.3464],[114.15614,22.34641],[114.15613,22.34641],[114.15613,22.34642],[114.15613,22.34642],[114.15613,22.34643],[114.15612,22.34644],[114.15612,22.34644],[114.15612,22.34645],[114.15611,22.34646],[114.15611,22.34646],[114.15611,22.34647],[114.15611,22.34647],[114.1561,22.34648],[114.1561,22.34649],[114.1561,22.34649],[114.15609,22.3465],[114.15609,22.34651],[114.15609,22.34651],[114.15608,22.34652],[114.15608,22.34653],[114.15608,22.34653],[114.15607,22.34654],[114.15607,22.34654],[114.15607,22.34655],[114.15606,22.34656],[114.15606,22.34656],[114.15606,22.34657],[114.15605,22.34657],[114.15605,22.34658],[114.15604,22.34659],[114.15604,22.34659],[114.15604,22.3466],[114.15603,22.3466],[114.15603,22.34661],[114.15602,22.34662],[114.15602,22.34662],[114.15601,22.34663],[114.15601,22.34663],[114.156,22.34664],[114.156,22.34664],[114.15599,22.34664],[114.15598,22.34665],[114.15598,22.34665],[114.15597,22.34665],[114.15596,22.34665],[114.15595,22.34665],[114.15594,22.34666],[114.15594,22.34666],[114.15593,22.34666],[114.15592,22.34666],[114.15592,22.34666],[114.15591,22.34666],[114.1559,22.34666],[114.15589,22.34666],[114.15589,22.34666],[114.15588,22.34666],[114.15587,22.34666],[114.15586,22.34666],[114.15586,22.34666],[114.15585,22.34665],[114.15584,22.34665],[114.15583,22.34665],[114.15583,22.34665],[114.15582,22.34665],[114.15581,22.34664],[114.1558,22.34664],[114.1558,22.34663],[114.15579,22.34662],[114.15579,22.34662],[114.15578,22.34661],[114.15577,22.34661],[114.15577,22.3466],[114.15576,22.3466],[114.15575,22.3466],[114.15575,22.3466],[114.15573,22.34659],[114.15573,22.34659],[114.15572,22.34659],[114.15571,22.34659],[114.1557,22.34659],[114.1557,22.34659],[114.15568,22.34659],[114.15568,22.34659],[114.15567,22.3466],[114.15566,22.3466],[114.15565,22.3466],[114.15564,22.34661],[114.15564,22.34661],[114.15561,22.34661],[114.15558,22.34661],[114.15555,22.34661],[114.15553,22.34661],[114.1555,22.34662],[114.15548,22.34662],[114.15548,22.34662],[114.15548,22.34662],[114.15547,22.34662],[114.15547,22.34662],[114.15547,22.34662],[114.15547,22.34662],[114.15547,22.34662],[114.15547,22.34662],[114.15547,22.34662],[114.15546,22.34662],[114.15546,22.34663],[114.15546,22.34663],[114.15546,22.34663],[114.15546,22.34663],[114.15545,22.34663],[114.15545,22.34663],[114.15545,22.34663],[114.15545,22.34663],[114.15545,22.34663],[114.15545,22.34663],[114.15544,22.34663],[114.15544,22.34663],[114.15544,22.34663],[114.15544,22.34663],[114.15544,22.34663],[114.15544,22.34663],[114.15543,22.34663],[114.15543,22.34663],[114.15543,22.34663],[114.15543,22.34663],[114.15543,22.34663],[114.15543,22.34663],[114.15543,22.34663],[114.15542,22.34664],[114.15542,22.34664],[114.15542,22.34664],[114.15542,22.34664],[114.15542,22.34664],[114.15542,22.34664],[114.15542,22.34664],[114.15541,22.34664],[114.15541,22.34664],[114.15541,22.34664],[114.15541,22.34664],[114.15541,22.34664],[114.1554,22.34664],[114.1554,22.34664],[114.1554,22.34664],[114.1554,22.34664],[114.1554,22.34664],[114.15539,22.34664],[114.15539,22.34664],[114.15539,22.34664],[114.15539,22.34664],[114.15539,22.34664],[114.15539,22.34664],[114.15538,22.34664],[114.15538,22.34664],[114.15538,22.34664],[114.15538,22.34664],[114.15538,22.34664],[114.15538,22.34664],[114.15537,22.34664],[114.15537,22.34665],[114.15537,22.34665],[114.15537,22.34665],[114.15537,22.34665],[114.15537,22.34665],[114.15536,22.34665],[114.15536,22.34665],[114.15535,22.34665],[114.15533,22.34665],[114.15532,22.34666],[114.15531,22.34666],[114.1553,22.34667],[114.1553,22.34667],[114.15529,22.34668],[114.15528,22.34668],[114.15528,22.34668],[114.15527,22.34669],[114.15527,22.34669],[114.15526,22.3467],[114.15525,22.3467],[114.15524,22.34671],[114.15524,22.34671],[114.15523,22.34671],[114.15523,22.34671],[114.15522,22.34672],[114.15521,22.34672],[114.1552,22.34672],[114.1552,22.34673],[114.15519,22.34673],[114.15518,22.34673],[114.15518,22.34673],[114.15517,22.34674],[114.15516,22.34674],[114.15515,22.34674],[114.15515,22.34674],[114.15514,22.34675],[114.15513,22.34675],[114.15513,22.34675],[114.15512,22.34675],[114.15511,22.34676],[114.1551,22.34676],[114.15509,22.34676],[114.15509,22.34677],[114.15508,22.34677],[114.15507,22.34677],[114.15507,22.34677],[114.15506,22.34677],[114.15505,22.34677],[114.15504,22.34677],[114.15497,22.34678],[114.15495,22.34678],[114.15492,22.34678],[114.15489,22.34678],[114.15486,22.34679],[114.15484,22.34679],[114.15484,22.34679],[114.15483,22.34679],[114.15481,22.34679],[114.1548,22.34679],[114.1548,22.34679],[114.15479,22.34679],[114.15478,22.34678],[114.15477,22.34678],[114.15476,22.34678],[114.15476,22.34678],[114.15475,22.34678],[114.15474,22.34678],[114.15441,22.34665],[114.15347,22.3463],[114.1527,22.34618],[114.15256,22.34621],[114.15254,22.34621],[114.15254,22.34621],[114.15253,22.34621],[114.15252,22.34622],[114.15252,22.34622],[114.1525,22.34622],[114.1525,22.34623],[114.15249,22.34623],[114.15248,22.34623],[114.15248,22.34623],[114.15243,22.34626],[114.15243,22.34626],[114.15242,22.34626],[114.15242,22.34627],[114.15242,22.34627],[114.15241,22.34627],[114.15241,22.34627],[114.15241,22.34627],[114.1524,22.34628],[114.1524,22.34628],[114.1524,22.34628],[114.15239,22.34628],[114.15239,22.34628],[114.15239,22.34629],[114.15238,22.34629],[114.15238,22.34629],[114.15238,22.34629],[114.15238,22.3463],[114.15237,22.3463],[114.15237,22.3463],[114.15237,22.3463],[114.15236,22.3463],[114.15236,22.34631],[114.15236,22.34631],[114.15235,22.34631],[114.15235,22.34631],[114.15235,22.34631],[114.15234,22.34632],[114.15234,22.34632],[114.15234,22.34632],[114.15233,22.34632],[114.15233,22.34632],[114.15233,22.34633],[114.15232,22.34633],[114.15232,22.34633],[114.15232,22.34633],[114.15232,22.34634],[114.15231,22.34634],[114.15231,22.34634],[114.15231,22.34634],[114.15129,22.3471],[114.15123,22.34715],[114.1512,22.34717],[114.15118,22.34712],[114.15113,22.34701],[114.15109,22.34687],[114.15107,22.34671],[114.15108,22.34655],[114.15111,22.3463],[114.15118,22.34603],[114.1512,22.34588],[114.15119,22.34573],[114.15116,22.34563],[114.15111,22.34553],[114.15101,22.34544],[114.15096,22.34541],[114.15081,22.3453],[114.15079,22.34527],[114.15078,22.34526],[114.15078,22.34526],[114.15064,22.34537],[114.15063,22.34536],[114.1506,22.34535],[114.15058,22.34533],[114.15056,22.34532],[114.15054,22.34531],[114.15053,22.3453],[114.15051,22.34528],[114.15048,22.34525],[114.15042,22.34518],[114.15036,22.34509],[114.15033,22.34505],[114.15031,22.345],[114.1503,22.34496],[114.15025,22.34497],[114.15015,22.34497],[114.15011,22.34497],[114.15003,22.34497],[114.14997,22.34497],[114.14997,22.34497],[114.14996,22.34497],[114.14995,22.34497],[114.14994,22.34497],[114.14993,22.34497],[114.14993,22.34497],[114.14992,22.34498],[114.14991,22.34498],[114.14991,22.34499],[114.1499,22.34499],[114.14989,22.345],[114.14988,22.34501],[114.14987,22.34502],[114.14985,22.34502],[114.14984,22.34503],[114.14983,22.34504],[114.14983,22.34504],[114.14982,22.34504],[114.14981,22.34504],[114.14981,22.34505],[114.1498,22.34505],[114.14979,22.34505],[114.14978,22.34505],[114.14977,22.34505],[114.14977,22.34505],[114.14976,22.34505],[114.14975,22.34504],[114.14974,22.34504],[114.14974,22.34504],[114.14964,22.34497],[114.1496,22.34494],[114.14959,22.34493],[114.14959,22.34492],[114.14957,22.34492],[114.14956,22.34491],[114.14955,22.3449],[114.14954,22.3449],[114.14953,22.34489],[114.14951,22.34489],[114.14946,22.34487],[114.14935,22.34485],[114.14924,22.34484],[114.14919,22.34484],[114.14919,22.34484],[114.14918,22.34482],[114.14906,22.34479],[114.14905,22.34479],[114.14904,22.34479],[114.14904,22.34479],[114.14903,22.34479],[114.14902,22.34479],[114.14901,22.34479],[114.149,22.34479],[114.149,22.34478],[114.14899,22.34478],[114.14898,22.34478],[114.14897,22.34478],[114.14897,22.34478],[114.14896,22.34478],[114.14895,22.34478],[114.14894,22.34478],[114.14894,22.34478],[114.14893,22.34477],[114.14892,22.34477],[114.14891,22.34477],[114.1489,22.34477],[114.14889,22.34477],[114.14889,22.34477],[114.14888,22.34477],[114.14887,22.34477],[114.14887,22.34477],[114.14885,22.34478],[114.14884,22.34478],[114.14884,22.34478],[114.14883,22.34478],[114.14882,22.34478],[114.14882,22.34478],[114.1488,22.34479],[114.14879,22.34479],[114.14879,22.34479],[114.14879,22.34479],[114.14878,22.34479],[114.14877,22.34479],[114.14877,22.3448],[114.14876,22.3448],[114.14875,22.3448],[114.14874,22.3448],[114.14874,22.34481],[114.14873,22.34481],[114.14872,22.34481],[114.14872,22.34482],[114.14871,22.34482],[114.1487,22.34482],[114.14867,22.34484],[114.14866,22.34484],[114.14865,22.34485],[114.14864,22.34485],[114.14864,22.34485],[114.14863,22.34485],[114.14863,22.34525],[114.14818,22.34526],[114.14731,22.34463],[114.14713,22.34457],[114.14711,22.34443],[114.1471,22.34442],[114.14694,22.34438],[114.14683,22.34419],[114.14691,22.34405],[114.14672,22.34368],[114.1469,22.34338],[114.14689,22.34292],[114.14689,22.34292],[114.14682,22.3428],[114.14682,22.3428],[114.14677,22.34271],[114.14676,22.34261],[114.14695,22.34233],[114.14705,22.34208],[114.14694,22.34168],[114.14699,22.34156],[114.14704,22.34144],[114.14843,22.34082],[114.14847,22.34082],[114.14856,22.34081],[114.14865,22.3408],[114.1487,22.34079],[114.14872,22.34079],[114.14876,22.34078],[114.14878,22.34078],[114.14879,22.34078],[114.14879,22.34078],[114.1488,22.34078],[114.1488,22.34078],[114.14881,22.34078],[114.14881,22.34077],[114.14882,22.34077],[114.14882,22.34077],[114.14882,22.34077],[114.14883,22.34077],[114.14883,22.34077],[114.14884,22.34077],[114.14885,22.34077],[114.14885,22.34078],[114.14886,22.34078],[114.14886,22.34078],[114.14887,22.34078],[114.14887,22.34078],[114.14888,22.34078],[114.14888,22.34078],[114.14889,22.34078],[114.14889,22.34078],[114.1489,22.34078],[114.1489,22.34078],[114.14891,22.34078],[114.14891,22.34078],[114.14891,22.34078],[114.14892,22.34078],[114.14892,22.34078],[114.14893,22.34078],[114.14898,22.34078],[114.14902,22.34079],[114.14902,22.34079],[114.14902,22.34079],[114.14902,22.34079],[114.14903,22.34079],[114.14904,22.34079],[114.14904,22.34079],[114.14905,22.34079],[114.14905,22.34079],[114.14906,22.34079],[114.14907,22.34079],[114.14963,22.34077],[114.14959,22.34075],[114.14953,22.34073],[114.14948,22.34072],[114.14945,22.34071],[114.14942,22.3407],[114.14941,22.34069],[114.14939,22.34069],[114.14935,22.34068],[114.1493,22.34066],[114.14927,22.34066],[114.14924,22.34065],[114.14857,22.34045],[114.14758,22.34017],[114.14724,22.34007],[114.14721,22.34007],[114.14719,22.34006],[114.14717,22.34005],[114.14712,22.34004],[114.14707,22.34003],[114.14703,22.34001],[114.14698,22.34],[114.14689,22.33998],[114.14685,22.33997],[114.14681,22.33997],[114.14676,22.33996],[114.14673,22.33995],[114.14669,22.33995],[114.14665,22.33995],[114.14663,22.33994],[114.1466,22.33994],[114.14658,22.33994],[114.14656,22.33994],[114.14651,22.33993],[114.14646,22.33993],[114.14641,22.33993],[114.14636,22.33992],[114.14634,22.33992],[114.14631,22.33992],[114.14628,22.33992],[114.14627,22.33992],[114.14622,22.33992],[114.14617,22.33991],[114.14612,22.33991],[114.14607,22.33991],[114.14602,22.33991],[114.14593,22.3399],[114.14588,22.3399],[114.14583,22.3399],[114.14579,22.3399],[114.14576,22.3399],[114.14573,22.33989],[114.14571,22.33989],[114.14568,22.33989],[114.14559,22.33989],[114.14554,22.33989],[114.14549,22.33989],[114.14543,22.3399],[114.14539,22.3399],[114.14533,22.33991],[114.14515,22.33997],[114.14514,22.33997],[114.14514,22.33998],[114.14513,22.33998],[114.14513,22.33998],[114.14512,22.33998],[114.14512,22.33998],[114.14511,22.33998],[114.14511,22.33999],[114.1451,22.33999],[114.1451,22.33999],[114.14509,22.33999],[114.14506,22.34],[114.14503,22.34002],[114.14501,22.34003],[114.14499,22.34004],[114.14498,22.34004],[114.14498,22.34004],[114.14497,22.34004],[114.14497,22.34005],[114.14496,22.34005],[114.14496,22.34005],[114.14496,22.34005],[114.14495,22.34005],[114.14495,22.34006],[114.14494,22.34006],[114.14494,22.34006],[114.14493,22.34006],[114.14493,22.34007],[114.14492,22.34007],[114.14492,22.34007],[114.14492,22.34007],[114.14491,22.34008],[114.14491,22.34008],[114.1449,22.34008],[114.1449,22.34008],[114.14489,22.34009],[114.14489,22.34009],[114.14488,22.34009],[114.14488,22.34009],[114.14488,22.3401],[114.14487,22.3401],[114.14487,22.3401],[114.14486,22.3401],[114.14486,22.34011],[114.14486,22.34011],[114.14485,22.34011],[114.14485,22.34012],[114.14484,22.34012],[114.14484,22.34012],[114.14483,22.34012],[114.14483,22.34013],[114.14483,22.34013],[114.14482,22.34013],[114.14482,22.34013],[114.14481,22.34014],[114.14481,22.34014],[114.14481,22.34014],[114.1448,22.34015],[114.1448,22.34015],[114.14479,22.34015],[114.14479,22.34016],[114.14479,22.34016],[114.14478,22.34016],[114.14478,22.34016],[114.14478,22.34017],[114.14477,22.34017],[114.14477,22.34018],[114.14476,22.34018],[114.14476,22.34018],[114.14475,22.34018],[114.14475,22.34019],[114.14475,22.34019],[114.14474,22.34019],[114.14474,22.3402],[114.14473,22.3402],[114.14473,22.3402],[114.14473,22.34021],[114.14472,22.34021],[114.14472,22.34021],[114.14472,22.34022],[114.14471,22.34022],[114.14471,22.34022],[114.14471,22.34023],[114.1447,22.34023],[114.1447,22.34024],[114.14469,22.34024],[114.14469,22.34024],[114.14469,22.34025],[114.14468,22.34025],[114.14468,22.34025],[114.14468,22.34026],[114.14467,22.34026],[114.14467,22.34026],[114.14467,22.34027],[114.14466,22.34027],[114.14466,22.34027],[114.14466,22.34028],[114.14465,22.34028],[114.14465,22.34029],[114.14465,22.34029],[114.14464,22.34029],[114.14464,22.3403],[114.14463,22.3403],[114.14461,22.34033],[114.14439,22.34059],[114.14416,22.34085],[114.14416,22.34086],[114.14415,22.34086],[114.14415,22.34086],[114.14415,22.34087],[114.14414,22.34087],[114.14414,22.34087],[114.14414,22.34088],[114.14413,22.34088],[114.14413,22.34089],[114.14413,22.34089],[114.14412,22.34089],[114.14412,22.3409],[114.14411,22.3409],[114.14411,22.34091],[114.1441,22.34091],[114.1441,22.34091],[114.1441,22.34092],[114.14409,22.34092],[114.14409,22.34092],[114.14409,22.34093],[114.14408,22.34093],[114.14408,22.34093],[114.14407,22.34094],[114.14407,22.34094],[114.14407,22.34095],[114.14406,22.34095],[114.14406,22.34095],[114.14406,22.34096],[114.14405,22.34096],[114.14405,22.34096],[114.14405,22.34096],[114.14404,22.34097],[114.14404,22.34097],[114.14402,22.34099],[114.14401,22.341],[114.144,22.341],[114.144,22.341],[114.144,22.341],[114.14399,22.34101],[114.14399,22.34101],[114.14398,22.34101],[114.14398,22.34102],[114.14398,22.34102],[114.14397,22.34102],[114.14396,22.34103],[114.14396,22.34103],[114.14396,22.34103],[114.14395,22.34103],[114.14395,22.34104],[114.14394,22.34104],[114.14394,22.34104],[114.14394,22.34105],[114.14393,22.34105],[114.14393,22.34105],[114.14392,22.34105],[114.14392,22.34106],[114.14391,22.34106],[114.14391,22.34106],[114.14391,22.34106],[114.1439,22.34107],[114.1439,22.34107],[114.14389,22.34107],[114.14389,22.34107],[114.14388,22.34108],[114.14388,22.34108],[114.14387,22.34108],[114.14387,22.34108],[114.14387,22.34108],[114.14386,22.34109],[114.14385,22.34109],[114.14385,22.34109],[114.14384,22.34109],[114.14384,22.3411],[114.14384,22.3411],[114.14383,22.3411],[114.14383,22.3411],[114.14382,22.3411],[114.14381,22.34111],[114.14381,22.34111],[114.1438,22.34111],[114.1438,22.34111],[114.1438,22.34111],[114.14379,22.34112],[114.14379,22.34112],[114.14378,22.34112],[114.14378,22.34112],[114.14377,22.34112],[114.14376,22.34113],[114.14376,22.34113],[114.14375,22.34113],[114.14375,22.34113],[114.14374,22.34113],[114.14374,22.34113],[114.14374,22.34114],[114.14373,22.34114],[114.14372,22.34114],[114.14372,22.34114],[114.14371,22.34114],[114.14371,22.34114],[114.1437,22.34115],[114.1437,22.34115],[114.14369,22.34115],[114.14369,22.34115],[114.14368,22.34115],[114.14368,22.34115],[114.14367,22.34115],[114.14367,22.34116],[114.14366,22.34116],[114.14366,22.34116],[114.14365,22.34116],[114.14365,22.34116],[114.14365,22.34116],[114.14364,22.34116],[114.14363,22.34116],[114.14363,22.34116],[114.14362,22.34117],[114.14362,22.34117],[114.14361,22.34117],[114.14361,22.34117],[114.1436,22.34117],[114.1436,22.34117],[114.14359,22.34117],[114.14359,22.34117],[114.14358,22.34117],[114.14358,22.34117],[114.14357,22.34118],[114.14357,22.34118],[114.14356,22.34118],[114.14356,22.34118],[114.14355,22.34118],[114.14355,22.34118],[114.14354,22.34118],[114.14354,22.34118],[114.14353,22.34118],[114.14353,22.34118],[114.14352,22.34118],[114.14352,22.34118],[114.14351,22.34118],[114.14351,22.34118],[114.1435,22.34118],[114.14349,22.34118],[114.14349,22.34118],[114.14348,22.34118],[114.14348,22.34118],[114.14347,22.34119],[114.14347,22.34119],[114.14346,22.34119],[114.14346,22.34119],[114.14345,22.34119],[114.14345,22.34119],[114.14344,22.34119],[114.14344,22.34119],[114.14343,22.34119],[114.14343,22.34119],[114.14342,22.34119],[114.14342,22.34119],[114.14341,22.34119],[114.1434,22.34119],[114.14339,22.34119],[114.14339,22.34118],[114.14338,22.34118],[114.14338,22.34118],[114.14337,22.34118],[114.14337,22.34118],[114.14336,22.34118],[114.14335,22.34118],[114.14335,22.34118],[114.14334,22.34118],[114.14334,22.34118],[114.14333,22.34118],[114.14333,22.34118],[114.14332,22.34118],[114.14332,22.34118],[114.14331,22.34118],[114.14331,22.34118],[114.14301,22.34114],[114.14286,22.34112],[114.14279,22.34107],[114.14272,22.34102],[114.14265,22.34095],[114.14257,22.34088],[114.14252,22.34084],[114.14239,22.34068],[114.14231,22.34059],[114.14224,22.34052],[114.14217,22.34045],[114.14211,22.34039],[114.14206,22.34035],[114.14203,22.34032],[114.14195,22.34025],[114.1418,22.34013],[114.14167,22.34004],[114.14148,22.33995],[114.14142,22.33992],[114.14123,22.33988],[114.14104,22.33987],[114.14084,22.33989],[114.14069,22.33993],[114.14037,22.34004],[114.14013,22.34016],[114.1399,22.3403],[114.13923,22.34078],[114.13901,22.34091],[114.13875,22.34105],[114.13853,22.34116],[114.13841,22.3412],[114.13828,22.34125],[114.13827,22.34126],[114.13807,22.34298],[114.13803,22.34311],[114.13799,22.34323],[114.13797,22.34326],[114.13793,22.34333],[114.13789,22.34339],[114.13787,22.34342],[114.13779,22.34351],[114.13776,22.34353],[114.1377,22.34358],[114.13764,22.34362],[114.13759,22.34366],[114.13755,22.34367],[114.13748,22.34371],[114.13743,22.34373],[114.1374,22.34374],[114.13727,22.34377],[114.13719,22.34379],[114.13714,22.34379],[114.13703,22.34381],[114.13683,22.34381],[114.13672,22.34381],[114.13668,22.34381],[114.13654,22.34379],[114.13648,22.34377],[114.1364,22.34375],[114.13634,22.34372],[114.13626,22.3437],[114.13621,22.34367],[114.13616,22.34365],[114.13613,22.34364],[114.13613,22.34363],[114.13613,22.34363],[114.13606,22.3436],[114.13604,22.34359],[114.13601,22.34357],[114.13597,22.34354],[114.13595,22.34352],[114.13589,22.34347],[114.13585,22.34343],[114.13582,22.3434],[114.13577,22.34332],[114.13571,22.34323],[114.1357,22.34321],[114.13568,22.34314],[114.13566,22.34303],[114.13566,22.34292],[114.13567,22.34282],[114.1357,22.34266],[114.13574,22.34249],[114.13579,22.34233],[114.13587,22.34212],[114.13591,22.34197],[114.13594,22.34178],[114.13594,22.34167],[114.13594,22.34155],[114.13595,22.34154],[114.13597,22.34139],[114.13598,22.3411],[114.13596,22.34081],[114.1359,22.34053],[114.13582,22.3403],[114.13572,22.34011],[114.13564,22.34],[114.13548,22.33984],[114.13533,22.33974],[114.13529,22.33972],[114.13512,22.33963],[114.13511,22.33963],[114.13493,22.33958],[114.13474,22.33956],[114.13453,22.33957],[114.13445,22.33958],[114.13433,22.33961],[114.13422,22.33966],[114.13418,22.33959],[114.13418,22.33957],[114.13417,22.33957],[114.13415,22.33952],[114.13404,22.33933],[114.13399,22.33927],[114.13393,22.33921],[114.13389,22.33918],[114.13383,22.33914],[114.13374,22.33912],[114.13362,22.3391],[114.1335,22.33896],[114.13348,22.3389],[114.1334,22.33859],[114.13339,22.33858],[114.13346,22.33854],[114.1336,22.33845],[114.13375,22.33837],[114.13394,22.33828],[114.13407,22.33822],[114.13431,22.33813],[114.13456,22.33806],[114.13481,22.338],[114.13581,22.33782],[114.13597,22.3378],[114.13773,22.33749],[114.13773,22.33748],[114.13767,22.33736],[114.13709,22.33617],[114.13702,22.33602],[114.13702,22.33602],[114.1375,22.33581],[114.13928,22.33505],[114.13927,22.33503],[114.13927,22.33503],[114.13944,22.33495],[114.13944,22.33496],[114.13945,22.33498],[114.14018,22.33466],[114.14018,22.33466],[114.14018,22.33467],[114.14024,22.33465],[114.14031,22.33462],[114.14031,22.33462],[114.14031,22.33462],[114.14031,22.33461],[114.14067,22.33445],[114.14195,22.3339],[114.14229,22.33383],[114.14235,22.33383],[114.14239,22.33382],[114.14245,22.33382],[114.1425,22.33381],[114.14234,22.33297],[114.14214,22.33193],[114.14411,22.33119],[114.14456,22.33101],[114.14394,22.33061],[114.14357,22.33035],[114.14347,22.33028],[114.14165,22.32949],[114.14072,22.32898],[114.13981,22.32843],[114.13859,22.32758],[114.13802,22.32704],[114.13779,22.32681],[114.1378,22.32677],[114.1378,22.32672],[114.13779,22.32667],[114.13776,22.32662],[114.13772,22.32656],[114.13806,22.32653],[114.13825,22.32665],[114.13831,22.3267],[114.13836,22.32674],[114.13848,22.32681],[114.13861,22.32687],[114.13875,22.32691],[114.13889,22.32695],[114.13903,22.32698],[114.13918,22.327],[114.13932,22.32701],[114.13947,22.327],[114.13961,22.32699],[114.13975,22.32697],[114.1399,22.32693],[114.14003,22.32689],[114.14017,22.32683],[114.14029,22.32677],[114.14054,22.32664],[114.14112,22.32632],[114.14128,22.32623],[114.1413,22.32622],[114.14151,22.3261],[114.14189,22.32589],[114.14189,22.32589],[114.14189,22.32589],[114.14144,22.32614],[114.14056,22.32664],[114.14134,22.32782],[114.14303,22.32684],[114.1429,22.32663],[114.14359,22.32624],[114.14364,22.32631],[114.14302,22.32667],[114.14338,22.3272],[114.14354,22.3271],[114.14357,22.32714],[114.14303,22.32745],[114.14311,22.32757],[114.14365,22.32726],[114.14367,22.3273],[114.14351,22.32739],[114.14357,22.32748],[114.14392,22.32728],[114.14394,22.32731],[114.14359,22.32752],[114.14367,22.32764],[114.14402,22.32744],[114.14404,22.32747],[114.1437,22.32767],[114.14406,22.32822],[114.14408,22.32825],[114.14433,22.32861],[114.14457,22.32897],[114.14518,22.32862],[114.14684,22.32765],[114.14694,22.32759],[114.14766,22.32717],[114.1481,22.32692],[114.14852,22.32667],[114.14873,22.3265],[114.14924,22.32611],[114.14881,22.32563],[114.14896,22.32551],[114.14939,22.326],[114.15019,22.32536],[114.14976,22.32488],[114.14991,22.32476],[114.15034,22.32524],[114.15123,22.32456],[114.1511,22.32441],[114.15116,22.32436],[114.1513,22.32451],[114.15182,22.3241],[114.15145,22.32369],[114.15153,22.32362],[114.1519,22.32404],[114.15235,22.32369],[114.15198,22.32328],[114.15205,22.32322],[114.15242,22.32363],[114.15313,22.32309],[114.15208,22.32192],[114.15209,22.32189],[114.1526,22.3215],[114.15263,22.3215],[114.15367,22.32267],[114.15415,22.3223],[114.15494,22.32104],[114.15494,22.31992],[114.15494,22.31692],[114.15492,22.31691],[114.1549,22.31691],[114.15489,22.31689],[114.15488,22.31688],[114.15486,22.31684],[114.15486,22.31681],[114.15486,22.31679],[114.15486,22.31673],[114.15487,22.31669],[114.15486,22.31652],[114.15486,22.31644],[114.15487,22.31638],[114.15487,22.31631],[114.15487,22.31622],[114.15486,22.31619],[114.15486,22.31613],[114.15486,22.31602],[114.15487,22.31599],[114.15487,22.31597],[114.15487,22.31595],[114.15486,22.31592],[114.15486,22.31592],[114.15486,22.31592],[114.15488,22.31586],[114.15488,22.31581],[114.15488,22.31578],[114.15491,22.31576],[114.15493,22.31576],[114.15496,22.31575],[114.15503,22.31578],[114.15503,22.31578],[114.15506,22.31582],[114.15506,22.31582],[114.15506,22.31582],[114.15504,22.3159],[114.15504,22.31596],[114.15504,22.31604],[114.15504,22.31615],[114.15504,22.31638],[114.15504,22.31661],[114.15503,22.31665],[114.15502,22.31667],[114.15503,22.31673],[114.15503,22.31675],[114.15504,22.31683],[114.15504,22.31683],[114.15504,22.31683],[114.15504,22.31684],[114.15678,22.31683],[114.1568,22.31683],[114.1568,22.31683],[114.15679,22.31734],[114.15788,22.31736],[114.15797,22.31736],[114.15819,22.31736],[114.15859,22.31736],[114.15869,22.31736],[114.15952,22.31736],[114.15957,22.31737],[114.15965,22.31738],[114.16011,22.31754],[114.1597,22.31853],[114.15969,22.31856],[114.15969,22.31856],[114.15987,22.31862],[114.15984,22.31871],[114.15981,22.31876],[114.15981,22.31944],[114.1598,22.31949],[114.15979,22.31956],[114.15978,22.31962],[114.15978,22.31969],[114.15977,22.31975],[114.15977,22.31982],[114.15976,22.31988],[114.15976,22.31995],[114.15976,22.32002],[114.15976,22.32008],[114.15976,22.32015],[114.15976,22.32021],[114.15977,22.32036],[114.15977,22.32042],[114.1598,22.32142],[114.15981,22.32191],[114.15982,22.32207],[114.15982,22.32209],[114.1598,22.32218],[114.15979,22.32232],[114.15978,22.32239],[114.15976,22.32246],[114.15975,22.32251],[114.15974,22.32257],[114.15972,22.32263],[114.1597,22.32269],[114.15968,22.32275],[114.15966,22.32281],[114.15963,22.32287],[114.15961,22.32293],[114.15958,22.32298],[114.15955,22.32304],[114.15952,22.3231],[114.15949,22.32315],[114.15946,22.3232],[114.15942,22.32326],[114.15938,22.32331],[114.15933,22.32337],[114.15929,22.32342],[114.15925,22.32347],[114.1592,22.32352],[114.15915,22.32357],[114.1591,22.32362],[114.15905,22.32367],[114.15885,22.32384],[114.15881,22.32388],[114.15866,22.32402],[114.15835,22.32426],[114.15831,22.3243],[114.15814,22.32444],[114.15804,22.32453],[114.15825,22.3247],[114.15834,22.32476],[114.15842,22.32481],[114.15852,22.32485],[114.15862,22.3249],[114.15873,22.32493],[114.15887,22.32497],[114.15899,22.32499],[114.15906,22.32499],[114.15909,22.325],[114.16176,22.32503],[114.16175,22.32505],[114.16167,22.32517],[114.16148,22.32536],[114.16119,22.32558],[114.16039,22.32618],[114.16065,22.32619],[114.16188,22.32624],[114.16245,22.32627],[114.16347,22.32631],[114.16436,22.32635],[114.16516,22.32638],[114.16601,22.32642],[114.16628,22.32643],[114.1672,22.32647],[114.16786,22.3265],[114.1685,22.32652],[114.16854,22.32653],[114.16906,22.32655],[114.16961,22.32657],[114.17024,22.3266],[114.1704,22.32661],[114.17215,22.32668],[114.17394,22.32677],[114.17397,22.32677],[114.174,22.32677],[114.17402,22.32677],[114.17405,22.32677],[114.17408,22.32677],[114.17411,22.32677],[114.17414,22.32676],[114.17417,22.32676],[114.1742,22.32675],[114.17422,22.32674],[114.17425,22.32673],[114.17427,22.32672],[114.1743,22.32671],[114.17447,22.32665],[114.17448,22.32664],[114.17451,22.32663],[114.17453,22.32662],[114.17456,22.32661],[114.17459,22.3266],[114.17461,22.3266],[114.17465,22.32668],[114.17476,22.32689],[114.17477,22.3269],[114.17477,22.32691],[114.17505,22.32745],[114.17506,22.32746],[114.17512,22.32757],[114.17537,22.32803],[114.17537,22.32803],[114.17566,22.3286],[114.17579,22.32884],[114.17581,22.32888],[114.17598,22.32922],[114.176,22.32926],[114.17605,22.32936],[114.1761,22.32947],[114.17613,22.32953],[114.17614,22.32955],[114.17616,22.32959],[114.17618,22.32964],[114.17623,22.32976],[114.17628,22.32989],[114.1763,22.32992],[114.17632,22.32999],[114.17636,22.3301],[114.17641,22.33022],[114.17642,22.33025],[114.17643,22.33027],[114.17645,22.33035],[114.17646,22.33037],[114.1765,22.33048],[114.17653,22.33059],[114.17655,22.33065],[114.17656,22.33071],[114.17659,22.33082],[114.1766,22.33085],[114.17661,22.33088],[114.17664,22.33098],[114.17666,22.33106],[114.17666,22.33107],[114.17667,22.33112],[114.1767,22.33123],[114.17672,22.33133],[114.17673,22.33135],[114.17674,22.3314],[114.17675,22.33144],[114.17677,22.33155],[114.17678,22.3316],[114.1768,22.33172],[114.17682,22.33181],[114.17684,22.3319],[114.17685,22.332],[114.17686,22.33206],[114.17687,22.33211],[114.17688,22.33222],[114.17689,22.33224],[114.1769,22.33237],[114.17691,22.33245],[114.17693,22.3326],[114.17694,22.33278],[114.17694,22.33291],[114.17695,22.33301],[114.17695,22.33312],[114.17695,22.33331],[114.17695,22.33337],[114.17695,22.33346],[114.17695,22.33352],[114.17694,22.33366],[114.17694,22.3337],[114.17693,22.33382],[114.17693,22.33388],[114.1769,22.33417],[114.17689,22.33421],[114.17689,22.33423],[114.17688,22.33432],[114.17687,22.3344],[114.17684,22.33453],[114.17683,22.3346],[114.1768,22.33472],[114.17675,22.33493],[114.17667,22.33522],[114.17666,22.33525],[114.17666,22.33527],[114.17657,22.33555],[114.17653,22.33567],[114.17648,22.33584],[114.17643,22.33603],[114.17641,22.33609],[114.17636,22.33623],[114.17633,22.33632],[114.1763,22.33644],[114.17627,22.33652],[114.17625,22.33659],[114.17622,22.33668],[114.17621,22.33674],[114.17623,22.33682],[114.17624,22.33686],[114.17625,22.3369],[114.17635,22.33696],[114.17635,22.33696],[114.17635,22.33697],[114.17635,22.33697],[114.17635,22.33697],[114.17635,22.33697],[114.17635,22.33697],[114.17635,22.33697],[114.17635,22.33698],[114.17635,22.33698],[114.17635,22.33698],[114.17635,22.33698],[114.17634,22.33698],[114.17634,22.33698],[114.17634,22.33699],[114.17634,22.33699],[114.17634,22.33699],[114.17634,22.33699],[114.17634,22.33699],[114.17634,22.33699],[114.17634,22.337],[114.17634,22.337],[114.17634,22.337],[114.17634,22.337],[114.17634,22.337],[114.17634,22.337],[114.17634,22.33701],[114.17634,22.33701],[114.17633,22.33701],[114.17633,22.33701],[114.17633,22.33701],[114.17633,22.33701],[114.17633,22.33702],[114.17633,22.33702],[114.17633,22.33702],[114.17633,22.33702],[114.17633,22.33702],[114.17633,22.33703],[114.17633,22.33703],[114.17633,22.33703],[114.17633,22.33703],[114.17633,22.33703],[114.17633,22.33703],[114.17633,22.33704],[114.17633,22.33704],[114.17633,22.33704],[114.17633,22.33704],[114.17633,22.33704],[114.17633,22.33704],[114.17633,22.33705],[114.17633,22.33705],[114.17633,22.33705],[114.17633,22.33705],[114.17633,22.33705],[114.17633,22.33706],[114.17633,22.33706],[114.17633,22.33706],[114.17633,22.33706],[114.17633,22.33706],[114.17633,22.33706],[114.17633,22.33707],[114.17633,22.33707],[114.17633,22.33707],[114.17633,22.33707],[114.17633,22.33707],[114.17633,22.33708],[114.17635,22.33713],[114.17643,22.33731],[114.17621,22.33732],[114.17589,22.33733],[114.17587,22.33734],[114.17586,22.33734],[114.17585,22.33735],[114.17584,22.33736],[114.17583,22.33737],[114.17582,22.33738],[114.17581,22.3374],[114.17567,22.33768],[114.17567,22.33769],[114.17566,22.33769],[114.17566,22.3377],[114.17565,22.33771],[114.17565,22.33772],[114.17565,22.33773],[114.17564,22.33774],[114.17564,22.33775],[114.17563,22.33776],[114.17563,22.33776],[114.17563,22.33777],[114.17562,22.33778],[114.17562,22.33779],[114.17561,22.3378],[114.17561,22.33781],[114.1756,22.33782],[114.1756,22.33782],[114.1756,22.33783],[114.17559,22.33784],[114.17559,22.33785],[114.17558,22.33786],[114.17558,22.33787],[114.17557,22.33788],[114.17557,22.33788],[114.17557,22.33789],[114.17556,22.3379],[114.17556,22.33791],[114.17555,22.33792],[114.17555,22.33793],[114.17555,22.33794],[114.17554,22.33794],[114.17554,22.33795],[114.17553,22.33796],[114.17553,22.33797],[114.17552,22.33799],[114.17552,22.338],[114.17551,22.338],[114.17551,22.33801],[114.1755,22.33802],[114.1755,22.33803],[114.17549,22.33804],[114.17549,22.33805],[114.17549,22.33806],[114.17548,22.33806],[114.17548,22.33807],[114.17547,22.33808],[114.17547,22.33809],[114.17547,22.3381],[114.17546,22.33811],[114.17546,22.33812],[114.17545,22.33813],[114.17545,22.33813],[114.17544,22.33814],[114.17544,22.33815],[114.17544,22.33816],[114.17543,22.33817],[114.17543,22.33818],[114.17542,22.33818],[114.17542,22.33819],[114.17541,22.3382],[114.17541,22.33821],[114.17541,22.33822],[114.1754,22.33823],[114.1754,22.33824],[114.17539,22.33825],[114.17539,22.33825],[114.17538,22.33826],[114.17538,22.33827],[114.17538,22.33828],[114.17537,22.33829],[114.17537,22.3383],[114.17536,22.33831],[114.17536,22.33831],[114.17535,22.33833],[114.17534,22.33835],[114.17534,22.33836],[114.17533,22.33837],[114.17533,22.33837],[114.17532,22.33839],[114.17532,22.3384],[114.17531,22.33841],[114.17529,22.33845],[114.17528,22.33849],[114.17524,22.3386],[114.17511,22.33896],[114.1751,22.339],[114.17505,22.33913],[114.1749,22.33955],[114.17489,22.33958],[114.17487,22.33966],[114.17485,22.33973],[114.17485,22.33978],[114.17484,22.33985],[114.17483,22.33994],[114.17482,22.34006],[114.17482,22.34006],[114.17482,22.34007],[114.17484,22.34017],[114.17485,22.3402],[114.17488,22.34031],[114.17487,22.34037],[114.17486,22.34043],[114.17484,22.34047],[114.17483,22.34051],[114.17482,22.34052],[114.17479,22.34055],[114.17477,22.34057],[114.17477,22.34057],[114.17474,22.3406],[114.17473,22.34061],[114.17472,22.34062],[114.17465,22.34067],[114.17458,22.3407],[114.17449,22.34072],[114.17443,22.34073],[114.17434,22.34073],[114.17429,22.34072],[114.1742,22.34068],[114.17395,22.34055],[114.17378,22.34044],[114.17368,22.34038],[114.17362,22.34036],[114.17356,22.34034],[114.17349,22.34033],[114.1734,22.34033],[114.17333,22.34034],[114.17325,22.34038],[114.17317,22.34043],[114.17315,22.34045],[114.17313,22.34049],[114.1731,22.34054],[114.17307,22.34059],[114.17306,22.34066],[114.17305,22.3407],[114.17306,22.34074],[114.17306,22.34078],[114.17308,22.34083],[114.17312,22.34091],[114.17315,22.34095],[114.1732,22.34099],[114.17344,22.34122],[114.17345,22.34123],[114.17346,22.34123],[114.17319,22.34278],[114.17317,22.34293],[114.17319,22.343],[114.17399,22.34406],[114.17398,22.34407],[114.17399,22.34408],[114.174,22.3441],[114.17402,22.34413],[114.17402,22.34415],[114.17403,22.34417],[114.17403,22.34421],[114.17403,22.34423],[114.17403,22.34425],[114.17397,22.34433],[114.17361,22.34441],[114.17367,22.3448],[114.17268,22.3464],[114.17266,22.34637],[114.17266,22.34636],[114.17266,22.34636],[114.17266,22.34635],[114.17266,22.34635],[114.17266,22.34633],[114.17267,22.34632],[114.17266,22.34631],[114.17266,22.3463],[114.17264,22.34628],[114.17263,22.34626],[114.17261,22.34625],[114.17258,22.34626],[114.17256,22.34626],[114.17254,22.34627],[114.17254,22.34627],[114.17253,22.34628],[114.17247,22.34631],[114.17246,22.34632],[114.17245,22.34632],[114.17244,22.34633],[114.17243,22.34633],[114.17241,22.34634],[114.17239,22.34633],[114.1723,22.34632],[114.17229,22.34632],[114.17228,22.34632],[114.17227,22.34632],[114.17226,22.34631],[114.17225,22.34631],[114.17225,22.34631],[114.17224,22.3463],[114.17223,22.3463],[114.17222,22.3463],[114.17221,22.3463],[114.1722,22.3463],[114.17219,22.34631],[114.17219,22.34631],[114.17218,22.34632],[114.17217,22.34632],[114.17217,22.34632],[114.17216,22.34632],[114.17205,22.34632],[114.17203,22.34632],[114.17202,22.34632],[114.17201,22.34633],[114.172,22.34633],[114.17199,22.34633],[114.17197,22.34634],[114.17196,22.34634],[114.17195,22.34634],[114.17194,22.34635],[114.17193,22.34635],[114.17192,22.34636],[114.17191,22.34636],[114.17189,22.34637],[114.17188,22.34638],[114.17187,22.34638],[114.17186,22.34639],[114.17183,22.34639],[114.17182,22.3464],[114.17181,22.3464],[114.1718,22.34641],[114.17166,22.34647],[114.17165,22.34648],[114.17165,22.34648],[114.17165,22.34648],[114.17164,22.34648],[114.17163,22.34647],[114.17162,22.34647],[114.17162,22.34647],[114.17161,22.34647],[114.17161,22.34647],[114.17161,22.34647],[114.1716,22.34648],[114.1716,22.3465],[114.1716,22.34651],[114.1716,22.34651],[114.1716,22.34652],[114.17159,22.34653],[114.17158,22.34654],[114.17157,22.34655],[114.17157,22.34656],[114.17155,22.34656],[114.17155,22.34656],[114.17154,22.34657],[114.17153,22.34657],[114.17151,22.34657],[114.1715,22.34656],[114.17149,22.34656],[114.17148,22.34655],[114.17146,22.34654],[114.17145,22.34653],[114.17144,22.34652],[114.17143,22.34652],[114.17142,22.34651],[114.17141,22.3465],[114.1714,22.34649],[114.17139,22.34649],[114.17138,22.34648],[114.17137,22.34647],[114.17136,22.34646],[114.17134,22.34646],[114.17133,22.34645],[114.17132,22.34645],[114.17131,22.34644],[114.1713,22.34644],[114.17128,22.34643],[114.17127,22.34643],[114.17126,22.34642],[114.17125,22.34642],[114.17124,22.34641],[114.17122,22.3464],[114.17121,22.3464],[114.1712,22.34639],[114.17119,22.34639],[114.17118,22.34638],[114.17117,22.34638],[114.17108,22.34631],[114.17107,22.34631],[114.17105,22.3463],[114.17103,22.34629],[114.17102,22.34629],[114.17101,22.34629],[114.171,22.34629],[114.17098,22.34629],[114.17097,22.34629],[114.17096,22.34629],[114.17095,22.34629],[114.17095,22.34629],[114.17095,22.34629],[114.17094,22.34628],[114.17093,22.34626],[114.17092,22.34626],[114.17092,22.34625],[114.17091,22.34624],[114.1709,22.34623],[114.1709,22.34622],[114.17089,22.34621],[114.17087,22.34619],[114.17086,22.34618],[114.17085,22.34618],[114.17084,22.34617],[114.17083,22.34617],[114.17082,22.34617],[114.1708,22.34616],[114.17079,22.34616],[114.17078,22.34616],[114.17077,22.34615],[114.17076,22.34614],[114.17075,22.34613],[114.17075,22.34611],[114.17075,22.3461],[114.17075,22.34609],[114.17074,22.34609],[114.17074,22.34608],[114.17073,22.34607],[114.17072,22.34607],[114.17071,22.34607],[114.17069,22.34606],[114.17068,22.34606],[114.17067,22.34607],[114.17066,22.34607],[114.17064,22.34608],[114.17062,22.34608],[114.17062,22.34608],[114.17061,22.34608],[114.17061,22.34608],[114.1706,22.34608],[114.17059,22.34608],[114.17056,22.34606],[114.17054,22.34605],[114.17045,22.34597],[114.17045,22.34596],[114.17044,22.34595],[114.17044,22.34594],[114.17043,22.34594],[114.17043,22.34593],[114.17042,22.34593],[114.17042,22.34593],[114.17041,22.34592],[114.17041,22.34592],[114.1704,22.34592],[114.1704,22.34592],[114.17039,22.34592],[114.17039,22.34592],[114.17039,22.34592],[114.17038,22.34592],[114.17038,22.34593],[114.17037,22.34593],[114.17036,22.34594],[114.17035,22.34594],[114.17033,22.34595],[114.17031,22.34596],[114.1703,22.34596],[114.17029,22.34597],[114.17028,22.34597],[114.17027,22.34598],[114.17026,22.34599],[114.17025,22.346],[114.17025,22.34601],[114.17024,22.34602],[114.17024,22.34603],[114.17023,22.34604],[114.17023,22.34605],[114.17022,22.34606],[114.17021,22.34606],[114.1702,22.34607],[114.17019,22.34607],[114.17017,22.34608],[114.17016,22.34608],[114.17015,22.34608],[114.17014,22.34608],[114.17013,22.34608],[114.17011,22.34608],[114.1701,22.34608],[114.17009,22.34608],[114.17008,22.34608],[114.17006,22.34609],[114.17005,22.34609],[114.16998,22.34609],[114.16992,22.3461],[114.16988,22.3461],[114.16987,22.3461],[114.16986,22.3461],[114.16984,22.34611],[114.16983,22.34611],[114.16982,22.34611],[114.16981,22.34612],[114.16967,22.34617],[114.16966,22.34618],[114.16965,22.34618],[114.16964,22.34618],[114.16964,22.34617],[114.16963,22.34617],[114.16963,22.34617],[114.16962,22.34617],[114.16956,22.34609],[114.16956,22.34609],[114.16956,22.34608],[114.16956,22.34603],[114.16956,22.34602],[114.16957,22.34601],[114.16957,22.346],[114.16959,22.34595],[114.16959,22.34594],[114.16959,22.34592],[114.16959,22.34592],[114.16959,22.34591],[114.16959,22.34591],[114.16958,22.3459],[114.16957,22.3459],[114.16957,22.3459],[114.16955,22.34589],[114.16954,22.34588],[114.16953,22.34588],[114.16952,22.34587],[114.16951,22.34587],[114.16949,22.34586],[114.16948,22.34585],[114.16947,22.34585],[114.16945,22.34584],[114.16944,22.34584],[114.16943,22.34583],[114.16942,22.34583],[114.16939,22.34582],[114.16939,22.34582],[114.16928,22.34585],[114.16924,22.34585],[114.1692,22.34586],[114.16919,22.34587],[114.16917,22.34587],[114.16916,22.34587],[114.16915,22.34587],[114.16914,22.34588],[114.16913,22.34588],[114.16911,22.34588],[114.1691,22.34588],[114.16909,22.34588],[114.16908,22.34588],[114.16906,22.34588],[114.16905,22.34588],[114.16904,22.34588],[114.16903,22.34588],[114.16901,22.34588],[114.169,22.34588],[114.16899,22.34588],[114.16898,22.34587],[114.16897,22.34587],[114.16895,22.34587],[114.16894,22.34587],[114.16893,22.34586],[114.16892,22.34586],[114.16891,22.34586],[114.16889,22.34585],[114.16888,22.34585],[114.16887,22.34584],[114.16886,22.34584],[114.16885,22.34583],[114.16884,22.34583],[114.16883,22.34582],[114.16881,22.34582],[114.1688,22.34581],[114.16879,22.34581],[114.16878,22.34581],[114.16877,22.3458],[114.16875,22.3458],[114.16874,22.3458],[114.16873,22.34579],[114.16872,22.34579],[114.16871,22.34579],[114.16869,22.34579],[114.16868,22.34579],[114.16867,22.34578],[114.16866,22.34579],[114.16865,22.34579],[114.16864,22.34579],[114.16863,22.3458],[114.16863,22.3458],[114.16862,22.34581],[114.16861,22.34583],[114.1686,22.34584],[114.1686,22.34585],[114.16859,22.34585],[114.16858,22.34585],[114.16857,22.34586],[114.16856,22.34586],[114.16854,22.34586],[114.16853,22.34586],[114.16852,22.34585],[114.16851,22.34585],[114.1685,22.34585],[114.16849,22.34584],[114.16848,22.34583],[114.16847,22.34582],[114.16846,22.34581],[114.16845,22.34581],[114.16844,22.34579],[114.16843,22.34578],[114.16842,22.34578],[114.16841,22.34577],[114.1684,22.34577],[114.16835,22.34577],[114.1683,22.34577],[114.16828,22.34577],[114.16827,22.34577],[114.16825,22.34578],[114.16824,22.34578],[114.16823,22.34579],[114.16821,22.34579],[114.1682,22.34579],[114.16818,22.3458],[114.16817,22.3458],[114.16816,22.3458],[114.16815,22.34581],[114.16814,22.34581],[114.16813,22.34581],[114.16811,22.34582],[114.1681,22.34582],[114.16809,22.34582],[114.16808,22.34582],[114.16806,22.34583],[114.16805,22.34583],[114.16804,22.34583],[114.16803,22.34583],[114.16801,22.34584],[114.168,22.34584],[114.16768,22.34589],[114.16767,22.34589],[114.16766,22.3459],[114.16764,22.3459],[114.16763,22.3459],[114.16762,22.3459],[114.16761,22.34591],[114.1676,22.34591],[114.16758,22.34591],[114.16757,22.34592],[114.16756,22.34592],[114.16755,22.34592],[114.16754,22.34593],[114.16753,22.34593],[114.16751,22.34593],[114.1675,22.34594],[114.16749,22.34594],[114.16748,22.34594],[114.16747,22.34595],[114.16746,22.34595],[114.16744,22.34596],[114.16743,22.34596],[114.16742,22.34596],[114.1674,22.34597],[114.16739,22.34597],[114.16738,22.34598],[114.16737,22.34598],[114.16736,22.34599],[114.16735,22.34599],[114.16733,22.346],[114.16732,22.346],[114.16731,22.34601],[114.1673,22.34601],[114.16729,22.34602],[114.16728,22.34603],[114.16727,22.34603],[114.16726,22.34604],[114.16725,22.34604],[114.16723,22.34605],[114.16722,22.34606],[114.16722,22.34606],[114.16721,22.34607],[114.1672,22.34608],[114.16719,22.34609],[114.16718,22.3461],[114.16718,22.34611],[114.16717,22.34612],[114.16716,22.34613],[114.16716,22.34613],[114.16715,22.34613],[114.16715,22.34614],[114.16714,22.34614],[114.16714,22.34614],[114.16712,22.34614],[114.1671,22.34614],[114.16709,22.34614],[114.16709,22.34614],[114.16708,22.34614],[114.16708,22.34615],[114.16707,22.34615],[114.16706,22.34616],[114.16706,22.34617],[114.16705,22.34617],[114.16705,22.34618],[114.16704,22.34619],[114.16704,22.34619],[114.16703,22.34621],[114.16703,22.34622],[114.16702,22.34622],[114.16702,22.34622],[114.16701,22.34623],[114.167,22.34623],[114.16699,22.34624],[114.16699,22.34624],[114.16698,22.34624],[114.16698,22.34624],[114.16697,22.34624],[114.16696,22.34623],[114.16695,22.34623],[114.16695,22.34623],[114.16694,22.34622],[114.16694,22.34622],[114.16693,22.34621],[114.16693,22.3462],[114.16692,22.3462],[114.16692,22.34619],[114.16692,22.34618],[114.16692,22.34617],[114.16691,22.34617],[114.16691,22.34616],[114.16691,22.34616],[114.1669,22.34614],[114.1669,22.34614],[114.16689,22.34614],[114.16688,22.34613],[114.16688,22.34613],[114.16687,22.34613],[114.16686,22.34613],[114.16685,22.34613],[114.16684,22.34613],[114.16684,22.34613],[114.16683,22.34613],[114.16682,22.34613],[114.16682,22.34613],[114.1668,22.34614],[114.16679,22.34614],[114.16679,22.34614],[114.16678,22.34614],[114.16677,22.34614],[114.16676,22.34614],[114.16676,22.34614],[114.16675,22.34614],[114.16674,22.34614],[114.16673,22.34614],[114.16673,22.34614],[114.16672,22.34614],[114.16671,22.34614],[114.1667,22.34614],[114.1667,22.34614],[114.16669,22.34614],[114.16666,22.34614],[114.16666,22.34613],[114.16665,22.34613],[114.16664,22.34613],[114.16664,22.34612],[114.16663,22.34612],[114.16662,22.34611],[114.16661,22.3461],[114.16661,22.34607],[114.1666,22.34604],[114.1666,22.34603],[114.1666,22.34603],[114.1666,22.34602],[114.1666,22.34601],[114.1666,22.34601],[114.1666,22.346],[114.1666,22.34599],[114.1666,22.34599],[114.16661,22.34598],[114.16661,22.34597],[114.16661,22.34596],[114.16661,22.34595],[114.16661,22.34595],[114.16661,22.34594],[114.16661,22.34593],[114.16661,22.34593],[114.16661,22.34592],[114.16661,22.34591],[114.16662,22.34591],[114.16662,22.3459],[114.16662,22.34589],[114.16662,22.34588],[114.16662,22.34588],[114.16662,22.34587],[114.16662,22.34586],[114.16662,22.34585],[114.16662,22.34585],[114.16662,22.34584],[114.16662,22.34583],[114.16661,22.34583],[114.16661,22.34582],[114.16661,22.34581],[114.16661,22.34581],[114.16661,22.3458],[114.16661,22.34579],[114.16661,22.34579],[114.16661,22.34575],[114.16658,22.34563],[114.16655,22.34555],[114.16654,22.34554],[114.16654,22.34554],[114.16653,22.34553],[114.16647,22.34551],[114.16631,22.34547],[114.1663,22.34547],[114.16629,22.34547],[114.16629,22.34547],[114.16628,22.34546],[114.16627,22.34546],[114.16626,22.34546],[114.16625,22.34546],[114.16625,22.34546],[114.16624,22.34546],[114.16623,22.34546],[114.16622,22.34546],[114.16622,22.34546],[114.16621,22.34546],[114.1662,22.34546],[114.16619,22.34546],[114.16618,22.34547],[114.16617,22.34547],[114.16617,22.34547],[114.16616,22.34548],[114.16608,22.34557],[114.16608,22.34558],[114.16607,22.34559],[114.16607,22.34559],[114.16607,22.3456],[114.16606,22.34561],[114.16606,22.34561],[114.16606,22.34562],[114.16605,22.34562],[114.16605,22.34563],[114.16596,22.34574],[114.16595,22.34575],[114.16595,22.34576],[114.16594,22.34577],[114.16594,22.34577],[114.16594,22.34578],[114.16593,22.34578],[114.16593,22.34579],[114.16588,22.34586],[114.16588,22.34587],[114.16587,22.34587],[114.16587,22.34588],[114.16586,22.34589],[114.16586,22.34589],[114.16586,22.3459],[114.16585,22.3459],[114.16585,22.34591],[114.16584,22.34592],[114.16583,22.34594],[114.16582,22.34594],[114.16573,22.34589],[114.1657,22.34594],[114.1657,22.34595],[114.16569,22.34596],[114.16569,22.34597],[114.16569,22.34597],[114.16569,22.34598],[114.16569,22.34599],[114.16568,22.34599],[114.16568,22.346],[114.16568,22.34601],[114.16568,22.34601],[114.16568,22.34602],[114.16567,22.34603],[114.16567,22.34604],[114.16567,22.34604],[114.16567,22.34605],[114.16567,22.34606],[114.16566,22.34606],[114.16566,22.34607],[114.16566,22.34608],[114.16566,22.34608],[114.16566,22.34609],[114.16566,22.34609],[114.16566,22.3461],[114.16565,22.3461],[114.16565,22.34611],[114.16565,22.34612],[114.16565,22.34618],[114.16565,22.34624],[114.16565,22.34625],[114.16565,22.34625],[114.16565,22.34625],[114.16565,22.34626],[114.16564,22.34626],[114.16564,22.34626],[114.16563,22.34626],[114.16563,22.34626],[114.16563,22.34626],[114.16563,22.34626],[114.16562,22.34626],[114.16562,22.34626],[114.16562,22.34625],[114.16561,22.34624],[114.16561,22.34624],[114.1656,22.34624],[114.1656,22.34624],[114.16559,22.34624],[114.16558,22.34624],[114.16558,22.34625],[114.16546,22.34627],[114.16546,22.34626],[114.16545,22.34626],[114.16545,22.34625],[114.16544,22.34625],[114.16543,22.34624],[114.16542,22.34624],[114.16541,22.34624],[114.16541,22.34623],[114.1654,22.34623],[114.16539,22.34623],[114.16539,22.34623],[114.16538,22.34623],[114.16537,22.34623],[114.16535,22.34623],[114.16535,22.34623],[114.16534,22.34623],[114.16534,22.34624],[114.16533,22.34624],[114.16533,22.34624],[114.16533,22.34624],[114.16532,22.34624],[114.16532,22.34625],[114.16532,22.34625],[114.16532,22.34625],[114.16532,22.34625],[114.16533,22.34626],[114.16533,22.34626],[114.16533,22.34626],[114.16534,22.34626],[114.16535,22.34626],[114.16536,22.34627],[114.16537,22.34627],[114.16538,22.34628],[114.16539,22.34628],[114.16539,22.34628],[114.1654,22.34629],[114.1654,22.34629],[114.1654,22.3463],[114.16541,22.34631],[114.16541,22.34632],[114.16541,22.34632],[114.1654,22.34633],[114.1654,22.34633],[114.16539,22.34634],[114.16539,22.34634],[114.16538,22.34635],[114.16538,22.34635],[114.16537,22.34636],[114.16537,22.34636],[114.16536,22.34638],[114.16535,22.3464],[114.16535,22.34642],[114.16534,22.34642],[114.16534,22.34643],[114.16534,22.34644],[114.16534,22.34645],[114.16534,22.34646],[114.16534,22.34647],[114.16534,22.34647],[114.16535,22.34648],[114.16535,22.34649],[114.16535,22.3465],[114.16535,22.3465],[114.16535,22.34651],[114.16535,22.34652],[114.16535,22.34653],[114.16535,22.34654],[114.16535,22.34674],[114.16535,22.34676],[114.16535,22.34677],[114.16535,22.34678],[114.16535,22.34678],[114.16535,22.34679],[114.16535,22.3468],[114.16535,22.3468],[114.16536,22.34681],[114.16544,22.34705],[114.16544,22.34706],[114.16544,22.34706],[114.16545,22.34707],[114.16547,22.34715],[114.16547,22.34716],[114.16547,22.34716],[114.16547,22.34717],[114.16547,22.34718],[114.16546,22.34719],[114.16545,22.34719],[114.16534,22.34724],[114.16533,22.34724],[114.16532,22.34725],[114.16532,22.34725],[114.16531,22.34725],[114.1653,22.34725],[114.16529,22.34725],[114.16529,22.34725],[114.16528,22.34725],[114.16527,22.34725],[114.16526,22.34725],[114.16526,22.34725],[114.16525,22.34724],[114.16525,22.34724],[114.16524,22.34724],[114.16523,22.34724],[114.16522,22.34724],[114.16522,22.34724],[114.16521,22.34724],[114.1652,22.34724],[114.16519,22.34725],[114.16518,22.34725],[114.1651,22.34734],[114.16509,22.34735],[114.16509,22.34735],[114.16508,22.34736],[114.16508,22.34736],[114.16508,22.34737],[114.16507,22.34738],[114.16507,22.34738],[114.16507,22.34739],[114.16507,22.3474],[114.16507,22.34741],[114.16507,22.34741],[114.16508,22.34742],[114.16508,22.34743],[114.16509,22.34743],[114.16509,22.34744],[114.16509,22.34745],[114.16509,22.34746],[114.16508,22.34746],[114.16508,22.34747],[114.16507,22.34747],[114.16506,22.34747],[114.16505,22.34747],[114.16504,22.34747],[114.16504,22.34747],[114.16503,22.34747],[114.16502,22.34747],[114.16501,22.34746],[114.16501,22.34746],[114.16499,22.34746],[114.16499,22.34746],[114.16498,22.34746],[114.16487,22.34747],[114.16487,22.34747],[114.16486,22.34747],[114.16485,22.34747],[114.16484,22.34747],[114.16483,22.34747],[114.16483,22.34747],[114.16482,22.34747],[114.16481,22.34747],[114.1648,22.34747],[114.16479,22.34747],[114.16478,22.34747],[114.16477,22.34748],[114.16476,22.34748],[114.16475,22.34749],[114.16474,22.3475],[114.16473,22.3475],[114.16473,22.34751],[114.16472,22.34751],[114.16472,22.34752],[114.16471,22.34752],[114.1647,22.34753],[114.1647,22.34753],[114.16469,22.34753],[114.16469,22.34754],[114.16468,22.34754],[114.16467,22.34755],[114.16466,22.34756],[114.16466,22.34756],[114.16465,22.34756],[114.16465,22.34757],[114.16464,22.34757],[114.16464,22.34758],[114.16463,22.34758],[114.16463,22.34759],[114.16462,22.34759],[114.16462,22.3476],[114.16461,22.34761],[114.16461,22.34762],[114.1646,22.34762],[114.1646,22.34763],[114.16459,22.34763],[114.16459,22.34764],[114.16458,22.34764],[114.16458,22.34765],[114.16458,22.34766],[114.16457,22.34766],[114.16457,22.34767],[114.16456,22.34767],[114.16456,22.34768],[114.16455,22.34768],[114.16455,22.34769],[114.16454,22.3477],[114.16454,22.34771],[114.16454,22.34771],[114.16453,22.34772],[114.16453,22.34773],[114.16453,22.34773],[114.16452,22.34774],[114.16452,22.34775],[114.16452,22.34775],[114.16452,22.34776],[114.16452,22.34777],[114.16452,22.34777],[114.16452,22.34779],[114.16452,22.34779],[114.16452,22.3478],[114.16452,22.34781],[114.16452,22.34781],[114.16452,22.34782],[114.16452,22.34783],[114.16452,22.34783],[114.16452,22.34784],[114.16452,22.34785],[114.16451,22.34785],[114.16451,22.34786],[114.16451,22.34787],[114.16451,22.34787],[114.16451,22.34788],[114.1645,22.34789],[114.16442,22.34793],[114.16441,22.34793],[114.1644,22.34794],[114.1644,22.34794],[114.16439,22.34794],[114.16438,22.34795],[114.16438,22.34795],[114.16437,22.34795],[114.16436,22.34795],[114.16435,22.34795],[114.16435,22.34796],[114.16433,22.34796],[114.16433,22.34796],[114.16432,22.34796],[114.16431,22.34796],[114.1643,22.34796],[114.1643,22.34796],[114.16428,22.34796],[114.16427,22.34796],[114.16427,22.34796],[114.16426,22.34795],[114.16425,22.34795],[114.16425,22.34795],[114.16424,22.34794],[114.16423,22.34794],[114.16422,22.34793],[114.16422,22.34793],[114.16421,22.34793],[114.1642,22.34793],[114.16419,22.34793],[114.16419,22.34792],[114.16418,22.34792],[114.16417,22.34793],[114.16417,22.34793],[114.16416,22.34793],[114.16415,22.34793],[114.16414,22.34794],[114.16413,22.34794],[114.16412,22.34794],[114.16412,22.34795],[114.16411,22.34795],[114.1641,22.34795],[114.16409,22.34796],[114.16409,22.34796],[114.16408,22.34796],[114.16408,22.34797],[114.16407,22.34797],[114.16406,22.34798],[114.16406,22.34798],[114.16405,22.34799],[114.16405,22.34799],[114.16404,22.348],[114.16404,22.348],[114.16403,22.34801],[114.16403,22.34801],[114.16402,22.34802],[114.16402,22.34802],[114.16401,22.34803],[114.16401,22.34804],[114.164,22.34804],[114.164,22.34805],[114.164,22.34806],[114.16399,22.34806],[114.16399,22.34807],[114.16399,22.34807],[114.16398,22.34808],[114.16398,22.34809],[114.16398,22.34809],[114.16397,22.3481],[114.16397,22.34811],[114.16397,22.34811],[114.16397,22.34812],[114.16396,22.34813],[114.16396,22.34813],[114.16396,22.34814],[114.16396,22.34815],[114.16396,22.34815],[114.16395,22.34816],[114.16395,22.34817],[114.16395,22.34817],[114.16395,22.34818],[114.16395,22.34819],[114.16395,22.34819],[114.16395,22.3482],[114.16395,22.34821],[114.16394,22.34822],[114.16394,22.34823],[114.16394,22.34824],[114.16394,22.34824],[114.16394,22.34825],[114.16394,22.34826],[114.16394,22.34826],[114.16394,22.34827],[114.16394,22.34828],[114.16394,22.34828],[114.16394,22.34829],[114.16394,22.3483],[114.16394,22.3483],[114.16394,22.34831],[114.16394,22.34832],[114.16394,22.34833],[114.16394,22.34833],[114.16394,22.34834],[114.16394,22.34835],[114.16394,22.34835],[114.16394,22.34836],[114.16394,22.34837],[114.16393,22.34837],[114.16393,22.34838],[114.16393,22.34839],[114.16393,22.34839],[114.16393,22.3484],[114.16393,22.34841],[114.16392,22.34841],[114.16392,22.34842],[114.16391,22.34846],[114.1639,22.34847],[114.16389,22.34848],[114.16389,22.34849],[114.16388,22.34849],[114.16387,22.34849],[114.16386,22.34848],[114.16385,22.34848],[114.16385,22.34848],[114.16384,22.34848],[114.16383,22.34848],[114.16383,22.34847],[114.16381,22.34847],[114.16381,22.34847],[114.1638,22.34847],[114.16379,22.34846],[114.16378,22.34846],[114.16377,22.34846],[114.16377,22.34846],[114.16376,22.34846]]]]},"properties":{"M_NM_Eng":"Metro","SR_Eng":"Metro","PDD_Cat_En":"Kowloon","PDD_Eng":"Sham Shui Po","M_NM_Tc":"都會區","SR_Tc":"都會區","PDD_Cat_Tc":"九龍","PDD_Tc":"深水埗","M_NM_Sc":"都会区","SR_Sc_1":"都会区","PDD_Cat_Sc":"九龙","PDD_Sc":"深水埗","Y2019_Popu":454450,"Y2019_Empl":246800,"Y2026_Popu":492450,"Y2026_Empl":243300,"Y2031_Popu":464900,"Y2031_Empl":236350}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[114.26049,22.20524],[114.26012,22.20502],[114.25996,22.20483],[114.25994,22.2047],[114.25986,22.20456],[114.25988,22.20447],[114.25998,22.20436],[114.25983,22.20397],[114.25988,22.2039],[114.25999,22.20388],[114.26007,22.20394],[114.26022,22.20384],[114.2603,22.20383],[114.26061,22.20393],[114.26091,22.20409],[114.26097,22.20434],[114.26084,22.20445],[114.26074,22.20449],[114.26063,22.20448],[114.26077,22.20476],[114.26069,22.20498],[114.26072,22.20509],[114.26068,22.20523],[114.26062,22.20521],[114.26049,22.20524]]],[[[114.26013,22.20658],[114.26005,22.20659],[114.25999,22.20654],[114.25987,22.20653],[114.2598,22.20656],[114.25972,22.20649],[114.25959,22.20655],[114.25932,22.20652],[114.25925,22.20648],[114.25922,22.20643],[114.25925,22.20634],[114.25918,22.20636],[114.25888,22.20614],[114.25855,22.20568],[114.25848,22.20557],[114.25845,22.20541],[114.25836,22.20536],[114.25832,22.20528],[114.25832,22.2051],[114.25863,22.20498],[114.2589,22.20504],[114.25916,22.20492],[114.25933,22.20492],[114.25949,22.20483],[114.25966,22.20479],[114.2599,22.20501],[114.26014,22.2051],[114.26012,22.20525],[114.26022,22.20532],[114.26023,22.20543],[114.26006,22.20556],[114.25995,22.20552],[114.2599,22.20543],[114.25995,22.20574],[114.25986,22.20595],[114.26004,22.2061],[114.26013,22.20628],[114.26013,22.20658]]],[[[114.22375,22.20655],[114.22345,22.20677],[114.22326,22.207],[114.22312,22.20715],[114.22281,22.20738],[114.22263,22.20742],[114.22241,22.20746],[114.2222,22.20748],[114.22211,22.20754],[114.22202,22.20752],[114.22202,22.20747],[114.22188,22.20738],[114.22187,22.2073],[114.22188,22.20726],[114.22195,22.20717],[114.22229,22.20696],[114.22238,22.20682],[114.22258,22.20668],[114.2228,22.20664],[114.2229,22.20656],[114.2229,22.20649],[114.22301,22.20648],[114.22304,22.20652],[114.22327,22.20652],[114.2233,22.20648],[114.22327,22.20641],[114.22348,22.20638],[114.22373,22.20647],[114.22377,22.20652],[114.22375,22.20655]]],[[[114.18683,22.21699],[114.18683,22.21705],[114.18678,22.21708],[114.18674,22.21708],[114.18673,22.21707],[114.18672,22.21699],[114.18674,22.21698],[114.18681,22.21697],[114.18683,22.21699]]],[[[114.18587,22.21701],[114.18539,22.21718],[114.18514,22.21735],[114.18471,22.21747],[114.18397,22.21741],[114.18375,22.21733],[114.18351,22.21708],[114.18342,22.2169],[114.1834,22.21684],[114.18333,22.21675],[114.18341,22.21661],[114.18351,22.21659],[114.18349,22.21648],[114.18353,22.21625],[114.18355,22.21619],[114.18361,22.21601],[114.18369,22.21606],[114.18372,22.21583],[114.18387,22.21568],[114.18393,22.21555],[114.18397,22.21548],[114.18398,22.21541],[114.18395,22.21535],[114.18379,22.21541],[114.1838,22.21534],[114.18382,22.21528],[114.18385,22.21516],[114.18396,22.21498],[114.18403,22.21489],[114.18413,22.21489],[114.1843,22.21469],[114.18431,22.2146],[114.18434,22.21451],[114.18442,22.2145],[114.18451,22.21442],[114.18457,22.21425],[114.18454,22.21416],[114.18485,22.21415],[114.18483,22.21408],[114.18473,22.21401],[114.18462,22.21398],[114.18468,22.21393],[114.18478,22.21386],[114.18494,22.21381],[114.18498,22.21374],[114.18516,22.21373],[114.18519,22.21383],[114.18538,22.21381],[114.18553,22.21387],[114.18552,22.21398],[114.18564,22.21389],[114.18576,22.21394],[114.18593,22.21413],[114.18601,22.21427],[114.18603,22.21428],[114.18627,22.21444],[114.18632,22.21445],[114.18637,22.21446],[114.18648,22.21463],[114.18656,22.2147],[114.18662,22.21478],[114.18685,22.21494],[114.18696,22.21499],[114.18703,22.21498],[114.18708,22.21491],[114.18713,22.21479],[114.18725,22.2147],[114.18736,22.21483],[114.18735,22.2149],[114.1874,22.21497],[114.18786,22.21496],[114.1881,22.21508],[114.18813,22.21515],[114.18804,22.21533],[114.1879,22.2154],[114.18773,22.21541],[114.18793,22.21546],[114.18804,22.21552],[114.18811,22.21567],[114.18809,22.21583],[114.18802,22.21591],[114.18792,22.21591],[114.18779,22.21612],[114.1878,22.21622],[114.18782,22.21637],[114.18783,22.21646],[114.18767,22.21652],[114.18751,22.21666],[114.18729,22.21669],[114.18674,22.21694],[114.18636,22.21693],[114.18587,22.21701]]],[[[114.23827,22.21997],[114.23816,22.21996],[114.23816,22.21992],[114.23815,22.21991],[114.23814,22.21991],[114.23803,22.21992],[114.23785,22.21993],[114.2378,22.21992],[114.23774,22.21991],[114.23753,22.2198],[114.23744,22.21976],[114.23738,22.21971],[114.23732,22.21964],[114.23729,22.21958],[114.23728,22.21955],[114.23728,22.2195],[114.23729,22.21944],[114.23732,22.21937],[114.23733,22.21935],[114.23736,22.21933],[114.23768,22.21916],[114.23779,22.21916],[114.2378,22.21931],[114.23779,22.21938],[114.23771,22.21954],[114.23771,22.21957],[114.23771,22.21958],[114.23779,22.21962],[114.23792,22.21969],[114.23811,22.21972],[114.23818,22.21974],[114.23829,22.2198],[114.23834,22.21983],[114.23835,22.21984],[114.23835,22.21988],[114.23834,22.2199],[114.23827,22.21997]]],[[[114.19364,22.22419],[114.19365,22.22425],[114.19375,22.22432],[114.19377,22.22447],[114.19366,22.22453],[114.19345,22.22454],[114.19342,22.22449],[114.19339,22.22443],[114.19337,22.22432],[114.19345,22.22429],[114.19345,22.22422],[114.19352,22.22416],[114.19364,22.22419]]],[[[114.19275,22.22433],[114.19282,22.22441],[114.19281,22.22449],[114.19264,22.22457],[114.19258,22.22454],[114.19255,22.22445],[114.19248,22.22438],[114.1926,22.22431],[114.19275,22.22433]]],[[[114.1917,22.22485],[114.19165,22.22486],[114.1916,22.22484],[114.1916,22.22474],[114.19153,22.22475],[114.19148,22.22474],[114.19131,22.22465],[114.19134,22.22456],[114.19118,22.22454],[114.19116,22.22448],[114.19123,22.22443],[114.19117,22.2244],[114.19106,22.2245],[114.19095,22.2245],[114.19088,22.22427],[114.19091,22.22419],[114.19095,22.22416],[114.19103,22.22419],[114.1911,22.22412],[114.19126,22.22409],[114.19131,22.22414],[114.1913,22.22422],[114.19118,22.22428],[114.1912,22.22436],[114.19155,22.22404],[114.19156,22.22411],[114.19184,22.22415],[114.19197,22.22412],[114.19203,22.22418],[114.19204,22.22422],[114.19197,22.22428],[114.19212,22.22433],[114.19218,22.22438],[114.19212,22.22449],[114.19204,22.22457],[114.19205,22.22465],[114.19195,22.22468],[114.19179,22.22479],[114.19172,22.22478],[114.1917,22.22485]]],[[[114.25714,22.22653],[114.25701,22.22656],[114.25641,22.22654],[114.25619,22.22645],[114.25605,22.22647],[114.25585,22.22632],[114.25585,22.2263],[114.25589,22.22622],[114.25595,22.22612],[114.25603,22.226],[114.25608,22.22591],[114.25617,22.22576],[114.25629,22.22568],[114.25685,22.22565],[114.25714,22.22556],[114.25725,22.22551],[114.25751,22.22536],[114.25775,22.22546],[114.25776,22.22532],[114.25781,22.22527],[114.25794,22.2253],[114.25805,22.22534],[114.25809,22.22535],[114.25815,22.22531],[114.25833,22.22523],[114.2586,22.22518],[114.25879,22.22518],[114.25893,22.22525],[114.25901,22.22534],[114.25909,22.22552],[114.25905,22.22573],[114.25905,22.2258],[114.25903,22.22602],[114.25887,22.22617],[114.2589,22.22628],[114.25871,22.22633],[114.25848,22.22631],[114.25836,22.22638],[114.25829,22.22638],[114.25791,22.22634],[114.25782,22.22637],[114.25776,22.2264],[114.25744,22.22647],[114.2572,22.22643],[114.25714,22.22653]]],[[[114.25989,22.23105],[114.25978,22.23112],[114.25969,22.23113],[114.25959,22.23108],[114.25946,22.23096],[114.25931,22.23101],[114.25927,22.23097],[114.25907,22.231],[114.25896,22.23085],[114.25882,22.23075],[114.25854,22.23071],[114.25836,22.23057],[114.25834,22.23048],[114.25824,22.23043],[114.25818,22.23036],[114.25805,22.23047],[114.25792,22.2305],[114.25781,22.23059],[114.25762,22.23064],[114.25746,22.23062],[114.2575,22.2305],[114.25747,22.23048],[114.25736,22.23058],[114.2572,22.2306],[114.25719,22.23063],[114.25721,22.23066],[114.25709,22.23071],[114.25709,22.23065],[114.25715,22.2306],[114.25705,22.23058],[114.25689,22.2306],[114.25688,22.23065],[114.25683,22.23066],[114.25675,22.23062],[114.25676,22.23051],[114.25667,22.23054],[114.25665,22.23049],[114.25648,22.23044],[114.25652,22.23041],[114.25646,22.23034],[114.25639,22.23032],[114.25622,22.23044],[114.25613,22.23042],[114.25599,22.23046],[114.25594,22.23041],[114.25602,22.23032],[114.2559,22.23023],[114.25581,22.2301],[114.25574,22.22991],[114.25567,22.22984],[114.25574,22.22982],[114.25586,22.22988],[114.25598,22.22989],[114.25614,22.22967],[114.25637,22.22961],[114.25637,22.22966],[114.25642,22.22971],[114.25657,22.22969],[114.25665,22.2298],[114.25678,22.2298],[114.25674,22.22973],[114.25668,22.22972],[114.25675,22.22967],[114.25696,22.22977],[114.25703,22.22973],[114.25705,22.2298],[114.25714,22.22978],[114.25715,22.22984],[114.2572,22.22984],[114.25741,22.22962],[114.25745,22.22955],[114.25754,22.22956],[114.25761,22.22945],[114.25789,22.22946],[114.25787,22.22942],[114.25793,22.2294],[114.25798,22.22942],[114.25793,22.22946],[114.25802,22.2295],[114.25808,22.22956],[114.25801,22.22964],[114.25796,22.2298],[114.25813,22.22959],[114.25824,22.22969],[114.2582,22.22954],[114.25826,22.22944],[114.25838,22.2294],[114.25836,22.22936],[114.25857,22.22922],[114.25891,22.22911],[114.25907,22.22926],[114.25914,22.22921],[114.2594,22.22923],[114.25935,22.22931],[114.25913,22.22934],[114.25909,22.22937],[114.25909,22.22942],[114.259,22.22947],[114.25919,22.22948],[114.25922,22.22943],[114.25936,22.22947],[114.25953,22.22944],[114.25984,22.22955],[114.26,22.22967],[114.26009,22.23008],[114.26003,22.23017],[114.25993,22.2304],[114.26003,22.23054],[114.26005,22.23068],[114.2599,22.23094],[114.25989,22.23105]]],[[[114.18284,22.23631],[114.18281,22.23634],[114.18274,22.23635],[114.1826,22.2362],[114.18266,22.23604],[114.18255,22.23605],[114.18246,22.23585],[114.1825,22.23575],[114.18244,22.23569],[114.18237,22.23569],[114.18241,22.23545],[114.18235,22.23538],[114.1823,22.23544],[114.18226,22.23544],[114.18217,22.23529],[114.18219,22.23512],[114.18229,22.23507],[114.18222,22.23503],[114.18222,22.23497],[114.1823,22.23478],[114.18204,22.23488],[114.18195,22.2348],[114.18195,22.23473],[114.18188,22.23468],[114.18183,22.23471],[114.18191,22.23449],[114.18189,22.23445],[114.18202,22.23428],[114.1821,22.23421],[114.18227,22.23425],[114.18212,22.23416],[114.18222,22.23411],[114.18229,22.23397],[114.18241,22.23396],[114.18242,22.23387],[114.18246,22.23388],[114.1825,22.23383],[114.18268,22.23377],[114.18283,22.23375],[114.18293,22.23363],[114.18296,22.23352],[114.18304,22.23345],[114.18307,22.23337],[114.18316,22.23324],[114.18316,22.23317],[114.18331,22.23292],[114.18336,22.23273],[114.1834,22.23272],[114.18342,22.23274],[114.1835,22.2326],[114.1836,22.23252],[114.18362,22.23248],[114.18356,22.23244],[114.18364,22.23236],[114.18368,22.23235],[114.18362,22.2323],[114.18354,22.2323],[114.18355,22.23225],[114.18388,22.23206],[114.18442,22.23221],[114.18463,22.23222],[114.18507,22.23229],[114.18547,22.2324],[114.18557,22.23245],[114.18586,22.2328],[114.18585,22.23288],[114.18575,22.233],[114.18586,22.23294],[114.18596,22.23292],[114.18598,22.23294],[114.18599,22.233],[114.18603,22.233],[114.18607,22.23312],[114.18603,22.23317],[114.18601,22.23327],[114.18605,22.23335],[114.18601,22.23341],[114.18604,22.2335],[114.18597,22.23361],[114.18603,22.23371],[114.18615,22.23372],[114.18629,22.23369],[114.18629,22.23364],[114.18647,22.23354],[114.18659,22.23353],[114.18662,22.23356],[114.18677,22.23354],[114.18696,22.23353],[114.18699,22.23352],[114.18723,22.23359],[114.18728,22.23358],[114.18736,22.23357],[114.18741,22.23355],[114.18743,22.23351],[114.1874,22.23348],[114.18737,22.23349],[114.18736,22.23349],[114.18737,22.23347],[114.18736,22.23342],[114.18735,22.23341],[114.18732,22.23341],[114.1873,22.23335],[114.18735,22.23329],[114.18737,22.23329],[114.18737,22.23331],[114.18744,22.23331],[114.18748,22.23325],[114.18752,22.23322],[114.18778,22.23322],[114.18781,22.23325],[114.18787,22.23326],[114.18795,22.23329],[114.18809,22.23338],[114.18818,22.23349],[114.18838,22.23357],[114.18847,22.23364],[114.18849,22.23371],[114.18853,22.23372],[114.18851,22.23383],[114.18858,22.23386],[114.18863,22.23382],[114.18872,22.23383],[114.18881,22.23389],[114.18882,22.23391],[114.18888,22.23398],[114.18883,22.23402],[114.18915,22.23423],[114.18923,22.23432],[114.18922,22.23439],[114.18929,22.23438],[114.18941,22.23446],[114.18939,22.23431],[114.18943,22.23431],[114.18954,22.23448],[114.18952,22.23465],[114.18956,22.23474],[114.18948,22.23484],[114.18939,22.23485],[114.18938,22.23492],[114.18927,22.2349],[114.18925,22.23502],[114.18939,22.23532],[114.18948,22.23536],[114.18957,22.23548],[114.18961,22.23546],[114.18967,22.23553],[114.18939,22.23574],[114.18918,22.23574],[114.18911,22.2358],[114.18901,22.23583],[114.18891,22.23581],[114.1889,22.23588],[114.18882,22.23593],[114.18879,22.23595],[114.1885,22.23588],[114.18832,22.23592],[114.1882,22.2359],[114.1881,22.23587],[114.18787,22.23571],[114.18784,22.2357],[114.18767,22.23568],[114.18756,22.23601],[114.18752,22.23599],[114.18756,22.23587],[114.18741,22.23582],[114.18739,22.23582],[114.18726,22.23577],[114.18728,22.23603],[114.1872,22.23604],[114.18717,22.23578],[114.18623,22.23585],[114.1862,22.23552],[114.18617,22.23553],[114.18614,22.23557],[114.18605,22.23558],[114.18603,22.23558],[114.18595,22.23557],[114.18584,22.23565],[114.18565,22.23572],[114.18569,22.23582],[114.18561,22.23586],[114.18554,22.23572],[114.1855,22.23573],[114.18549,22.23572],[114.18541,22.23569],[114.18528,22.23567],[114.18516,22.23562],[114.18507,22.23596],[114.1848,22.23601],[114.18478,22.2359],[114.18437,22.23602],[114.18423,22.23613],[114.1841,22.23616],[114.18403,22.23624],[114.18391,22.23628],[114.18381,22.23621],[114.18375,22.23631],[114.1835,22.23634],[114.18345,22.23631],[114.18347,22.23625],[114.1834,22.23622],[114.18315,22.23633],[114.18288,22.23627],[114.18284,22.23631]]],[[[114.14327,22.24105],[114.14313,22.24105],[114.14314,22.24098],[114.14318,22.24097],[114.14324,22.24087],[114.1432,22.24084],[114.14304,22.24089],[114.14308,22.2408],[114.14317,22.2408],[114.14322,22.24075],[114.14331,22.24081],[114.14345,22.24073],[114.14352,22.24074],[114.14344,22.24079],[114.14351,22.24085],[114.1435,22.24087],[114.14342,22.24081],[114.1434,22.24085],[114.14325,22.24088],[114.14321,22.24094],[114.14324,22.24093],[114.14327,22.24105]]],[[[114.18712,22.24218],[114.18718,22.24221],[114.18719,22.24223],[114.18717,22.24225],[114.18715,22.24226],[114.18706,22.24227],[114.18702,22.24226],[114.18702,22.2422],[114.18704,22.24218],[114.18706,22.24216],[114.18712,22.24218]]],[[[114.17854,22.2426],[114.17856,22.24262],[114.17856,22.24264],[114.17854,22.24271],[114.17855,22.24275],[114.17853,22.24279],[114.17851,22.2428],[114.17849,22.24279],[114.17844,22.2427],[114.17844,22.24267],[114.17847,22.24264],[114.17847,22.24261],[114.17849,22.2426],[114.17854,22.2426]]],[[[114.22336,22.2435],[114.22338,22.24351],[114.22342,22.24353],[114.22334,22.2437],[114.22327,22.24373],[114.22327,22.24353],[114.22332,22.24336],[114.22336,22.2435]]],[[[114.14095,22.24379],[114.14062,22.24378],[114.1402,22.24378],[114.14001,22.2437],[114.13967,22.24366],[114.13959,22.24367],[114.13959,22.24372],[114.13954,22.24372],[114.13954,22.24368],[114.1395,22.24367],[114.13928,22.24366],[114.13904,22.24355],[114.13894,22.24353],[114.13875,22.24345],[114.13822,22.24344],[114.13809,22.24348],[114.13811,22.24358],[114.13807,22.24359],[114.13805,22.2435],[114.13795,22.24353],[114.13786,22.24343],[114.13794,22.24342],[114.13799,22.24334],[114.13815,22.24332],[114.13829,22.24321],[114.13843,22.24319],[114.13865,22.24316],[114.1387,22.2431],[114.13871,22.24308],[114.1388,22.24307],[114.139,22.24308],[114.1391,22.24305],[114.13928,22.24299],[114.13942,22.24295],[114.13976,22.24305],[114.13978,22.24306],[114.13987,22.24309],[114.14019,22.24332],[114.14036,22.24338],[114.14052,22.24344],[114.14058,22.2434],[114.1406,22.24338],[114.14068,22.24338],[114.14095,22.24346],[114.14108,22.24356],[114.14118,22.24377],[114.14114,22.24377],[114.14108,22.24372],[114.14095,22.24379]]],[[[114.22377,22.24419],[114.22381,22.24421],[114.22385,22.24426],[114.22381,22.24435],[114.2238,22.24443],[114.22378,22.24448],[114.22374,22.2445],[114.2237,22.2445],[114.22369,22.24448],[114.2237,22.24441],[114.22368,22.24435],[114.22367,22.24431],[114.22369,22.24426],[114.22371,22.24422],[114.22374,22.24418],[114.22377,22.24419]]],[[[114.15941,22.24508],[114.15923,22.24526],[114.15922,22.24527],[114.15873,22.24554],[114.15752,22.24578],[114.15402,22.2446],[114.15264,22.24501],[114.15232,22.2453],[114.15076,22.24572],[114.15028,22.24561],[114.15028,22.24559],[114.15022,22.2456],[114.15022,22.24567],[114.15016,22.24568],[114.15006,22.24568],[114.15006,22.24566],[114.14993,22.24567],[114.14992,22.24566],[114.14991,22.24566],[114.1499,22.24566],[114.14989,22.24565],[114.14987,22.24563],[114.14985,22.24561],[114.14979,22.24563],[114.1497,22.24564],[114.14965,22.24562],[114.14963,22.24562],[114.14958,22.24561],[114.14954,22.24559],[114.14945,22.24557],[114.14941,22.24557],[114.14942,22.24553],[114.14928,22.24555],[114.14926,22.24555],[114.14922,22.24557],[114.1492,22.24557],[114.14913,22.24557],[114.14907,22.24558],[114.14889,22.24556],[114.14881,22.24555],[114.14878,22.24554],[114.14875,22.24553],[114.14868,22.24555],[114.14863,22.24557],[114.14861,22.24558],[114.14856,22.24561],[114.14853,22.24564],[114.1485,22.24567],[114.14843,22.24569],[114.14839,22.2457],[114.14836,22.2457],[114.14833,22.2457],[114.1483,22.24568],[114.14826,22.24566],[114.14824,22.24565],[114.14821,22.24562],[114.14818,22.24558],[114.1472,22.245],[114.14522,22.24487],[114.14515,22.24484],[114.14482,22.24459],[114.14411,22.24373],[114.14413,22.24365],[114.14419,22.24363],[114.14462,22.24357],[114.14485,22.24359],[114.14484,22.24349],[114.14501,22.2435],[114.14502,22.24361],[114.14507,22.24361],[114.14513,22.24357],[114.14509,22.24341],[114.14606,22.24273],[114.14618,22.24274],[114.14668,22.24239],[114.14668,22.2423],[114.14722,22.24191],[114.147,22.24197],[114.14699,22.24193],[114.14747,22.24181],[114.1475,22.24176],[114.14748,22.2417],[114.14741,22.24167],[114.1474,22.24164],[114.14747,22.24162],[114.1475,22.24158],[114.1476,22.24146],[114.14771,22.24131],[114.14778,22.24116],[114.14775,22.2411],[114.14774,22.241],[114.14785,22.24064],[114.14792,22.24038],[114.14795,22.2402],[114.14798,22.24013],[114.14801,22.24006],[114.1482,22.23987],[114.14833,22.23984],[114.14881,22.23938],[114.14886,22.23943],[114.15183,22.23872],[114.15349,22.2366],[114.15389,22.23687],[114.15399,22.23663],[114.1539,22.23662],[114.15397,22.23654],[114.1541,22.23647],[114.15421,22.23643],[114.15424,22.23633],[114.15421,22.2362],[114.15429,22.236],[114.15448,22.2358],[114.15458,22.2356],[114.1547,22.23549],[114.15473,22.23544],[114.15505,22.23538],[114.15517,22.23533],[114.1553,22.23527],[114.15541,22.23527],[114.15549,22.23526],[114.15567,22.23517],[114.15577,22.23521],[114.15603,22.23527],[114.15619,22.23531],[114.15625,22.23531],[114.15639,22.23518],[114.15652,22.2351],[114.15658,22.23505],[114.15663,22.23498],[114.15689,22.23489],[114.15704,22.23478],[114.15719,22.23481],[114.15735,22.23464],[114.15755,22.23456],[114.15763,22.23455],[114.15773,22.2346],[114.15783,22.23459],[114.15781,22.23452],[114.15784,22.2345],[114.15796,22.2346],[114.1582,22.23452],[114.15832,22.23442],[114.15833,22.23437],[114.15846,22.23435],[114.15841,22.23432],[114.15817,22.23433],[114.15821,22.2343],[114.15816,22.23424],[114.1582,22.23419],[114.15831,22.23419],[114.15847,22.2341],[114.15849,22.23418],[114.15848,22.23426],[114.15851,22.23427],[114.15868,22.2342],[114.15876,22.23411],[114.15906,22.23403],[114.15928,22.23358],[114.15925,22.23351],[114.15895,22.23337],[114.15882,22.2332],[114.15884,22.23307],[114.15891,22.23298],[114.15905,22.23295],[114.15895,22.23284],[114.15895,22.23275],[114.15903,22.23262],[114.15897,22.23261],[114.15905,22.23251],[114.15912,22.23252],[114.1591,22.23258],[114.15921,22.23254],[114.15917,22.23229],[114.15923,22.23215],[114.15919,22.23211],[114.15913,22.23216],[114.15908,22.23207],[114.15909,22.232],[114.15905,22.23194],[114.15897,22.23201],[114.15897,22.23187],[114.15898,22.23179],[114.15898,22.23159],[114.15906,22.23144],[114.15928,22.23122],[114.15943,22.23122],[114.15952,22.23094],[114.15962,22.23084],[114.15984,22.23068],[114.16015,22.23046],[114.16028,22.23029],[114.16039,22.23024],[114.16048,22.23024],[114.16045,22.22999],[114.16041,22.22982],[114.16051,22.22971],[114.16051,22.22961],[114.16069,22.22955],[114.16076,22.22951],[114.16087,22.22938],[114.16088,22.22924],[114.161,22.22931],[114.16102,22.22938],[114.16113,22.22923],[114.16121,22.2293],[114.16122,22.22924],[114.16123,22.22905],[114.16124,22.22904],[114.16142,22.2289],[114.16176,22.22886],[114.16182,22.22894],[114.16189,22.22894],[114.16207,22.22883],[114.16224,22.22884],[114.16233,22.22884],[114.16252,22.22892],[114.16258,22.22907],[114.16253,22.22919],[114.16238,22.2294],[114.16224,22.22942],[114.16216,22.22952],[114.16204,22.22966],[114.16196,22.22988],[114.1618,22.22997],[114.16151,22.22998],[114.16153,22.23003],[114.16169,22.23005],[114.16183,22.23014],[114.16187,22.2305],[114.16174,22.23066],[114.16156,22.23081],[114.16145,22.23094],[114.16134,22.23113],[114.1614,22.23122],[114.16155,22.23121],[114.16157,22.23127],[114.16149,22.23145],[114.16137,22.23151],[114.16127,22.23164],[114.16136,22.23168],[114.16139,22.23185],[114.16155,22.23204],[114.16158,22.23218],[114.16155,22.23231],[114.1615,22.23236],[114.16138,22.23235],[114.1615,22.23248],[114.16151,22.2326],[114.1613,22.23272],[114.16136,22.23274],[114.16125,22.23281],[114.16106,22.23285],[114.16094,22.23284],[114.1608,22.2328],[114.16074,22.23282],[114.16077,22.23287],[114.16074,22.23291],[114.16027,22.23313],[114.16022,22.2332],[114.16011,22.23324],[114.15996,22.23322],[114.15984,22.2334],[114.15976,22.23345],[114.15965,22.23347],[114.15953,22.23343],[114.15942,22.23352],[114.15939,22.23356],[114.15935,22.23376],[114.15937,22.23389],[114.15954,22.23406],[114.15978,22.23426],[114.15983,22.2344],[114.15972,22.23442],[114.15961,22.23448],[114.15978,22.23448],[114.15987,22.2346],[114.15984,22.23475],[114.15969,22.23483],[114.15971,22.23496],[114.15992,22.235],[114.16002,22.23511],[114.16005,22.23519],[114.15995,22.23531],[114.16001,22.23539],[114.16004,22.23535],[114.16013,22.23532],[114.16007,22.23569],[114.16021,22.23569],[114.1603,22.23575],[114.16032,22.23587],[114.16043,22.23619],[114.1626,22.23629],[114.16264,22.23627],[114.16271,22.23625],[114.16276,22.23624],[114.163,22.23625],[114.16305,22.23626],[114.16309,22.23628],[114.16312,22.23631],[114.16314,22.23634],[114.16316,22.23638],[114.16316,22.23641],[114.16315,22.23644],[114.16313,22.23647],[114.16312,22.23649],[114.16309,22.23652],[114.16304,22.23652],[114.16297,22.23653],[114.16285,22.23652],[114.16271,22.23649],[114.16252,22.23647],[114.16224,22.23644],[114.16122,22.23642],[114.16063,22.23639],[114.16055,22.23638],[114.16053,22.23641],[114.16057,22.23642],[114.16056,22.23645],[114.16056,22.23647],[114.16053,22.23647],[114.16051,22.23656],[114.16051,22.23661],[114.16054,22.23667],[114.16058,22.23679],[114.16059,22.23689],[114.16058,22.23692],[114.16057,22.23695],[114.1606,22.23701],[114.16062,22.23702],[114.16063,22.23704],[114.16063,22.23705],[114.16071,22.23703],[114.16072,22.2371],[114.16067,22.23712],[114.1606,22.23711],[114.16058,22.23727],[114.16067,22.23726],[114.16067,22.23724],[114.1609,22.23721],[114.16094,22.23739],[114.16089,22.2374],[114.16089,22.23746],[114.16049,22.23747],[114.16053,22.23753],[114.16055,22.23756],[114.16055,22.23756],[114.16057,22.23758],[114.16075,22.23756],[114.16083,22.23756],[114.16087,22.23757],[114.16087,22.23758],[114.16088,22.23767],[114.16089,22.23773],[114.16088,22.23776],[114.16084,22.23779],[114.16072,22.23782],[114.16056,22.23785],[114.16056,22.23786],[114.16055,22.23787],[114.16056,22.23796],[114.16092,22.23782],[114.16101,22.238],[114.16068,22.23814],[114.1607,22.23818],[114.16072,22.23819],[114.16073,22.2382],[114.16075,22.2382],[114.16078,22.23818],[114.16079,22.23818],[114.16079,22.2382],[114.16072,22.23827],[114.16073,22.23832],[114.16067,22.23836],[114.16065,22.2384],[114.16065,22.23845],[114.16067,22.23847],[114.16069,22.2385],[114.16071,22.23851],[114.16073,22.23857],[114.16071,22.23859],[114.16114,22.23923],[114.16113,22.23926],[114.161,22.23922],[114.16096,22.23932],[114.16095,22.23935],[114.16091,22.23948],[114.1609,22.23951],[114.16086,22.23964],[114.16085,22.23967],[114.16081,22.23978],[114.1608,22.23981],[114.16075,22.23995],[114.16075,22.23997],[114.1607,22.24012],[114.16069,22.24014],[114.16064,22.24028],[114.16064,22.24031],[114.16058,22.24046],[114.16072,22.2405],[114.16069,22.2406],[114.16077,22.24062],[114.16082,22.24064],[114.16082,22.24065],[114.16076,22.24063],[114.16075,22.24066],[114.16086,22.2407],[114.16085,22.24072],[114.16074,22.24069],[114.16073,22.24071],[114.16068,22.24069],[114.16065,22.2407],[114.16061,22.24083],[114.16051,22.24091],[114.16044,22.24083],[114.16014,22.24108],[114.16025,22.24119],[114.16019,22.24124],[114.16008,22.24113],[114.15982,22.24135],[114.15984,22.24137],[114.15978,22.24142],[114.15976,22.2414],[114.15912,22.24194],[114.15917,22.24199],[114.15911,22.24204],[114.15906,22.2421],[114.15897,22.24219],[114.15901,22.24231],[114.15903,22.24235],[114.15906,22.24237],[114.15909,22.24238],[114.15911,22.24239],[114.15912,22.2424],[114.15914,22.24242],[114.15914,22.24244],[114.15913,22.24249],[114.1591,22.24252],[114.15915,22.24264],[114.1595,22.24336],[114.15969,22.2438],[114.15979,22.24387],[114.15983,22.24415],[114.15941,22.24508]]],[[[114.22356,22.24536],[114.22389,22.24559],[114.2238,22.24579],[114.22369,22.24584],[114.22357,22.24584],[114.22341,22.24571],[114.22313,22.24563],[114.22276,22.24544],[114.2228,22.24537],[114.22294,22.24531],[114.22327,22.24527],[114.22356,22.24536]]],[[[114.22386,22.24653],[114.22374,22.24661],[114.22361,22.24659],[114.22348,22.24652],[114.2238,22.24645],[114.22386,22.24653]]],[[[114.22401,22.24663],[114.22402,22.24665],[114.22402,22.24668],[114.22399,22.2467],[114.22393,22.24671],[114.2239,22.24671],[114.22389,22.24669],[114.22388,22.24667],[114.22392,22.24662],[114.22394,22.2466],[114.22397,22.2466],[114.22401,22.24663]]],[[[114.24994,22.24681],[114.24993,22.24681],[114.24993,22.2468],[114.24993,22.2468],[114.24993,22.2468],[114.24992,22.24678],[114.24992,22.24678],[114.24992,22.24678],[114.24992,22.24676],[114.24994,22.24681]]],[[[114.11793,22.27379],[114.11793,22.27379],[114.11791,22.27378],[114.1179,22.27378],[114.1179,22.27377],[114.11793,22.27379]]],[[[114.11766,22.27387],[114.1176,22.27387],[114.11771,22.27384],[114.11766,22.27387]]],[[[114.1175,22.27391],[114.11739,22.27394],[114.11734,22.27395],[114.11732,22.27395],[114.11755,22.27388],[114.1175,22.27391]]],[[[114.11718,22.274],[114.11718,22.274],[114.11721,22.27398],[114.11718,22.274]]],[[[114.11706,22.27414],[114.11705,22.27415],[114.11704,22.27417],[114.11706,22.27412],[114.11706,22.27414]]],[[[114.11682,22.27431],[114.11673,22.27438],[114.11684,22.27428],[114.11682,22.27431]]],[[[114.11661,22.27449],[114.1166,22.27449],[114.11664,22.27446],[114.11661,22.27449]]],[[[114.11657,22.27453],[114.11655,22.27454],[114.11659,22.2745],[114.11657,22.27453]]],[[[114.11644,22.27467],[114.11643,22.27468],[114.11644,22.27466],[114.11644,22.27467]]],[[[114.1164,22.27545],[114.1164,22.27547],[114.1164,22.27544],[114.1164,22.27545]]],[[[114.11639,22.2755],[114.11638,22.27551],[114.11639,22.27549],[114.11639,22.2755]]],[[[114.1164,22.27564],[114.11641,22.27567],[114.11641,22.27568],[114.11638,22.2756],[114.1164,22.27564]]],[[[114.11642,22.27572],[114.11643,22.27586],[114.11641,22.27569],[114.11642,22.27572]]],[[[114.11646,22.27596],[114.11644,22.2759],[114.11644,22.27589],[114.11646,22.27596]]],[[[114.11646,22.27596],[114.11646,22.27598],[114.11644,22.27602],[114.11646,22.27596]]],[[[114.11644,22.27603],[114.11644,22.27603],[114.11644,22.27602],[114.11644,22.27603]]],[[[114.11645,22.27645],[114.11645,22.27645],[114.11645,22.27645],[114.11645,22.27645]]],[[[114.11653,22.27666],[114.11653,22.27666],[114.11649,22.27663],[114.11653,22.27666]]],[[[114.11655,22.27677],[114.11654,22.27667],[114.11655,22.27672],[114.11655,22.27677]]],[[[114.11655,22.27677],[114.11655,22.27681],[114.11654,22.27685],[114.11653,22.2769],[114.11651,22.27699],[114.11655,22.27677]]],[[[114.11649,22.27712],[114.11649,22.27712],[114.11649,22.27707],[114.1165,22.27706],[114.11649,22.27712]]],[[[114.11646,22.27733],[114.11643,22.27737],[114.11642,22.27738],[114.11645,22.27732],[114.11646,22.2773],[114.11646,22.2773],[114.11646,22.27733]]],[[[114.1168,22.27836],[114.11673,22.27832],[114.11673,22.27832],[114.11678,22.27834],[114.1168,22.27836]]],[[[114.1168,22.27836],[114.11682,22.27838],[114.11687,22.27846],[114.1169,22.2785],[114.11693,22.27854],[114.11694,22.27858],[114.11694,22.27859],[114.1168,22.27836]]],[[[114.11706,22.27877],[114.11705,22.27876],[114.11705,22.27875],[114.11706,22.27877]]],[[[114.1171,22.27887],[114.11712,22.27897],[114.11712,22.27896],[114.11707,22.2788],[114.1171,22.27887]]],[[[114.11717,22.27911],[114.11718,22.27915],[114.11717,22.2791],[114.11717,22.27911]]],[[[114.20752,22.28543],[114.20752,22.28555],[114.2075,22.28561],[114.20745,22.28567],[114.20733,22.28574],[114.20726,22.28578],[114.20718,22.28581],[114.2066,22.28593],[114.20654,22.28594],[114.20653,22.28585],[114.20653,22.28579],[114.20651,22.28569],[114.20646,22.28554],[114.20638,22.28544],[114.20634,22.2854],[114.20629,22.28537],[114.20621,22.28533],[114.20612,22.28534],[114.20606,22.28535],[114.20596,22.28539],[114.20591,22.28541],[114.2058,22.28544],[114.20575,22.28545],[114.20564,22.28541],[114.20558,22.28536],[114.20553,22.28537],[114.20546,22.28538],[114.20542,22.28542],[114.2053,22.28548],[114.20526,22.28552],[114.20524,22.28556],[114.20518,22.2856],[114.2051,22.28559],[114.20498,22.28556],[114.20488,22.28558],[114.20475,22.28561],[114.20462,22.28559],[114.20461,22.28542],[114.20463,22.28522],[114.20462,22.28501],[114.20463,22.28492],[114.20464,22.2848],[114.20465,22.28474],[114.20466,22.28468],[114.20465,22.28461],[114.20461,22.28452],[114.20457,22.28442],[114.20448,22.28431],[114.2044,22.28423],[114.20428,22.28418],[114.20418,22.28421],[114.2041,22.28424],[114.20403,22.28429],[114.20398,22.28438],[114.20396,22.28438],[114.20393,22.28438],[114.20383,22.28434],[114.20377,22.2843],[114.20372,22.28424],[114.20366,22.28416],[114.20361,22.28406],[114.20359,22.28398],[114.20362,22.28387],[114.20362,22.28383],[114.20355,22.28369],[114.20351,22.28359],[114.20351,22.28356],[114.20352,22.28354],[114.20355,22.2835],[114.20365,22.28342],[114.20365,22.28337],[114.20364,22.28332],[114.2036,22.2833],[114.20346,22.28325],[114.20339,22.28319],[114.20333,22.28309],[114.20328,22.28302],[114.20325,22.28301],[114.20312,22.28301],[114.20308,22.28302],[114.20307,22.28305],[114.20303,22.28317],[114.20302,22.2833],[114.20299,22.2834],[114.20296,22.28343],[114.2029,22.28344],[114.20282,22.28343],[114.20268,22.28339],[114.20264,22.2834],[114.20261,22.28342],[114.20259,22.28349],[114.20261,22.28354],[114.20262,22.28357],[114.20257,22.28367],[114.20257,22.2838],[114.20263,22.28387],[114.20263,22.28391],[114.20263,22.28395],[114.20261,22.28397],[114.20257,22.284],[114.20255,22.28401],[114.20253,22.28405],[114.20252,22.28409],[114.2025,22.28416],[114.20246,22.28423],[114.2024,22.28426],[114.20232,22.28426],[114.20228,22.28424],[114.2022,22.28419],[114.20215,22.28413],[114.20213,22.28412],[114.20189,22.28406],[114.20181,22.28402],[114.2017,22.28399],[114.20165,22.28399],[114.20152,22.28394],[114.20149,22.28392],[114.20145,22.28388],[114.2014,22.28377],[114.20137,22.28377],[114.20125,22.28381],[114.20118,22.28382],[114.20116,22.2838],[114.20113,22.28379],[114.20111,22.28371],[114.20108,22.28366],[114.20105,22.28365],[114.20095,22.28371],[114.20089,22.28374],[114.20083,22.28375],[114.20079,22.28374],[114.20074,22.2837],[114.20069,22.2836],[114.20064,22.28352],[114.20062,22.28347],[114.20062,22.28342],[114.2006,22.28341],[114.2005,22.28342],[114.20043,22.28342],[114.20032,22.2834],[114.20026,22.28337],[114.20024,22.28328],[114.20019,22.28316],[114.20023,22.28297],[114.20022,22.28288],[114.20023,22.2828],[114.20027,22.28267],[114.20032,22.28259],[114.20038,22.2825],[114.2004,22.28244],[114.20039,22.28239],[114.20037,22.28238],[114.20034,22.28237],[114.20025,22.28241],[114.20014,22.28241],[114.20005,22.28242],[114.19994,22.2824],[114.19985,22.28236],[114.19976,22.28235],[114.19972,22.28232],[114.19968,22.28224],[114.19967,22.2822],[114.19968,22.28211],[114.19969,22.28203],[114.19969,22.282],[114.19963,22.28192],[114.19961,22.28186],[114.19963,22.28178],[114.19963,22.28168],[114.19962,22.28165],[114.19961,22.28159],[114.19961,22.2815],[114.19959,22.28147],[114.19949,22.28143],[114.19945,22.28141],[114.19942,22.28136],[114.19941,22.28127],[114.19939,22.28122],[114.19927,22.28118],[114.19923,22.28114],[114.19921,22.28109],[114.19921,22.28101],[114.19924,22.28093],[114.19925,22.28086],[114.19924,22.28078],[114.1992,22.28072],[114.19917,22.28072],[114.19913,22.28073],[114.19907,22.28081],[114.19903,22.28084],[114.19901,22.28084],[114.19893,22.28081],[114.19889,22.2808],[114.19884,22.28089],[114.19877,22.28098],[114.19873,22.28107],[114.19873,22.28112],[114.19871,22.28115],[114.19868,22.28119],[114.19863,22.2812],[114.19859,22.28117],[114.19854,22.28115],[114.19849,22.28115],[114.1984,22.2812],[114.19833,22.28129],[114.1983,22.28131],[114.19823,22.28133],[114.19823,22.2814],[114.19826,22.2815],[114.19824,22.28157],[114.19824,22.28158],[114.19822,22.28172],[114.1982,22.28176],[114.19817,22.28181],[114.19812,22.28184],[114.19806,22.28185],[114.198,22.28184],[114.19793,22.28181],[114.19787,22.28177],[114.1978,22.28171],[114.19771,22.28162],[114.19766,22.28158],[114.19762,22.28155],[114.19755,22.28153],[114.19754,22.28153],[114.19757,22.28145],[114.19759,22.28136],[114.19759,22.28127],[114.19762,22.28112],[114.19762,22.28104],[114.19761,22.28091],[114.19761,22.28087],[114.19766,22.28077],[114.19781,22.28064],[114.19789,22.28058],[114.19803,22.2805],[114.19811,22.28047],[114.19813,22.28034],[114.19817,22.28025],[114.19817,22.28022],[114.19813,22.28022],[114.19805,22.28025],[114.19786,22.28037],[114.19775,22.2804],[114.19767,22.28041],[114.19758,22.28039],[114.19752,22.28036],[114.19749,22.28032],[114.19748,22.28026],[114.19748,22.28006],[114.19747,22.28002],[114.19742,22.27996],[114.19736,22.27991],[114.19733,22.27985],[114.19732,22.2798],[114.19733,22.27975],[114.19734,22.27975],[114.19615,22.27974],[114.19577,22.27931],[114.19566,22.27936],[114.19558,22.27943],[114.1955,22.27947],[114.19538,22.27953],[114.19525,22.27956],[114.1952,22.27956],[114.19514,22.27956],[114.19511,22.27957],[114.19509,22.27959],[114.19505,22.27963],[114.19502,22.27965],[114.19496,22.27966],[114.1949,22.27966],[114.19484,22.27964],[114.19479,22.27963],[114.1948,22.27962],[114.19469,22.27933],[114.19469,22.2793],[114.19468,22.27927],[114.19466,22.27925],[114.19463,22.27921],[114.19458,22.2792],[114.19449,22.27918],[114.19443,22.27917],[114.19439,22.27917],[114.19435,22.27916],[114.19431,22.27913],[114.19429,22.2791],[114.19427,22.27907],[114.19426,22.27902],[114.19426,22.27898],[114.19427,22.27894],[114.19429,22.27892],[114.19432,22.27889],[114.19441,22.27882],[114.19447,22.27876],[114.19452,22.27864],[114.19463,22.27858],[114.19468,22.27838],[114.19474,22.27834],[114.19479,22.2783],[114.19483,22.27826],[114.19485,22.27822],[114.19501,22.27818],[114.19519,22.27786],[114.19521,22.27782],[114.19525,22.27778],[114.19532,22.27768],[114.19537,22.27761],[114.19541,22.27754],[114.19545,22.27745],[114.19547,22.27739],[114.1955,22.27731],[114.19552,22.27727],[114.19554,22.27722],[114.19555,22.27718],[114.19565,22.27723],[114.19573,22.27717],[114.19578,22.27713],[114.19584,22.27707],[114.19591,22.277],[114.19597,22.27692],[114.19601,22.27687],[114.19601,22.27675],[114.19606,22.2766],[114.19527,22.27626],[114.19528,22.27621],[114.19528,22.27609],[114.19528,22.27605],[114.19527,22.276],[114.19527,22.27599],[114.19526,22.27593],[114.19526,22.27591],[114.19527,22.27588],[114.1953,22.27583],[114.19535,22.2758],[114.19539,22.27578],[114.19543,22.27576],[114.19552,22.2757],[114.19553,22.27569],[114.19555,22.27568],[114.19561,22.27564],[114.19565,22.27561],[114.19568,22.27558],[114.19569,22.27557],[114.19572,22.27555],[114.19574,22.27553],[114.19575,22.27552],[114.19577,22.2755],[114.19578,22.27549],[114.1958,22.27548],[114.19581,22.27547],[114.19586,22.27543],[114.19589,22.27539],[114.1959,22.27538],[114.19591,22.27537],[114.19594,22.27534],[114.19595,22.27532],[114.196,22.27527],[114.19603,22.27524],[114.19604,22.27522],[114.19606,22.2752],[114.1961,22.27515],[114.19616,22.27507],[114.19619,22.27502],[114.19622,22.27498],[114.19626,22.27492],[114.1963,22.27482],[114.19638,22.27464],[114.19641,22.27457],[114.19645,22.27448],[114.1965,22.27436],[114.19651,22.27434],[114.19652,22.27432],[114.19654,22.27429],[114.19655,22.27427],[114.19657,22.27425],[114.19658,22.27424],[114.19659,22.27422],[114.19663,22.27418],[114.19664,22.27416],[114.19668,22.27414],[114.1967,22.27413],[114.19672,22.27413],[114.19679,22.27412],[114.19686,22.27412],[114.19694,22.27413],[114.19701,22.27416],[114.19703,22.27417],[114.19708,22.27413],[114.19709,22.27415],[114.19711,22.27417],[114.19711,22.27417],[114.19712,22.27418],[114.19714,22.27419],[114.19715,22.2742],[114.19731,22.27405],[114.19734,22.274],[114.19735,22.27397],[114.19735,22.27392],[114.19736,22.27385],[114.19736,22.27377],[114.19737,22.27372],[114.19738,22.2737],[114.1974,22.27367],[114.19747,22.27362],[114.1975,22.27358],[114.19753,22.27354],[114.19755,22.27348],[114.19756,22.27345],[114.1976,22.27338],[114.19763,22.27332],[114.19767,22.27328],[114.19773,22.27323],[114.19782,22.27319],[114.19787,22.27317],[114.19794,22.27314],[114.19798,22.27312],[114.19809,22.27304],[114.19816,22.273],[114.19818,22.27298],[114.1982,22.27297],[114.19822,22.27295],[114.19822,22.27295],[114.20055,22.27429],[114.20078,22.27442],[114.20228,22.27724],[114.20229,22.27724],[114.20229,22.27724],[114.20251,22.27733],[114.20329,22.2769],[114.20332,22.27684],[114.20339,22.27673],[114.2034,22.27673],[114.20737,22.27049],[114.2067,22.27003],[114.20314,22.26754],[114.1983,22.26633],[114.19738,22.25852],[114.19752,22.25844],[114.19762,22.25838],[114.19767,22.25833],[114.19768,22.25833],[114.1977,22.2583],[114.19773,22.25827],[114.19774,22.25825],[114.19775,22.25823],[114.19776,22.25821],[114.19776,22.2582],[114.19777,22.25818],[114.19777,22.25814],[114.19777,22.25813],[114.19777,22.25813],[114.19776,22.25808],[114.19774,22.25802],[114.19773,22.25799],[114.19772,22.25798],[114.19771,22.25795],[114.19761,22.25788],[114.1976,22.25787],[114.1976,22.25787],[114.19759,22.25787],[114.19759,22.25787],[114.19758,22.25787],[114.19758,22.25787],[114.19757,22.25786],[114.19756,22.25785],[114.19752,22.25784],[114.1975,22.25784],[114.19744,22.25784],[114.19739,22.25784],[114.19736,22.25785],[114.19732,22.25787],[114.19725,22.25792],[114.19707,22.25806],[114.19705,22.25808],[114.19694,22.25811],[114.19684,22.25813],[114.19665,22.25813],[114.19654,22.25812],[114.19646,22.2581],[114.19636,22.25806],[114.1963,22.25802],[114.19624,22.25796],[114.19576,22.25754],[114.19569,22.2575],[114.19554,22.25743],[114.19552,22.25742],[114.19509,22.25731],[114.19442,22.25705],[114.19438,22.25704],[114.19374,22.25714],[114.19362,22.25714],[114.19349,22.25711],[114.19328,22.2571],[114.19324,22.25709],[114.19319,22.2571],[114.19315,22.25711],[114.19313,22.25713],[114.19309,22.25716],[114.19299,22.25723],[114.19291,22.25731],[114.19284,22.25737],[114.19279,22.25739],[114.19274,22.25741],[114.19268,22.25741],[114.19262,22.25741],[114.19254,22.25739],[114.19251,22.25738],[114.19239,22.25735],[114.19241,22.25738],[114.19243,22.25744],[114.19244,22.25747],[114.19245,22.25748],[114.19252,22.25755],[114.19258,22.25764],[114.19261,22.25773],[114.19263,22.2579],[114.19265,22.25823],[114.19265,22.25846],[114.19262,22.25874],[114.19259,22.25888],[114.19224,22.25944],[114.18883,22.25942],[114.18836,22.25942],[114.18732,22.25942],[114.18867,22.25832],[114.18866,22.25828],[114.18864,22.25824],[114.18863,22.25823],[114.18863,22.25822],[114.18862,22.2582],[114.18862,22.25818],[114.18862,22.25817],[114.18862,22.25816],[114.18863,22.25814],[114.18863,22.25812],[114.18863,22.25811],[114.18863,22.2581],[114.18863,22.25809],[114.18863,22.25808],[114.18863,22.25806],[114.18862,22.25805],[114.18862,22.25804],[114.18862,22.25803],[114.18861,22.25801],[114.18859,22.25798],[114.18859,22.25797],[114.18859,22.25797],[114.18859,22.25797],[114.18887,22.25764],[114.1893,22.25785],[114.1895,22.25747],[114.18979,22.25729],[114.18978,22.25729],[114.18977,22.25728],[114.18975,22.25728],[114.18974,22.25728],[114.18972,22.25727],[114.18971,22.25727],[114.1897,22.25726],[114.18969,22.25726],[114.18968,22.25726],[114.18968,22.25725],[114.18967,22.25725],[114.18966,22.25724],[114.18965,22.25724],[114.18964,22.25723],[114.18962,22.25722],[114.18961,22.25722],[114.18959,22.25721],[114.18958,22.2572],[114.18957,22.25719],[114.18952,22.25716],[114.18908,22.25685],[114.18906,22.25684],[114.18905,22.25683],[114.18903,22.25681],[114.18901,22.2568],[114.18901,22.25679],[114.189,22.25678],[114.18899,22.25678],[114.18898,22.25677],[114.18898,22.25677],[114.18897,22.25676],[114.18895,22.25673],[114.18895,22.25673],[114.18895,22.25672],[114.18894,22.25672],[114.18894,22.25671],[114.18892,22.25668],[114.18891,22.25667],[114.18891,22.25667],[114.18891,22.25665],[114.18889,22.25663],[114.18888,22.2566],[114.18888,22.2566],[114.18885,22.25654],[114.18883,22.25649],[114.18858,22.25601],[114.18839,22.25561],[114.18837,22.25555],[114.18836,22.25466],[114.18835,22.25458],[114.18831,22.25451],[114.18827,22.25446],[114.18823,22.25443],[114.18815,22.25438],[114.18783,22.2543],[114.1872,22.25403],[114.18713,22.25405],[114.18708,22.25406],[114.18707,22.25406],[114.18705,22.25407],[114.18554,22.25452],[114.18553,22.25452],[114.18552,22.25453],[114.18551,22.25454],[114.18546,22.25459],[114.1854,22.2546],[114.18536,22.2546],[114.18532,22.2546],[114.18528,22.25461],[114.18525,22.25463],[114.18521,22.25466],[114.18518,22.25469],[114.18515,22.25472],[114.18512,22.25476],[114.18509,22.2548],[114.18507,22.25483],[114.18505,22.25486],[114.18504,22.25489],[114.18503,22.25492],[114.18502,22.25498],[114.185,22.25502],[114.18498,22.25505],[114.18494,22.25507],[114.18491,22.25508],[114.18487,22.25509],[114.18483,22.25509],[114.18478,22.25505],[114.18477,22.25504],[114.18473,22.25502],[114.1847,22.25501],[114.18466,22.25501],[114.18463,22.25501],[114.18459,22.25502],[114.18456,22.25503],[114.18453,22.25504],[114.1845,22.25507],[114.18447,22.2551],[114.18446,22.25512],[114.18444,22.25515],[114.18442,22.25523],[114.18438,22.25525],[114.18433,22.25524],[114.18429,22.25524],[114.18425,22.25524],[114.18423,22.25524],[114.18419,22.25525],[114.18417,22.25525],[114.18414,22.25527],[114.1841,22.2553],[114.18409,22.2553],[114.18406,22.2553],[114.18402,22.25529],[114.18397,22.25528],[114.18386,22.25526],[114.1838,22.25524],[114.18376,22.25522],[114.18374,22.25522],[114.18372,22.25522],[114.18369,22.25522],[114.18366,22.25523],[114.18364,22.25523],[114.18361,22.25522],[114.18352,22.25515],[114.18348,22.25514],[114.18345,22.25513],[114.18342,22.25513],[114.18338,22.25513],[114.18335,22.25514],[114.18333,22.25516],[114.18329,22.25518],[114.18325,22.2552],[114.18319,22.25523],[114.18316,22.25524],[114.18313,22.25525],[114.18309,22.25527],[114.18307,22.25529],[114.18306,22.25533],[114.18305,22.25536],[114.18304,22.25541],[114.18302,22.25563],[114.18302,22.25565],[114.18301,22.25566],[114.18299,22.25567],[114.18294,22.25568],[114.1829,22.25568],[114.18284,22.25569],[114.18281,22.2557],[114.18272,22.25573],[114.18265,22.25574],[114.18249,22.2558],[114.18245,22.2558],[114.1824,22.2558],[114.18201,22.25577],[114.18194,22.25577],[114.18184,22.25577],[114.18177,22.25577],[114.18174,22.25577],[114.18148,22.2558],[114.18141,22.2558],[114.18134,22.25579],[114.18124,22.25578],[114.18119,22.25578],[114.18116,22.25578],[114.18107,22.2558],[114.18098,22.25584],[114.18089,22.25586],[114.18073,22.25591],[114.18068,22.25592],[114.18062,22.25593],[114.18059,22.25593],[114.18049,22.25593],[114.18044,22.25592],[114.18037,22.25592],[114.18029,22.25594],[114.18021,22.25598],[114.18009,22.25606],[114.18,22.25613],[114.17996,22.25616],[114.17994,22.25618],[114.1799,22.25621],[114.17989,22.25621],[114.17982,22.25622],[114.17982,22.25622],[114.17976,22.25622],[114.17974,22.25623],[114.1796,22.25628],[114.17952,22.25633],[114.17949,22.25634],[114.17947,22.25636],[114.17945,22.25641],[114.17942,22.25646],[114.17939,22.25651],[114.17934,22.25655],[114.17931,22.25656],[114.17928,22.25658],[114.17914,22.25661],[114.17909,22.25663],[114.17904,22.25666],[114.17901,22.25668],[114.17899,22.2567],[114.17897,22.25672],[114.17894,22.25675],[114.17892,22.25678],[114.17889,22.25681],[114.17885,22.25683],[114.17866,22.2569],[114.17863,22.2569],[114.17861,22.25689],[114.17857,22.25686],[114.17833,22.25661],[114.17831,22.25659],[114.17831,22.25657],[114.17835,22.2565],[114.17836,22.25646],[114.17837,22.25643],[114.17837,22.25639],[114.17837,22.25637],[114.17836,22.25633],[114.17836,22.25631],[114.17833,22.25625],[114.17831,22.25621],[114.17829,22.25617],[114.17826,22.25613],[114.17822,22.2561],[114.1782,22.25608],[114.17818,22.25605],[114.17816,22.25602],[114.17815,22.25598],[114.17815,22.25595],[114.17815,22.25592],[114.17815,22.25587],[114.17814,22.25584],[114.17813,22.25581],[114.17811,22.25577],[114.17809,22.25575],[114.17801,22.25568],[114.17799,22.25564],[114.17798,22.2556],[114.17798,22.25544],[114.17798,22.25531],[114.17798,22.25522],[114.17797,22.25518],[114.17797,22.25515],[114.17794,22.25508],[114.1779,22.25504],[114.17784,22.25499],[114.17779,22.25496],[114.17774,22.25493],[114.17769,22.25489],[114.17767,22.25486],[114.17762,22.25481],[114.17756,22.25478],[114.17752,22.25476],[114.17748,22.25473],[114.17746,22.25471],[114.17742,22.2547],[114.17739,22.25469],[114.17735,22.25469],[114.17728,22.25471],[114.17725,22.25471],[114.17719,22.25471],[114.17715,22.25469],[114.17713,22.25466],[114.17711,22.25464],[114.17706,22.25454],[114.177,22.25444],[114.17693,22.25433],[114.17691,22.25429],[114.17689,22.25426],[114.17687,22.25425],[114.17684,22.25423],[114.1768,22.25421],[114.1765,22.25409],[114.17648,22.25408],[114.17643,22.25408],[114.1764,22.25407],[114.17617,22.25407],[114.17613,22.25407],[114.17609,22.25408],[114.17607,22.25408],[114.17603,22.25409],[114.17599,22.25411],[114.17579,22.2542],[114.17575,22.25421],[114.17474,22.25467],[114.17471,22.2547],[114.17469,22.25472],[114.17467,22.25474],[114.17463,22.25477],[114.17459,22.25481],[114.17443,22.255],[114.1744,22.25503],[114.17435,22.25505],[114.17431,22.25505],[114.17427,22.25504],[114.17421,22.255],[114.17418,22.25499],[114.17414,22.25498],[114.1741,22.25498],[114.17406,22.25498],[114.17403,22.25498],[114.174,22.25499],[114.17395,22.25501],[114.17389,22.25505],[114.17353,22.25533],[114.17316,22.25562],[114.17299,22.25575],[114.17296,22.25578],[114.17294,22.25579],[114.17292,22.2558],[114.17289,22.25581],[114.17285,22.25581],[114.17283,22.2558],[114.1728,22.25579],[114.17278,22.25577],[114.17274,22.25574],[114.17271,22.25571],[114.1727,22.2557],[114.17269,22.25569],[114.17267,22.25568],[114.17262,22.25563],[114.17256,22.25558],[114.17249,22.25554],[114.17238,22.25549],[114.17227,22.25546],[114.17208,22.25543],[114.17194,22.25544],[114.17179,22.25544],[114.1715,22.25547],[114.17135,22.25549],[114.17118,22.25554],[114.17106,22.25562],[114.17096,22.25568],[114.1709,22.25576],[114.17085,22.25585],[114.17079,22.25605],[114.17073,22.2561],[114.17017,22.25639],[114.16971,22.25658],[114.16962,22.25672],[114.1696,22.25674],[114.16959,22.25674],[114.16957,22.25675],[114.16954,22.25675],[114.16954,22.25675],[114.16952,22.25675],[114.16951,22.25675],[114.16949,22.25674],[114.16948,22.25674],[114.16947,22.25674],[114.16945,22.25674],[114.16935,22.25675],[114.16931,22.25675],[114.16929,22.25675],[114.16928,22.25676],[114.16926,22.25676],[114.16921,22.25677],[114.16919,22.25677],[114.16916,22.25679],[114.16914,22.2568],[114.1691,22.25681],[114.16908,22.25682],[114.16903,22.25686],[114.16899,22.25689],[114.16893,22.25693],[114.1689,22.25699],[114.16885,22.25707],[114.16879,22.25712],[114.16868,22.25724],[114.16862,22.25726],[114.16859,22.25727],[114.1685,22.25728],[114.1681,22.25735],[114.16789,22.25738],[114.16615,22.25811],[114.1638,22.25908],[114.16339,22.25891],[114.16338,22.2589],[114.16328,22.25886],[114.16314,22.2588],[114.16298,22.25874],[114.16276,22.25852],[114.16249,22.25854],[114.16227,22.25859],[114.16213,22.2587],[114.16208,22.2588],[114.16202,22.25887],[114.1619,22.25899],[114.1618,22.259],[114.16171,22.259],[114.16162,22.25898],[114.1583,22.25814],[114.15524,22.25933],[114.15517,22.25935],[114.15519,22.25929],[114.15521,22.25912],[114.15522,22.25895],[114.15521,22.25884],[114.1552,22.25876],[114.15519,22.25872],[114.15518,22.2587],[114.15517,22.25867],[114.15517,22.25865],[114.15517,22.25863],[114.15518,22.25861],[114.1552,22.25859],[114.15521,22.25856],[114.15524,22.25846],[114.15526,22.2583],[114.15527,22.25817],[114.15526,22.25808],[114.15523,22.25801],[114.15518,22.25794],[114.15512,22.25785],[114.15503,22.25774],[114.15496,22.25768],[114.15484,22.25758],[114.15479,22.25753],[114.15475,22.25747],[114.15468,22.25734],[114.15466,22.2573],[114.15462,22.25726],[114.15453,22.25718],[114.15447,22.25712],[114.15428,22.25686],[114.15421,22.25674],[114.1542,22.25669],[114.1542,22.25666],[114.15421,22.25664],[114.15423,22.25662],[114.15432,22.25657],[114.15434,22.25656],[114.15434,22.25654],[114.15433,22.25653],[114.15432,22.25651],[114.15431,22.2565],[114.1543,22.25649],[114.15428,22.25645],[114.15427,22.25643],[114.15424,22.25636],[114.15424,22.25634],[114.15424,22.25632],[114.15423,22.25629],[114.15423,22.25627],[114.15423,22.25626],[114.15422,22.25625],[114.15422,22.25623],[114.15422,22.25623],[114.15421,22.25622],[114.1542,22.2562],[114.15418,22.25618],[114.15417,22.25617],[114.15414,22.25615],[114.15413,22.25614],[114.1541,22.25613],[114.15404,22.2561],[114.154,22.25609],[114.15396,22.25607],[114.15393,22.25604],[114.1539,22.25601],[114.15387,22.25595],[114.15384,22.25588],[114.15382,22.25583],[114.15382,22.2558],[114.15381,22.25576],[114.1538,22.25573],[114.15375,22.25569],[114.15368,22.25566],[114.15359,22.25563],[114.15378,22.256],[114.1538,22.25603],[114.15382,22.25608],[114.15382,22.2561],[114.15381,22.25614],[114.15381,22.25615],[114.1538,22.25616],[114.15379,22.25618],[114.15378,22.25619],[114.15377,22.2562],[114.15376,22.25621],[114.15374,22.25623],[114.15373,22.25624],[114.1537,22.25625],[114.15368,22.25625],[114.15366,22.25626],[114.15364,22.25626],[114.15361,22.25626],[114.15358,22.25625],[114.15356,22.25624],[114.15353,22.25622],[114.15352,22.25621],[114.1535,22.25619],[114.15348,22.25616],[114.15347,22.25616],[114.15347,22.25615],[114.15342,22.25609],[114.15339,22.25604],[114.15333,22.25595],[114.15328,22.25588],[114.15327,22.25586],[114.15325,22.25584],[114.15325,22.25581],[114.15323,22.25577],[114.15316,22.2557],[114.15307,22.25563],[114.15304,22.2556],[114.15301,22.25556],[114.15299,22.25554],[114.15298,22.25553],[114.15293,22.25544],[114.15291,22.2554],[114.15289,22.25538],[114.1527,22.25522],[114.15267,22.2552],[114.15265,22.25519],[114.15263,22.25517],[114.15261,22.25516],[114.15259,22.25515],[114.15257,22.25514],[114.15255,22.25512],[114.15253,22.25511],[114.15252,22.2551],[114.15248,22.25509],[114.15247,22.25509],[114.15244,22.25509],[114.1524,22.25508],[114.15236,22.25507],[114.15234,22.25505],[114.15232,22.25503],[114.1523,22.25499],[114.1523,22.25497],[114.15229,22.2549],[114.15227,22.25481],[114.15226,22.25478],[114.15223,22.25472],[114.15221,22.25469],[114.15219,22.25462],[114.15216,22.25457],[114.15214,22.25455],[114.15213,22.25453],[114.15212,22.25452],[114.15211,22.25451],[114.1521,22.25449],[114.15209,22.25447],[114.15206,22.25441],[114.15202,22.25434],[114.15199,22.25429],[114.15196,22.25424],[114.15184,22.25414],[114.1518,22.25411],[114.15174,22.25408],[114.15168,22.25407],[114.15148,22.25409],[114.15139,22.25411],[114.15136,22.25411],[114.15129,22.2541],[114.15117,22.25407],[114.1511,22.25406],[114.15098,22.25406],[114.15092,22.25407],[114.15085,22.25406],[114.15083,22.25405],[114.15081,22.25397],[114.15077,22.25392],[114.1505,22.2537],[114.15048,22.25369],[114.15043,22.25367],[114.15025,22.25365],[114.15019,22.25361],[114.15008,22.25354],[114.15002,22.25351],[114.14993,22.25349],[114.14989,22.25348],[114.14986,22.25348],[114.14981,22.25348],[114.14978,22.25346],[114.14974,22.25343],[114.14965,22.25339],[114.14951,22.25334],[114.14947,22.25334],[114.14942,22.25334],[114.1494,22.25335],[114.14936,22.25338],[114.14933,22.25341],[114.14931,22.25345],[114.14929,22.25347],[114.14913,22.25354],[114.14905,22.25357],[114.14899,22.25355],[114.14896,22.25353],[114.14892,22.25349],[114.1489,22.25346],[114.14889,22.25338],[114.14886,22.25331],[114.14878,22.25321],[114.14873,22.25312],[114.14865,22.25302],[114.14858,22.25296],[114.14853,22.25293],[114.14848,22.25292],[114.14841,22.25287],[114.14835,22.25284],[114.14825,22.25282],[114.14821,22.2528],[114.1482,22.25278],[114.1482,22.25275],[114.1482,22.25261],[114.14819,22.25254],[114.14816,22.25248],[114.14813,22.25243],[114.14804,22.25234],[114.14799,22.25232],[114.14775,22.25232],[114.14765,22.2523],[114.14753,22.25229],[114.14748,22.25227],[114.14743,22.25227],[114.1473,22.25223],[114.14723,22.25222],[114.14719,22.25219],[114.14708,22.25211],[114.14703,22.25208],[114.14698,22.25207],[114.1469,22.25206],[114.14682,22.25208],[114.14677,22.2521],[114.1466,22.2522],[114.14654,22.25225],[114.14646,22.25232],[114.14645,22.25234],[114.14645,22.25236],[114.14644,22.2524],[114.14643,22.25242],[114.14641,22.25248],[114.14638,22.25253],[114.14636,22.25257],[114.14634,22.2526],[114.14632,22.25262],[114.1463,22.25263],[114.14628,22.25264],[114.14614,22.25265],[114.14612,22.25266],[114.1461,22.25267],[114.14608,22.25268],[114.14597,22.25283],[114.14595,22.25287],[114.14595,22.25289],[114.14596,22.25315],[114.14597,22.25318],[114.14599,22.25323],[114.146,22.25326],[114.146,22.25328],[114.14599,22.25331],[114.1459,22.25348],[114.14586,22.25351],[114.14584,22.25352],[114.14579,22.25355],[114.14576,22.25358],[114.14574,22.2536],[114.14572,22.25362],[114.14571,22.25365],[114.14571,22.25367],[114.14566,22.25388],[114.14563,22.25392],[114.1456,22.25394],[114.14552,22.25396],[114.14549,22.25397],[114.14546,22.25399],[114.14544,22.25401],[114.14543,22.25403],[114.14541,22.25408],[114.14541,22.25416],[114.1454,22.25423],[114.14538,22.25428],[114.14531,22.25445],[114.1453,22.25451],[114.1453,22.2546],[114.14529,22.25472],[114.14529,22.25473],[114.1453,22.25476],[114.14532,22.25478],[114.14533,22.25479],[114.14541,22.25485],[114.14544,22.25486],[114.14546,22.25487],[114.14547,22.25487],[114.14557,22.25487],[114.14564,22.25486],[114.14571,22.25486],[114.14576,22.25485],[114.14584,22.25482],[114.14597,22.25477],[114.146,22.25477],[114.14603,22.25477],[114.14605,22.25478],[114.14607,22.25481],[114.14607,22.25485],[114.14607,22.25487],[114.14607,22.25494],[114.14618,22.25523],[114.14618,22.25527],[114.14615,22.25542],[114.14615,22.25546],[114.14617,22.2555],[114.14619,22.25554],[114.1463,22.25564],[114.14634,22.25569],[114.14635,22.25572],[114.14636,22.25574],[114.14635,22.25576],[114.14628,22.25584],[114.14619,22.25592],[114.14617,22.25597],[114.14618,22.25601],[114.14621,22.25607],[114.14628,22.25613],[114.14641,22.25621],[114.14661,22.25626],[114.14681,22.25626],[114.14684,22.25631],[114.14677,22.25662],[114.14673,22.25668],[114.14666,22.2568],[114.14667,22.25686],[114.14668,22.25693],[114.14663,22.25699],[114.1465,22.25718],[114.14649,22.25721],[114.14649,22.25725],[114.14649,22.25729],[114.14648,22.25733],[114.14645,22.25734],[114.14629,22.25739],[114.14626,22.25742],[114.14625,22.25744],[114.14624,22.25759],[114.1461,22.25782],[114.14606,22.25786],[114.14598,22.25793],[114.14597,22.25795],[114.14595,22.25801],[114.14593,22.25804],[114.1459,22.25805],[114.14587,22.25806],[114.14575,22.25808],[114.14571,22.2581],[114.14568,22.25813],[114.14566,22.25817],[114.14566,22.25823],[114.14567,22.25825],[114.14567,22.25832],[114.14569,22.25833],[114.14571,22.25838],[114.14567,22.25842],[114.14564,22.25846],[114.1456,22.25849],[114.14556,22.2585],[114.14547,22.25851],[114.14531,22.25859],[114.14527,22.25863],[114.14526,22.2587],[114.14525,22.25874],[114.14517,22.25882],[114.14512,22.25884],[114.1451,22.25886],[114.14498,22.25897],[114.14489,22.25905],[114.1448,22.25913],[114.14471,22.25919],[114.14464,22.25922],[114.14455,22.25924],[114.14449,22.25924],[114.14443,22.25921],[114.14436,22.25916],[114.14432,22.25911],[114.14424,22.25908],[114.14416,22.25908],[114.14409,22.2591],[114.14401,22.25915],[114.14396,22.25918],[114.14387,22.25921],[114.14383,22.25924],[114.14374,22.25943],[114.14368,22.25953],[114.14365,22.25954],[114.14361,22.25956],[114.14357,22.25959],[114.14353,22.25963],[114.1435,22.25965],[114.14347,22.25965],[114.1434,22.25965],[114.14338,22.25966],[114.14336,22.25967],[114.14334,22.25969],[114.14332,22.25971],[114.1433,22.25982],[114.14328,22.25984],[114.14328,22.25985],[114.14324,22.25986],[114.14322,22.25986],[114.1432,22.25986],[114.14318,22.25985],[114.14316,22.25984],[114.14312,22.2598],[114.14308,22.25978],[114.14313,22.25999],[114.14325,22.26055],[114.14319,22.26187],[114.14104,22.26496],[114.14153,22.26501],[114.14159,22.26502],[114.14164,22.26502],[114.14166,22.265],[114.14171,22.26499],[114.14173,22.26499],[114.14175,22.26499],[114.14179,22.265],[114.14181,22.26502],[114.14183,22.26503],[114.14185,22.26506],[114.14185,22.26509],[114.14185,22.26516],[114.14193,22.26526],[114.14197,22.26534],[114.14198,22.26542],[114.14198,22.26544],[114.14197,22.26546],[114.14197,22.26548],[114.14197,22.26549],[114.14202,22.26554],[114.14207,22.26558],[114.14215,22.26565],[114.14221,22.26569],[114.14236,22.26574],[114.14236,22.26575],[114.14255,22.26583],[114.14257,22.26585],[114.14257,22.26591],[114.14258,22.26607],[114.14261,22.26613],[114.14261,22.26614],[114.1427,22.26623],[114.14272,22.26627],[114.14273,22.2663],[114.14272,22.26634],[114.14271,22.26636],[114.14269,22.26637],[114.14268,22.26638],[114.14265,22.26639],[114.14261,22.26638],[114.14259,22.26638],[114.14258,22.26638],[114.14257,22.26638],[114.14248,22.26635],[114.14245,22.26634],[114.14241,22.26631],[114.14228,22.26619],[114.14214,22.26609],[114.14207,22.26606],[114.14199,22.26604],[114.14162,22.26602],[114.14159,22.26602],[114.14144,22.26611],[114.14129,22.26615],[114.14117,22.26616],[114.14095,22.26616],[114.14087,22.26619],[114.14075,22.26633],[114.14065,22.2664],[114.14052,22.26646],[114.14038,22.26651],[114.14025,22.26651],[114.1401,22.26649],[114.14004,22.26648],[114.13999,22.26646],[114.13609,22.27203],[114.13369,22.27333],[114.13368,22.27333],[114.13343,22.27347],[114.1334,22.27347],[114.13335,22.27347],[114.13321,22.2735],[114.13322,22.27354],[114.13322,22.27354],[114.13322,22.27356],[114.13259,22.27392],[114.12972,22.27547],[114.1297,22.27548],[114.12968,22.27549],[114.1293,22.27569],[114.12926,22.27562],[114.12926,22.27561],[114.12922,22.27553],[114.1291,22.27559],[114.1289,22.27569],[114.12864,22.27581],[114.12836,22.27596],[114.12833,22.27585],[114.12829,22.27567],[114.12825,22.27551],[114.12843,22.2754],[114.1286,22.27532],[114.12875,22.27529],[114.12886,22.27527],[114.12898,22.27525],[114.12881,22.2751],[114.12864,22.27497],[114.12837,22.27527],[114.12815,22.27552],[114.1279,22.27552],[114.12793,22.27538],[114.12796,22.27522],[114.12759,22.27515],[114.12756,22.27529],[114.12742,22.27526],[114.12709,22.27519],[114.12679,22.27512],[114.12685,22.27477],[114.12691,22.27447],[114.12687,22.27447],[114.12671,22.27444],[114.12649,22.27438],[114.12637,22.27434],[114.12626,22.27429],[114.12618,22.27425],[114.12612,22.27421],[114.12605,22.27415],[114.12597,22.27409],[114.12574,22.27384],[114.12551,22.27357],[114.12542,22.2735],[114.12533,22.27343],[114.12518,22.27338],[114.12467,22.27317],[114.12422,22.27297],[114.12376,22.27274],[114.12366,22.27271],[114.12358,22.27271],[114.12358,22.2727],[114.1235,22.2727],[114.12341,22.27271],[114.12326,22.27277],[114.12312,22.27283],[114.12308,22.27285],[114.12296,22.27288],[114.12296,22.27288],[114.12294,22.27288],[114.12291,22.27339],[114.1228,22.27342],[114.12264,22.27346],[114.12234,22.27337],[114.122,22.27326],[114.12163,22.27314],[114.12166,22.27304],[114.12172,22.27286],[114.12162,22.27293],[114.12152,22.27301],[114.12135,22.27313],[114.12117,22.27327],[114.12095,22.27343],[114.1208,22.27354],[114.12068,22.27364],[114.12052,22.27375],[114.1204,22.27384],[114.12028,22.27392],[114.12027,22.27388],[114.12026,22.27383],[114.12017,22.27387],[114.12008,22.2739],[114.11999,22.27393],[114.11989,22.27396],[114.11976,22.27401],[114.1197,22.27398],[114.11965,22.27397],[114.11956,22.27395],[114.1195,22.27395],[114.11936,22.27396],[114.11927,22.27398],[114.11914,22.27404],[114.11902,22.27413],[114.11892,22.27421],[114.11881,22.2743],[114.11874,22.27434],[114.11863,22.2744],[114.11862,22.27442],[114.11858,22.2744],[114.11852,22.27438],[114.11848,22.27435],[114.11846,22.27439],[114.11839,22.27442],[114.1183,22.27443],[114.11823,22.27443],[114.11847,22.2741],[114.1184,22.27404],[114.1183,22.27396],[114.1183,22.27396],[114.11823,22.2739],[114.11793,22.27376],[114.11793,22.27378],[114.11797,22.27364],[114.11811,22.27346],[114.11831,22.2731],[114.11857,22.2729],[114.11859,22.2728],[114.11867,22.27272],[114.11874,22.27269],[114.11879,22.27271],[114.11891,22.27262],[114.11923,22.27215],[114.11928,22.27201],[114.1193,22.27199],[114.11934,22.272],[114.11939,22.272],[114.1195,22.27184],[114.11975,22.27168],[114.11986,22.27164],[114.11999,22.27164],[114.12008,22.27157],[114.12024,22.27155],[114.1204,22.27161],[114.12045,22.27163],[114.12055,22.27162],[114.12081,22.27146],[114.12113,22.27131],[114.12126,22.27124],[114.12139,22.27119],[114.12181,22.27094],[114.12219,22.27062],[114.12243,22.27037],[114.12263,22.27017],[114.1227,22.27],[114.12268,22.2699],[114.12267,22.26983],[114.12337,22.26843],[114.12339,22.26836],[114.12335,22.26832],[114.12335,22.26813],[114.12335,22.26797],[114.12346,22.26787],[114.12356,22.26783],[114.12361,22.2678],[114.12366,22.26778],[114.12376,22.26782],[114.12379,22.26775],[114.1237,22.26771],[114.1237,22.26764],[114.12375,22.26753],[114.12375,22.26741],[114.12391,22.26714],[114.12396,22.26708],[114.12405,22.26696],[114.12408,22.26692],[114.12431,22.26649],[114.12453,22.26632],[114.12448,22.26612],[114.1245,22.26604],[114.12485,22.26579],[114.12489,22.26573],[114.1249,22.2656],[114.12539,22.26501],[114.12554,22.26473],[114.12587,22.26403],[114.12571,22.26385],[114.12579,22.2638],[114.12599,22.2639],[114.12603,22.26385],[114.12607,22.26381],[114.12607,22.26377],[114.12614,22.26357],[114.12616,22.26344],[114.12617,22.26324],[114.12637,22.26305],[114.12648,22.26287],[114.1266,22.26284],[114.12663,22.26244],[114.12667,22.26237],[114.12675,22.26233],[114.12694,22.26227],[114.12715,22.2622],[114.1273,22.26203],[114.12735,22.26202],[114.12726,22.26187],[114.12715,22.2614],[114.12749,22.26097],[114.12767,22.26107],[114.1278,22.26108],[114.12827,22.26046],[114.12842,22.26023],[114.12875,22.25979],[114.12887,22.25966],[114.12889,22.25965],[114.12891,22.25961],[114.12891,22.25958],[114.12891,22.25955],[114.12891,22.25952],[114.12881,22.25946],[114.12962,22.25837],[114.12972,22.25844],[114.12976,22.25838],[114.12984,22.25833],[114.1299,22.25826],[114.12994,22.25818],[114.13022,22.25783],[114.13026,22.2578],[114.13044,22.25759],[114.13054,22.25741],[114.13126,22.25647],[114.13198,22.25542],[114.13206,22.25533],[114.13207,22.25524],[114.13204,22.25523],[114.13198,22.25529],[114.13194,22.25521],[114.13194,22.25512],[114.13202,22.25508],[114.13199,22.25493],[114.13191,22.25485],[114.13188,22.25478],[114.13178,22.25478],[114.1318,22.2547],[114.13189,22.2546],[114.13197,22.25447],[114.13202,22.25435],[114.132,22.2543],[114.13192,22.25399],[114.13187,22.25394],[114.1319,22.25384],[114.13187,22.25379],[114.13188,22.25363],[114.13185,22.25351],[114.13186,22.25333],[114.13196,22.25314],[114.13201,22.25309],[114.13202,22.253],[114.13199,22.25295],[114.13197,22.25287],[114.132,22.25276],[114.13213,22.25257],[114.13227,22.25247],[114.13219,22.25228],[114.13219,22.2522],[114.13222,22.25215],[114.13228,22.25209],[114.13245,22.25203],[114.13256,22.25201],[114.1327,22.25203],[114.13275,22.25206],[114.13285,22.25212],[114.1329,22.2522],[114.13293,22.25229],[114.13291,22.25241],[114.13299,22.25252],[114.1331,22.25257],[114.13326,22.25261],[114.13335,22.25259],[114.1334,22.25257],[114.13342,22.25254],[114.1334,22.25251],[114.1333,22.25244],[114.13322,22.25232],[114.13319,22.25222],[114.13321,22.25217],[114.13328,22.2521],[114.13345,22.25197],[114.13368,22.25181],[114.13415,22.25134],[114.13421,22.25124],[114.13439,22.25079],[114.13467,22.25045],[114.13476,22.25021],[114.13482,22.25011],[114.13494,22.24995],[114.13533,22.24963],[114.13561,22.24948],[114.13602,22.24899],[114.13623,22.24891],[114.13626,22.24882],[114.13635,22.24882],[114.13638,22.24891],[114.13643,22.24894],[114.13652,22.24896],[114.13654,22.24896],[114.13659,22.24894],[114.13664,22.24888],[114.13667,22.24886],[114.1367,22.24886],[114.13675,22.24887],[114.13678,22.24887],[114.13687,22.24886],[114.13695,22.24881],[114.13703,22.2488],[114.13721,22.24879],[114.13733,22.24875],[114.13743,22.24869],[114.13757,22.24857],[114.13765,22.24851],[114.13774,22.24847],[114.13779,22.24847],[114.13792,22.24848],[114.13929,22.24877],[114.13963,22.24883],[114.13973,22.24883],[114.1398,22.24882],[114.1412,22.24851],[114.1412,22.24848],[114.14119,22.24843],[114.14115,22.24834],[114.14217,22.24801],[114.14359,22.24811],[114.1437,22.24815],[114.14429,22.24675],[114.14473,22.24573],[114.14474,22.24572],[114.14475,22.24571],[114.14478,22.24571],[114.1448,22.24572],[114.1448,22.24574],[114.1448,22.24575],[114.14437,22.24675],[114.14382,22.24805],[114.14404,22.24814],[114.14671,22.2483],[114.14874,22.24784],[114.14874,22.24783],[114.14869,22.24763],[114.14876,22.24761],[114.14882,22.24782],[114.14886,22.24781],[114.15001,22.24799],[114.15045,22.24789],[114.15038,22.24763],[114.15047,22.24761],[114.15054,22.24786],[114.15112,22.24773],[114.15248,22.2475],[114.15246,22.24728],[114.15251,22.24728],[114.15253,22.2475],[114.15428,22.24721],[114.15466,22.2468],[114.15475,22.24676],[114.15498,22.24664],[114.15663,22.24666],[114.15707,22.24676],[114.15844,22.24706],[114.15934,22.2468],[114.1594,22.24676],[114.15992,22.24636],[114.16011,22.24656],[114.16034,22.24676],[114.16077,22.24713],[114.16087,22.24733],[114.16093,22.24733],[114.16094,22.2472],[114.16094,22.24711],[114.16092,22.24702],[114.16088,22.24692],[114.16086,22.24688],[114.16072,22.24676],[114.16031,22.2464],[114.16012,22.24621],[114.16007,22.24606],[114.16008,22.24604],[114.16035,22.24596],[114.16039,22.24595],[114.16046,22.24594],[114.16054,22.2459],[114.16054,22.24586],[114.16048,22.24567],[114.16051,22.24566],[114.16054,22.24572],[114.16058,22.24571],[114.16061,22.24571],[114.16066,22.24568],[114.16069,22.24572],[114.16074,22.24568],[114.16071,22.24562],[114.16075,22.24559],[114.16065,22.24545],[114.16068,22.24543],[114.16077,22.24537],[114.16075,22.24534],[114.16078,22.24532],[114.1608,22.24531],[114.16084,22.24529],[114.16088,22.24536],[114.1609,22.24532],[114.16086,22.24525],[114.16087,22.24523],[114.16097,22.24535],[114.16101,22.24532],[114.16103,22.24532],[114.16102,22.2453],[114.16105,22.24526],[114.1613,22.24543],[114.16143,22.24535],[114.16158,22.24514],[114.16161,22.24516],[114.16208,22.24515],[114.16214,22.24513],[114.16221,22.24552],[114.16232,22.24553],[114.16237,22.24554],[114.16278,22.2456],[114.16293,22.24556],[114.16335,22.24549],[114.16341,22.24547],[114.16367,22.24545],[114.16377,22.24534],[114.16387,22.24542],[114.1642,22.24538],[114.16433,22.24523],[114.16426,22.24517],[114.16462,22.24477],[114.16449,22.24465],[114.16453,22.24446],[114.16452,22.24445],[114.16446,22.24443],[114.16443,22.24458],[114.16441,22.24458],[114.16444,22.24443],[114.16442,22.24442],[114.16428,22.2443],[114.16416,22.24442],[114.16372,22.24406],[114.16368,22.2441],[114.16369,22.24411],[114.16359,22.24421],[114.16356,22.24419],[114.16385,22.24389],[114.16384,22.24388],[114.16383,22.2438],[114.16389,22.24373],[114.16369,22.24352],[114.16361,22.24337],[114.16358,22.24321],[114.16358,22.24308],[114.1636,22.24294],[114.16368,22.2428],[114.1636,22.24277],[114.16358,22.24272],[114.16354,22.24273],[114.16352,22.24267],[114.16362,22.24264],[114.16365,22.2427],[114.1636,22.24271],[114.16362,22.24275],[114.16369,22.24279],[114.16375,22.2427],[114.16381,22.24265],[114.16347,22.2423],[114.16353,22.24226],[114.16386,22.24259],[114.16429,22.24223],[114.16459,22.2425],[114.16483,22.24226],[114.16492,22.24234],[114.16497,22.24227],[114.16494,22.24225],[114.16501,22.24218],[114.16495,22.24213],[114.16507,22.24201],[114.16498,22.24194],[114.16505,22.24187],[114.16514,22.24195],[114.1652,22.2419],[114.16527,22.24184],[114.16544,22.24199],[114.1655,22.24193],[114.16528,22.24174],[114.16541,22.24161],[114.16556,22.24174],[114.16561,22.2417],[114.16573,22.24158],[114.16562,22.24148],[114.16567,22.24143],[114.16563,22.24068],[114.16557,22.23976],[114.16444,22.23839],[114.1627,22.23802],[114.16264,22.23797],[114.16263,22.23791],[114.16269,22.23783],[114.16277,22.23781],[114.16432,22.23816],[114.1644,22.23815],[114.16443,22.23806],[114.16445,22.23786],[114.1645,22.23772],[114.16474,22.23741],[114.16483,22.23724],[114.16488,22.23705],[114.16488,22.23676],[114.16493,22.23659],[114.16503,22.23641],[114.16517,22.23626],[114.16529,22.23618],[114.16551,22.23612],[114.16569,22.2361],[114.16612,22.23614],[114.16642,22.23613],[114.16688,22.23604],[114.16711,22.23597],[114.1672,22.23592],[114.16724,22.23559],[114.16719,22.23548],[114.16711,22.23538],[114.16709,22.23517],[114.16714,22.23501],[114.16727,22.23486],[114.16727,22.23465],[114.16717,22.23445],[114.16708,22.23441],[114.16708,22.23439],[114.16688,22.23427],[114.16681,22.2342],[114.16667,22.23416],[114.16657,22.23407],[114.16659,22.23405],[114.16669,22.23405],[114.16663,22.23399],[114.16662,22.23389],[114.16668,22.23388],[114.16674,22.2339],[114.16677,22.23387],[114.16667,22.23381],[114.16657,22.23382],[114.16636,22.23366],[114.16634,22.2336],[114.16638,22.23356],[114.16626,22.23353],[114.16622,22.23349],[114.1661,22.23323],[114.1661,22.23315],[114.16617,22.23303],[114.16636,22.23292],[114.16646,22.23283],[114.16663,22.23282],[114.16679,22.23286],[114.16682,22.23284],[114.16676,22.23281],[114.16673,22.23259],[114.16678,22.23255],[114.16679,22.23246],[114.16693,22.23236],[114.16712,22.23246],[114.1672,22.23263],[114.16722,22.23263],[114.16733,22.23258],[114.1674,22.2325],[114.16738,22.23235],[114.16744,22.23226],[114.16747,22.23207],[114.16753,22.23197],[114.16777,22.23194],[114.16783,22.23197],[114.16787,22.23204],[114.16802,22.23206],[114.16815,22.23213],[114.16827,22.23212],[114.16829,22.2321],[114.16827,22.23196],[114.1683,22.23189],[114.16837,22.23181],[114.16842,22.23179],[114.16848,22.2317],[114.16859,22.2317],[114.16864,22.23163],[114.16879,22.23156],[114.16883,22.2315],[114.16881,22.23141],[114.16886,22.23137],[114.16891,22.2313],[114.16897,22.23129],[114.16921,22.23137],[114.16936,22.23136],[114.16921,22.23125],[114.16924,22.23113],[114.16942,22.23108],[114.16931,22.23096],[114.16928,22.23081],[114.16938,22.23087],[114.1695,22.23103],[114.16979,22.23088],[114.16987,22.23076],[114.16993,22.2309],[114.17006,22.23094],[114.17009,22.23083],[114.17022,22.23078],[114.17036,22.2308],[114.17056,22.23063],[114.17083,22.23022],[114.17102,22.23009],[114.17111,22.22995],[114.17126,22.22995],[114.17159,22.22977],[114.17175,22.22974],[114.17209,22.22983],[114.17229,22.22995],[114.17249,22.23015],[114.17268,22.23026],[114.17277,22.23042],[114.17288,22.23035],[114.17307,22.23037],[114.17327,22.2305],[114.17336,22.23059],[114.17341,22.23074],[114.17338,22.23097],[114.17342,22.23109],[114.17355,22.23125],[114.17352,22.23129],[114.17358,22.23139],[114.17358,22.23157],[114.17364,22.23169],[114.17363,22.23178],[114.17371,22.23187],[114.17373,22.23206],[114.17385,22.2322],[114.17388,22.23261],[114.17378,22.23268],[114.17393,22.23298],[114.17395,22.23337],[114.17408,22.23364],[114.17413,22.23359],[114.17426,22.23374],[114.17425,22.23407],[114.1741,22.23432],[114.17416,22.23451],[114.17424,22.23454],[114.17426,22.23465],[114.17436,22.23476],[114.17439,22.23501],[114.17432,22.23516],[114.17431,22.23545],[114.17422,22.23563],[114.17429,22.2359],[114.17446,22.23597],[114.17448,22.23606],[114.17454,22.23608],[114.17466,22.23638],[114.17461,22.23653],[114.1747,22.23666],[114.17471,22.23678],[114.17496,22.237],[114.17502,22.23697],[114.1751,22.23695],[114.17513,22.23696],[114.17514,22.23725],[114.17507,22.23737],[114.1752,22.23758],[114.17515,22.23775],[114.1752,22.23782],[114.17531,22.23782],[114.17532,22.23798],[114.17528,22.23811],[114.17544,22.23831],[114.1755,22.23826],[114.17563,22.23841],[114.17555,22.23847],[114.17568,22.23853],[114.17573,22.23876],[114.1758,22.23874],[114.17608,22.23901],[114.17618,22.23913],[114.17644,22.23926],[114.17648,22.23934],[114.1765,22.23956],[114.17663,22.23989],[114.17673,22.24038],[114.17665,22.24054],[114.17666,22.24059],[114.17683,22.24062],[114.17689,22.24053],[114.17694,22.24055],[114.17715,22.24077],[114.17708,22.24091],[114.17717,22.24086],[114.17723,22.24091],[114.17725,22.24087],[114.17729,22.24085],[114.17739,22.24092],[114.17738,22.24098],[114.17743,22.24105],[114.17761,22.24109],[114.17783,22.24135],[114.1778,22.24147],[114.17787,22.24153],[114.1779,22.24163],[114.17786,22.24183],[114.1779,22.2419],[114.178,22.24187],[114.17809,22.24208],[114.17818,22.24216],[114.17818,22.24226],[114.17824,22.24223],[114.1783,22.24231],[114.17826,22.24237],[114.17833,22.24245],[114.17837,22.24243],[114.17845,22.24259],[114.17841,22.24267],[114.17848,22.2429],[114.17842,22.24304],[114.17843,22.24313],[114.17849,22.24315],[114.17845,22.24344],[114.17848,22.24354],[114.17847,22.24363],[114.17852,22.24371],[114.17867,22.24381],[114.17879,22.244],[114.17895,22.24416],[114.17908,22.24426],[114.17916,22.24427],[114.17922,22.24447],[114.17943,22.2447],[114.17968,22.24483],[114.18029,22.24502],[114.18043,22.24499],[114.18077,22.24499],[114.18103,22.24509],[114.18131,22.24509],[114.18212,22.24519],[114.18234,22.2453],[114.18252,22.24548],[114.18282,22.24548],[114.18286,22.2455],[114.1834,22.24548],[114.18363,22.24542],[114.18386,22.2453],[114.18407,22.24526],[114.18406,22.24524],[114.18404,22.24521],[114.18405,22.24518],[114.18407,22.24516],[114.18409,22.24515],[114.18412,22.24516],[114.18414,22.24517],[114.18418,22.24519],[114.18422,22.24521],[114.18424,22.24522],[114.18448,22.24517],[114.18469,22.24522],[114.18515,22.24548],[114.18517,22.24546],[114.18542,22.24552],[114.18544,22.24545],[114.18551,22.24546],[114.18554,22.24555],[114.18559,22.2456],[114.18573,22.24573],[114.1858,22.24577],[114.18586,22.24576],[114.18619,22.24558],[114.18639,22.24545],[114.18725,22.24481],[114.18741,22.24467],[114.18763,22.24445],[114.18781,22.24424],[114.1879,22.2441],[114.18799,22.24393],[114.18811,22.24361],[114.18819,22.24336],[114.18824,22.24301],[114.18823,22.24281],[114.18821,22.24281],[114.18804,22.24234],[114.18809,22.2423],[114.18801,22.24222],[114.18791,22.24215],[114.18778,22.2421],[114.18767,22.24208],[114.18754,22.24209],[114.18751,22.24209],[114.18733,22.2421],[114.18724,22.24206],[114.18706,22.24179],[114.18673,22.24157],[114.18671,22.24146],[114.18692,22.24102],[114.18683,22.24084],[114.18681,22.24059],[114.18662,22.24035],[114.18659,22.2401],[114.18664,22.23996],[114.18674,22.23977],[114.18669,22.23971],[114.18671,22.23966],[114.18688,22.23955],[114.18707,22.23928],[114.18727,22.23906],[114.18741,22.23887],[114.18767,22.23855],[114.18778,22.23839],[114.18786,22.23821],[114.18804,22.23805],[114.18815,22.23783],[114.1882,22.23768],[114.18828,22.23762],[114.18854,22.23726],[114.18883,22.23706],[114.18895,22.23699],[114.18903,22.23688],[114.18907,22.23683],[114.18915,22.23679],[114.18922,22.23678],[114.18952,22.23654],[114.18966,22.23634],[114.18982,22.23614],[114.18993,22.23606],[114.19017,22.23603],[114.19043,22.23603],[114.19051,22.23606],[114.19061,22.23612],[114.19067,22.23611],[114.19089,22.23603],[114.19105,22.236],[114.19114,22.23597],[114.19127,22.23596],[114.19141,22.23597],[114.19155,22.23601],[114.19162,22.23603],[114.19178,22.23606],[114.1919,22.23612],[114.19201,22.23615],[114.19219,22.23622],[114.19232,22.23628],[114.19243,22.23634],[114.19245,22.23639],[114.19252,22.23641],[114.19263,22.23646],[114.19274,22.23657],[114.19284,22.2367],[114.19302,22.23681],[114.19309,22.23688],[114.19316,22.23699],[114.19331,22.23712],[114.19339,22.23714],[114.19348,22.23722],[114.19357,22.23734],[114.19369,22.23745],[114.19388,22.2374],[114.19389,22.23737],[114.19394,22.23733],[114.19389,22.23716],[114.19393,22.23715],[114.19398,22.23733],[114.19404,22.23735],[114.19407,22.2374],[114.19406,22.23746],[114.19401,22.2375],[114.19399,22.23757],[114.19399,22.23767],[114.194,22.2377],[114.1942,22.2377],[114.19434,22.23767],[114.1945,22.2376],[114.19485,22.23742],[114.1953,22.23711],[114.1961,22.23648],[114.19669,22.23592],[114.19761,22.2349],[114.1976,22.23482],[114.19755,22.23472],[114.19752,22.23468],[114.19749,22.23464],[114.19745,22.23461],[114.19741,22.23459],[114.19729,22.23458],[114.19728,22.23459],[114.19726,22.2346],[114.19726,22.23461],[114.19724,22.23462],[114.19723,22.23462],[114.19721,22.23463],[114.19719,22.23463],[114.19717,22.23462],[114.19715,22.23461],[114.19714,22.23461],[114.19713,22.2346],[114.19711,22.23457],[114.1971,22.23455],[114.1971,22.23453],[114.1971,22.23453],[114.19692,22.23446],[114.19693,22.23443],[114.19712,22.23449],[114.19713,22.23448],[114.19714,22.23447],[114.19716,22.23446],[114.19717,22.23445],[114.19719,22.23445],[114.19722,22.23445],[114.19724,22.23446],[114.19726,22.23447],[114.1976,22.23441],[114.19761,22.23442],[114.19763,22.23446],[114.19768,22.23449],[114.19804,22.23461],[114.19813,22.23462],[114.19823,22.23461],[114.19829,22.23459],[114.1983,22.23448],[114.19828,22.23437],[114.19818,22.23442],[114.1981,22.23435],[114.19774,22.2344],[114.19774,22.23437],[114.19808,22.2343],[114.19809,22.23421],[114.19818,22.23422],[114.19833,22.23416],[114.1984,22.23412],[114.1984,22.23404],[114.19838,22.23397],[114.1984,22.23391],[114.19824,22.23356],[114.19828,22.23337],[114.19837,22.23325],[114.19837,22.23323],[114.19837,22.23323],[114.19833,22.23322],[114.19828,22.23314],[114.1983,22.23301],[114.19834,22.23298],[114.19842,22.23293],[114.19841,22.2329],[114.19839,22.23283],[114.19809,22.23223],[114.19807,22.23208],[114.19809,22.23202],[114.19816,22.23196],[114.1982,22.23198],[114.19826,22.23194],[114.19828,22.2319],[114.19827,22.23181],[114.19817,22.23174],[114.19816,22.23169],[114.19822,22.23151],[114.19825,22.23136],[114.19829,22.23127],[114.19828,22.23114],[114.1982,22.23089],[114.19821,22.23079],[114.19813,22.23051],[114.19816,22.2305],[114.19817,22.23044],[114.19816,22.23036],[114.19816,22.23034],[114.19818,22.2303],[114.19822,22.23006],[114.19815,22.22988],[114.198,22.22966],[114.19789,22.22956],[114.19777,22.22947],[114.1976,22.22952],[114.19753,22.22949],[114.19745,22.22941],[114.19736,22.22936],[114.19725,22.22935],[114.19721,22.22933],[114.19708,22.22935],[114.19697,22.2293],[114.19687,22.22932],[114.19681,22.22931],[114.19672,22.22926],[114.19667,22.22926],[114.19664,22.22923],[114.19665,22.22916],[114.19659,22.22917],[114.19657,22.22915],[114.19653,22.22912],[114.19652,22.22908],[114.19647,22.22905],[114.19643,22.229],[114.19637,22.22879],[114.19636,22.22867],[114.19641,22.22813],[114.19652,22.2281],[114.19661,22.22812],[114.19663,22.22797],[114.19685,22.22788],[114.19701,22.22776],[114.19709,22.22751],[114.19712,22.22721],[114.19723,22.22694],[114.19731,22.22685],[114.19754,22.22642],[114.19783,22.22611],[114.19785,22.22599],[114.19778,22.22568],[114.19774,22.2256],[114.19764,22.22549],[114.19753,22.22525],[114.19718,22.22468],[114.19675,22.22418],[114.19672,22.22423],[114.19664,22.22421],[114.19656,22.22407],[114.19644,22.22414],[114.19596,22.22408],[114.19601,22.22418],[114.19597,22.22423],[114.19585,22.22423],[114.19585,22.22411],[114.1957,22.22403],[114.19552,22.22399],[114.19521,22.22416],[114.19512,22.22413],[114.19483,22.22431],[114.19465,22.22431],[114.19453,22.22435],[114.19448,22.22435],[114.19427,22.22434],[114.19426,22.22431],[114.19386,22.2243],[114.19379,22.22425],[114.19379,22.22419],[114.1939,22.22397],[114.19388,22.22386],[114.19394,22.22375],[114.19441,22.22346],[114.19459,22.22327],[114.19497,22.22298],[114.19517,22.22289],[114.19523,22.22289],[114.19525,22.22293],[114.19535,22.22291],[114.1954,22.22295],[114.19545,22.22303],[114.19545,22.22314],[114.19554,22.22309],[114.1956,22.22303],[114.1955,22.22284],[114.19575,22.22261],[114.19598,22.22226],[114.19614,22.22218],[114.19619,22.2221],[114.19656,22.22187],[114.19664,22.22188],[114.19665,22.22185],[114.19681,22.22178],[114.19698,22.22189],[114.19698,22.22208],[114.19703,22.22192],[114.1972,22.22175],[114.19726,22.22174],[114.19757,22.22154],[114.19799,22.22142],[114.1983,22.22122],[114.19833,22.22133],[114.19871,22.22116],[114.19888,22.22113],[114.19909,22.22118],[114.1992,22.22116],[114.19935,22.22103],[114.19935,22.22098],[114.19953,22.22093],[114.19977,22.22088],[114.19998,22.2209],[114.2,22.22094],[114.19994,22.22109],[114.20014,22.221],[114.20035,22.22099],[114.2004,22.22096],[114.20047,22.22099],[114.20049,22.22096],[114.2005,22.22101],[114.2006,22.22106],[114.2007,22.22098],[114.20082,22.22103],[114.2009,22.22091],[114.20079,22.22078],[114.20083,22.22073],[114.20078,22.22068],[114.20083,22.22066],[114.20088,22.2207],[114.20097,22.22066],[114.20095,22.22045],[114.20109,22.22035],[114.20118,22.22028],[114.20128,22.22022],[114.2013,22.22001],[114.20118,22.21999],[114.2011,22.21993],[114.20108,22.21985],[114.20137,22.2197],[114.20118,22.21966],[114.20115,22.21959],[114.20118,22.21932],[114.20131,22.21927],[114.20136,22.21929],[114.20143,22.21919],[114.20133,22.21913],[114.20137,22.21905],[114.20153,22.21896],[114.20155,22.21889],[114.20176,22.21879],[114.20179,22.21871],[114.20197,22.21864],[114.20203,22.2185],[114.20207,22.21807],[114.20205,22.21777],[114.202,22.21746],[114.20184,22.21701],[114.20129,22.21677],[114.20119,22.21675],[114.20104,22.21685],[114.20069,22.21684],[114.20044,22.21677],[114.20005,22.21653],[114.19981,22.21623],[114.1994,22.21597],[114.19928,22.21594],[114.19911,22.21583],[114.19874,22.21584],[114.19868,22.21578],[114.19865,22.21579],[114.19862,22.21573],[114.19838,22.21566],[114.19833,22.21559],[114.19839,22.21554],[114.1983,22.2155],[114.19829,22.21541],[114.19821,22.21534],[114.19816,22.21522],[114.1981,22.2152],[114.19788,22.21491],[114.19779,22.21492],[114.19771,22.21475],[114.19759,22.21465],[114.19764,22.2146],[114.19735,22.21445],[114.19717,22.21416],[114.19702,22.21385],[114.19716,22.21369],[114.19708,22.21333],[114.19712,22.21299],[114.19708,22.21295],[114.19719,22.21272],[114.19713,22.21269],[114.19695,22.21234],[114.19689,22.21178],[114.19698,22.21168],[114.19696,22.21154],[114.197,22.21133],[114.19713,22.21113],[114.19717,22.21101],[114.19712,22.21085],[114.19726,22.2105],[114.19731,22.21047],[114.19736,22.21051],[114.19729,22.21069],[114.19742,22.21068],[114.1976,22.21064],[114.1978,22.21038],[114.19793,22.2103],[114.19855,22.21033],[114.19872,22.21038],[114.19879,22.21028],[114.19904,22.21021],[114.19931,22.21022],[114.19933,22.21031],[114.19957,22.21033],[114.19971,22.21044],[114.19983,22.21047],[114.20001,22.21063],[114.2001,22.21064],[114.20028,22.21071],[114.20037,22.21085],[114.20042,22.21084],[114.20047,22.21091],[114.20041,22.21096],[114.20049,22.21103],[114.2006,22.21102],[114.20058,22.21115],[114.20071,22.21137],[114.20081,22.21142],[114.20081,22.21171],[114.20075,22.21182],[114.20085,22.21189],[114.20087,22.212],[114.20105,22.21221],[114.20114,22.2122],[114.20117,22.21231],[114.20141,22.21252],[114.2015,22.21265],[114.2016,22.21275],[114.20166,22.21284],[114.20173,22.21286],[114.20184,22.213],[114.20192,22.21293],[114.20205,22.21298],[114.2021,22.21308],[114.20216,22.21308],[114.20227,22.21298],[114.20228,22.2129],[114.20257,22.21297],[114.20271,22.21291],[114.20288,22.21292],[114.2029,22.21285],[114.20299,22.21281],[114.20298,22.2127],[114.20311,22.21286],[114.2032,22.21287],[114.20337,22.21282],[114.20379,22.21283],[114.20393,22.21276],[114.20412,22.21275],[114.20422,22.21281],[114.20449,22.21279],[114.20453,22.21261],[114.20461,22.21258],[114.2046,22.21249],[114.20468,22.21237],[114.20474,22.21236],[114.20477,22.21245],[114.20485,22.21241],[114.20493,22.21246],[114.20517,22.21247],[114.20521,22.21247],[114.20524,22.2124],[114.20533,22.2124],[114.20537,22.21253],[114.2055,22.21264],[114.2055,22.21272],[114.20561,22.21276],[114.20568,22.21284],[114.20583,22.21317],[114.20598,22.21324],[114.2061,22.21316],[114.20618,22.21317],[114.20615,22.21325],[114.20623,22.21325],[114.20638,22.21337],[114.20653,22.21344],[114.20668,22.21366],[114.20683,22.21376],[114.20687,22.21386],[114.20693,22.21388],[114.20704,22.21408],[114.20698,22.21445],[114.20705,22.21445],[114.20707,22.21449],[114.20698,22.21452],[114.20692,22.2145],[114.20683,22.21466],[114.20669,22.21471],[114.20627,22.21507],[114.20619,22.21508],[114.20625,22.21538],[114.20636,22.21562],[114.20649,22.21575],[114.20662,22.21578],[114.20664,22.21585],[114.20678,22.21598],[114.20683,22.21599],[114.20684,22.21595],[114.20688,22.21599],[114.20726,22.2167],[114.20737,22.21683],[114.20746,22.2169],[114.20765,22.21697],[114.20788,22.217],[114.20797,22.21698],[114.20811,22.21688],[114.20829,22.21681],[114.20842,22.21679],[114.20855,22.21681],[114.20862,22.21694],[114.20883,22.21704],[114.20885,22.21724],[114.20894,22.21731],[114.2092,22.21737],[114.20943,22.21737],[114.20958,22.21747],[114.20971,22.21743],[114.20982,22.21745],[114.21,22.21755],[114.21003,22.21757],[114.21006,22.21752],[114.21013,22.21739],[114.21009,22.21737],[114.21026,22.21707],[114.21038,22.21713],[114.21021,22.21743],[114.21017,22.21741],[114.2101,22.21754],[114.21006,22.21761],[114.21009,22.21765],[114.21012,22.21772],[114.21014,22.21777],[114.21019,22.21795],[114.21021,22.21807],[114.21021,22.21813],[114.21012,22.2183],[114.21006,22.21836],[114.21026,22.21855],[114.21029,22.21854],[114.21032,22.21855],[114.21035,22.21856],[114.21037,22.21858],[114.21037,22.21858],[114.21056,22.21857],[114.21103,22.21851],[114.21111,22.21848],[114.21121,22.21844],[114.21125,22.21844],[114.21133,22.21842],[114.21138,22.21836],[114.21141,22.21835],[114.21144,22.21837],[114.21145,22.21837],[114.21146,22.21836],[114.21149,22.21836],[114.21157,22.2183],[114.21176,22.21814],[114.21186,22.21803],[114.21194,22.21793],[114.21201,22.21785],[114.21209,22.21771],[114.21217,22.21757],[114.21222,22.21744],[114.21225,22.21733],[114.21228,22.21718],[114.21231,22.21706],[114.21229,22.21703],[114.21224,22.21702],[114.21223,22.21697],[114.21226,22.21693],[114.21226,22.21689],[114.21218,22.21689],[114.21214,22.21693],[114.21209,22.2169],[114.21215,22.2168],[114.21225,22.2168],[114.21223,22.21669],[114.21232,22.21671],[114.21244,22.21682],[114.21259,22.21674],[114.21268,22.21674],[114.21273,22.21675],[114.21282,22.21684],[114.21308,22.21683],[114.21323,22.21671],[114.21353,22.21637],[114.21346,22.21608],[114.21353,22.21593],[114.21345,22.21574],[114.21338,22.21573],[114.21338,22.21564],[114.21345,22.2156],[114.21342,22.21544],[114.21344,22.21531],[114.2134,22.21524],[114.21349,22.21519],[114.21345,22.2151],[114.21364,22.21506],[114.21373,22.21495],[114.2138,22.2149],[114.21393,22.21496],[114.21405,22.21485],[114.21402,22.21483],[114.21409,22.21476],[114.21423,22.2148],[114.21432,22.21471],[114.21427,22.21464],[114.21437,22.21448],[114.21443,22.21429],[114.21437,22.21425],[114.21437,22.21413],[114.21441,22.21408],[114.21443,22.21403],[114.21443,22.214],[114.21441,22.21397],[114.21438,22.21393],[114.21434,22.21389],[114.21427,22.21386],[114.21424,22.21383],[114.21425,22.21381],[114.21427,22.21376],[114.21428,22.2137],[114.21429,22.21368],[114.21432,22.21367],[114.21434,22.21363],[114.21436,22.21362],[114.21443,22.21362],[114.21444,22.21362],[114.21445,22.21364],[114.21448,22.21363],[114.2145,22.21359],[114.21451,22.21354],[114.21453,22.21351],[114.21454,22.21347],[114.21453,22.21345],[114.21452,22.21344],[114.2145,22.21342],[114.2145,22.21341],[114.21452,22.21339],[114.21455,22.21338],[114.2146,22.21339],[114.21463,22.21337],[114.21467,22.21332],[114.2147,22.21327],[114.21472,22.21324],[114.21475,22.21321],[114.21481,22.21317],[114.21485,22.21316],[114.21492,22.21314],[114.21497,22.21295],[114.21502,22.21245],[114.215,22.21241],[114.21494,22.21245],[114.21486,22.21233],[114.21495,22.21219],[114.21478,22.21185],[114.21474,22.21186],[114.2141,22.21208],[114.21409,22.21204],[114.21437,22.21195],[114.21433,22.21187],[114.21453,22.2118],[114.21441,22.21157],[114.2144,22.21158],[114.21426,22.21155],[114.21421,22.21147],[114.21418,22.21139],[114.21407,22.21121],[114.21401,22.21114],[114.21386,22.21106],[114.21356,22.21106],[114.21345,22.2111],[114.21344,22.21107],[114.21332,22.21108],[114.21316,22.21108],[114.21315,22.21122],[114.2131,22.21121],[114.21312,22.21105],[114.21301,22.21105],[114.21294,22.21104],[114.21286,22.21099],[114.21293,22.21084],[114.2129,22.21083],[114.2128,22.21066],[114.2128,22.21062],[114.21282,22.21051],[114.21273,22.2104],[114.21271,22.21027],[114.21261,22.21011],[114.21262,22.21005],[114.21256,22.20994],[114.21251,22.20997],[114.21241,22.2099],[114.21242,22.20983],[114.2123,22.20981],[114.21228,22.20975],[114.21218,22.20971],[114.21217,22.20954],[114.21208,22.20931],[114.21198,22.20918],[114.2118,22.20896],[114.21177,22.20882],[114.21168,22.20871],[114.21162,22.20831],[114.21164,22.20823],[114.21165,22.20821],[114.21163,22.20809],[114.2116,22.2079],[114.21161,22.20782],[114.21162,22.20758],[114.21155,22.20756],[114.21157,22.20723],[114.21164,22.20705],[114.21155,22.20689],[114.21163,22.20687],[114.21169,22.20672],[114.21156,22.20673],[114.21155,22.20663],[114.2116,22.20661],[114.21167,22.20667],[114.21174,22.20664],[114.21176,22.20663],[114.21181,22.20648],[114.21179,22.20643],[114.21178,22.20641],[114.21183,22.20629],[114.21187,22.20616],[114.21196,22.20568],[114.212,22.20544],[114.21201,22.20537],[114.21195,22.20528],[114.21196,22.20509],[114.21192,22.20502],[114.2119,22.20474],[114.21177,22.20466],[114.21187,22.20456],[114.2119,22.20424],[114.21189,22.20416],[114.21182,22.20381],[114.21174,22.20314],[114.21163,22.20283],[114.21163,22.20279],[114.21162,22.20246],[114.21168,22.20206],[114.21151,22.2016],[114.21146,22.20158],[114.21137,22.20135],[114.21136,22.20134],[114.21129,22.20118],[114.21123,22.20085],[114.21102,22.20049],[114.21104,22.2003],[114.21101,22.20024],[114.21112,22.19961],[114.2113,22.19915],[114.21137,22.19875],[114.21132,22.19871],[114.21134,22.19865],[114.21125,22.19845],[114.2113,22.19767],[114.21126,22.19757],[114.21119,22.19754],[114.21125,22.19733],[114.21126,22.19713],[114.21132,22.19717],[114.21143,22.19693],[114.21129,22.19684],[114.21151,22.19675],[114.21165,22.19652],[114.2115,22.19649],[114.21149,22.19645],[114.21155,22.19642],[114.21158,22.19635],[114.21177,22.19622],[114.21195,22.1961],[114.21204,22.19616],[114.21239,22.19577],[114.21267,22.19556],[114.21254,22.19546],[114.21255,22.19538],[114.2127,22.1953],[114.21288,22.19508],[114.21302,22.19504],[114.21312,22.19474],[114.21336,22.19456],[114.21351,22.1946],[114.21377,22.19441],[114.21381,22.19435],[114.21377,22.19426],[114.21388,22.19417],[114.21401,22.19418],[114.21407,22.19423],[114.21413,22.19413],[114.21427,22.19425],[114.21419,22.19429],[114.21419,22.1944],[114.21434,22.19456],[114.21447,22.19452],[114.21453,22.1944],[114.21461,22.19439],[114.21463,22.19445],[114.21482,22.19457],[114.21505,22.19472],[114.21524,22.1947],[114.2152,22.19463],[114.21535,22.19472],[114.21542,22.19465],[114.21558,22.19483],[114.21577,22.19484],[114.21592,22.19482],[114.21599,22.19486],[114.21614,22.19486],[114.21628,22.19476],[114.21632,22.19468],[114.21641,22.19468],[114.21662,22.1948],[114.21695,22.19488],[114.21739,22.19492],[114.21815,22.19522],[114.21827,22.19515],[114.21838,22.19518],[114.21844,22.19512],[114.21833,22.195],[114.21844,22.19497],[114.21849,22.19484],[114.21853,22.19482],[114.21868,22.19477],[114.21876,22.19479],[114.21902,22.19488],[114.21921,22.19496],[114.21934,22.19497],[114.2197,22.19508],[114.22012,22.19523],[114.2205,22.1953],[114.2208,22.19531],[114.22116,22.19544],[114.22137,22.19537],[114.22156,22.1954],[114.2216,22.19537],[114.22154,22.19535],[114.22155,22.19534],[114.22177,22.19538],[114.22175,22.19541],[114.2217,22.1954],[114.22165,22.19543],[114.22184,22.19548],[114.22198,22.19556],[114.22198,22.19561],[114.22207,22.19571],[114.2222,22.19576],[114.22229,22.19576],[114.2223,22.19574],[114.2224,22.19578],[114.22249,22.19578],[114.22274,22.19598],[114.22294,22.19595],[114.22291,22.19582],[114.22304,22.19586],[114.22313,22.19597],[114.22319,22.19608],[114.22324,22.1961],[114.22337,22.19628],[114.22337,22.19638],[114.22332,22.19638],[114.22339,22.19656],[114.22347,22.19667],[114.22355,22.19671],[114.22364,22.1968],[114.2236,22.19682],[114.22374,22.19701],[114.22384,22.19706],[114.2239,22.19711],[114.22391,22.19716],[114.22387,22.1972],[114.22391,22.19732],[114.22397,22.1974],[114.22396,22.19753],[114.22401,22.1976],[114.22404,22.1977],[114.22403,22.19784],[114.22409,22.1979],[114.22407,22.19799],[114.22407,22.19815],[114.224,22.19823],[114.22389,22.19829],[114.22401,22.19829],[114.22407,22.1984],[114.22406,22.19843],[114.22393,22.19849],[114.22384,22.19855],[114.22383,22.19861],[114.22367,22.19876],[114.22374,22.19881],[114.22371,22.19897],[114.22357,22.19907],[114.22349,22.19905],[114.22341,22.19915],[114.22332,22.19916],[114.2231,22.19929],[114.22313,22.19933],[114.22304,22.19953],[114.22312,22.19961],[114.22307,22.19966],[114.22314,22.19967],[114.22318,22.19971],[114.22327,22.19998],[114.22325,22.20013],[114.22326,22.20025],[114.22316,22.20044],[114.22324,22.20051],[114.22325,22.20059],[114.22317,22.20066],[114.22311,22.20082],[114.22303,22.20084],[114.22297,22.20095],[114.22292,22.20099],[114.22292,22.20104],[114.22284,22.20106],[114.22279,22.20113],[114.22252,22.20139],[114.22246,22.20141],[114.2222,22.20165],[114.22202,22.20191],[114.22186,22.20198],[114.22187,22.20209],[114.22183,22.20215],[114.2216,22.20226],[114.22154,22.20255],[114.22158,22.20286],[114.22151,22.20305],[114.2211,22.20385],[114.22093,22.20403],[114.2209,22.20404],[114.22079,22.20414],[114.22061,22.20428],[114.22034,22.20431],[114.22023,22.20454],[114.22018,22.20455],[114.2201,22.20461],[114.22006,22.20459],[114.22003,22.20465],[114.22004,22.20469],[114.21995,22.20472],[114.2199,22.20482],[114.21973,22.20489],[114.2197,22.20493],[114.21972,22.20495],[114.21961,22.20502],[114.2196,22.20504],[114.21963,22.20506],[114.21957,22.20512],[114.21935,22.20516],[114.21939,22.20527],[114.2195,22.20539],[114.2195,22.20538],[114.21958,22.20534],[114.21963,22.20533],[114.2197,22.20538],[114.21965,22.20542],[114.21958,22.20543],[114.21956,22.20546],[114.21958,22.20551],[114.21958,22.20556],[114.21962,22.20559],[114.21967,22.20559],[114.21977,22.20553],[114.2198,22.20551],[114.21986,22.20553],[114.21992,22.20554],[114.21998,22.20558],[114.22014,22.20554],[114.22019,22.20558],[114.22022,22.2057],[114.22022,22.20578],[114.22025,22.2059],[114.22026,22.20592],[114.22025,22.20599],[114.22027,22.20599],[114.22028,22.20605],[114.22027,22.20609],[114.22031,22.20613],[114.22023,22.20628],[114.22028,22.20629],[114.22027,22.20641],[114.22031,22.20643],[114.22031,22.20647],[114.22029,22.2065],[114.2201,22.2066],[114.2202,22.20658],[114.22025,22.20657],[114.22029,22.20658],[114.22029,22.20661],[114.22023,22.20666],[114.22022,22.20677],[114.22017,22.2068],[114.22012,22.2068],[114.22004,22.20689],[114.21978,22.20701],[114.21974,22.20701],[114.21969,22.20694],[114.21964,22.20696],[114.21958,22.20692],[114.21952,22.2069],[114.21943,22.20691],[114.21927,22.20699],[114.21906,22.20718],[114.21891,22.20726],[114.21882,22.20738],[114.21883,22.20745],[114.21877,22.20747],[114.21878,22.20753],[114.21882,22.20756],[114.21882,22.20756],[114.21882,22.20763],[114.21868,22.20775],[114.21877,22.20777],[114.21874,22.20784],[114.21869,22.20785],[114.21872,22.20794],[114.21865,22.20801],[114.21868,22.20807],[114.21851,22.20847],[114.21837,22.20858],[114.21832,22.2087],[114.21836,22.20875],[114.21831,22.20876],[114.21826,22.20886],[114.21822,22.20886],[114.21818,22.20901],[114.2182,22.20917],[114.21853,22.20971],[114.21874,22.20992],[114.21883,22.20994],[114.21893,22.20991],[114.21898,22.20986],[114.21927,22.20981],[114.21924,22.20975],[114.21928,22.2097],[114.21961,22.20965],[114.21975,22.20968],[114.21987,22.20978],[114.22021,22.21003],[114.22044,22.21015],[114.22042,22.2103],[114.22051,22.21037],[114.22055,22.21046],[114.22057,22.21056],[114.22051,22.21063],[114.2205,22.21069],[114.22047,22.21089],[114.22046,22.21106],[114.22039,22.21123],[114.2204,22.21134],[114.22054,22.2115],[114.22066,22.21145],[114.22071,22.21149],[114.22064,22.21162],[114.22051,22.2116],[114.22046,22.21176],[114.22055,22.21176],[114.22062,22.21181],[114.22073,22.21204],[114.22074,22.21211],[114.22086,22.21226],[114.22109,22.21235],[114.22125,22.21261],[114.22137,22.21248],[114.22153,22.21255],[114.22148,22.2127],[114.22156,22.21281],[114.22168,22.21285],[114.22176,22.21274],[114.2219,22.21264],[114.222,22.21267],[114.22209,22.21255],[114.22231,22.21253],[114.22262,22.2127],[114.22273,22.21286],[114.22265,22.21289],[114.22259,22.21298],[114.2226,22.21305],[114.22267,22.21318],[114.22262,22.21328],[114.22265,22.21352],[114.22257,22.21364],[114.22252,22.21385],[114.22241,22.21387],[114.22237,22.21401],[114.2224,22.21408],[114.22255,22.21421],[114.22252,22.21427],[114.22238,22.21438],[114.22239,22.21455],[114.22226,22.2148],[114.2223,22.21487],[114.22223,22.21493],[114.22217,22.21488],[114.22206,22.21494],[114.22212,22.21499],[114.2218,22.21519],[114.22176,22.21514],[114.22178,22.21508],[114.22173,22.21512],[114.22151,22.21506],[114.22135,22.21519],[114.22145,22.21519],[114.22149,22.21512],[114.22168,22.21532],[114.22174,22.21527],[114.22181,22.21531],[114.22193,22.21544],[114.22205,22.21553],[114.22211,22.21551],[114.22207,22.21564],[114.22192,22.21552],[114.22178,22.21568],[114.22159,22.21572],[114.22144,22.21567],[114.22136,22.21572],[114.2213,22.21567],[114.2213,22.21561],[114.2214,22.21556],[114.22155,22.21555],[114.22158,22.21551],[114.2214,22.21543],[114.22115,22.21559],[114.22114,22.21555],[114.22117,22.21546],[114.22124,22.21528],[114.22132,22.21525],[114.22121,22.2152],[114.22104,22.21527],[114.22089,22.21528],[114.22062,22.21552],[114.22043,22.21604],[114.22046,22.21616],[114.22058,22.21615],[114.22072,22.21631],[114.22078,22.21635],[114.22075,22.21642],[114.22019,22.2165],[114.22009,22.21656],[114.21985,22.21658],[114.21982,22.21661],[114.21984,22.21681],[114.21975,22.21688],[114.21971,22.21689],[114.21966,22.21687],[114.21968,22.21676],[114.21961,22.21673],[114.21964,22.21646],[114.21957,22.21637],[114.21924,22.21636],[114.219,22.21635],[114.21885,22.21644],[114.21882,22.21653],[114.21894,22.21658],[114.21888,22.21676],[114.21875,22.21675],[114.21873,22.21671],[114.21868,22.21671],[114.21867,22.21663],[114.21861,22.21672],[114.21842,22.21675],[114.21831,22.21681],[114.21826,22.21688],[114.21838,22.21702],[114.21838,22.2171],[114.21834,22.21713],[114.21826,22.21712],[114.21815,22.21707],[114.21801,22.21713],[114.21796,22.21724],[114.21781,22.21727],[114.21756,22.21725],[114.2175,22.21735],[114.21743,22.21738],[114.21727,22.21737],[114.21722,22.21739],[114.21723,22.21742],[114.217,22.21745],[114.21695,22.21742],[114.21691,22.2176],[114.2168,22.21764],[114.21681,22.21781],[114.21668,22.21793],[114.21668,22.21802],[114.21668,22.21806],[114.21675,22.21806],[114.21675,22.21807],[114.21668,22.21807],[114.21658,22.21818],[114.2166,22.21821],[114.2166,22.21825],[114.21646,22.21841],[114.21648,22.21846],[114.2162,22.2187],[114.21591,22.21871],[114.21589,22.21882],[114.21586,22.21885],[114.21573,22.21884],[114.21558,22.21882],[114.21555,22.21889],[114.21558,22.21896],[114.21553,22.21903],[114.21547,22.21904],[114.21532,22.21922],[114.21529,22.21922],[114.2152,22.21933],[114.21508,22.2192],[114.21523,22.21901],[114.21524,22.21884],[114.21504,22.21883],[114.21486,22.21886],[114.21473,22.21893],[114.21454,22.21909],[114.21439,22.2193],[114.21428,22.21952],[114.2142,22.21979],[114.21421,22.22026],[114.21411,22.22135],[114.21418,22.22206],[114.21433,22.2224],[114.21452,22.22249],[114.21454,22.22242],[114.21461,22.22237],[114.21472,22.22244],[114.21484,22.22252],[114.21489,22.2225],[114.21498,22.22257],[114.21496,22.22267],[114.21489,22.22275],[114.21478,22.22277],[114.21481,22.22286],[114.21487,22.22309],[114.21503,22.22322],[114.21512,22.22324],[114.21521,22.22343],[114.2152,22.22355],[114.21511,22.22377],[114.21494,22.22389],[114.21488,22.22403],[114.21496,22.22435],[114.21522,22.22445],[114.21527,22.22439],[114.21533,22.22438],[114.21543,22.22441],[114.21541,22.22448],[114.21528,22.22451],[114.21527,22.22455],[114.2153,22.22457],[114.21548,22.22454],[114.21552,22.22462],[114.21557,22.22455],[114.21564,22.22453],[114.21567,22.22457],[114.21564,22.22458],[114.21564,22.22463],[114.2157,22.22462],[114.21572,22.22464],[114.21565,22.22468],[114.21557,22.22466],[114.21546,22.22469],[114.21558,22.22475],[114.21556,22.22483],[114.21584,22.22496],[114.21583,22.22502],[114.21597,22.22505],[114.2161,22.22505],[114.21633,22.22518],[114.21638,22.22523],[114.21641,22.22519],[114.21646,22.22517],[114.21655,22.22523],[114.21665,22.22526],[114.21664,22.22532],[114.21658,22.22533],[114.2166,22.22535],[114.21685,22.22545],[114.21684,22.22538],[114.21686,22.22534],[114.21693,22.22533],[114.21701,22.22537],[114.21709,22.22548],[114.21706,22.22555],[114.21699,22.22555],[114.2171,22.22564],[114.21715,22.22565],[114.21718,22.22564],[114.21718,22.22564],[114.21722,22.22564],[114.21724,22.22565],[114.21729,22.22569],[114.2173,22.22571],[114.21736,22.22571],[114.21737,22.22572],[114.21738,22.22574],[114.21737,22.22576],[114.21735,22.22577],[114.21732,22.22578],[114.21731,22.22577],[114.21734,22.22584],[114.21732,22.22591],[114.21741,22.22595],[114.2175,22.22603],[114.2175,22.22614],[114.21745,22.22616],[114.21747,22.22621],[114.21764,22.22617],[114.21769,22.22621],[114.21769,22.22628],[114.21777,22.2263],[114.21776,22.2264],[114.21787,22.22633],[114.21792,22.22635],[114.21802,22.22642],[114.21803,22.22652],[114.21807,22.2266],[114.21813,22.22654],[114.2182,22.22657],[114.21823,22.22676],[114.21825,22.22679],[114.21822,22.22686],[114.2183,22.22685],[114.21834,22.22688],[114.21832,22.22694],[114.21822,22.227],[114.21827,22.22704],[114.21827,22.2272],[114.21823,22.22728],[114.21833,22.22731],[114.21831,22.22739],[114.21835,22.22737],[114.21838,22.2273],[114.21856,22.22734],[114.21858,22.22748],[114.21852,22.22767],[114.21862,22.22766],[114.21868,22.2276],[114.21872,22.2277],[114.21876,22.22764],[114.21887,22.22756],[114.21893,22.2276],[114.21881,22.2277],[114.21873,22.22773],[114.21878,22.22778],[114.21868,22.22786],[114.21868,22.22791],[114.21875,22.22789],[114.21874,22.22797],[114.21886,22.22804],[114.21888,22.22819],[114.21884,22.22832],[114.21876,22.22841],[114.21872,22.22843],[114.21869,22.22858],[114.21854,22.22868],[114.21859,22.22884],[114.21871,22.229],[114.21889,22.22911],[114.21897,22.22902],[114.21911,22.22897],[114.21914,22.22899],[114.21921,22.229],[114.21946,22.22888],[114.21957,22.22887],[114.21963,22.22878],[114.21977,22.22869],[114.21997,22.22862],[114.22,22.22863],[114.22001,22.2287],[114.21995,22.22877],[114.22003,22.2288],[114.22029,22.22899],[114.22044,22.22901],[114.22041,22.22892],[114.22044,22.2289],[114.22049,22.2289],[114.22047,22.22895],[114.22064,22.22922],[114.22075,22.22918],[114.2208,22.22918],[114.22078,22.22909],[114.22079,22.22906],[114.22095,22.22915],[114.22096,22.22922],[114.221,22.22927],[114.22125,22.22938],[114.22137,22.22956],[114.22153,22.22961],[114.22154,22.22977],[114.22161,22.22979],[114.22166,22.22986],[114.2216,22.2299],[114.22159,22.22997],[114.22163,22.23003],[114.2217,22.23003],[114.22173,22.23004],[114.22166,22.23008],[114.22166,22.23013],[114.22177,22.23018],[114.22181,22.23025],[114.22177,22.2303],[114.22184,22.23032],[114.22183,22.23037],[114.22177,22.23036],[114.22172,22.23043],[114.22172,22.23053],[114.22181,22.23059],[114.22191,22.23055],[114.222,22.23057],[114.22198,22.23068],[114.22193,22.23071],[114.22194,22.23081],[114.22201,22.23079],[114.22211,22.23083],[114.2222,22.23094],[114.22228,22.23113],[114.22237,22.23114],[114.22237,22.23137],[114.22246,22.23143],[114.22256,22.2313],[114.22261,22.2313],[114.22274,22.23138],[114.22284,22.23154],[114.22298,22.23162],[114.22305,22.23169],[114.22302,22.23178],[114.22305,22.23184],[114.22306,22.232],[114.22294,22.23216],[114.22297,22.23232],[114.22291,22.23243],[114.22294,22.2325],[114.22292,22.23258],[114.22296,22.23261],[114.22292,22.23269],[114.22293,22.23275],[114.22299,22.23281],[114.22321,22.23293],[114.22356,22.23301],[114.22382,22.23295],[114.22382,22.23287],[114.22386,22.2328],[114.22399,22.23268],[114.224,22.23257],[114.22404,22.23249],[114.22409,22.23247],[114.22415,22.23252],[114.22415,22.23241],[114.22424,22.23223],[114.22428,22.23216],[114.22436,22.23211],[114.22452,22.23209],[114.22459,22.23197],[114.22463,22.23188],[114.22467,22.23183],[114.22462,22.23175],[114.22477,22.23153],[114.22484,22.23149],[114.22491,22.23138],[114.22492,22.23118],[114.22497,22.23104],[114.22525,22.23077],[114.2253,22.23066],[114.22548,22.23056],[114.22568,22.23059],[114.22571,22.23044],[114.22578,22.23036],[114.22599,22.23025],[114.22607,22.23024],[114.2263,22.23009],[114.22664,22.22997],[114.22692,22.22979],[114.22743,22.22978],[114.22764,22.22971],[114.22775,22.22978],[114.22795,22.22988],[114.22802,22.22986],[114.22803,22.22985],[114.22802,22.22983],[114.22824,22.22981],[114.22846,22.22971],[114.22852,22.22971],[114.22862,22.22979],[114.22867,22.22987],[114.2288,22.22989],[114.22884,22.22988],[114.22884,22.22982],[114.22893,22.22982],[114.22897,22.22984],[114.229,22.22995],[114.22909,22.23004],[114.22919,22.23],[114.22923,22.23008],[114.22931,22.23006],[114.2295,22.23031],[114.22958,22.23049],[114.22954,22.23059],[114.22963,22.23072],[114.22948,22.23067],[114.22947,22.23071],[114.22958,22.2309],[114.22965,22.2312],[114.2297,22.23113],[114.22978,22.23122],[114.22981,22.23133],[114.22986,22.23141],[114.22993,22.2315],[114.22995,22.23164],[114.23,22.23165],[114.23003,22.23169],[114.23005,22.23185],[114.22968,22.23228],[114.22961,22.23231],[114.2295,22.2325],[114.22948,22.23259],[114.22963,22.23262],[114.22963,22.23273],[114.22966,22.23273],[114.22968,22.23286],[114.22975,22.23293],[114.22975,22.23331],[114.22973,22.23342],[114.22966,22.23348],[114.22962,22.23358],[114.22962,22.23361],[114.22965,22.23362],[114.22972,22.23357],[114.2297,22.23367],[114.22959,22.23377],[114.22955,22.2339],[114.2296,22.23413],[114.22956,22.23411],[114.22942,22.23415],[114.22934,22.23423],[114.22931,22.23434],[114.22932,22.23445],[114.22928,22.23447],[114.2292,22.23463],[114.22923,22.23481],[114.22917,22.2349],[114.22905,22.23497],[114.22903,22.23518],[114.22892,22.23531],[114.2288,22.23569],[114.2287,22.23584],[114.22865,22.23585],[114.22865,22.23588],[114.22874,22.23588],[114.22879,22.23595],[114.22875,22.23599],[114.22877,22.23609],[114.2287,22.2365],[114.22888,22.23664],[114.22891,22.2367],[114.22889,22.23677],[114.22883,22.23679],[114.22881,22.23686],[114.22871,22.23695],[114.22871,22.23701],[114.22875,22.23706],[114.22875,22.23711],[114.2287,22.23718],[114.22877,22.2373],[114.22876,22.23737],[114.22877,22.23744],[114.22866,22.23758],[114.22859,22.23765],[114.22838,22.23774],[114.2282,22.2379],[114.22808,22.23805],[114.22806,22.23813],[114.22773,22.23824],[114.22767,22.23823],[114.22754,22.23827],[114.22734,22.2383],[114.22692,22.23852],[114.22662,22.23861],[114.22646,22.2386],[114.22637,22.23862],[114.22635,22.23863],[114.22633,22.23872],[114.22583,22.23869],[114.22584,22.23889],[114.22573,22.23888],[114.22576,22.23844],[114.22574,22.23841],[114.22564,22.23836],[114.2252,22.23835],[114.22488,22.23834],[114.22474,22.23835],[114.22464,22.23838],[114.2245,22.23846],[114.2244,22.23856],[114.22431,22.23867],[114.22427,22.23875],[114.22426,22.23883],[114.22425,22.23884],[114.22424,22.23885],[114.22423,22.23886],[114.22416,22.23941],[114.22416,22.23945],[114.22429,22.23946],[114.22428,22.2395],[114.22418,22.23949],[114.22418,22.23952],[114.22415,22.23952],[114.22405,22.24027],[114.22405,22.24033],[114.224,22.24072],[114.22398,22.24081],[114.22396,22.2409],[114.22402,22.24105],[114.22393,22.24134],[114.2239,22.24153],[114.22383,22.2419],[114.22379,22.24191],[114.2237,22.24202],[114.22346,22.24239],[114.22347,22.2425],[114.22342,22.24266],[114.22335,22.24282],[114.22338,22.24285],[114.2234,22.24288],[114.22341,22.24291],[114.22341,22.24294],[114.22348,22.24296],[114.22352,22.24289],[114.22361,22.24276],[114.22381,22.24284],[114.22378,22.24295],[114.22373,22.24294],[114.22367,22.24292],[114.22353,22.24304],[114.22349,22.24305],[114.2232,22.24335],[114.22314,22.24349],[114.22303,22.24348],[114.223,22.24354],[114.22301,22.24362],[114.22308,22.24362],[114.22307,22.2439],[114.22305,22.24401],[114.2231,22.24403],[114.22307,22.24411],[114.22309,22.24413],[114.22313,22.24415],[114.22321,22.24424],[114.22327,22.24407],[114.22334,22.24404],[114.22338,22.24407],[114.22338,22.24422],[114.22332,22.24441],[114.22335,22.24449],[114.22336,22.24451],[114.22339,22.24462],[114.22337,22.24462],[114.22336,22.24474],[114.22332,22.24485],[114.2233,22.24493],[114.22327,22.24496],[114.22319,22.24498],[114.22235,22.24501],[114.2221,22.24483],[114.22191,22.24455],[114.2216,22.24485],[114.22168,22.24493],[114.22183,22.24477],[114.22195,22.24485],[114.22207,22.24505],[114.22215,22.24513],[114.22216,22.24517],[114.22208,22.24519],[114.22219,22.24524],[114.22225,22.24538],[114.22232,22.2453],[114.22255,22.24539],[114.22257,22.24541],[114.22269,22.24552],[114.22327,22.24573],[114.22349,22.2459],[114.22347,22.24598],[114.22332,22.24603],[114.22312,22.24606],[114.2229,22.24602],[114.22296,22.24612],[114.22307,22.24621],[114.22312,22.24623],[114.22321,22.24626],[114.22321,22.24629],[114.22311,22.24635],[114.22341,22.24659],[114.22374,22.24675],[114.22396,22.24691],[114.22409,22.24705],[114.22412,22.24706],[114.22413,22.24706],[114.22413,22.24701],[114.22411,22.24697],[114.22402,22.24688],[114.224,22.24684],[114.22402,22.2468],[114.22412,22.24675],[114.22422,22.24667],[114.22453,22.24666],[114.2245,22.24675],[114.22454,22.24677],[114.22478,22.24678],[114.22499,22.24684],[114.2251,22.24679],[114.22513,22.24675],[114.22518,22.24666],[114.22518,22.24655],[114.22511,22.2466],[114.22498,22.24651],[114.22478,22.24655],[114.22472,22.24648],[114.22468,22.24655],[114.22458,22.24644],[114.22458,22.2463],[114.22468,22.24612],[114.22479,22.24606],[114.22479,22.24593],[114.22472,22.2459],[114.22466,22.2458],[114.22474,22.24571],[114.22489,22.2458],[114.22497,22.24573],[114.22506,22.2458],[114.22515,22.24576],[114.2253,22.24525],[114.22532,22.24485],[114.22528,22.24475],[114.22545,22.24458],[114.22549,22.2445],[114.22571,22.24412],[114.22577,22.24399],[114.22581,22.24386],[114.22587,22.2438],[114.22598,22.24383],[114.22598,22.24383],[114.22599,22.24381],[114.22596,22.24373],[114.22593,22.24352],[114.22583,22.24324],[114.22578,22.24315],[114.22566,22.24308],[114.22556,22.24313],[114.22547,22.24307],[114.22552,22.24288],[114.22557,22.24279],[114.2255,22.24248],[114.2256,22.24232],[114.22556,22.24226],[114.22598,22.24143],[114.22603,22.24137],[114.2261,22.24135],[114.22617,22.24131],[114.22624,22.2414],[114.22628,22.24141],[114.22632,22.24133],[114.22643,22.24127],[114.22652,22.2413],[114.22653,22.24133],[114.22664,22.24132],[114.22673,22.24136],[114.22676,22.24144],[114.22681,22.24146],[114.22679,22.24148],[114.22688,22.24154],[114.227,22.24175],[114.22706,22.24176],[114.22711,22.24181],[114.22726,22.24187],[114.22731,22.24193],[114.22786,22.24209],[114.22819,22.24207],[114.2287,22.24191],[114.22875,22.24185],[114.22877,22.24179],[114.22891,22.24173],[114.22912,22.2417],[114.22942,22.24171],[114.22961,22.24174],[114.22973,22.24171],[114.23055,22.24138],[114.2306,22.24139],[114.2307,22.24147],[114.23098,22.24148],[114.23109,22.24134],[114.23119,22.24131],[114.23126,22.24133],[114.23131,22.24125],[114.23146,22.2412],[114.23152,22.24105],[114.23165,22.24095],[114.23172,22.24093],[114.23184,22.24067],[114.23197,22.24051],[114.23202,22.24048],[114.2321,22.24047],[114.23211,22.24048],[114.2321,22.24054],[114.23212,22.24054],[114.23213,22.2405],[114.23215,22.2405],[114.23219,22.24051],[114.23223,22.24056],[114.23227,22.24053],[114.23225,22.24051],[114.23225,22.2405],[114.2323,22.24047],[114.23232,22.24048],[114.23236,22.24044],[114.23244,22.24043],[114.23244,22.24038],[114.23242,22.24038],[114.23242,22.24036],[114.23243,22.24034],[114.23245,22.24034],[114.23246,22.24028],[114.23245,22.24028],[114.23246,22.24025],[114.2325,22.24024],[114.23253,22.2402],[114.23252,22.24018],[114.23259,22.23998],[114.23266,22.23989],[114.23273,22.23988],[114.23282,22.2398],[114.23285,22.23976],[114.23288,22.23967],[114.23291,22.23964],[114.23294,22.23958],[114.23298,22.23959],[114.233,22.23953],[114.23305,22.23955],[114.23313,22.23947],[114.23318,22.23948],[114.23318,22.23942],[114.23323,22.23945],[114.23325,22.23938],[114.23333,22.23935],[114.23334,22.23929],[114.23336,22.23933],[114.23341,22.23931],[114.23343,22.23929],[114.23342,22.23924],[114.23347,22.23921],[114.23347,22.23915],[114.23351,22.23913],[114.23353,22.23914],[114.23356,22.23926],[114.23359,22.23926],[114.23361,22.23928],[114.23361,22.23931],[114.23358,22.23931],[114.23364,22.23941],[114.23361,22.23942],[114.23359,22.23946],[114.23361,22.23952],[114.23357,22.23951],[114.23364,22.2396],[114.23362,22.23963],[114.23365,22.23967],[114.23363,22.23968],[114.23363,22.23976],[114.23361,22.23982],[114.23355,22.2399],[114.23354,22.24004],[114.23356,22.24005],[114.23358,22.2401],[114.23355,22.24011],[114.23366,22.24028],[114.23372,22.24048],[114.2338,22.24058],[114.23379,22.24075],[114.23375,22.24077],[114.2338,22.241],[114.23379,22.24112],[114.23385,22.24112],[114.23385,22.24119],[114.2338,22.24118],[114.23379,22.24121],[114.23376,22.24125],[114.23372,22.24134],[114.23414,22.24148],[114.23422,22.24136],[114.23423,22.24136],[114.23465,22.24092],[114.23467,22.24088],[114.23464,22.24082],[114.23463,22.24077],[114.23471,22.24063],[114.23476,22.24056],[114.23478,22.24052],[114.23486,22.24041],[114.23487,22.24041],[114.23505,22.24049],[114.23504,22.24045],[114.23499,22.24042],[114.23478,22.24025],[114.23472,22.24015],[114.23465,22.24013],[114.23466,22.24002],[114.23473,22.24003],[114.23474,22.23994],[114.23479,22.23982],[114.23479,22.23972],[114.2348,22.23967],[114.23484,22.23965],[114.23483,22.23958],[114.23482,22.23954],[114.2348,22.23932],[114.23463,22.23932],[114.23463,22.23927],[114.23463,22.23918],[114.23468,22.23918],[114.23466,22.23907],[114.2346,22.23892],[114.23459,22.23886],[114.23462,22.23878],[114.23453,22.23871],[114.23454,22.23864],[114.23457,22.23821],[114.2346,22.23809],[114.23456,22.23785],[114.23458,22.23776],[114.23461,22.23774],[114.2347,22.23749],[114.23468,22.23734],[114.23472,22.23706],[114.23476,22.23698],[114.2348,22.23696],[114.23482,22.23679],[114.23466,22.23643],[114.23458,22.23632],[114.23446,22.2362],[114.2344,22.23618],[114.23427,22.23618],[114.23424,22.23621],[114.23423,22.23618],[114.23418,22.23618],[114.23414,22.23622],[114.2341,22.23617],[114.23392,22.23615],[114.23391,22.23611],[114.23381,22.23614],[114.23382,22.23609],[114.23379,22.23606],[114.23373,22.23603],[114.23375,22.236],[114.23371,22.23595],[114.2337,22.23588],[114.23372,22.23584],[114.23378,22.23583],[114.23373,22.2358],[114.23372,22.23577],[114.23373,22.23574],[114.23383,22.23575],[114.23375,22.23566],[114.23375,22.23563],[114.23384,22.23554],[114.23387,22.23554],[114.23395,22.23543],[114.23412,22.23539],[114.23415,22.23542],[114.23418,22.23541],[114.23419,22.23531],[114.23424,22.23529],[114.23433,22.23522],[114.23439,22.23507],[114.23448,22.23497],[114.23448,22.23491],[114.23457,22.23484],[114.23458,22.23469],[114.23464,22.23462],[114.23469,22.23448],[114.23478,22.23445],[114.23487,22.23428],[114.23486,22.23423],[114.23486,22.2342],[114.23487,22.23418],[114.23484,22.23416],[114.2348,22.23416],[114.2348,22.23415],[114.23484,22.23411],[114.23487,22.23407],[114.23492,22.23403],[114.23496,22.23407],[114.23499,22.23411],[114.23508,22.23404],[114.23509,22.23403],[114.23506,22.23401],[114.23505,22.23396],[114.23497,22.23389],[114.23499,22.23386],[114.23509,22.23391],[114.23512,22.23386],[114.23502,22.23384],[114.23502,22.23382],[114.23512,22.23384],[114.23512,22.23381],[114.23507,22.23377],[114.23505,22.23375],[114.23504,22.23371],[114.23506,22.23369],[114.23516,22.23366],[114.23518,22.23364],[114.2352,22.23353],[114.23507,22.23351],[114.23509,22.23339],[114.23498,22.23334],[114.23501,22.23321],[114.23504,22.23317],[114.23512,22.23318],[114.23514,22.2332],[114.23517,22.23325],[114.23523,22.23326],[114.23527,22.23324],[114.23527,22.23322],[114.23525,22.23312],[114.23526,22.23305],[114.2353,22.23288],[114.23532,22.23279],[114.23536,22.23277],[114.23538,22.23273],[114.23539,22.23271],[114.23543,22.23269],[114.23538,22.23263],[114.23531,22.23238],[114.23531,22.23224],[114.23529,22.23221],[114.23528,22.23215],[114.2353,22.23203],[114.23535,22.23199],[114.23547,22.23172],[114.23549,22.2317],[114.23554,22.23173],[114.23557,22.23175],[114.23559,22.23172],[114.2356,22.23167],[114.23566,22.2316],[114.23576,22.23146],[114.23585,22.23136],[114.23589,22.23129],[114.2359,22.23125],[114.23587,22.23124],[114.23588,22.23119],[114.23585,22.23116],[114.23589,22.23108],[114.23595,22.23108],[114.23582,22.23089],[114.23583,22.23082],[114.23577,22.23069],[114.23581,22.23053],[114.23575,22.2303],[114.23581,22.23026],[114.23577,22.23018],[114.23581,22.23012],[114.2358,22.23003],[114.23584,22.22988],[114.23589,22.22988],[114.23587,22.22971],[114.23593,22.22957],[114.23586,22.22935],[114.23595,22.22904],[114.2359,22.22891],[114.23598,22.2288],[114.23596,22.22865],[114.23605,22.22853],[114.2361,22.22814],[114.23617,22.22794],[114.23618,22.22778],[114.23613,22.22766],[114.23608,22.22767],[114.23606,22.22751],[114.23596,22.22751],[114.23595,22.22746],[114.23601,22.22743],[114.23595,22.22733],[114.23605,22.22723],[114.23615,22.22724],[114.23622,22.22708],[114.23623,22.22706],[114.23623,22.22703],[114.23626,22.22702],[114.23637,22.22683],[114.23652,22.22655],[114.23664,22.2262],[114.23675,22.22592],[114.23677,22.2256],[114.23675,22.22538],[114.23667,22.22523],[114.23656,22.22523],[114.23653,22.22521],[114.23648,22.22521],[114.23643,22.22522],[114.23636,22.22522],[114.23634,22.2252],[114.23642,22.22511],[114.23642,22.22501],[114.23634,22.22472],[114.23636,22.22467],[114.23628,22.22455],[114.23627,22.22435],[114.23622,22.22427],[114.23628,22.22417],[114.23626,22.22412],[114.2363,22.224],[114.23628,22.22374],[114.23634,22.22363],[114.23631,22.22332],[114.23636,22.22301],[114.2362,22.22266],[114.23613,22.22267],[114.23602,22.22259],[114.23577,22.22269],[114.23566,22.22263],[114.23564,22.22258],[114.23579,22.22214],[114.23579,22.22199],[114.23592,22.22169],[114.23609,22.22156],[114.2362,22.22136],[114.23645,22.22103],[114.23682,22.22099],[114.23694,22.22097],[114.23701,22.22097],[114.23716,22.22087],[114.23733,22.22069],[114.23742,22.22069],[114.23765,22.22052],[114.2377,22.22044],[114.23776,22.22039],[114.23784,22.22038],[114.23794,22.22034],[114.23813,22.22035],[114.23813,22.22032],[114.23824,22.22033],[114.23824,22.22039],[114.23835,22.22071],[114.23837,22.22113],[114.23829,22.22146],[114.23841,22.22174],[114.2386,22.22199],[114.2388,22.22222],[114.23895,22.22229],[114.23906,22.22227],[114.23923,22.22218],[114.23938,22.22218],[114.23957,22.22225],[114.23961,22.2223],[114.23972,22.2223],[114.23995,22.22225],[114.24043,22.222],[114.24059,22.22185],[114.24084,22.22179],[114.24118,22.22176],[114.24127,22.22163],[114.24134,22.22163],[114.24139,22.22078],[114.24138,22.22058],[114.24141,22.22044],[114.24139,22.22012],[114.2412,22.21997],[114.24099,22.22],[114.24093,22.21996],[114.24083,22.21982],[114.24079,22.21974],[114.24083,22.21956],[114.24087,22.21923],[114.24081,22.21916],[114.24071,22.21913],[114.24044,22.21912],[114.2398,22.21907],[114.23972,22.21908],[114.23938,22.21902],[114.23872,22.21896],[114.23851,22.21892],[114.23821,22.2189],[114.23782,22.21888],[114.23781,22.21899],[114.23769,22.21898],[114.23756,22.21884],[114.23751,22.21871],[114.23756,22.21843],[114.23785,22.21868],[114.23799,22.21864],[114.23816,22.21862],[114.23823,22.21845],[114.23835,22.21836],[114.23843,22.21837],[114.23848,22.21844],[114.23851,22.21857],[114.23857,22.21861],[114.23911,22.21867],[114.23931,22.21874],[114.23966,22.21877],[114.24019,22.21879],[114.24031,22.21883],[114.24043,22.21883],[114.24051,22.21887],[114.24066,22.21883],[114.24081,22.21874],[114.24107,22.2186],[114.24125,22.21851],[114.24137,22.21846],[114.24147,22.21841],[114.24155,22.21841],[114.24167,22.21838],[114.24179,22.21825],[114.24183,22.2181],[114.24189,22.21806],[114.2419,22.21795],[114.24183,22.21787],[114.24184,22.21766],[114.2418,22.2176],[114.24185,22.21758],[114.24194,22.21764],[114.24192,22.21744],[114.24198,22.21737],[114.24206,22.21739],[114.24207,22.21696],[114.24224,22.21676],[114.24233,22.21665],[114.24232,22.21652],[114.24224,22.21649],[114.24227,22.21645],[114.24218,22.21605],[114.24215,22.21583],[114.2421,22.21559],[114.24212,22.21551],[114.24208,22.2155],[114.24203,22.21551],[114.24209,22.21544],[114.24214,22.21548],[114.24253,22.21501],[114.24256,22.21475],[114.24268,22.21457],[114.24279,22.21421],[114.24285,22.21417],[114.24291,22.21402],[114.24297,22.21372],[114.2431,22.2134],[114.243,22.21325],[114.24297,22.2131],[114.24295,22.21289],[114.2431,22.21258],[114.24319,22.21208],[114.24309,22.21173],[114.24301,22.21166],[114.243,22.21165],[114.24297,22.21153],[114.24273,22.21132],[114.24256,22.21123],[114.24248,22.21118],[114.24213,22.21099],[114.24197,22.21107],[114.24181,22.21105],[114.24199,22.21114],[114.24199,22.2112],[114.24194,22.21124],[114.24188,22.21122],[114.24186,22.21113],[114.24173,22.21113],[114.24169,22.21105],[114.24165,22.21114],[114.24148,22.21115],[114.24143,22.2111],[114.24137,22.21107],[114.24129,22.21103],[114.2413,22.21097],[114.24139,22.21092],[114.24135,22.21086],[114.24138,22.21078],[114.24155,22.21076],[114.24168,22.21082],[114.24175,22.2108],[114.24175,22.21075],[114.24174,22.21063],[114.24173,22.21058],[114.2417,22.21055],[114.24158,22.21056],[114.2416,22.21035],[114.24145,22.2103],[114.24145,22.21019],[114.24154,22.21013],[114.24149,22.20983],[114.24154,22.20964],[114.24157,22.2095],[114.24148,22.20944],[114.24164,22.20939],[114.2417,22.2093],[114.24177,22.20926],[114.24188,22.209],[114.24212,22.20868],[114.24211,22.20862],[114.24211,22.20852],[114.24222,22.20851],[114.24226,22.20842],[114.24222,22.20832],[114.24235,22.20833],[114.24242,22.20817],[114.24268,22.20798],[114.24293,22.20801],[114.24298,22.20813],[114.24303,22.20812],[114.24309,22.20823],[114.24313,22.20824],[114.24317,22.2081],[114.24338,22.20781],[114.24363,22.20767],[114.24379,22.20749],[114.24389,22.20745],[114.24402,22.20739],[114.24421,22.20737],[114.24426,22.20732],[114.24448,22.20736],[114.24495,22.20726],[114.24513,22.20727],[114.24536,22.20723],[114.24537,22.20717],[114.24582,22.2072],[114.24585,22.20717],[114.24585,22.2071],[114.2459,22.20704],[114.246,22.207],[114.24613,22.20699],[114.24609,22.20693],[114.24636,22.20678],[114.24658,22.20675],[114.24671,22.2068],[114.24693,22.20672],[114.24714,22.20678],[114.24739,22.20678],[114.24749,22.20681],[114.2476,22.20697],[114.24789,22.20702],[114.24795,22.20699],[114.24797,22.20685],[114.24808,22.20687],[114.24826,22.20687],[114.24837,22.20692],[114.24837,22.20702],[114.24847,22.20713],[114.24854,22.20715],[114.24856,22.20739],[114.24861,22.20743],[114.24869,22.20726],[114.24893,22.20718],[114.24901,22.20709],[114.24928,22.20697],[114.24947,22.20698],[114.24979,22.20726],[114.24992,22.20724],[114.24996,22.20721],[114.25001,22.20722],[114.2501,22.2072],[114.25055,22.20737],[114.25082,22.20745],[114.25096,22.20747],[114.25108,22.20741],[114.25127,22.20741],[114.2513,22.20744],[114.25131,22.20745],[114.25154,22.20757],[114.25174,22.20784],[114.25195,22.20793],[114.25206,22.20811],[114.25226,22.20836],[114.2522,22.20808],[114.25231,22.20824],[114.2526,22.20828],[114.25261,22.20818],[114.25246,22.20795],[114.2525,22.20778],[114.2526,22.2076],[114.25266,22.2076],[114.25265,22.20767],[114.25277,22.20767],[114.25281,22.20779],[114.25287,22.20767],[114.25298,22.20765],[114.2531,22.20776],[114.2531,22.20765],[114.25327,22.20765],[114.25314,22.20756],[114.25315,22.20752],[114.25329,22.20745],[114.25329,22.20745],[114.25324,22.2074],[114.25314,22.20721],[114.25309,22.207],[114.25316,22.20695],[114.25319,22.20708],[114.25333,22.20697],[114.2533,22.20685],[114.25335,22.20678],[114.25382,22.20669],[114.25371,22.20662],[114.25358,22.20655],[114.25355,22.2065],[114.2536,22.20646],[114.25364,22.20654],[114.25377,22.20646],[114.25384,22.20641],[114.25397,22.2064],[114.25415,22.20654],[114.2542,22.20645],[114.25427,22.20654],[114.25423,22.20673],[114.25413,22.20672],[114.25418,22.20681],[114.2543,22.20682],[114.25444,22.20681],[114.25453,22.20675],[114.25441,22.2066],[114.25438,22.20647],[114.25456,22.20653],[114.25472,22.2065],[114.25458,22.20642],[114.25454,22.20635],[114.25484,22.20621],[114.25507,22.206],[114.25524,22.20604],[114.25546,22.2063],[114.25533,22.20645],[114.25543,22.20674],[114.25541,22.20678],[114.25531,22.20676],[114.2553,22.2068],[114.25541,22.20732],[114.25537,22.20735],[114.25525,22.20728],[114.25519,22.20712],[114.25514,22.20707],[114.25513,22.20733],[114.25522,22.20745],[114.25528,22.20767],[114.25549,22.2079],[114.25559,22.20812],[114.2556,22.20819],[114.25577,22.20826],[114.25579,22.20817],[114.25584,22.20818],[114.25606,22.20833],[114.25632,22.20818],[114.25637,22.2082],[114.25646,22.20816],[114.25639,22.20806],[114.25653,22.20809],[114.25666,22.20805],[114.25674,22.20787],[114.25677,22.20774],[114.25669,22.20767],[114.25663,22.20756],[114.25663,22.20752],[114.25667,22.20745],[114.2567,22.20738],[114.25687,22.20724],[114.25681,22.20715],[114.25688,22.20713],[114.25704,22.20722],[114.25695,22.20704],[114.257,22.20701],[114.25713,22.20705],[114.25727,22.20693],[114.25742,22.20708],[114.25819,22.20725],[114.2584,22.20734],[114.2586,22.20758],[114.25872,22.2076],[114.25886,22.20768],[114.25888,22.20768],[114.25907,22.20774],[114.25921,22.20781],[114.25946,22.2079],[114.25969,22.20792],[114.25986,22.20789],[114.26007,22.20782],[114.26016,22.20771],[114.26017,22.20758],[114.26024,22.20756],[114.26037,22.2076],[114.26038,22.20747],[114.26036,22.20744],[114.26032,22.20734],[114.26033,22.20722],[114.26029,22.20696],[114.26043,22.20686],[114.26055,22.20686],[114.26075,22.20714],[114.26061,22.20719],[114.2606,22.20728],[114.26103,22.20744],[114.26101,22.2075],[114.2609,22.20756],[114.26092,22.20773],[114.26083,22.20789],[114.26084,22.20797],[114.26106,22.20788],[114.26114,22.2078],[114.26131,22.20788],[114.26127,22.20799],[114.26119,22.20812],[114.26108,22.2082],[114.26092,22.2082],[114.26085,22.20827],[114.26086,22.20836],[114.26109,22.20848],[114.26108,22.20855],[114.26093,22.20854],[114.26091,22.20862],[114.26078,22.20867],[114.26057,22.20874],[114.26036,22.20885],[114.26006,22.20883],[114.26011,22.20902],[114.26009,22.20917],[114.26,22.20918],[114.25981,22.2094],[114.25955,22.2094],[114.25938,22.20931],[114.25914,22.20935],[114.25901,22.20938],[114.25877,22.20924],[114.25864,22.20937],[114.25865,22.20954],[114.25853,22.20957],[114.25828,22.20953],[114.25849,22.20967],[114.25853,22.20976],[114.25843,22.20992],[114.2584,22.2102],[114.25852,22.21024],[114.25859,22.21032],[114.25872,22.21068],[114.2587,22.21082],[114.2585,22.21107],[114.25831,22.21113],[114.25822,22.21114],[114.25816,22.21108],[114.25811,22.21101],[114.2582,22.21074],[114.25814,22.21077],[114.25802,22.21109],[114.25789,22.21119],[114.25784,22.21123],[114.25768,22.21131],[114.2574,22.21137],[114.2573,22.21142],[114.2571,22.21135],[114.25689,22.21122],[114.25666,22.21117],[114.25638,22.21104],[114.25617,22.2109],[114.25604,22.21095],[114.25586,22.21076],[114.25562,22.21079],[114.25548,22.21077],[114.25528,22.21073],[114.25496,22.21083],[114.25449,22.2113],[114.25439,22.21157],[114.25438,22.21169],[114.25456,22.21176],[114.25473,22.21187],[114.25473,22.2121],[114.25483,22.21197],[114.25507,22.21206],[114.25517,22.21206],[114.25523,22.2122],[114.25545,22.21241],[114.25552,22.21268],[114.25568,22.21284],[114.25567,22.2129],[114.25542,22.21273],[114.25548,22.21298],[114.25545,22.213],[114.25537,22.21294],[114.25523,22.21278],[114.25518,22.21278],[114.25508,22.21275],[114.25501,22.21279],[114.25499,22.21282],[114.2551,22.21315],[114.25522,22.2133],[114.25525,22.21342],[114.25527,22.21368],[114.25514,22.21386],[114.25527,22.21402],[114.25493,22.21453],[114.25483,22.21459],[114.25467,22.2147],[114.25467,22.21478],[114.25476,22.21485],[114.25463,22.2149],[114.25463,22.21506],[114.25471,22.21519],[114.25462,22.21524],[114.25464,22.21534],[114.255,22.21567],[114.25508,22.21595],[114.25515,22.21598],[114.25531,22.21619],[114.25508,22.21649],[114.2549,22.21654],[114.255,22.21681],[114.25512,22.21682],[114.25495,22.21704],[114.25495,22.21711],[114.25506,22.21723],[114.25515,22.21747],[114.25514,22.21753],[114.25494,22.21764],[114.25516,22.21763],[114.2552,22.21767],[114.25499,22.21789],[114.2549,22.21783],[114.25477,22.21793],[114.25477,22.21796],[114.25487,22.21796],[114.25483,22.21823],[114.25475,22.21832],[114.25481,22.21847],[114.25472,22.21853],[114.25473,22.21871],[114.25476,22.21877],[114.25477,22.21881],[114.2546,22.21903],[114.25468,22.21931],[114.25466,22.21948],[114.25471,22.21957],[114.25497,22.21955],[114.25509,22.2196],[114.25509,22.21964],[114.25482,22.21974],[114.25469,22.21967],[114.25462,22.21973],[114.25452,22.21973],[114.25454,22.2198],[114.25445,22.21995],[114.25439,22.22018],[114.25471,22.22022],[114.25482,22.22032],[114.25465,22.22036],[114.25481,22.22061],[114.25477,22.22069],[114.25451,22.22084],[114.25406,22.22084],[114.25383,22.2209],[114.25383,22.22096],[114.25415,22.22093],[114.25379,22.2211],[114.25382,22.22118],[114.25395,22.22121],[114.25402,22.2213],[114.25403,22.22144],[114.25394,22.22158],[114.25406,22.22155],[114.25407,22.22159],[114.25407,22.22166],[114.25393,22.22194],[114.25368,22.22221],[114.25386,22.22223],[114.25389,22.22224],[114.25388,22.22229],[114.25385,22.22233],[114.25371,22.22238],[114.25356,22.22244],[114.25352,22.22267],[114.25332,22.22286],[114.25332,22.22304],[114.25328,22.2231],[114.25332,22.22329],[114.25317,22.22338],[114.2531,22.22332],[114.25302,22.22327],[114.25296,22.22331],[114.25291,22.22336],[114.25269,22.22358],[114.25251,22.22383],[114.25241,22.22398],[114.25209,22.22412],[114.25217,22.22435],[114.2522,22.22445],[114.25215,22.22471],[114.25199,22.22481],[114.25186,22.22484],[114.25179,22.22483],[114.25174,22.22473],[114.2517,22.22472],[114.25159,22.22484],[114.25165,22.22491],[114.25153,22.22507],[114.25149,22.22524],[114.25144,22.22535],[114.25137,22.22547],[114.25136,22.22556],[114.2512,22.22576],[114.25136,22.22575],[114.25122,22.22595],[114.25132,22.22608],[114.25136,22.22618],[114.25143,22.22626],[114.25143,22.22637],[114.25132,22.22656],[114.25125,22.22667],[114.25132,22.22673],[114.25119,22.22678],[114.25109,22.22686],[114.25101,22.22695],[114.25105,22.22699],[114.25093,22.22703],[114.25082,22.22715],[114.25069,22.22715],[114.25059,22.22723],[114.2503,22.22756],[114.25034,22.22781],[114.25046,22.22814],[114.25069,22.2284],[114.25109,22.22872],[114.25185,22.22914],[114.25218,22.22927],[114.25246,22.22933],[114.25258,22.22946],[114.25267,22.22943],[114.2526,22.22935],[114.25273,22.2293],[114.25267,22.22909],[114.25277,22.22889],[114.25293,22.22885],[114.25314,22.2288],[114.25351,22.22883],[114.25364,22.22871],[114.25373,22.22875],[114.25379,22.22868],[114.25422,22.22869],[114.25425,22.22855],[114.2545,22.22848],[114.2546,22.22847],[114.25465,22.22846],[114.25488,22.22841],[114.25497,22.22837],[114.25516,22.22831],[114.25511,22.22824],[114.25516,22.22819],[114.25531,22.22817],[114.25546,22.22825],[114.25558,22.22814],[114.25568,22.22811],[114.25585,22.22817],[114.2558,22.22807],[114.25588,22.22806],[114.25598,22.22812],[114.256,22.22805],[114.2561,22.22802],[114.25608,22.22801],[114.25597,22.22804],[114.25593,22.22801],[114.256,22.22796],[114.25613,22.22794],[114.25618,22.22804],[114.25642,22.228],[114.25645,22.22806],[114.2564,22.22816],[114.2564,22.22825],[114.25631,22.2283],[114.25631,22.22839],[114.25643,22.22838],[114.25642,22.22847],[114.25635,22.2285],[114.25625,22.22845],[114.25629,22.22852],[114.25617,22.22875],[114.25607,22.22879],[114.25601,22.22878],[114.25585,22.22885],[114.25586,22.22891],[114.25598,22.22884],[114.25596,22.22892],[114.25591,22.22892],[114.25595,22.22899],[114.25593,22.22914],[114.256,22.22933],[114.25607,22.22945],[114.25593,22.22955],[114.25581,22.2296],[114.25584,22.22963],[114.25579,22.22972],[114.25569,22.22975],[114.25556,22.22977],[114.25547,22.22978],[114.25545,22.22984],[114.25537,22.2299],[114.25538,22.23001],[114.25533,22.23007],[114.25521,22.23008],[114.25506,22.23016],[114.25504,22.23013],[114.25477,22.23018],[114.25442,22.23033],[114.25442,22.23041],[114.2545,22.23043],[114.25448,22.23046],[114.25442,22.23047],[114.2544,22.23054],[114.25447,22.23057],[114.25447,22.23061],[114.25436,22.23067],[114.25429,22.23068],[114.25424,22.23066],[114.25426,22.23061],[114.25421,22.23059],[114.25415,22.23064],[114.2541,22.23066],[114.25399,22.23065],[114.25394,22.23063],[114.25383,22.23071],[114.25361,22.23062],[114.25344,22.23079],[114.25331,22.23104],[114.25331,22.23114],[114.25328,22.23117],[114.25321,22.23118],[114.25313,22.23123],[114.25294,22.23125],[114.25269,22.23117],[114.25267,22.23114],[114.25267,22.23106],[114.25245,22.23101],[114.25236,22.23107],[114.25224,22.23117],[114.25219,22.23122],[114.25213,22.23129],[114.25209,22.23134],[114.25206,22.23139],[114.25199,22.23148],[114.25195,22.23155],[114.25186,22.23171],[114.2518,22.23186],[114.25177,22.23194],[114.25177,22.23199],[114.25176,22.23203],[114.25176,22.23208],[114.25177,22.23212],[114.25179,22.23225],[114.2518,22.23227],[114.25181,22.23232],[114.25182,22.23233],[114.25186,22.23236],[114.25188,22.23236],[114.2519,22.23237],[114.25196,22.2324],[114.25197,22.23241],[114.25198,22.23242],[114.252,22.23244],[114.25203,22.23245],[114.25207,22.23247],[114.2521,22.23249],[114.25211,22.2325],[114.25212,22.23252],[114.25212,22.23255],[114.25209,22.23258],[114.25216,22.23274],[114.25232,22.23281],[114.25251,22.23296],[114.25243,22.23305],[114.25234,22.23306],[114.25233,22.23313],[114.25245,22.23319],[114.25235,22.23328],[114.25241,22.23336],[114.25258,22.23338],[114.25267,22.23345],[114.25287,22.2335],[114.25291,22.23366],[114.25283,22.23372],[114.25261,22.2337],[114.25257,22.2338],[114.25275,22.23391],[114.25272,22.234],[114.25275,22.23404],[114.25274,22.23409],[114.25277,22.23413],[114.25274,22.23415],[114.25268,22.23414],[114.25268,22.23418],[114.25277,22.23423],[114.25264,22.23429],[114.25269,22.23434],[114.2527,22.23457],[114.25291,22.23461],[114.25301,22.23465],[114.25307,22.23464],[114.25305,22.23459],[114.25312,22.2346],[114.25315,22.23463],[114.25334,22.23466],[114.25347,22.23475],[114.25349,22.23473],[114.25355,22.23473],[114.25356,22.23476],[114.2535,22.23478],[114.25352,22.23484],[114.25362,22.23486],[114.25364,22.23489],[114.25354,22.2349],[114.25357,22.23494],[114.25364,22.23498],[114.2537,22.23493],[114.25374,22.23496],[114.25364,22.23503],[114.25365,22.23506],[114.25371,22.23506],[114.25374,22.23508],[114.25371,22.2351],[114.25364,22.23509],[114.25368,22.23514],[114.25379,22.23513],[114.25384,22.23517],[114.25372,22.23522],[114.25373,22.23527],[114.25377,22.23528],[114.25366,22.23542],[114.25369,22.23546],[114.25362,22.23548],[114.25363,22.23556],[114.25354,22.23582],[114.25342,22.23594],[114.25347,22.23596],[114.25339,22.23599],[114.25317,22.23612],[114.25309,22.23614],[114.25309,22.2361],[114.25303,22.23604],[114.25298,22.23608],[114.25289,22.23622],[114.25279,22.23624],[114.25286,22.23625],[114.25275,22.23631],[114.25277,22.23639],[114.25271,22.23646],[114.25277,22.2365],[114.25286,22.23648],[114.25283,22.23658],[114.25278,22.23661],[114.25275,22.2367],[114.25289,22.23664],[114.25287,22.2367],[114.25292,22.23673],[114.25288,22.23678],[114.25291,22.23685],[114.25284,22.23689],[114.25276,22.23706],[114.25264,22.23703],[114.25252,22.23707],[114.25239,22.23706],[114.25233,22.23709],[114.25225,22.23708],[114.25219,22.23703],[114.25209,22.2369],[114.25208,22.23698],[114.25201,22.23709],[114.25203,22.23698],[114.25192,22.23692],[114.25175,22.23687],[114.25152,22.23706],[114.25152,22.23709],[114.2516,22.23716],[114.25189,22.23752],[114.25192,22.23757],[114.25192,22.23765],[114.2519,22.2377],[114.25186,22.23771],[114.25172,22.23768],[114.25166,22.23784],[114.25169,22.23799],[114.25163,22.23796],[114.25166,22.23804],[114.25165,22.23811],[114.25161,22.23815],[114.25151,22.23809],[114.25147,22.23811],[114.2515,22.2382],[114.25149,22.23827],[114.25138,22.2383],[114.2513,22.23828],[114.2512,22.2383],[114.25113,22.23823],[114.25104,22.2382],[114.25103,22.23824],[114.25114,22.23829],[114.2511,22.23832],[114.25112,22.23837],[114.25121,22.23837],[114.25125,22.23843],[114.25121,22.23845],[114.25114,22.23846],[114.25104,22.23846],[114.25098,22.23843],[114.25095,22.23845],[114.25095,22.2385],[114.25089,22.23852],[114.25094,22.23858],[114.25092,22.2386],[114.25084,22.23855],[114.25078,22.23859],[114.25073,22.23859],[114.25058,22.2385],[114.25055,22.23834],[114.25046,22.23833],[114.25042,22.23835],[114.25045,22.23848],[114.25034,22.23847],[114.2504,22.23851],[114.25039,22.23858],[114.25031,22.23859],[114.25018,22.23848],[114.25013,22.23854],[114.2501,22.23864],[114.25021,22.23866],[114.25026,22.23871],[114.25036,22.23889],[114.25043,22.23899],[114.25058,22.23932],[114.25072,22.23947],[114.25076,22.23949],[114.25078,22.23957],[114.25077,22.23961],[114.25067,22.23958],[114.25064,22.23964],[114.25067,22.23978],[114.25074,22.23984],[114.25087,22.24014],[114.25087,22.24027],[114.25083,22.24032],[114.25085,22.24047],[114.25098,22.24052],[114.251,22.24058],[114.25099,22.24074],[114.25092,22.24074],[114.25097,22.2408],[114.25098,22.24089],[114.25085,22.24081],[114.25079,22.24108],[114.25047,22.24101],[114.25038,22.24093],[114.25025,22.24096],[114.25041,22.24115],[114.25055,22.24131],[114.25058,22.24129],[114.25045,22.24111],[114.25047,22.2411],[114.25077,22.24131],[114.25083,22.2414],[114.25081,22.24148],[114.25072,22.2415],[114.25065,22.24142],[114.25068,22.24157],[114.25065,22.2416],[114.25058,22.2416],[114.25051,22.24166],[114.25036,22.24161],[114.25036,22.24142],[114.2502,22.24166],[114.25031,22.24175],[114.25038,22.242],[114.25029,22.2421],[114.25029,22.24215],[114.25014,22.2421],[114.25002,22.24191],[114.24991,22.24187],[114.24992,22.24219],[114.24983,22.24213],[114.24972,22.24198],[114.24972,22.24212],[114.24961,22.24219],[114.24944,22.24207],[114.24952,22.24222],[114.24948,22.24237],[114.24922,22.24224],[114.24929,22.24235],[114.24915,22.24235],[114.24896,22.24223],[114.24888,22.24227],[114.24905,22.24247],[114.24879,22.24254],[114.24869,22.24251],[114.24858,22.24245],[114.24844,22.24237],[114.24839,22.24239],[114.24836,22.24256],[114.24828,22.24252],[114.24806,22.24276],[114.24803,22.24284],[114.24831,22.24294],[114.24823,22.24299],[114.24802,22.24292],[114.24777,22.24301],[114.24772,22.24311],[114.2477,22.24334],[114.24759,22.2436],[114.24751,22.24367],[114.24741,22.24355],[114.24735,22.24366],[114.24726,22.24359],[114.24715,22.24365],[114.24709,22.24358],[114.24695,22.24368],[114.24691,22.24381],[114.24691,22.24388],[114.24704,22.24388],[114.24737,22.24415],[114.24736,22.2442],[114.24705,22.24435],[114.24701,22.24445],[114.24731,22.24448],[114.24735,22.24454],[114.24732,22.24458],[114.24703,22.2447],[114.24694,22.24467],[114.24686,22.24486],[114.24682,22.24491],[114.24678,22.24495],[114.24674,22.24502],[114.24664,22.24521],[114.24654,22.24523],[114.24649,22.24527],[114.24647,22.24544],[114.2466,22.24558],[114.24689,22.24548],[114.247,22.24552],[114.247,22.24564],[114.24685,22.24576],[114.24685,22.24579],[114.24686,22.24581],[114.24687,22.24583],[114.2469,22.24579],[114.24701,22.24578],[114.24703,22.24592],[114.24697,22.24604],[114.24696,22.24608],[114.24696,22.2461],[114.24697,22.24614],[114.24699,22.24619],[114.247,22.24625],[114.24702,22.24627],[114.24704,22.24629],[114.24717,22.24643],[114.24742,22.24661],[114.24752,22.24664],[114.24764,22.24667],[114.24771,22.24668],[114.24783,22.2467],[114.24785,22.24671],[114.24785,22.24671],[114.24787,22.24673],[114.24788,22.24674],[114.24788,22.24675],[114.24788,22.24677],[114.24788,22.24679],[114.24787,22.2468],[114.24783,22.24688],[114.24779,22.24695],[114.24771,22.24708],[114.24771,22.24714],[114.24769,22.24723],[114.24766,22.2473],[114.24773,22.24725],[114.2479,22.24699],[114.24803,22.24677],[114.24809,22.24674],[114.24816,22.24672],[114.24822,22.24659],[114.24826,22.24632],[114.24836,22.24626],[114.24832,22.24618],[114.24841,22.24618],[114.24844,22.24617],[114.2486,22.2461],[114.24868,22.24602],[114.24915,22.24606],[114.24943,22.24629],[114.24966,22.24636],[114.24983,22.24649],[114.2499,22.24669],[114.24867,22.25007],[114.24747,22.25336],[114.24745,22.2534],[114.2474,22.25339],[114.24733,22.25335],[114.24728,22.25334],[114.24714,22.25334],[114.24696,22.25333],[114.24694,22.25334],[114.24691,22.25335],[114.24687,22.25339],[114.24683,22.25346],[114.24681,22.25347],[114.24678,22.25348],[114.24676,22.25348],[114.24674,22.25346],[114.24667,22.25338],[114.24663,22.25335],[114.24655,22.25332],[114.24651,22.25332],[114.24635,22.25336],[114.24628,22.25338],[114.24608,22.25339],[114.24579,22.25341],[114.24574,22.25342],[114.24566,22.25351],[114.24564,22.25352],[114.24562,22.25352],[114.24551,22.25348],[114.24548,22.25348],[114.24536,22.25349],[114.24533,22.2535],[114.24531,22.2535],[114.24528,22.25352],[114.24525,22.25355],[114.24519,22.25361],[114.24516,22.25363],[114.24514,22.25363],[114.24491,22.25363],[114.24486,22.25363],[114.2448,22.25361],[114.24469,22.25356],[114.24457,22.25351],[114.24452,22.2535],[114.24448,22.2535],[114.24444,22.25351],[114.24438,22.25356],[114.24434,22.25358],[114.24424,22.25361],[114.24413,22.25362],[114.24407,22.25365],[114.24403,22.2537],[114.244,22.25377],[114.24399,22.25386],[114.24398,22.25393],[114.24396,22.25396],[114.24394,22.25397],[114.24388,22.25398],[114.24386,22.25398],[114.24374,22.25403],[114.24371,22.25406],[114.24367,22.25411],[114.24364,22.25413],[114.24362,22.25413],[114.24359,22.25412],[114.2435,22.25411],[114.24348,22.25411],[114.24344,22.25412],[114.24338,22.25415],[114.24315,22.25439],[114.24308,22.25446],[114.24304,22.25448],[114.24297,22.25449],[114.24295,22.2545],[114.24292,22.25451],[114.2429,22.25452],[114.24276,22.25472],[114.24271,22.25479],[114.2427,22.25481],[114.2427,22.25484],[114.24271,22.25487],[114.24271,22.2549],[114.24269,22.25494],[114.24264,22.25503],[114.24261,22.2551],[114.24261,22.25512],[114.24263,22.25516],[114.24266,22.25519],[114.2427,22.25521],[114.24272,22.25522],[114.24273,22.25523],[114.24274,22.25525],[114.24274,22.25527],[114.24273,22.25529],[114.24268,22.25537],[114.24265,22.25539],[114.24264,22.2554],[114.24262,22.2554],[114.2426,22.2554],[114.24254,22.25539],[114.2425,22.2554],[114.24249,22.2554],[114.2424,22.25547],[114.24236,22.25551],[114.24233,22.25553],[114.24229,22.25554],[114.24215,22.25559],[114.2421,22.2556],[114.24206,22.2556],[114.24201,22.2556],[114.24194,22.2556],[114.2417,22.25565],[114.24166,22.25566],[114.24164,22.25566],[114.24161,22.25565],[114.24158,22.25564],[114.2415,22.25561],[114.24146,22.2556],[114.24142,22.25561],[114.24124,22.2557],[114.24116,22.25574],[114.2411,22.25576],[114.24091,22.25582],[114.24074,22.25586],[114.2405,22.25593],[114.24038,22.25598],[114.24013,22.25607],[114.23976,22.25621],[114.23965,22.25625],[114.2396,22.25627],[114.23955,22.25628],[114.23949,22.25629],[114.23943,22.25629],[114.2394,22.25628],[114.23936,22.25627],[114.23928,22.25624],[114.23913,22.2562],[114.23909,22.25619],[114.23907,22.25619],[114.23904,22.2562],[114.23891,22.25624],[114.23879,22.25625],[114.23875,22.25626],[114.23872,22.25627],[114.23832,22.25655],[114.2383,22.25657],[114.23827,22.2566],[114.23823,22.25666],[114.2382,22.25668],[114.23815,22.25671],[114.23806,22.25674],[114.23801,22.25677],[114.23797,22.2568],[114.23764,22.25718],[114.23759,22.25722],[114.23756,22.25723],[114.23752,22.25725],[114.23749,22.25725],[114.23745,22.25725],[114.23741,22.25724],[114.23737,22.25723],[114.23732,22.2572],[114.23727,22.25716],[114.23723,22.25712],[114.23712,22.25699],[114.23708,22.25695],[114.23706,22.25694],[114.23703,22.25692],[114.23702,22.25692],[114.23698,22.25691],[114.23695,22.25692],[114.23692,22.25694],[114.2369,22.25695],[114.23687,22.25698],[114.23686,22.25702],[114.23685,22.2571],[114.23684,22.25717],[114.23682,22.2572],[114.2368,22.25724],[114.23676,22.25727],[114.23671,22.25731],[114.23669,22.25732],[114.23668,22.25732],[114.23665,22.25732],[114.23658,22.25728],[114.23654,22.25724],[114.23651,22.25721],[114.23648,22.25715],[114.23647,22.25711],[114.23647,22.25707],[114.23646,22.25676],[114.23645,22.25667],[114.23643,22.2566],[114.23641,22.25655],[114.2364,22.25652],[114.23635,22.25646],[114.23632,22.25645],[114.23628,22.25644],[114.23625,22.25644],[114.23622,22.25645],[114.23613,22.25648],[114.23606,22.25651],[114.23604,22.25652],[114.23601,22.25655],[114.23599,22.25658],[114.23592,22.25675],[114.2359,22.25678],[114.23588,22.25681],[114.23584,22.25685],[114.23582,22.25686],[114.23581,22.25686],[114.23579,22.25685],[114.23556,22.25669],[114.23552,22.25665],[114.23549,22.25662],[114.23545,22.25657],[114.23542,22.25651],[114.23538,22.25642],[114.23534,22.2563],[114.23532,22.25624],[114.2353,22.25621],[114.23528,22.2562],[114.23527,22.25619],[114.23525,22.25618],[114.23521,22.25618],[114.23512,22.25619],[114.23502,22.25622],[114.23499,22.25623],[114.23493,22.25623],[114.23487,22.25622],[114.23484,22.25621],[114.23478,22.25619],[114.23475,22.25617],[114.2347,22.25613],[114.23468,22.25611],[114.23466,22.25608],[114.23461,22.25599],[114.23458,22.25592],[114.23457,22.25587],[114.23455,22.25581],[114.23452,22.2556],[114.23446,22.2554],[114.23446,22.25534],[114.23445,22.25529],[114.23444,22.25526],[114.23443,22.25525],[114.23442,22.25523],[114.23439,22.25521],[114.23424,22.25516],[114.23422,22.25515],[114.23417,22.25512],[114.23413,22.25508],[114.23411,22.25505],[114.23408,22.25498],[114.23405,22.25482],[114.23402,22.25474],[114.23401,22.25472],[114.23399,22.2547],[114.23398,22.25468],[114.23395,22.25467],[114.23375,22.25463],[114.23372,22.25463],[114.2337,22.25463],[114.23367,22.25464],[114.23365,22.25465],[114.23323,22.25494],[114.23317,22.25497],[114.23312,22.25498],[114.23309,22.25499],[114.23301,22.25499],[114.23295,22.25499],[114.23287,22.25499],[114.23274,22.25497],[114.23268,22.25495],[114.23263,22.25495],[114.23225,22.25496],[114.2322,22.25497],[114.23215,22.25498],[114.23205,22.25502],[114.232,22.25505],[114.23191,22.25514],[114.23182,22.25529],[114.23162,22.25558],[114.2314,22.2558],[114.23131,22.25587],[114.23122,22.25594],[114.2312,22.25596],[114.23117,22.25598],[114.23111,22.25602],[114.23096,22.25611],[114.23071,22.25623],[114.23071,22.25623],[114.23065,22.2561],[114.23054,22.25586],[114.23052,22.25583],[114.23052,22.25582],[114.23051,22.25584],[114.23039,22.25601],[114.23035,22.25608],[114.23027,22.2562],[114.23023,22.25626],[114.23019,22.25632],[114.23015,22.25637],[114.23014,22.25639],[114.23012,22.25643],[114.2301,22.25646],[114.23006,22.25651],[114.22998,22.25657],[114.22992,22.2566],[114.22985,22.25663],[114.22977,22.25665],[114.22964,22.25669],[114.22951,22.25674],[114.2294,22.2568],[114.22928,22.25688],[114.22918,22.25696],[114.22896,22.25711],[114.22891,22.25715],[114.22885,22.25718],[114.22872,22.25722],[114.22859,22.25725],[114.22851,22.25728],[114.22849,22.25728],[114.22846,22.25729],[114.22846,22.25729],[114.22841,22.25729],[114.22834,22.25728],[114.22827,22.25726],[114.22821,22.25724],[114.22815,22.25721],[114.22816,22.25732],[114.22812,22.25739],[114.22804,22.25747],[114.22794,22.25755],[114.22781,22.25759],[114.22722,22.25772],[114.22674,22.25778],[114.22596,22.2578],[114.22578,22.25784],[114.22569,22.25789],[114.22567,22.2579],[114.22562,22.25797],[114.22558,22.25804],[114.22556,22.25815],[114.22558,22.25846],[114.22556,22.26006],[114.22552,22.26023],[114.2255,22.2605],[114.22545,22.26088],[114.22541,22.26136],[114.22544,22.26162],[114.22547,22.26171],[114.2256,22.26208],[114.22559,22.26219],[114.22554,22.26229],[114.22547,22.26239],[114.22535,22.26254],[114.22521,22.26278],[114.22519,22.26289],[114.22522,22.26302],[114.22524,22.26308],[114.22527,22.26316],[114.2253,22.26318],[114.22538,22.26346],[114.22547,22.26372],[114.22556,22.2639],[114.2256,22.26398],[114.22566,22.26406],[114.22578,22.26415],[114.2259,22.26419],[114.22612,22.26426],[114.22636,22.2643],[114.2268,22.26441],[114.22722,22.26457],[114.22754,22.26477],[114.22923,22.26638],[114.2293,22.26648],[114.22938,22.26664],[114.22944,22.26685],[114.22946,22.26706],[114.22948,22.26733],[114.22951,22.26781],[114.22953,22.26824],[114.22892,22.2689],[114.22846,22.26938],[114.22819,22.26966],[114.2277,22.27017],[114.22725,22.27065],[114.22698,22.27083],[114.22658,22.27111],[114.22643,22.27121],[114.22637,22.27128],[114.22634,22.27133],[114.22634,22.27136],[114.22635,22.27139],[114.22635,22.27139],[114.22635,22.27141],[114.22636,22.27142],[114.22638,22.27146],[114.2264,22.2715],[114.22655,22.27164],[114.2266,22.27171],[114.22662,22.27176],[114.22663,22.27182],[114.22663,22.27191],[114.22661,22.27197],[114.22658,22.27203],[114.22653,22.27208],[114.22649,22.27212],[114.22643,22.27215],[114.22608,22.27229],[114.22593,22.27235],[114.22591,22.27237],[114.2259,22.2724],[114.2259,22.27242],[114.2259,22.27257],[114.22592,22.27277],[114.2259,22.27287],[114.22588,22.27294],[114.22584,22.273],[114.2258,22.27304],[114.2257,22.27312],[114.22521,22.27277],[114.2252,22.27276],[114.22509,22.27272],[114.22486,22.27271],[114.22465,22.27276],[114.22443,22.27286],[114.22389,22.27318],[114.22353,22.27333],[114.22331,22.27339],[114.22306,22.27352],[114.22295,22.2736],[114.22283,22.27378],[114.22268,22.27393],[114.22253,22.27401],[114.22239,22.27405],[114.22217,22.27403],[114.22169,22.27395],[114.22133,22.2739],[114.22115,22.2739],[114.22099,22.27393],[114.22083,22.274],[114.22066,22.27412],[114.22062,22.27417],[114.2206,22.27425],[114.2206,22.27432],[114.22063,22.27438],[114.22065,22.27444],[114.22065,22.27453],[114.2206,22.27467],[114.2206,22.27477],[114.22058,22.27485],[114.22055,22.27494],[114.22056,22.27507],[114.22057,22.2752],[114.22062,22.27531],[114.22068,22.27538],[114.2207,22.27547],[114.2207,22.27556],[114.22064,22.27565],[114.22055,22.27572],[114.22045,22.27576],[114.22038,22.27578],[114.22032,22.27578],[114.22024,22.27577],[114.2202,22.27575],[114.22018,22.27576],[114.22017,22.27578],[114.22021,22.27586],[114.22022,22.27593],[114.22023,22.27601],[114.22023,22.27605],[114.22022,22.27608],[114.2202,22.27613],[114.22015,22.2762],[114.2201,22.27624],[114.22004,22.27627],[114.21994,22.2763],[114.21988,22.27632],[114.21982,22.27635],[114.2198,22.27638],[114.21982,22.27645],[114.21989,22.27655],[114.2199,22.27658],[114.21989,22.27665],[114.21984,22.27679],[114.21979,22.27684],[114.21976,22.27687],[114.2197,22.2769],[114.21965,22.27691],[114.21956,22.27691],[114.21952,22.27692],[114.21945,22.27695],[114.21938,22.27701],[114.21934,22.27702],[114.21919,22.27699],[114.2191,22.277],[114.21891,22.27702],[114.21878,22.27702],[114.21871,22.27699],[114.21867,22.27693],[114.21866,22.27686],[114.21864,22.27681],[114.21859,22.27679],[114.21852,22.27679],[114.21844,22.27683],[114.21833,22.27687],[114.21825,22.27687],[114.21807,22.27688],[114.21795,22.27688],[114.21791,22.27688],[114.21788,22.27688],[114.21787,22.27688],[114.21781,22.27683],[114.21775,22.27677],[114.21774,22.27676],[114.21773,22.27668],[114.21774,22.27664],[114.21783,22.27648],[114.21786,22.27638],[114.21785,22.27627],[114.21783,22.27622],[114.21778,22.27615],[114.21771,22.2761],[114.21722,22.2755],[114.21705,22.27525],[114.21703,22.2752],[114.21687,22.27486],[114.21683,22.27482],[114.2168,22.27478],[114.21673,22.27474],[114.21663,22.27469],[114.21656,22.27467],[114.21651,22.27464],[114.2165,22.27459],[114.21652,22.27455],[114.21657,22.27451],[114.21666,22.27448],[114.21683,22.27445],[114.21716,22.2744],[114.21729,22.2744],[114.21748,22.27441],[114.21752,22.27443],[114.21758,22.27442],[114.21762,22.27438],[114.21765,22.27434],[114.21777,22.27421],[114.21781,22.27418],[114.2179,22.27412],[114.21792,22.2741],[114.21793,22.27407],[114.21793,22.27403],[114.21792,22.27399],[114.21785,22.27395],[114.21754,22.27393],[114.21751,22.27392],[114.21745,22.27389],[114.21738,22.27373],[114.21732,22.27369],[114.21722,22.27373],[114.21714,22.27379],[114.21709,22.27387],[114.21704,22.27394],[114.21697,22.27398],[114.21691,22.274],[114.21684,22.27401],[114.21677,22.274],[114.21672,22.27399],[114.21667,22.27395],[114.21661,22.27388],[114.21658,22.27383],[114.21655,22.27374],[114.21655,22.27365],[114.21658,22.27359],[114.2166,22.27352],[114.2166,22.27346],[114.21664,22.27342],[114.21667,22.27341],[114.21672,22.27338],[114.2168,22.27331],[114.21685,22.27325],[114.21687,22.2732],[114.21686,22.27312],[114.21684,22.27303],[114.21685,22.27295],[114.21687,22.27288],[114.21691,22.27282],[114.21695,22.27279],[114.21699,22.27274],[114.217,22.27268],[114.21696,22.2726],[114.21696,22.27252],[114.21698,22.27243],[114.21703,22.27236],[114.21705,22.27231],[114.21703,22.27224],[114.21703,22.27218],[114.21708,22.27212],[114.21715,22.27207],[114.21715,22.27193],[114.21708,22.27182],[114.21713,22.27172],[114.2172,22.27164],[114.21724,22.27156],[114.21724,22.27151],[114.21722,22.27147],[114.21716,22.27141],[114.21694,22.27124],[114.2168,22.27107],[114.21675,22.27104],[114.21666,22.27103],[114.21661,22.27106],[114.21648,22.2711],[114.21635,22.27109],[114.21627,22.27111],[114.21621,22.27118],[114.21618,22.27129],[114.21612,22.27133],[114.216,22.27135],[114.21594,22.27137],[114.21593,22.27148],[114.21596,22.27156],[114.21594,22.2716],[114.21589,22.27164],[114.21573,22.27171],[114.21564,22.27178],[114.21558,22.27186],[114.2155,22.27188],[114.21534,22.2719],[114.2152,22.27195],[114.2151,22.272],[114.21504,22.27199],[114.215,22.27197],[114.21496,22.27192],[114.21494,22.27188],[114.21494,22.27184],[114.21496,22.27181],[114.215,22.27173],[114.21501,22.27164],[114.215,22.27158],[114.21492,22.27146],[114.21486,22.27129],[114.21488,22.27125],[114.21488,22.27122],[114.21487,22.27115],[114.21484,22.2711],[114.21481,22.27107],[114.21477,22.27107],[114.2147,22.27105],[114.21465,22.27102],[114.21458,22.27092],[114.21452,22.2708],[114.21447,22.2707],[114.21446,22.27063],[114.21447,22.27057],[114.21451,22.27049],[114.21451,22.27043],[114.21447,22.27031],[114.21445,22.27026],[114.21444,22.27022],[114.21441,22.27017],[114.21436,22.27009],[114.21429,22.27002],[114.21426,22.26997],[114.21423,22.26991],[114.21422,22.26987],[114.21421,22.26985],[114.21421,22.26983],[114.21419,22.26982],[114.21418,22.26981],[114.21416,22.2698],[114.21414,22.2698],[114.21411,22.2698],[114.21406,22.26981],[114.21404,22.26981],[114.21401,22.26981],[114.21399,22.26981],[114.21397,22.26981],[114.21393,22.26979],[114.2139,22.26975],[114.21387,22.2697],[114.21384,22.26965],[114.21381,22.26962],[114.2138,22.26962],[114.21378,22.26961],[114.21375,22.26963],[114.21374,22.26964],[114.21373,22.26968],[114.21371,22.26973],[114.21371,22.26978],[114.2137,22.2698],[114.2137,22.26982],[114.21369,22.26983],[114.21369,22.26984],[114.21368,22.26985],[114.21367,22.26986],[114.21366,22.26987],[114.21366,22.26988],[114.21365,22.26989],[114.21364,22.2699],[114.21363,22.26991],[114.21362,22.26993],[114.2136,22.26994],[114.2136,22.26996],[114.21359,22.26997],[114.21358,22.26998],[114.21357,22.26999],[114.21356,22.26999],[114.21355,22.27],[114.21355,22.27],[114.21355,22.27001],[114.21354,22.27002],[114.21353,22.27002],[114.21352,22.27002],[114.21351,22.27003],[114.21349,22.27004],[114.21349,22.27004],[114.21349,22.27005],[114.21349,22.27005],[114.21348,22.27006],[114.21348,22.27006],[114.21347,22.27008],[114.21344,22.2701],[114.21342,22.27012],[114.21338,22.27014],[114.21335,22.27015],[114.21333,22.27016],[114.21329,22.27016],[114.21323,22.27015],[114.21319,22.27014],[114.21315,22.27013],[114.21313,22.27012],[114.21309,22.27009],[114.21306,22.27006],[114.21304,22.27003],[114.213,22.27],[114.21298,22.26998],[114.21297,22.26998],[114.21295,22.26998],[114.21293,22.26998],[114.21292,22.26999],[114.21292,22.27003],[114.21292,22.27009],[114.21292,22.27011],[114.21292,22.27011],[114.21291,22.27011],[114.21291,22.27012],[114.2129,22.27012],[114.2129,22.27013],[114.2129,22.27014],[114.2129,22.27015],[114.21291,22.27016],[114.21291,22.27017],[114.21291,22.27018],[114.21291,22.27019],[114.21291,22.2702],[114.21291,22.27021],[114.21287,22.27028],[114.21287,22.2703],[114.21286,22.2703],[114.21286,22.2703],[114.21286,22.27031],[114.21285,22.27031],[114.21285,22.27031],[114.21284,22.27032],[114.21284,22.27032],[114.21283,22.27032],[114.21283,22.27032],[114.21283,22.27032],[114.21283,22.27032],[114.21283,22.27033],[114.21283,22.27033],[114.21284,22.27033],[114.21284,22.27033],[114.21284,22.27034],[114.21284,22.27036],[114.21283,22.27038],[114.21282,22.27039],[114.21281,22.2704],[114.21279,22.2704],[114.21278,22.27041],[114.21277,22.27043],[114.21276,22.27044],[114.21276,22.27046],[114.21276,22.27048],[114.21277,22.27051],[114.21281,22.27072],[114.21281,22.27076],[114.21282,22.27079],[114.21283,22.27083],[114.21283,22.27085],[114.21283,22.27086],[114.21283,22.27089],[114.21282,22.2709],[114.21281,22.27092],[114.2128,22.27094],[114.21279,22.27095],[114.21278,22.27096],[114.21276,22.27097],[114.21274,22.27097],[114.21273,22.27097],[114.21272,22.27098],[114.2127,22.27098],[114.21268,22.27097],[114.21266,22.27097],[114.21263,22.27096],[114.21261,22.27095],[114.2126,22.27094],[114.21258,22.27093],[114.21255,22.27092],[114.21253,22.27092],[114.21251,22.27093],[114.21248,22.27093],[114.21246,22.27094],[114.21243,22.27094],[114.21239,22.27093],[114.21233,22.27091],[114.21229,22.27089],[114.2121,22.2708],[114.21207,22.27079],[114.21206,22.27079],[114.21206,22.27079],[114.21205,22.27079],[114.21203,22.27079],[114.21203,22.2708],[114.21202,22.27081],[114.21202,22.27081],[114.21202,22.27082],[114.21201,22.27083],[114.21201,22.27084],[114.212,22.27084],[114.212,22.27085],[114.212,22.27087],[114.212,22.2709],[114.21201,22.27093],[114.21202,22.27097],[114.21206,22.27103],[114.21208,22.27108],[114.2121,22.27112],[114.2121,22.27116],[114.2121,22.2712],[114.2121,22.27124],[114.2121,22.27127],[114.21211,22.27129],[114.21212,22.2713],[114.21214,22.27132],[114.21217,22.27133],[114.2122,22.27136],[114.21224,22.27139],[114.21227,22.27141],[114.21228,22.27143],[114.21229,22.27144],[114.21229,22.27146],[114.2123,22.27148],[114.2123,22.2715],[114.2123,22.27152],[114.2123,22.27154],[114.21229,22.27156],[114.21228,22.27158],[114.21214,22.27169],[114.21213,22.27169],[114.21212,22.2717],[114.21212,22.27171],[114.21212,22.27171],[114.21212,22.27172],[114.21212,22.27173],[114.21212,22.27174],[114.21212,22.27175],[114.21213,22.27176],[114.21214,22.27176],[114.21215,22.27177],[114.21217,22.27177],[114.21219,22.27178],[114.21221,22.27178],[114.21248,22.27187],[114.21253,22.2719],[114.21257,22.27192],[114.2126,22.27195],[114.21264,22.27199],[114.21267,22.27203],[114.21269,22.27208],[114.2127,22.27212],[114.21269,22.27218],[114.21264,22.27229],[114.21259,22.2724],[114.21255,22.27247],[114.21251,22.27251],[114.21248,22.27255],[114.21247,22.2726],[114.21247,22.27262],[114.21247,22.27267],[114.21246,22.27272],[114.21245,22.27276],[114.21243,22.2728],[114.21242,22.27282],[114.2124,22.27285],[114.2124,22.27289],[114.2124,22.27293],[114.21239,22.27298],[114.21237,22.27303],[114.21234,22.27308],[114.21228,22.27313],[114.21224,22.27317],[114.21217,22.27322],[114.2121,22.27324],[114.21205,22.27324],[114.21199,22.27322],[114.21196,22.27319],[114.21192,22.27315],[114.2119,22.27308],[114.21189,22.27306],[114.21186,22.27302],[114.21182,22.27299],[114.21173,22.27299],[114.21166,22.273],[114.2116,22.27299],[114.21152,22.27294],[114.21148,22.2729],[114.21143,22.27285],[114.21139,22.27281],[114.21131,22.27274],[114.21124,22.2727],[114.21123,22.27269],[114.21122,22.27268],[114.21121,22.27267],[114.2112,22.27266],[114.21118,22.27266],[114.21117,22.27265],[114.21115,22.27265],[114.21114,22.27265],[114.21112,22.27265],[114.21111,22.27264],[114.21109,22.27264],[114.21108,22.27265],[114.21107,22.27266],[114.21106,22.27267],[114.21105,22.27268],[114.21105,22.2727],[114.21105,22.27271],[114.21106,22.27273],[114.21106,22.27274],[114.21107,22.27275],[114.21107,22.27277],[114.21108,22.27278],[114.21108,22.27279],[114.21109,22.27281],[114.21109,22.27282],[114.21109,22.27283],[114.21109,22.27285],[114.2111,22.27286],[114.2111,22.27287],[114.2111,22.27289],[114.21111,22.2729],[114.21111,22.27291],[114.21112,22.27293],[114.21112,22.27294],[114.21113,22.27295],[114.21114,22.27297],[114.21115,22.27298],[114.21115,22.27299],[114.21116,22.273],[114.21117,22.27301],[114.21118,22.27302],[114.21119,22.27303],[114.2112,22.27304],[114.21121,22.27305],[114.21122,22.27307],[114.21123,22.27308],[114.21124,22.27309],[114.21125,22.2731],[114.21126,22.27311],[114.21127,22.27312],[114.21128,22.27313],[114.21129,22.27314],[114.2113,22.27315],[114.21131,22.27316],[114.21132,22.27317],[114.21133,22.27318],[114.21134,22.2732],[114.21137,22.27325],[114.21141,22.2733],[114.21144,22.27335],[114.21147,22.27341],[114.21151,22.27346],[114.21154,22.27351],[114.21157,22.27356],[114.2116,22.27361],[114.21165,22.2737],[114.21167,22.27375],[114.21166,22.27377],[114.21165,22.27379],[114.21161,22.27382],[114.2116,22.27385],[114.21159,22.27388],[114.2116,22.27391],[114.2116,22.27395],[114.2116,22.27398],[114.2116,22.27403],[114.21159,22.27406],[114.21158,22.27409],[114.21156,22.27413],[114.21153,22.27416],[114.2115,22.27417],[114.21146,22.27419],[114.21142,22.2742],[114.21138,22.27421],[114.21133,22.27421],[114.21127,22.2742],[114.21123,22.27419],[114.21119,22.27418],[114.21114,22.27416],[114.2111,22.27414],[114.21107,22.27411],[114.21105,22.27408],[114.21101,22.27404],[114.21097,22.274],[114.21092,22.27397],[114.21089,22.27396],[114.21086,22.27394],[114.21083,22.27394],[114.21077,22.27393],[114.21071,22.27393],[114.21064,22.27394],[114.2106,22.27394],[114.21054,22.27394],[114.21048,22.27395],[114.21044,22.27396],[114.2104,22.27397],[114.21036,22.27398],[114.21032,22.274],[114.21028,22.27401],[114.21025,22.27403],[114.21021,22.27404],[114.21017,22.27407],[114.21014,22.2741],[114.2101,22.27413],[114.21006,22.27415],[114.21002,22.27418],[114.20998,22.27421],[114.20993,22.27423],[114.20991,22.27425],[114.2099,22.27427],[114.20989,22.27429],[114.20989,22.27431],[114.2099,22.27433],[114.20992,22.27436],[114.20993,22.2744],[114.20993,22.27444],[114.20992,22.27447],[114.20991,22.27449],[114.2099,22.27451],[114.20989,22.27454],[114.20989,22.27458],[114.2099,22.2746],[114.20992,22.27463],[114.20996,22.27465],[114.20997,22.27466],[114.20999,22.27469],[114.21,22.27472],[114.20999,22.27477],[114.20998,22.27482],[114.20995,22.27485],[114.20991,22.27488],[114.20989,22.27491],[114.20984,22.275],[114.20977,22.27511],[114.20969,22.27524],[114.20964,22.27537],[114.20959,22.27547],[114.20955,22.27555],[114.20953,22.27558],[114.2095,22.27561],[114.20947,22.27563],[114.20944,22.27564],[114.20939,22.27566],[114.20933,22.27566],[114.2092,22.27567],[114.20917,22.27567],[114.20913,22.27568],[114.2091,22.27569],[114.20906,22.2757],[114.20902,22.27571],[114.20898,22.27573],[114.20894,22.27577],[114.2089,22.27581],[114.20886,22.27586],[114.2087,22.276],[114.20868,22.27602],[114.20867,22.27604],[114.20867,22.27607],[114.20869,22.27609],[114.20869,22.27611],[114.20871,22.27627],[114.20872,22.27644],[114.20872,22.27652],[114.20874,22.27666],[114.20876,22.27684],[114.20882,22.27705],[114.20882,22.27707],[114.20883,22.27708],[114.20885,22.27709],[114.20886,22.2771],[114.20887,22.2771],[114.20889,22.27711],[114.20891,22.27712],[114.20892,22.27712],[114.20894,22.27713],[114.20894,22.27713],[114.20896,22.27713],[114.20898,22.27713],[114.20902,22.27713],[114.20905,22.27712],[114.20907,22.27712],[114.2091,22.27712],[114.20912,22.27712],[114.20914,22.27713],[114.20916,22.27713],[114.20918,22.27714],[114.20919,22.27715],[114.2092,22.27716],[114.20921,22.27717],[114.20922,22.27718],[114.20923,22.27719],[114.20924,22.27722],[114.20925,22.27724],[114.20926,22.27725],[114.20926,22.27726],[114.20926,22.27729],[114.20924,22.27732],[114.20922,22.27735],[114.20921,22.27738],[114.20919,22.2774],[114.20918,22.27743],[114.20918,22.27747],[114.2092,22.27751],[114.20921,22.27755],[114.20923,22.27759],[114.20926,22.27763],[114.20927,22.27766],[114.2093,22.27769],[114.20933,22.2777],[114.20936,22.2777],[114.2094,22.27769],[114.20945,22.27767],[114.20952,22.27765],[114.20956,22.27763],[114.20962,22.2776],[114.20971,22.27756],[114.21021,22.27734],[114.21029,22.27731],[114.21036,22.27729],[114.21044,22.27727],[114.21048,22.27727],[114.21051,22.27727],[114.21053,22.27728],[114.21056,22.27729],[114.21059,22.27731],[114.2106,22.27733],[114.21063,22.27737],[114.21065,22.2774],[114.21066,22.27744],[114.21067,22.27747],[114.21068,22.27752],[114.21068,22.27758],[114.21069,22.27765],[114.2107,22.27771],[114.2107,22.27774],[114.21069,22.27776],[114.21068,22.27778],[114.21065,22.2778],[114.21059,22.27783],[114.21051,22.27786],[114.21044,22.27788],[114.21041,22.27788],[114.21038,22.2779],[114.21037,22.27791],[114.21037,22.27793],[114.21036,22.27797],[114.21036,22.278],[114.21036,22.27803],[114.21037,22.2781],[114.21037,22.27817],[114.21036,22.27821],[114.21032,22.27825],[114.21028,22.27828],[114.21024,22.27832],[114.21019,22.27837],[114.21015,22.27839],[114.21011,22.27839],[114.21005,22.27839],[114.20997,22.27838],[114.2099,22.27838],[114.20984,22.27838],[114.2098,22.27841],[114.20979,22.27844],[114.20979,22.27848],[114.20981,22.27859],[114.20984,22.27865],[114.20985,22.27868],[114.20988,22.27871],[114.20994,22.27874],[114.21011,22.27883],[114.21013,22.27886],[114.21013,22.27898],[114.2101,22.279],[114.20983,22.27929],[114.20978,22.2793],[114.20978,22.27931],[114.20974,22.27933],[114.20973,22.27934],[114.20973,22.27945],[114.20968,22.27953],[114.20965,22.27957],[114.20962,22.2796],[114.20961,22.27963],[114.20961,22.27965],[114.20963,22.27967],[114.20967,22.27969],[114.2097,22.27972],[114.20976,22.27978],[114.20979,22.27982],[114.20982,22.27986],[114.20983,22.27992],[114.20983,22.27999],[114.20981,22.28006],[114.2098,22.28012],[114.20978,22.28016],[114.20976,22.2802],[114.20975,22.28021],[114.20973,22.28024],[114.20971,22.28026],[114.20966,22.2803],[114.20962,22.28032],[114.20959,22.28036],[114.20959,22.2804],[114.2096,22.28043],[114.20959,22.28049],[114.20956,22.28054],[114.20953,22.2806],[114.20951,22.28064],[114.20952,22.28067],[114.20956,22.2807],[114.20962,22.28074],[114.20967,22.28076],[114.20973,22.28078],[114.20978,22.2808],[114.20985,22.28081],[114.2099,22.28081],[114.20995,22.28083],[114.20998,22.28085],[114.20999,22.28089],[114.20999,22.28095],[114.20999,22.28102],[114.20997,22.28107],[114.20994,22.28115],[114.20993,22.28117],[114.20991,22.28119],[114.20987,22.28122],[114.20985,22.28124],[114.20984,22.28126],[114.20984,22.28128],[114.20985,22.28129],[114.20987,22.28132],[114.20989,22.28136],[114.2099,22.28138],[114.20967,22.282],[114.21001,22.28211],[114.20978,22.28239],[114.20975,22.28242],[114.20974,22.28246],[114.20973,22.28249],[114.20972,22.28251],[114.20974,22.28256],[114.20974,22.28261],[114.20973,22.28266],[114.2097,22.28271],[114.20967,22.28273],[114.20966,22.28276],[114.20966,22.28278],[114.20967,22.28281],[114.20968,22.28285],[114.20968,22.28289],[114.20966,22.28295],[114.20963,22.28299],[114.2096,22.28304],[114.20958,22.28312],[114.20957,22.2832],[114.20954,22.28327],[114.20953,22.28333],[114.20952,22.28339],[114.20951,22.28348],[114.20951,22.28353],[114.20951,22.2836],[114.20949,22.2836],[114.2093,22.28358],[114.20912,22.28358],[114.20888,22.2836],[114.20869,22.28362],[114.20849,22.28368],[114.20824,22.28379],[114.20812,22.28386],[114.20803,22.2839],[114.2078,22.28395],[114.20769,22.28394],[114.20765,22.28395],[114.20764,22.28396],[114.20765,22.284],[114.20772,22.28407],[114.20781,22.28412],[114.20785,22.28415],[114.20793,22.28416],[114.20812,22.28417],[114.20816,22.28417],[114.20819,22.2842],[114.20822,22.28424],[114.20822,22.28429],[114.20819,22.28433],[114.20815,22.28436],[114.20805,22.28442],[114.20799,22.28444],[114.20782,22.28448],[114.20778,22.28449],[114.20775,22.2845],[114.20774,22.28451],[114.20773,22.28453],[114.20773,22.28455],[114.20773,22.28461],[114.20776,22.28467],[114.2078,22.28473],[114.20784,22.28478],[114.20794,22.28499],[114.20792,22.28501],[114.2079,22.28501],[114.20787,22.285],[114.20782,22.285],[114.20776,22.28501],[114.20766,22.28503],[114.20761,22.28506],[114.20757,22.28511],[114.20754,22.2852],[114.20752,22.28529],[114.20752,22.28543]]]]},"properties":{"M_NM_Eng":"Metro","SR_Eng":"Metro","PDD_Cat_En":"Hong Kong Island","PDD_Eng":"Southern","M_NM_Tc":"都會區","SR_Tc":"都會區","PDD_Cat_Tc":"香港島","PDD_Tc":"南區","M_NM_Sc":"都会区","SR_Sc_1":"都会区","PDD_Cat_Sc":"香港岛","PDD_Sc":"南区","Y2019_Popu":273150,"Y2019_Empl":114900,"Y2026_Popu":268700,"Y2026_Empl":119500,"Y2031_Popu":282400,"Y2031_Empl":116300}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[114.20067,22.45935],[114.20077,22.45973],[114.20091,22.45976],[114.20098,22.45991],[114.20102,22.45999],[114.20105,22.46011],[114.20115,22.46032],[114.20119,22.46037],[114.20084,22.46052],[114.20098,22.4612],[114.20098,22.4612],[114.20096,22.46121],[114.20093,22.46121],[114.2009,22.46122],[114.20088,22.46122],[114.20086,22.46122],[114.20081,22.46123],[114.20079,22.46123],[114.20076,22.46123],[114.20074,22.46123],[114.20067,22.46124],[114.20064,22.46124],[114.20062,22.46125],[114.20059,22.46126],[114.20058,22.46126],[114.20057,22.46127],[114.20055,22.46128],[114.20054,22.46129],[114.20053,22.46129],[114.20052,22.4613],[114.2005,22.46131],[114.20048,22.46131],[114.20046,22.46132],[114.20045,22.46132],[114.20041,22.46134],[114.20041,22.46134],[114.20037,22.46135],[114.20033,22.46136],[114.2003,22.46137],[114.20028,22.46137],[114.20026,22.46138],[114.20024,22.46138],[114.20021,22.46139],[114.20016,22.46139],[114.20014,22.46139],[114.20011,22.46138],[114.20011,22.46139],[114.20011,22.46139],[114.20011,22.4614],[114.20007,22.46146],[114.20006,22.46148],[114.20005,22.4615],[114.20004,22.46151],[114.20003,22.46152],[114.20002,22.46155],[114.20001,22.46158],[114.2,22.46161],[114.19997,22.4617],[114.19997,22.4617],[114.19996,22.46174],[114.19995,22.46175],[114.19994,22.46177],[114.19994,22.46177],[114.19992,22.46178],[114.19991,22.4618],[114.1999,22.4618],[114.19989,22.4618],[114.19989,22.46181],[114.19988,22.46181],[114.19986,22.46181],[114.19986,22.46181],[114.19985,22.46181],[114.19984,22.46181],[114.1998,22.4618],[114.19977,22.4618],[114.19974,22.46179],[114.19971,22.46179],[114.19969,22.46179],[114.19966,22.46179],[114.19964,22.46178],[114.19957,22.4618],[114.1995,22.46181],[114.19946,22.46181],[114.1994,22.46181],[114.19937,22.46181],[114.19935,22.46181],[114.19932,22.46181],[114.1993,22.46181],[114.19929,22.46181],[114.19926,22.46181],[114.19925,22.46182],[114.19925,22.46182],[114.19924,22.46183],[114.19923,22.46184],[114.19922,22.46184],[114.19921,22.46184],[114.1992,22.46184],[114.19919,22.46184],[114.19918,22.46184],[114.19918,22.46185],[114.19917,22.46185],[114.19917,22.46186],[114.19916,22.46186],[114.19916,22.46187],[114.19915,22.46187],[114.19915,22.46189],[114.19914,22.46193],[114.19913,22.46196],[114.19912,22.46197],[114.19911,22.46199],[114.19902,22.46208],[114.19894,22.46216],[114.19893,22.46217],[114.19892,22.46218],[114.19892,22.46218],[114.19891,22.46221],[114.1989,22.46224],[114.19889,22.46227],[114.19888,22.4623],[114.19887,22.46232],[114.19886,22.46232],[114.19885,22.46235],[114.19883,22.46236],[114.19883,22.46236],[114.19882,22.46236],[114.1988,22.46237],[114.19879,22.46237],[114.19878,22.46237],[114.19876,22.46238],[114.19875,22.46238],[114.19871,22.46241],[114.19866,22.46243],[114.19865,22.46244],[114.19864,22.46246],[114.19864,22.46246],[114.19864,22.46248],[114.19864,22.46248],[114.19864,22.4625],[114.19863,22.46254],[114.19863,22.46255],[114.19863,22.46255],[114.19862,22.46257],[114.19862,22.46258],[114.19861,22.4626],[114.19859,22.46264],[114.19858,22.46265],[114.19856,22.4627],[114.19853,22.46274],[114.1985,22.46279],[114.19849,22.46281],[114.19849,22.46282],[114.19849,22.46283],[114.19849,22.46283],[114.19848,22.46284],[114.19848,22.46284],[114.19848,22.46285],[114.19848,22.46286],[114.19848,22.46287],[114.19848,22.46287],[114.19848,22.46288],[114.19849,22.46289],[114.19849,22.4629],[114.19849,22.46291],[114.1985,22.46293],[114.19851,22.46294],[114.19851,22.46294],[114.19852,22.46296],[114.19853,22.46297],[114.19854,22.46297],[114.19855,22.46298],[114.19856,22.46299],[114.19859,22.46301],[114.1986,22.46302],[114.19861,22.46303],[114.19862,22.46304],[114.19863,22.46305],[114.19863,22.46305],[114.19863,22.46305],[114.19863,22.46306],[114.19863,22.46307],[114.19863,22.46308],[114.19863,22.4631],[114.19863,22.46313],[114.19862,22.46315],[114.19862,22.46317],[114.19862,22.4632],[114.19862,22.4632],[114.19862,22.46321],[114.19863,22.46326],[114.19863,22.46327],[114.19863,22.46327],[114.19864,22.46333],[114.19865,22.46336],[114.19865,22.46337],[114.19865,22.46338],[114.19865,22.46339],[114.19864,22.46339],[114.19864,22.46341],[114.19863,22.46343],[114.19863,22.46344],[114.19862,22.46344],[114.19861,22.46345],[114.19861,22.46346],[114.19861,22.46346],[114.1986,22.46346],[114.19858,22.46347],[114.19857,22.46348],[114.19854,22.46349],[114.19843,22.46352],[114.19837,22.46354],[114.1983,22.46357],[114.19816,22.46363],[114.19812,22.46364],[114.1981,22.46363],[114.19808,22.46362],[114.19805,22.46359],[114.19804,22.46355],[114.19804,22.46349],[114.19804,22.46342],[114.19802,22.46338],[114.19796,22.46328],[114.19796,22.46328],[114.19795,22.46326],[114.19793,22.46325],[114.19791,22.46322],[114.19788,22.4632],[114.19785,22.46317],[114.19782,22.46315],[114.19779,22.46313],[114.19775,22.46311],[114.19774,22.4631],[114.19772,22.4631],[114.1977,22.46309],[114.19768,22.46309],[114.19764,22.46308],[114.19758,22.46308],[114.19756,22.46308],[114.19754,22.46308],[114.19749,22.46308],[114.19747,22.46308],[114.19745,22.46308],[114.19743,22.46308],[114.19739,22.46307],[114.19732,22.46306],[114.19729,22.46306],[114.19715,22.46302],[114.19697,22.46298],[114.19685,22.463],[114.1968,22.46306],[114.19674,22.4631],[114.19672,22.46316],[114.19671,22.46324],[114.19665,22.46338],[114.19663,22.46341],[114.19652,22.46347],[114.19647,22.46349],[114.19637,22.46354],[114.19632,22.46363],[114.19626,22.46378],[114.19626,22.46384],[114.19631,22.46403],[114.19636,22.46407],[114.19645,22.46419],[114.19645,22.4642],[114.19644,22.46421],[114.19635,22.46429],[114.1963,22.46434],[114.19631,22.46441],[114.1963,22.46441],[114.19631,22.46446],[114.19633,22.46449],[114.19633,22.4645],[114.19635,22.46452],[114.19632,22.46465],[114.1964,22.46479],[114.19641,22.4648],[114.19648,22.46482],[114.19657,22.46484],[114.19659,22.46484],[114.19662,22.46487],[114.19663,22.46492],[114.19663,22.46493],[114.19663,22.46495],[114.19661,22.46505],[114.1966,22.46508],[114.19655,22.4652],[114.19654,22.46522],[114.19654,22.46525],[114.19653,22.46532],[114.19655,22.46542],[114.19657,22.4655],[114.19653,22.46565],[114.19646,22.46565],[114.19645,22.46564],[114.19642,22.46563],[114.1964,22.4656],[114.19639,22.46558],[114.19635,22.46548],[114.19634,22.46546],[114.19631,22.46542],[114.19627,22.46538],[114.19625,22.46536],[114.1962,22.46534],[114.19618,22.46532],[114.19615,22.46531],[114.1959,22.46528],[114.19584,22.46532],[114.19583,22.46546],[114.19582,22.46547],[114.19581,22.46547],[114.19581,22.46549],[114.19582,22.46551],[114.19582,22.46553],[114.19582,22.4656],[114.19581,22.46565],[114.1958,22.46569],[114.19578,22.46572],[114.19577,22.46574],[114.19577,22.46575],[114.19577,22.46576],[114.19576,22.46576],[114.19572,22.46577],[114.19569,22.46576],[114.19567,22.46576],[114.19566,22.46576],[114.19562,22.46574],[114.19559,22.46574],[114.19558,22.46574],[114.19558,22.46574],[114.19563,22.46589],[114.19563,22.4659],[114.19563,22.46591],[114.19563,22.46592],[114.19563,22.46593],[114.19563,22.46598],[114.19561,22.46606],[114.19558,22.46619],[114.19555,22.46631],[114.19555,22.46632],[114.19555,22.46633],[114.19555,22.46633],[114.19555,22.46633],[114.19551,22.46638],[114.19549,22.46641],[114.19537,22.46653],[114.19532,22.4666],[114.1953,22.46665],[114.19529,22.46671],[114.19528,22.46676],[114.19528,22.46677],[114.19528,22.46678],[114.19528,22.46678],[114.19529,22.46681],[114.1953,22.46682],[114.19532,22.46684],[114.19538,22.46687],[114.1954,22.46689],[114.19542,22.46692],[114.19542,22.46693],[114.19543,22.46695],[114.19543,22.46698],[114.19544,22.467],[114.19544,22.467],[114.19545,22.46701],[114.19548,22.46704],[114.19548,22.46704],[114.19549,22.46705],[114.19546,22.46705],[114.19545,22.46705],[114.19543,22.46705],[114.19542,22.46705],[114.19541,22.46706],[114.19539,22.46706],[114.19535,22.46708],[114.19536,22.46715],[114.19532,22.46721],[114.19531,22.46721],[114.19531,22.46721],[114.1953,22.46722],[114.1953,22.46723],[114.19528,22.46726],[114.19527,22.46728],[114.19527,22.46728],[114.19527,22.46729],[114.19526,22.46729],[114.19521,22.46731],[114.19518,22.46733],[114.19516,22.46734],[114.19514,22.46734],[114.19514,22.46734],[114.1951,22.46735],[114.19509,22.46736],[114.19508,22.46736],[114.19508,22.46736],[114.19507,22.46737],[114.19507,22.46737],[114.19506,22.46737],[114.19503,22.46736],[114.195,22.46739],[114.195,22.4674],[114.19499,22.4674],[114.19499,22.46741],[114.19499,22.46742],[114.19498,22.46743],[114.195,22.46746],[114.19501,22.46751],[114.195,22.46752],[114.195,22.46754],[114.19499,22.46758],[114.19496,22.46763],[114.19493,22.46767],[114.19493,22.46768],[114.19493,22.46768],[114.19493,22.46768],[114.19493,22.46769],[114.19494,22.4677],[114.195,22.46773],[114.19501,22.46775],[114.19501,22.46776],[114.19501,22.46776],[114.19501,22.46777],[114.19501,22.46777],[114.195,22.4678],[114.19498,22.46783],[114.19498,22.46784],[114.19496,22.46786],[114.19496,22.46786],[114.19494,22.4679],[114.19492,22.46792],[114.19487,22.46796],[114.19485,22.46798],[114.19481,22.46805],[114.1948,22.46807],[114.19481,22.4681],[114.19481,22.46811],[114.19484,22.46811],[114.19505,22.46816],[114.19525,22.46804],[114.19543,22.46798],[114.19573,22.46767],[114.19589,22.46766],[114.19594,22.46774],[114.19587,22.46796],[114.19586,22.46819],[114.19587,22.46819],[114.19588,22.4682],[114.19588,22.4682],[114.1959,22.46822],[114.19591,22.46826],[114.19592,22.46827],[114.19592,22.46828],[114.19595,22.46831],[114.19603,22.46836],[114.19606,22.46838],[114.19607,22.46839],[114.19608,22.46839],[114.19609,22.46841],[114.19615,22.4685],[114.19619,22.46855],[114.19619,22.46856],[114.1962,22.46858],[114.19622,22.46862],[114.19625,22.4687],[114.19626,22.46874],[114.19627,22.4688],[114.19629,22.46887],[114.19629,22.46896],[114.19629,22.46897],[114.19629,22.46898],[114.1963,22.469],[114.19631,22.469],[114.19632,22.46901],[114.19637,22.46903],[114.19637,22.46903],[114.19639,22.46904],[114.1964,22.46906],[114.1964,22.46907],[114.1964,22.46907],[114.19641,22.46908],[114.19641,22.46908],[114.19641,22.4691],[114.1964,22.46913],[114.1964,22.46913],[114.1964,22.46914],[114.1964,22.46915],[114.19641,22.46919],[114.19642,22.46923],[114.19643,22.46924],[114.19643,22.46925],[114.19643,22.46926],[114.19642,22.46927],[114.19641,22.46928],[114.19641,22.46928],[114.1964,22.46929],[114.1964,22.46933],[114.1964,22.46934],[114.19639,22.46935],[114.19639,22.46935],[114.19639,22.46936],[114.19639,22.46938],[114.19642,22.46942],[114.19669,22.46962],[114.19694,22.46985],[114.19737,22.47014],[114.19738,22.47016],[114.19738,22.47016],[114.19745,22.47025],[114.19756,22.47036],[114.19756,22.47036],[114.19757,22.47038],[114.19759,22.47039],[114.19759,22.47039],[114.19762,22.47041],[114.1977,22.47048],[114.19777,22.47053],[114.19781,22.4706],[114.19782,22.47068],[114.19782,22.47069],[114.19782,22.47079],[114.19775,22.47091],[114.19768,22.47099],[114.1976,22.4711],[114.19752,22.47119],[114.19744,22.47123],[114.19731,22.47124],[114.19717,22.47122],[114.19698,22.47113],[114.19673,22.47103],[114.19653,22.47104],[114.19623,22.47111],[114.1961,22.47121],[114.19581,22.4715],[114.19544,22.47164],[114.19486,22.47193],[114.1947,22.47205],[114.19468,22.47206],[114.19468,22.47206],[114.19466,22.47206],[114.19464,22.47206],[114.19462,22.47206],[114.1946,22.47206],[114.19458,22.47207],[114.19456,22.47207],[114.19455,22.47208],[114.19453,22.4721],[114.19452,22.47211],[114.19451,22.47213],[114.1945,22.47214],[114.1945,22.47216],[114.1945,22.47218],[114.1945,22.47219],[114.1945,22.4722],[114.19451,22.47221],[114.19451,22.47223],[114.19452,22.47225],[114.19453,22.47226],[114.19454,22.47228],[114.19456,22.47229],[114.19457,22.4723],[114.19459,22.47231],[114.1946,22.47232],[114.19464,22.47234],[114.19465,22.47235],[114.19471,22.47237],[114.19472,22.47238],[114.19474,22.47239],[114.19477,22.47241],[114.1948,22.47244],[114.19482,22.47245],[114.19484,22.47247],[114.19486,22.47249],[114.19487,22.4725],[114.19488,22.47252],[114.19488,22.47254],[114.1949,22.47257],[114.19493,22.47264],[114.19493,22.47265],[114.19494,22.47267],[114.19494,22.47269],[114.19494,22.47271],[114.19494,22.47276],[114.19494,22.47278],[114.19495,22.47298],[114.19495,22.47301],[114.19495,22.47303],[114.19496,22.47307],[114.19496,22.47309],[114.19497,22.4731],[114.19498,22.47312],[114.19499,22.47314],[114.195,22.47315],[114.19501,22.47316],[114.19503,22.47318],[114.19504,22.47318],[114.19506,22.47319],[114.19508,22.4732],[114.19509,22.4732],[114.19508,22.47322],[114.19508,22.47323],[114.19505,22.47323],[114.195,22.47322],[114.19488,22.4732],[114.19483,22.47319],[114.19473,22.47317],[114.19469,22.47317],[114.19465,22.47316],[114.19463,22.47316],[114.19459,22.47316],[114.19456,22.47316],[114.19452,22.47316],[114.19446,22.47316],[114.19434,22.47317],[114.19428,22.47317],[114.19423,22.47319],[114.19412,22.47322],[114.19407,22.47324],[114.19401,22.47326],[114.19398,22.47327],[114.19396,22.47328],[114.19394,22.47329],[114.19393,22.4733],[114.1939,22.47332],[114.19381,22.4734],[114.19377,22.47343],[114.19368,22.4735],[114.19364,22.47354],[114.19359,22.47357],[114.19356,22.47359],[114.19351,22.47362],[114.19348,22.47364],[114.19343,22.47367],[114.1934,22.47369],[114.19334,22.47372],[114.19331,22.47374],[114.19326,22.47376],[114.19317,22.4738],[114.19292,22.47391],[114.19287,22.47393],[114.19281,22.47395],[114.19278,22.47396],[114.19274,22.47397],[114.1927,22.47397],[114.19265,22.47399],[114.19259,22.47399],[114.19255,22.474],[114.19247,22.47401],[114.19239,22.47401],[114.19234,22.47402],[114.19226,22.47402],[114.1922,22.47402],[114.19214,22.47401],[114.19208,22.47401],[114.19204,22.474],[114.19199,22.47399],[114.19193,22.47398],[114.19187,22.47397],[114.19169,22.47392],[114.19161,22.47389],[114.19145,22.47384],[114.19138,22.47381],[114.19126,22.47378],[114.19115,22.47375],[114.1911,22.47374],[114.19104,22.47372],[114.19093,22.4737],[114.19079,22.47367],[114.19068,22.47366],[114.19056,22.47364],[114.19052,22.47363],[114.19047,22.47363],[114.19017,22.47361],[114.18998,22.4736],[114.18992,22.4736],[114.18986,22.47359],[114.18977,22.47358],[114.18967,22.47357],[114.1896,22.47356],[114.18952,22.47354],[114.18944,22.47353],[114.18935,22.47351],[114.18926,22.47348],[114.18918,22.47346],[114.18911,22.47344],[114.18903,22.47341],[114.18896,22.47338],[114.18889,22.47335],[114.18882,22.47332],[114.18875,22.47328],[114.18869,22.47325],[114.1886,22.4732],[114.18852,22.47315],[114.18846,22.47311],[114.1884,22.47306],[114.18834,22.47302],[114.18829,22.47298],[114.18825,22.47294],[114.18821,22.4729],[114.18816,22.47285],[114.18811,22.47279],[114.18805,22.47272],[114.18797,22.47262],[114.18791,22.47255],[114.18788,22.4725],[114.18784,22.47244],[114.18779,22.47238],[114.18775,22.47232],[114.18773,22.47229],[114.18772,22.47226],[114.18766,22.47214],[114.18763,22.4721],[114.18761,22.47206],[114.1876,22.47205],[114.18758,22.47202],[114.18756,22.47199],[114.18753,22.47196],[114.18751,22.47193],[114.18748,22.47191],[114.18745,22.47188],[114.18742,22.47186],[114.18741,22.47185],[114.18739,22.47184],[114.18736,22.47182],[114.18733,22.4718],[114.18729,22.47178],[114.18725,22.47177],[114.18723,22.47176],[114.1872,22.47175],[114.18717,22.47175],[114.18714,22.47174],[114.18709,22.47173],[114.18703,22.47171],[114.18697,22.4717],[114.18691,22.4717],[114.18684,22.47168],[114.18663,22.47166],[114.18645,22.47164],[114.18593,22.47158],[114.18528,22.4715],[114.18511,22.47148],[114.18494,22.47146],[114.18482,22.47145],[114.18472,22.47144],[114.18465,22.47144],[114.18461,22.47144],[114.18457,22.47144],[114.18453,22.47144],[114.18449,22.47145],[114.18445,22.47145],[114.18441,22.47146],[114.18438,22.47146],[114.18434,22.47147],[114.1843,22.47148],[114.18424,22.4715],[114.18421,22.47151],[114.18415,22.47153],[114.1841,22.47155],[114.18404,22.47157],[114.18399,22.47159],[114.18394,22.47161],[114.1839,22.47163],[114.18385,22.47165],[114.18378,22.47169],[114.1837,22.47173],[114.18367,22.47175],[114.18363,22.47177],[114.18357,22.47182],[114.18354,22.47184],[114.1835,22.47187],[114.18342,22.47193],[114.18338,22.47197],[114.18335,22.472],[114.18327,22.47208],[114.18324,22.47211],[114.18322,22.47215],[114.1832,22.47222],[114.18315,22.47232],[114.18308,22.47247],[114.18304,22.47256],[114.18303,22.47258],[114.18298,22.47266],[114.18298,22.47267],[114.18294,22.47271],[114.18288,22.47277],[114.18279,22.47286],[114.18264,22.47299],[114.18264,22.47299],[114.18259,22.47303],[114.18258,22.47305],[114.18257,22.47305],[114.18255,22.47307],[114.18253,22.47309],[114.18251,22.4731],[114.18246,22.47315],[114.18236,22.47324],[114.18228,22.47332],[114.18218,22.47341],[114.18209,22.47349],[114.18199,22.47359],[114.18189,22.47366],[114.18186,22.47368],[114.18131,22.47391],[114.18122,22.47394],[114.18113,22.47398],[114.18108,22.474],[114.181,22.47402],[114.18095,22.47403],[114.18089,22.47405],[114.18085,22.47406],[114.18082,22.47406],[114.18076,22.47407],[114.18068,22.47408],[114.18064,22.47408],[114.18054,22.47408],[114.18051,22.47408],[114.18047,22.47409],[114.18043,22.4741],[114.18041,22.4741],[114.18037,22.47411],[114.1803,22.47414],[114.18027,22.47415],[114.18018,22.47419],[114.18014,22.47421],[114.17998,22.47427],[114.17993,22.4743],[114.17989,22.47431],[114.17986,22.47432],[114.1798,22.47434],[114.17972,22.47435],[114.17969,22.47436],[114.17965,22.47437],[114.17959,22.47438],[114.17955,22.47438],[114.17953,22.47438],[114.17951,22.47438],[114.17947,22.47437],[114.17944,22.47437],[114.1794,22.47436],[114.17924,22.47433],[114.17909,22.4743],[114.1789,22.47426],[114.17883,22.47424],[114.17864,22.47419],[114.17857,22.47418],[114.17851,22.47416],[114.17847,22.47416],[114.17845,22.47416],[114.17841,22.47415],[114.17839,22.47415],[114.17835,22.47415],[114.17833,22.47416],[114.17831,22.47416],[114.1783,22.47416],[114.17826,22.47417],[114.17822,22.47418],[114.1782,22.47419],[114.17818,22.47419],[114.17815,22.47421],[114.17808,22.47425],[114.17793,22.47441],[114.17789,22.47445],[114.17783,22.47452],[114.17781,22.47455],[114.17778,22.47457],[114.17775,22.4746],[114.17772,22.47462],[114.17771,22.47463],[114.17769,22.47464],[114.17767,22.47465],[114.17765,22.47466],[114.17763,22.47466],[114.17762,22.47466],[114.1776,22.47466],[114.17757,22.47466],[114.17756,22.47465],[114.17754,22.47465],[114.17752,22.47464],[114.1775,22.47463],[114.17749,22.47462],[114.17747,22.47461],[114.17746,22.47459],[114.17744,22.47458],[114.17741,22.47454],[114.17739,22.47452],[114.17737,22.47449],[114.17733,22.47443],[114.17731,22.4744],[114.17729,22.47439],[114.17728,22.47438],[114.17727,22.47437],[114.17725,22.47435],[114.17723,22.47435],[114.17722,22.47434],[114.1772,22.47433],[114.17718,22.47432],[114.17716,22.47432],[114.17712,22.47431],[114.17711,22.4743],[114.17709,22.4743],[114.17705,22.4743],[114.17703,22.47429],[114.17699,22.47429],[114.17693,22.4743],[114.17689,22.4743],[114.17685,22.4743],[114.17674,22.47432],[114.1767,22.47433],[114.17668,22.47433],[114.17662,22.47433],[114.17656,22.47433],[114.17652,22.47433],[114.17648,22.47433],[114.17643,22.47433],[114.17639,22.47432],[114.17637,22.47432],[114.17633,22.47431],[114.17628,22.47429],[114.17622,22.47428],[114.17615,22.47425],[114.17608,22.47422],[114.17601,22.47418],[114.17594,22.47415],[114.17581,22.47408],[114.1753,22.47381],[114.17508,22.4737],[114.17499,22.47365],[114.17492,22.47362],[114.17489,22.47361],[114.17487,22.4736],[114.17485,22.47359],[114.17483,22.47359],[114.17481,22.47359],[114.17477,22.47358],[114.17473,22.47358],[114.1747,22.47358],[114.17466,22.47358],[114.17452,22.47359],[114.17437,22.4736],[114.17431,22.4736],[114.17425,22.47361],[114.17419,22.47362],[114.17412,22.47363],[114.17402,22.47365],[114.17358,22.47374],[114.17347,22.47376],[114.17336,22.47379],[114.17315,22.47384],[114.173,22.47388],[114.17287,22.47391],[114.17276,22.47395],[114.17267,22.47398],[114.17261,22.474],[114.17254,22.47403],[114.17215,22.47418],[114.17201,22.47424],[114.1719,22.47429],[114.17185,22.47431],[114.17178,22.47435],[114.17166,22.47441],[114.17149,22.4745],[114.17141,22.47455],[114.17134,22.47458],[114.17123,22.47465],[114.17117,22.47469],[114.17112,22.47472],[114.17107,22.47475],[114.17104,22.47478],[114.17099,22.47481],[114.17096,22.47483],[114.17094,22.47486],[114.1709,22.4749],[114.17087,22.47492],[114.17083,22.47497],[114.17081,22.475],[114.17079,22.47503],[114.17077,22.47506],[114.17074,22.47511],[114.17071,22.47519],[114.17067,22.47529],[114.17037,22.47608],[114.17032,22.47621],[114.16986,22.47566],[114.16973,22.47551],[114.16962,22.47537],[114.16959,22.47533],[114.16956,22.47529],[114.16953,22.47524],[114.16951,22.47521],[114.16949,22.47518],[114.16946,22.47513],[114.16944,22.47508],[114.16942,22.47504],[114.1694,22.47499],[114.16939,22.47496],[114.16938,22.47492],[114.16937,22.47487],[114.16936,22.47482],[114.16935,22.47476],[114.16935,22.47471],[114.16935,22.47466],[114.16935,22.4746],[114.16935,22.47455],[114.16936,22.47448],[114.16937,22.47437],[114.16938,22.4743],[114.1694,22.47415],[114.16941,22.47408],[114.16941,22.47404],[114.16941,22.47401],[114.16941,22.47397],[114.16941,22.47394],[114.16941,22.4739],[114.1694,22.47385],[114.16939,22.47379],[114.16938,22.47372],[114.16937,22.47367],[114.16936,22.47361],[114.16934,22.47356],[114.16933,22.47351],[114.16931,22.47346],[114.16929,22.47339],[114.16926,22.47334],[114.16923,22.47327],[114.16919,22.47319],[114.16915,22.47311],[114.16912,22.47304],[114.16908,22.47298],[114.16904,22.47292],[114.169,22.47285],[114.16896,22.47279],[114.16893,22.47275],[114.16889,22.47269],[114.16876,22.47251],[114.16866,22.47237],[114.16863,22.47233],[114.16861,22.4723],[114.16859,22.47227],[114.16857,22.47223],[114.16856,22.4722],[114.16855,22.47216],[114.16855,22.47213],[114.16854,22.47209],[114.16854,22.47205],[114.16855,22.47202],[114.16855,22.47196],[114.16856,22.47193],[114.16857,22.47189],[114.16857,22.47188],[114.16858,22.47184],[114.16863,22.47172],[114.16865,22.47165],[114.16872,22.4715],[114.16875,22.47142],[114.16881,22.47124],[114.16884,22.47116],[114.16887,22.47107],[114.1689,22.47099],[114.16891,22.47092],[114.16893,22.47083],[114.16894,22.47077],[114.16895,22.47072],[114.16897,22.47061],[114.16898,22.47049],[114.16899,22.4704],[114.169,22.47031],[114.169,22.47023],[114.169,22.47016],[114.16899,22.47013],[114.16899,22.47009],[114.16898,22.47005],[114.16897,22.47],[114.16896,22.46995],[114.16895,22.4699],[114.16893,22.46983],[114.1689,22.46974],[114.16887,22.46965],[114.16885,22.46958],[114.16882,22.46951],[114.1688,22.46946],[114.16875,22.46933],[114.16871,22.46925],[114.16868,22.46918],[114.16865,22.46911],[114.16862,22.46905],[114.16858,22.46898],[114.16855,22.46892],[114.16851,22.46884],[114.16846,22.46876],[114.16841,22.46868],[114.16837,22.4686],[114.16832,22.46852],[114.16828,22.46846],[114.16822,22.46836],[114.16818,22.4683],[114.16812,22.46823],[114.16803,22.46811],[114.16798,22.46806],[114.16793,22.468],[114.16775,22.46781],[114.1677,22.46776],[114.16758,22.46764],[114.16754,22.4676],[114.1675,22.46756],[114.16748,22.46753],[114.16746,22.4675],[114.1674,22.46743],[114.16735,22.46735],[114.1673,22.46727],[114.16724,22.46718],[114.1672,22.46712],[114.16717,22.46707],[114.16715,22.46702],[114.16712,22.46697],[114.16707,22.46687],[114.16696,22.46664],[114.16691,22.46653],[114.16675,22.46618],[114.16669,22.46602],[114.16666,22.46597],[114.16664,22.46593],[114.16662,22.46589],[114.16661,22.46586],[114.16659,22.46583],[114.16656,22.4658],[114.16655,22.46578],[114.16653,22.46576],[114.16651,22.46574],[114.1665,22.46573],[114.16647,22.46571],[114.16643,22.46569],[114.1664,22.46567],[114.16626,22.46561],[114.16608,22.46551],[114.16601,22.46547],[114.16591,22.46542],[114.16582,22.46538],[114.16573,22.46535],[114.16564,22.46531],[114.16537,22.46521],[114.16515,22.46513],[114.16506,22.4651],[114.16499,22.46507],[114.16492,22.46504],[114.16483,22.465],[114.16459,22.46489],[114.16452,22.46486],[114.16448,22.46484],[114.16449,22.46476],[114.16449,22.46473],[114.1645,22.4647],[114.16451,22.46468],[114.16453,22.46466],[114.16455,22.46461],[114.16457,22.46453],[114.16457,22.4645],[114.16459,22.46447],[114.16459,22.46443],[114.16459,22.46442],[114.1646,22.46441],[114.16463,22.46437],[114.16464,22.46436],[114.16464,22.46435],[114.16464,22.46433],[114.16462,22.46432],[114.16463,22.4643],[114.16463,22.46428],[114.16462,22.46426],[114.16463,22.46424],[114.16464,22.46421],[114.16465,22.4642],[114.16466,22.46419],[114.16469,22.46419],[114.1647,22.46418],[114.1647,22.46416],[114.16469,22.46413],[114.16468,22.4641],[114.16466,22.46407],[114.16467,22.46405],[114.16468,22.46402],[114.16468,22.46399],[114.16468,22.46392],[114.1647,22.4638],[114.16471,22.46378],[114.1647,22.46375],[114.16467,22.46369],[114.16466,22.46366],[114.16465,22.46359],[114.16464,22.46349],[114.16464,22.46346],[114.16456,22.46321],[114.16457,22.46304],[114.16473,22.46278],[114.16474,22.46262],[114.16475,22.46246],[114.16485,22.46216],[114.1649,22.46184],[114.16494,22.46154],[114.16507,22.46121],[114.1651,22.46096],[114.16504,22.46052],[114.16503,22.46026],[114.16515,22.45982],[114.16517,22.45973],[114.16507,22.45946],[114.16502,22.45916],[114.16506,22.45869],[114.165,22.45821],[114.16471,22.4573],[114.16463,22.45695],[114.16454,22.45673],[114.16441,22.45648],[114.16439,22.45645],[114.16431,22.45649],[114.16427,22.4565],[114.1642,22.45653],[114.16416,22.45654],[114.16415,22.45655],[114.16413,22.45656],[114.1641,22.45658],[114.16403,22.45664],[114.16389,22.45675],[114.16354,22.45704],[114.16341,22.45718],[114.1634,22.45719],[114.16337,22.45721],[114.16332,22.45722],[114.16329,22.45722],[114.16328,22.45722],[114.16326,22.45723],[114.16324,22.45723],[114.16322,22.45723],[114.16321,22.45723],[114.16319,22.45722],[114.16317,22.45722],[114.16315,22.4572],[114.16314,22.45719],[114.16313,22.45717],[114.16313,22.45716],[114.16312,22.4571],[114.16311,22.45703],[114.1631,22.45699],[114.16309,22.45696],[114.16299,22.45697],[114.16298,22.45672],[114.16297,22.4567],[114.16294,22.45667],[114.16291,22.45662],[114.16288,22.4566],[114.16284,22.45656],[114.16278,22.45651],[114.16274,22.45647],[114.16271,22.45645],[114.16269,22.45644],[114.16266,22.45642],[114.16264,22.45641],[114.16261,22.4564],[114.16257,22.45638],[114.16254,22.45637],[114.16244,22.45636],[114.16235,22.45636],[114.1623,22.45636],[114.16224,22.45636],[114.16219,22.45635],[114.16216,22.45635],[114.16214,22.45634],[114.16211,22.45634],[114.16205,22.45632],[114.16202,22.45631],[114.16199,22.4563],[114.16196,22.45628],[114.16193,22.45627],[114.1619,22.45625],[114.16188,22.45623],[114.16185,22.45621],[114.16183,22.45619],[114.16181,22.45617],[114.16179,22.45615],[114.16177,22.45613],[114.16174,22.45611],[114.16172,22.4561],[114.16169,22.45608],[114.16164,22.45605],[114.1616,22.45603],[114.16155,22.45602],[114.16153,22.45601],[114.16149,22.456],[114.16146,22.45599],[114.16144,22.45599],[114.16136,22.45598],[114.16107,22.45597],[114.16067,22.45595],[114.16067,22.45622],[114.16064,22.45622],[114.16048,22.45629],[114.16028,22.45641],[114.15997,22.45642],[114.15984,22.45645],[114.15964,22.45656],[114.15944,22.45656],[114.15932,22.45658],[114.15913,22.4568],[114.15896,22.45682],[114.15869,22.45679],[114.15864,22.45692],[114.1587,22.45704],[114.15884,22.45717],[114.15889,22.45728],[114.15878,22.45738],[114.15861,22.45744],[114.15843,22.45762],[114.15828,22.45761],[114.15801,22.45768],[114.15781,22.4578],[114.15773,22.45778],[114.15772,22.45777],[114.15758,22.45776],[114.15746,22.45775],[114.15735,22.45775],[114.15733,22.45775],[114.15727,22.45775],[114.15724,22.45775],[114.15722,22.45775],[114.1572,22.45774],[114.15718,22.45774],[114.15716,22.45773],[114.15714,22.45773],[114.15712,22.45772],[114.15711,22.45771],[114.15709,22.4577],[114.15708,22.45769],[114.15707,22.45767],[114.15706,22.45765],[114.15705,22.45764],[114.15705,22.45762],[114.15705,22.4576],[114.15705,22.45758],[114.15705,22.45756],[114.15706,22.45754],[114.15707,22.45753],[114.15708,22.45752],[114.15708,22.45751],[114.15706,22.4575],[114.15706,22.45736],[114.15705,22.45724],[114.15711,22.45719],[114.15709,22.45712],[114.15687,22.45701],[114.15679,22.45691],[114.15681,22.4568],[114.15691,22.45668],[114.15706,22.45656],[114.15724,22.45651],[114.15752,22.45631],[114.15762,22.45619],[114.15758,22.45615],[114.15742,22.45621],[114.15719,22.45612],[114.15697,22.45596],[114.15681,22.45584],[114.15676,22.4557],[114.15671,22.45553],[114.15666,22.45542],[114.15667,22.45519],[114.15638,22.45525],[114.15624,22.45526],[114.15604,22.45526],[114.15597,22.45527],[114.15594,22.45534],[114.15596,22.4555],[114.15605,22.45574],[114.15628,22.45598],[114.15639,22.45608],[114.15642,22.45619],[114.15637,22.45631],[114.15616,22.45645],[114.15578,22.45664],[114.15564,22.45665],[114.15554,22.45663],[114.15544,22.45654],[114.15537,22.45633],[114.15526,22.45628],[114.15497,22.45628],[114.15471,22.45629],[114.15458,22.45623],[114.15443,22.45609],[114.15428,22.45603],[114.15405,22.45615],[114.15385,22.4562],[114.15372,22.45619],[114.15359,22.45612],[114.15353,22.4559],[114.15339,22.45553],[114.15333,22.45557],[114.15265,22.45617],[114.15252,22.45631],[114.15241,22.45643],[114.15225,22.45661],[114.15188,22.45715],[114.15181,22.45725],[114.1518,22.45727],[114.15173,22.4574],[114.15169,22.45747],[114.15157,22.45767],[114.15136,22.45813],[114.1512,22.45861],[114.15109,22.45893],[114.15105,22.45903],[114.15093,22.45933],[114.1509,22.45939],[114.15035,22.45905],[114.15025,22.45899],[114.15017,22.45915],[114.15008,22.4593],[114.15002,22.45939],[114.14996,22.45946],[114.14987,22.45955],[114.14974,22.45963],[114.14955,22.45971],[114.1495,22.45972],[114.14942,22.45974],[114.14938,22.45974],[114.14938,22.45974],[114.14937,22.45974],[114.14935,22.45972],[114.14931,22.45968],[114.14928,22.45966],[114.14899,22.45958],[114.14891,22.45955],[114.14886,22.45954],[114.14885,22.45926],[114.14851,22.45928],[114.14813,22.45935],[114.14785,22.45944],[114.14766,22.45911],[114.14754,22.45889],[114.14764,22.45877],[114.14738,22.45831],[114.14721,22.45799],[114.14795,22.45571],[114.14871,22.45542],[114.14922,22.45404],[114.14928,22.45389],[114.14902,22.45387],[114.14869,22.45345],[114.14841,22.45312],[114.14824,22.45244],[114.14811,22.45194],[114.14846,22.45118],[114.14846,22.45076],[114.14837,22.45003],[114.14841,22.44864],[114.14786,22.44714],[114.14747,22.44603],[114.14729,22.44551],[114.14679,22.44495],[114.14613,22.44432],[114.14576,22.44401],[114.14537,22.44378],[114.14489,22.44354],[114.14463,22.44336],[114.14437,22.44313],[114.14407,22.44285],[114.14376,22.44251],[114.14363,22.44236],[114.14349,22.44216],[114.14341,22.44203],[114.14336,22.44191],[114.14327,22.44166],[114.1432,22.44134],[114.14318,22.44101],[114.14318,22.44082],[114.14322,22.44049],[114.14329,22.44022],[114.14336,22.44002],[114.14346,22.43983],[114.14348,22.43979],[114.14349,22.43977],[114.14353,22.43972],[114.14354,22.43971],[114.14358,22.43968],[114.14364,22.43965],[114.14371,22.43964],[114.14377,22.43965],[114.14385,22.43966],[114.14391,22.43967],[114.14398,22.43969],[114.14404,22.43969],[114.1441,22.43969],[114.14417,22.43969],[114.14425,22.43967],[114.14431,22.43965],[114.14438,22.43958],[114.14448,22.43942],[114.14453,22.43929],[114.14457,22.43923],[114.14461,22.43919],[114.14468,22.43913],[114.14478,22.43909],[114.14488,22.43907],[114.14495,22.43907],[114.14503,22.4391],[114.1451,22.43914],[114.14517,22.4392],[114.14521,22.43927],[114.14524,22.43935],[114.14527,22.4394],[114.14531,22.43944],[114.14536,22.43946],[114.14543,22.43946],[114.1455,22.43943],[114.14555,22.43939],[114.14575,22.43913],[114.14589,22.43893],[114.14596,22.43881],[114.14598,22.43874],[114.14598,22.43864],[114.14597,22.43857],[114.14593,22.43851],[114.14585,22.43843],[114.1457,22.4383],[114.14567,22.43824],[114.14566,22.43817],[114.14567,22.43809],[114.14571,22.43805],[114.14579,22.438],[114.14672,22.43754],[114.14684,22.43751],[114.14699,22.43754],[114.14707,22.43758],[114.14837,22.43832],[114.14867,22.43849],[114.1498,22.43912],[114.14994,22.43918],[114.15007,22.4392],[114.15027,22.4392],[114.15052,22.43917],[114.15072,22.43913],[114.15078,22.43911],[114.15084,22.43908],[114.1509,22.43905],[114.151,22.43896],[114.15105,22.43892],[114.15113,22.43886],[114.15116,22.43884],[114.15122,22.43881],[114.15127,22.4388],[114.15129,22.43879],[114.15135,22.43878],[114.15138,22.43878],[114.15144,22.43878],[114.15145,22.43878],[114.15148,22.43881],[114.15147,22.43879],[114.15147,22.43878],[114.15146,22.43878],[114.15145,22.43877],[114.15142,22.43873],[114.1514,22.43871],[114.1514,22.43871],[114.15136,22.43866],[114.15135,22.43865],[114.15133,22.43862],[114.15133,22.4386],[114.15132,22.43858],[114.15131,22.43854],[114.15131,22.43853],[114.15131,22.43849],[114.15133,22.43843],[114.15132,22.43841],[114.15131,22.43838],[114.1513,22.43835],[114.1513,22.43835],[114.15126,22.43831],[114.15125,22.4383],[114.15122,22.43829],[114.15119,22.43827],[114.15117,22.43826],[114.15109,22.43823],[114.15106,22.43822],[114.15101,22.4382],[114.151,22.43821],[114.15098,22.43821],[114.15098,22.43821],[114.15097,22.43821],[114.15095,22.4382],[114.1508,22.43816],[114.15079,22.43815],[114.15074,22.43815],[114.15074,22.43814],[114.15071,22.43814],[114.15069,22.43814],[114.15066,22.43812],[114.15056,22.43807],[114.15052,22.43804],[114.1505,22.43803],[114.15048,22.43801],[114.15036,22.4379],[114.15031,22.43787],[114.15026,22.43784],[114.15006,22.43777],[114.14996,22.43772],[114.14995,22.43771],[114.14994,22.4377],[114.14993,22.43769],[114.14992,22.43768],[114.14992,22.43766],[114.14991,22.43765],[114.14991,22.43764],[114.14992,22.43761],[114.14993,22.43758],[114.14994,22.43748],[114.14994,22.43734],[114.14991,22.43722],[114.1499,22.43719],[114.14988,22.43715],[114.14987,22.43712],[114.14986,22.43711],[114.14984,22.43708],[114.14983,22.43706],[114.14982,22.43705],[114.14981,22.43705],[114.14979,22.43703],[114.14978,22.43703],[114.14976,22.43702],[114.14971,22.43669],[114.14966,22.4364],[114.14959,22.43616],[114.14952,22.43594],[114.14913,22.43496],[114.14899,22.43446],[114.1488,22.43377],[114.14863,22.4329],[114.1485,22.43213],[114.14827,22.43125],[114.14812,22.43083],[114.14803,22.43059],[114.14787,22.43016],[114.14778,22.43],[114.14769,22.42983],[114.14753,22.4296],[114.14735,22.4295],[114.14723,22.42944],[114.14709,22.42933],[114.1469,22.4292],[114.14662,22.429],[114.14661,22.42899],[114.14625,22.42868],[114.14608,22.42848],[114.14592,22.42831],[114.14573,22.42808],[114.1456,22.42793],[114.14532,22.42759],[114.14516,22.42736],[114.14504,22.42721],[114.14467,22.42667],[114.14448,22.42636],[114.14427,22.42599],[114.14407,22.42554],[114.144,22.4254],[114.14386,22.42509],[114.14373,22.42481],[114.14337,22.42403],[114.14309,22.42323],[114.14279,22.4224],[114.14245,22.42141],[114.14209,22.42037],[114.14169,22.41912],[114.14133,22.41791],[114.14103,22.41701],[114.14102,22.41697],[114.141,22.41689],[114.14137,22.41659],[114.1417,22.41633],[114.14189,22.41616],[114.14224,22.41587],[114.14288,22.4156],[114.14349,22.41554],[114.14417,22.41562],[114.14454,22.4158],[114.14465,22.41585],[114.14499,22.41601],[114.14536,22.41618],[114.14565,22.41635],[114.14604,22.41658],[114.14644,22.41661],[114.14646,22.41661],[114.14682,22.41634],[114.14686,22.41595],[114.14681,22.41572],[114.14675,22.41546],[114.14675,22.41491],[114.14693,22.41439],[114.14694,22.41435],[114.14721,22.4138],[114.14718,22.41356],[114.14717,22.41337],[114.1471,22.413],[114.14703,22.41267],[114.14707,22.41231],[114.14725,22.41197],[114.14732,22.41196],[114.14758,22.41192],[114.14829,22.41212],[114.14866,22.41221],[114.14911,22.41233],[114.1495,22.41238],[114.15015,22.41244],[114.15125,22.41244],[114.15179,22.41242],[114.15224,22.41239],[114.15242,22.41238],[114.15311,22.41235],[114.15321,22.41238],[114.15393,22.41258],[114.15449,22.41271],[114.15462,22.41275],[114.15509,22.41287],[114.15541,22.41279],[114.15561,22.41267],[114.15598,22.41245],[114.15695,22.41206],[114.15726,22.41198],[114.1574,22.41196],[114.15778,22.41189],[114.15901,22.41185],[114.16002,22.41187],[114.16113,22.41198],[114.16231,22.41219],[114.16351,22.41243],[114.16486,22.41271],[114.16572,22.41287],[114.1675,22.41321],[114.16844,22.41344],[114.16971,22.41369],[114.17137,22.41402],[114.17346,22.41442],[114.17493,22.41469],[114.17502,22.41471],[114.18127,22.41588],[114.18275,22.41617],[114.18314,22.41626],[114.18382,22.4164],[114.18457,22.41659],[114.18482,22.41663],[114.18515,22.4167],[114.18522,22.41671],[114.18528,22.41672],[114.18791,22.41744],[114.18824,22.41754],[114.18877,22.41769],[114.18879,22.4177],[114.18884,22.41771],[114.18934,22.41786],[114.19,22.41805],[114.19159,22.41848],[114.19358,22.41902],[114.19358,22.41903],[114.19358,22.41904],[114.19358,22.41906],[114.19359,22.41908],[114.19359,22.4191],[114.19359,22.41912],[114.19359,22.41913],[114.1936,22.41915],[114.1936,22.41917],[114.1936,22.41919],[114.19361,22.4192],[114.19361,22.41922],[114.19361,22.41924],[114.19362,22.41926],[114.19362,22.41928],[114.19362,22.41929],[114.19362,22.41931],[114.19363,22.41933],[114.19363,22.41935],[114.19363,22.41937],[114.19364,22.41938],[114.19365,22.4194],[114.19365,22.41942],[114.19366,22.41943],[114.19367,22.41945],[114.19369,22.41946],[114.1937,22.41947],[114.19371,22.41949],[114.19372,22.4195],[114.19374,22.41952],[114.19375,22.41953],[114.19376,22.41955],[114.19377,22.41956],[114.19378,22.41957],[114.19379,22.41959],[114.19381,22.4196],[114.19382,22.41962],[114.19382,22.41963],[114.19384,22.41968],[114.19399,22.41999],[114.19399,22.42],[114.19399,22.42001],[114.19399,22.42003],[114.19399,22.42005],[114.194,22.42007],[114.194,22.42008],[114.19401,22.4201],[114.19402,22.42012],[114.19403,22.42013],[114.19404,22.42015],[114.19406,22.42016],[114.19407,22.42018],[114.19408,22.42019],[114.19409,22.4202],[114.1941,22.42022],[114.19412,22.42023],[114.19413,22.42025],[114.19414,22.42026],[114.19414,22.42026],[114.19417,22.42029],[114.19429,22.42046],[114.1943,22.42047],[114.19431,22.42049],[114.19433,22.4206],[114.19434,22.42065],[114.19435,22.42067],[114.19437,22.42069],[114.1944,22.42072],[114.19444,22.42074],[114.19448,22.42077],[114.19452,22.42079],[114.19461,22.42081],[114.19466,22.42082],[114.19501,22.42098],[114.19514,22.42108],[114.19525,22.42113],[114.19539,22.4212],[114.1955,22.42125],[114.19559,22.42127],[114.19572,22.42127],[114.19582,22.42126],[114.19583,22.42125],[114.19601,22.42131],[114.19596,22.42123],[114.19593,22.42111],[114.19592,22.42098],[114.19592,22.42087],[114.19594,22.42073],[114.19598,22.42055],[114.19603,22.42043],[114.19606,22.42031],[114.19606,22.4202],[114.1961,22.42013],[114.19612,22.4201],[114.19618,22.42004],[114.1962,22.42003],[114.19628,22.41993],[114.19636,22.41985],[114.19641,22.41981],[114.19644,22.4198],[114.19646,22.41978],[114.19651,22.41976],[114.19655,22.41974],[114.19659,22.41972],[114.19664,22.4197],[114.19672,22.41967],[114.19684,22.41965],[114.19698,22.41963],[114.19715,22.41961],[114.19745,22.41958],[114.19766,22.41955],[114.19812,22.41948],[114.19849,22.42025],[114.19912,22.42158],[114.19958,22.42133],[114.20014,22.42146],[114.20027,22.42217],[114.19998,22.42256],[114.20017,22.42306],[114.20034,22.42372],[114.20036,22.424],[114.20038,22.42426],[114.20095,22.42434],[114.20108,22.4246],[114.20156,22.42476],[114.20183,22.42519],[114.20229,22.42533],[114.20229,22.42533],[114.20229,22.42533],[114.20232,22.42505],[114.20199,22.42493],[114.20208,22.42447],[114.2022,22.42412],[114.20233,22.42382],[114.20251,22.42349],[114.20225,22.42298],[114.20245,22.42288],[114.20274,22.42339],[114.20296,22.4234],[114.20354,22.42288],[114.20327,22.42243],[114.20351,22.42231],[114.20371,22.42261],[114.20399,22.42256],[114.20332,22.42393],[114.20337,22.42413],[114.2036,22.42412],[114.20364,22.42432],[114.20341,22.42437],[114.20349,22.42472],[114.20376,22.42469],[114.20396,22.42508],[114.20431,22.42562],[114.20446,22.42584],[114.20504,22.42577],[114.20515,22.4253],[114.20543,22.42526],[114.20613,22.42576],[114.2062,22.42512],[114.2064,22.42507],[114.20651,22.42532],[114.2067,22.42526],[114.2068,22.42548],[114.20659,22.42558],[114.20671,22.42586],[114.20674,22.42591],[114.20694,22.42587],[114.20726,22.42662],[114.20729,22.42667],[114.20756,22.4265],[114.20873,22.42575],[114.20924,22.42542],[114.2097,22.42511],[114.2101,22.42484],[114.21043,22.42463],[114.21063,22.42449],[114.21078,22.42439],[114.21091,22.42429],[114.21111,22.42415],[114.21127,22.42402],[114.21141,22.4239],[114.21152,22.4238],[114.21168,22.42366],[114.21181,22.42353],[114.21186,22.42348],[114.21212,22.42323],[114.2123,22.42303],[114.21236,22.42295],[114.21239,22.42291],[114.21253,22.42274],[114.21304,22.42284],[114.21306,22.42284],[114.21308,22.42285],[114.21311,22.42286],[114.21313,22.42288],[114.21315,22.42289],[114.21326,22.42296],[114.21339,22.42303],[114.21343,22.42305],[114.21343,22.42305],[114.21349,22.42308],[114.21351,22.42309],[114.2138,22.42316],[114.21389,22.42319],[114.21392,22.4231],[114.21405,22.42275],[114.21406,22.42273],[114.21406,22.42272],[114.21424,22.42222],[114.21425,22.4222],[114.21436,22.42189],[114.21437,22.42187],[114.21439,22.42181],[114.21439,22.42181],[114.21442,22.42174],[114.2145,22.42145],[114.2145,22.42145],[114.2145,22.42145],[114.21451,22.42143],[114.2146,22.42159],[114.21467,22.42172],[114.21474,22.42185],[114.2148,22.42183],[114.21495,22.42217],[114.21489,22.42219],[114.21493,22.42232],[114.215,22.42252],[114.21506,22.42281],[114.21509,22.423],[114.21511,22.42315],[114.21512,22.42345],[114.21511,22.42378],[114.2151,22.42398],[114.21507,22.42424],[114.21501,22.4245],[114.21497,22.42469],[114.21488,22.42496],[114.21481,22.42511],[114.21473,22.42526],[114.21466,22.42541],[114.21453,22.42562],[114.21434,22.4259],[114.21418,22.42609],[114.21403,22.42626],[114.21378,22.42652],[114.21363,22.42667],[114.21339,22.42689],[114.21336,22.42694],[114.21335,22.42697],[114.21333,22.427],[114.21328,22.42705],[114.21324,22.42708],[114.21319,22.42711],[114.21313,22.42714],[114.2131,22.42715],[114.21293,22.42728],[114.2127,22.42745],[114.21252,22.42759],[114.21189,22.42803],[114.21109,22.4286],[114.21059,22.42896],[114.21031,22.42916],[114.21003,22.42935],[114.20972,22.42957],[114.20971,22.42959],[114.2097,22.42961],[114.20968,22.42964],[114.20967,22.42966],[114.20966,22.42967],[114.20964,22.42969],[114.20961,22.42972],[114.20958,22.42974],[114.20954,22.42977],[114.2095,22.42978],[114.20946,22.4298],[114.20942,22.42981],[114.20937,22.42982],[114.20933,22.42982],[114.20927,22.42983],[114.20925,22.42986],[114.20887,22.43013],[114.209,22.43028],[114.2085,22.43064],[114.20839,22.4305],[114.20717,22.43138],[114.20695,22.43154],[114.20506,22.43288],[114.20504,22.43292],[114.205,22.43297],[114.20495,22.43302],[114.20489,22.43305],[114.20483,22.43308],[114.20476,22.4331],[114.20431,22.43342],[114.20347,22.43401],[114.20294,22.4344],[114.20232,22.43484],[114.20188,22.43515],[114.20172,22.43526],[114.2014,22.43544],[114.20121,22.43554],[114.20093,22.43567],[114.20056,22.43584],[114.2002,22.436],[114.20002,22.43609],[114.19976,22.43619],[114.19974,22.4362],[114.19973,22.43621],[114.19971,22.43622],[114.1997,22.43623],[114.19956,22.4364],[114.19942,22.43656],[114.19927,22.43673],[114.19921,22.43679],[114.19912,22.43688],[114.19897,22.437],[114.19891,22.43703],[114.19875,22.43714],[114.19867,22.43719],[114.19842,22.43738],[114.19814,22.4376],[114.19764,22.43797],[114.19721,22.43828],[114.19695,22.43847],[114.19673,22.43861],[114.19654,22.43874],[114.19599,22.43907],[114.19554,22.43931],[114.19513,22.43951],[114.19491,22.43959],[114.19468,22.43968],[114.19453,22.43974],[114.19433,22.4398],[114.19409,22.43987],[114.19387,22.43993],[114.1937,22.43997],[114.19354,22.44],[114.19339,22.44003],[114.19304,22.44008],[114.19285,22.4401],[114.19276,22.4401],[114.19267,22.4401],[114.19249,22.44009],[114.19211,22.44005],[114.19194,22.44004],[114.19173,22.44002],[114.19161,22.43999],[114.19146,22.43996],[114.19047,22.43975],[114.18983,22.43963],[114.18968,22.4396],[114.18953,22.43959],[114.1894,22.43958],[114.18919,22.43957],[114.18884,22.43953],[114.18882,22.43953],[114.18871,22.43947],[114.18871,22.43947],[114.18869,22.43946],[114.18868,22.43945],[114.18867,22.43944],[114.18866,22.43943],[114.18865,22.43942],[114.18865,22.43941],[114.18864,22.43939],[114.18862,22.43935],[114.18857,22.43925],[114.18854,22.43907],[114.18856,22.43889],[114.18857,22.43884],[114.18857,22.43878],[114.18859,22.43874],[114.18861,22.43872],[114.18864,22.43869],[114.18869,22.43867],[114.1887,22.43867],[114.18884,22.43867],[114.18894,22.43867],[114.18908,22.43867],[114.18926,22.43868],[114.18952,22.4387],[114.18972,22.43872],[114.18998,22.43877],[114.19013,22.4388],[114.1902,22.43881],[114.19023,22.43882],[114.19027,22.43884],[114.19032,22.43886],[114.19041,22.43891],[114.19046,22.43855],[114.19046,22.43847],[114.19043,22.4383],[114.19042,22.43814],[114.19042,22.43814],[114.1906,22.43804],[114.19074,22.43797],[114.19082,22.43793],[114.19086,22.43789],[114.19087,22.43785],[114.19087,22.43777],[114.19085,22.43769],[114.19084,22.43766],[114.1908,22.43763],[114.19057,22.43765],[114.19029,22.43768],[114.18975,22.43778],[114.18938,22.43787],[114.18884,22.43802],[114.18837,22.4382],[114.1883,22.4382],[114.18827,22.43817],[114.18822,22.43805],[114.18821,22.43802],[114.18821,22.43798],[114.18823,22.43794],[114.18824,22.43789],[114.18824,22.43787],[114.18823,22.43784],[114.18823,22.43782],[114.18824,22.4378],[114.18827,22.43772],[114.18828,22.43769],[114.18829,22.43763],[114.18829,22.43758],[114.18828,22.43755],[114.18826,22.43747],[114.18815,22.4372],[114.18812,22.43711],[114.18807,22.437],[114.18806,22.43694],[114.18804,22.43689],[114.18801,22.43682],[114.18796,22.43673],[114.18789,22.43658],[114.18777,22.43643],[114.18772,22.43638],[114.18757,22.43645],[114.18757,22.43645],[114.18763,22.43649],[114.18764,22.4365],[114.18764,22.43653],[114.18764,22.43655],[114.18762,22.43657],[114.18758,22.43656],[114.1875,22.43654],[114.18747,22.43652],[114.18745,22.43654],[114.18745,22.43656],[114.18747,22.43663],[114.18747,22.43664],[114.18748,22.43668],[114.18748,22.4367],[114.18747,22.43673],[114.18746,22.43675],[114.18745,22.43678],[114.18743,22.43681],[114.18745,22.43684],[114.18746,22.43686],[114.18749,22.43691],[114.1875,22.43701],[114.18759,22.43712],[114.18768,22.43722],[114.18768,22.43723],[114.1877,22.43726],[114.1877,22.43732],[114.18772,22.43737],[114.18773,22.43739],[114.18773,22.43744],[114.18772,22.43747],[114.18772,22.43756],[114.18771,22.43758],[114.18768,22.43764],[114.18767,22.43765],[114.18765,22.43766],[114.18764,22.43767],[114.18761,22.43768],[114.1876,22.43769],[114.18756,22.43771],[114.18753,22.43771],[114.18751,22.43772],[114.1875,22.43773],[114.18746,22.43774],[114.18739,22.43776],[114.18734,22.43777],[114.18728,22.43778],[114.18725,22.4378],[114.18721,22.43783],[114.18716,22.43785],[114.18709,22.43786],[114.18708,22.43787],[114.18708,22.4379],[114.18707,22.43797],[114.18705,22.43805],[114.18701,22.43814],[114.18697,22.4382],[114.18688,22.43828],[114.18686,22.4383],[114.18685,22.43833],[114.18684,22.43835],[114.18683,22.43838],[114.18683,22.43843],[114.18683,22.43846],[114.18684,22.4385],[114.18685,22.43854],[114.18685,22.43855],[114.18686,22.43856],[114.18686,22.43856],[114.18687,22.43857],[114.18688,22.43857],[114.18689,22.43857],[114.1869,22.43857],[114.18691,22.43856],[114.18693,22.43856],[114.18694,22.43855],[114.18698,22.43853],[114.18702,22.43852],[114.18709,22.43849],[114.18716,22.43846],[114.1873,22.43839],[114.18744,22.43831],[114.18755,22.43824],[114.18759,22.43822],[114.18762,22.4382],[114.18766,22.43819],[114.1877,22.43817],[114.18773,22.43817],[114.18774,22.43817],[114.18776,22.43818],[114.18778,22.43818],[114.18779,22.43819],[114.1878,22.43819],[114.18781,22.4382],[114.18781,22.43821],[114.18782,22.43823],[114.18788,22.43834],[114.1879,22.43839],[114.18794,22.43847],[114.18797,22.43854],[114.18799,22.43859],[114.18801,22.43864],[114.18802,22.43867],[114.18807,22.43877],[114.18809,22.43882],[114.18813,22.43891],[114.18813,22.43892],[114.18817,22.4391],[114.18819,22.43928],[114.1882,22.43938],[114.18821,22.43946],[114.18821,22.43951],[114.18821,22.43953],[114.18821,22.43956],[114.18821,22.43958],[114.1882,22.4396],[114.18819,22.43963],[114.18818,22.43965],[114.18817,22.43967],[114.18815,22.43969],[114.18813,22.4397],[114.18811,22.43972],[114.18808,22.43974],[114.18805,22.43975],[114.18802,22.43976],[114.18799,22.43977],[114.18796,22.43978],[114.18793,22.43978],[114.1879,22.43978],[114.18787,22.43977],[114.18785,22.43977],[114.18782,22.43976],[114.1878,22.43975],[114.18778,22.43974],[114.18777,22.43974],[114.18775,22.43973],[114.18773,22.43971],[114.1877,22.4397],[114.18767,22.43969],[114.18764,22.43969],[114.18761,22.43969],[114.18758,22.43969],[114.18757,22.43969],[114.18639,22.44018],[114.18617,22.44028],[114.18599,22.44037],[114.18593,22.44042],[114.18582,22.44049],[114.18573,22.44056],[114.18568,22.4406],[114.18564,22.44064],[114.18563,22.44065],[114.18563,22.44066],[114.18564,22.44069],[114.18564,22.4407],[114.18564,22.44074],[114.18564,22.44077],[114.18564,22.44079],[114.18561,22.44087],[114.1856,22.4409],[114.18559,22.44094],[114.18558,22.44096],[114.18557,22.44099],[114.18556,22.44101],[114.18555,22.44103],[114.18553,22.44104],[114.18552,22.44105],[114.1855,22.44106],[114.18548,22.44107],[114.18546,22.44107],[114.18544,22.44107],[114.18543,22.44107],[114.18541,22.44106],[114.1854,22.44106],[114.18539,22.44105],[114.18538,22.44103],[114.18536,22.44102],[114.18534,22.44099],[114.18532,22.44097],[114.1853,22.44094],[114.18529,22.44092],[114.18528,22.4409],[114.18527,22.44089],[114.18527,22.44087],[114.18526,22.44087],[114.18525,22.44085],[114.18523,22.44084],[114.18521,22.44084],[114.1852,22.44083],[114.18511,22.4409],[114.18479,22.44117],[114.18455,22.44131],[114.18434,22.44144],[114.18368,22.4418],[114.18362,22.44187],[114.18385,22.44224],[114.18385,22.44226],[114.18384,22.44228],[114.18405,22.4426],[114.184,22.44263],[114.1838,22.44231],[114.18377,22.44231],[114.18375,22.44229],[114.18354,22.44195],[114.18341,22.44192],[114.18331,22.44197],[114.18305,22.44215],[114.18283,22.44223],[114.18228,22.44244],[114.18156,22.44284],[114.18117,22.44305],[114.18031,22.44362],[114.17976,22.44399],[114.17953,22.44415],[114.1793,22.44429],[114.17915,22.4444],[114.1791,22.44443],[114.1788,22.44463],[114.17843,22.44493],[114.17833,22.44503],[114.17829,22.44509],[114.17828,22.44512],[114.17829,22.44514],[114.1783,22.44516],[114.17831,22.44517],[114.17831,22.44519],[114.1783,22.44519],[114.17838,22.44523],[114.17842,22.44524],[114.17845,22.44527],[114.17849,22.44529],[114.17851,22.4453],[114.17853,22.4453],[114.17854,22.44531],[114.17855,22.44532],[114.17856,22.44533],[114.17858,22.44533],[114.17859,22.44534],[114.1786,22.44534],[114.17862,22.44534],[114.17869,22.44533],[114.17874,22.44533],[114.17881,22.44533],[114.17887,22.44533],[114.17892,22.44533],[114.17896,22.44533],[114.17895,22.4453],[114.17899,22.44526],[114.179,22.44505],[114.17903,22.44505],[114.17902,22.44521],[114.17908,22.44528],[114.1791,22.44528],[114.17912,22.44529],[114.17914,22.44528],[114.17916,22.4453],[114.17917,22.44532],[114.17924,22.44539],[114.17925,22.4454],[114.17926,22.4454],[114.17926,22.44541],[114.17927,22.44541],[114.17941,22.44536],[114.17941,22.44534],[114.17942,22.44532],[114.17944,22.4453],[114.17945,22.44529],[114.17948,22.44529],[114.1795,22.44529],[114.17953,22.44531],[114.17954,22.44533],[114.17955,22.44535],[114.17954,22.44537],[114.17953,22.44539],[114.1795,22.44541],[114.17948,22.44541],[114.17945,22.44541],[114.17944,22.4454],[114.17942,22.44538],[114.17928,22.44542],[114.17935,22.44545],[114.17941,22.44562],[114.17942,22.44566],[114.17941,22.44569],[114.1794,22.44577],[114.17938,22.44582],[114.17936,22.44587],[114.17931,22.44596],[114.1792,22.44612],[114.17918,22.44615],[114.17916,22.44617],[114.17912,22.4462],[114.17879,22.44633],[114.17874,22.44633],[114.17868,22.44631],[114.17861,22.44629],[114.17858,22.44627],[114.17844,22.44628],[114.17837,22.44628],[114.17818,22.44634],[114.17811,22.4464],[114.17792,22.44647],[114.17777,22.44665],[114.17763,22.44705],[114.17765,22.44738],[114.17775,22.44766],[114.17808,22.44802],[114.17811,22.44807],[114.17814,22.44813],[114.17813,22.44819],[114.17813,22.44823],[114.1781,22.44828],[114.17804,22.44834],[114.17783,22.4485],[114.17768,22.44857],[114.17747,22.44866],[114.17723,22.44876],[114.177,22.44883],[114.17694,22.44885],[114.17703,22.44949],[114.17708,22.44947],[114.1776,22.44938],[114.17806,22.44933],[114.17951,22.44932],[114.17975,22.44936],[114.17998,22.44942],[114.18011,22.44947],[114.18023,22.44953],[114.18034,22.4496],[114.18045,22.44968],[114.18061,22.44982],[114.18069,22.44992],[114.18074,22.45],[114.18084,22.45016],[114.1809,22.4503],[114.18093,22.45044],[114.18104,22.45104],[114.18109,22.45128],[114.18114,22.4515],[114.18127,22.45176],[114.18136,22.4519],[114.18144,22.45199],[114.18152,22.45208],[114.18169,22.45222],[114.1818,22.4523],[114.18191,22.45236],[114.1821,22.45244],[114.18223,22.45249],[114.18243,22.45253],[114.18263,22.45256],[114.18294,22.45257],[114.18639,22.45257],[114.18838,22.45208],[114.18879,22.45197],[114.18884,22.45196],[114.1894,22.45182],[114.19052,22.45154],[114.19195,22.45118],[114.19237,22.45108],[114.19273,22.451],[114.19275,22.45099],[114.19277,22.451],[114.19279,22.451],[114.19302,22.45076],[114.19338,22.45106],[114.19318,22.45128],[114.19326,22.45135],[114.19335,22.45142],[114.19363,22.45164],[114.19381,22.45177],[114.19383,22.45179],[114.19385,22.45179],[114.19388,22.4518],[114.19391,22.45181],[114.19393,22.45181],[114.19404,22.45182],[114.19613,22.45215],[114.19659,22.45227],[114.19721,22.45256],[114.19752,22.45279],[114.19779,22.45307],[114.19798,22.45331],[114.19816,22.45363],[114.19834,22.45423],[114.19837,22.45505],[114.19831,22.45724],[114.19841,22.45728],[114.19872,22.45732],[114.19895,22.4574],[114.19917,22.45753],[114.19926,22.45747],[114.19936,22.45747],[114.19944,22.45763],[114.19947,22.45771],[114.19946,22.45779],[114.19942,22.45787],[114.19934,22.45785],[114.19911,22.45798],[114.19909,22.45804],[114.19916,22.45807],[114.19945,22.45851],[114.1997,22.45876],[114.20066,22.45932],[114.20067,22.45935],[114.20067,22.45935]],[[114.19667,22.43766],[114.1966,22.43758],[114.19663,22.43756],[114.1967,22.43755],[114.19675,22.43752],[114.19679,22.43748],[114.19687,22.4374],[114.19689,22.43736],[114.1969,22.43735],[114.19691,22.43731],[114.19693,22.43727],[114.19693,22.43724],[114.19693,22.43722],[114.19692,22.4372],[114.19684,22.43689],[114.19654,22.43694],[114.19622,22.43698],[114.19581,22.43702],[114.1953,22.43709],[114.19507,22.43714],[114.19502,22.43718],[114.19495,22.43726],[114.19496,22.43734],[114.19496,22.43741],[114.19499,22.43745],[114.19506,22.43749],[114.19509,22.43753],[114.19499,22.4377],[114.19496,22.43781],[114.19487,22.43802],[114.19467,22.43837],[114.1947,22.43841],[114.19469,22.43843],[114.19463,22.4384],[114.19456,22.43845],[114.19453,22.4385],[114.19451,22.43853],[114.19445,22.43858],[114.19445,22.43864],[114.19444,22.43871],[114.1944,22.43877],[114.19432,22.43881],[114.1943,22.43887],[114.19431,22.4389],[114.19438,22.43894],[114.1944,22.43895],[114.19445,22.43892],[114.19455,22.43888],[114.1948,22.43875],[114.19499,22.43866],[114.19576,22.43824],[114.19598,22.4381],[114.1963,22.43786],[114.19643,22.43777],[114.19655,22.43764],[114.19662,22.43772],[114.19667,22.43766]]]},"properties":{"M_NM_Eng":"Non-Metro","SR_Eng":"NENT","PDD_Cat_En":"New Town","PDD_Eng":"Tai Po","M_NM_Tc":"非都會區","SR_Tc":"新界東北","PDD_Cat_Tc":"新市鎮","PDD_Tc":"大埔","M_NM_Sc":"非都会区","SR_Sc_1":"新界东北","PDD_Cat_Sc":"新市镇","PDD_Sc":"大埔","Y2019_Popu":250050,"Y2019_Empl":86750,"Y2026_Popu":285850,"Y2026_Empl":83700,"Y2031_Popu":263800,"Y2031_Empl":78550}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[114.00862,22.47359],[114.00815,22.47419],[114.00802,22.47436],[114.00796,22.47433],[114.0079,22.47431],[114.00777,22.4743],[114.00767,22.47431],[114.00756,22.47433],[114.00742,22.47436],[114.00728,22.47439],[114.00725,22.4744],[114.00715,22.47447],[114.00712,22.47448],[114.00691,22.47448],[114.00659,22.4745],[114.00631,22.47451],[114.0061,22.47453],[114.00591,22.47456],[114.00582,22.47455],[114.00561,22.47451],[114.00555,22.47448],[114.00544,22.47446],[114.00531,22.47445],[114.00522,22.47444],[114.00521,22.47444],[114.00516,22.47445],[114.005,22.47439],[114.00453,22.47425],[114.0044,22.47422],[114.0043,22.47421],[114.00402,22.47422],[114.00371,22.47424],[114.00289,22.47432],[114.00182,22.47439],[114.00116,22.47442],[114.00082,22.47442],[114.00053,22.47442],[114.00042,22.47441],[114.00026,22.4744],[113.99999,22.47436],[113.99969,22.47431],[113.99942,22.47423],[113.99938,22.47416],[113.99928,22.474],[113.99917,22.47377],[113.99906,22.47358],[113.99924,22.47335],[113.99927,22.47331],[113.99929,22.47327],[113.99929,22.47324],[113.99929,22.47321],[113.99927,22.47316],[113.99917,22.47294],[113.99917,22.47294],[113.99872,22.47327],[113.99854,22.47311],[113.99832,22.47291],[113.99811,22.47281],[113.99807,22.4728],[113.99804,22.47278],[113.998,22.47277],[113.9978,22.47265],[113.99758,22.47251],[113.99732,22.4723],[113.99723,22.4722],[113.99705,22.47187],[113.99699,22.4718],[113.99676,22.47135],[113.99663,22.47114],[113.99659,22.47102],[113.99653,22.47094],[113.9965,22.47083],[113.9965,22.4708],[113.99658,22.47069],[113.99663,22.47059],[113.99667,22.47039],[113.99664,22.47021],[113.99655,22.47002],[113.99636,22.46959],[113.99626,22.46936],[113.996,22.46913],[113.99575,22.4689],[113.99557,22.46875],[113.99502,22.46834],[113.9947,22.46807],[113.99444,22.46783],[113.99435,22.46773],[113.99426,22.4676],[113.9942,22.46741],[113.99408,22.46687],[113.99398,22.466],[113.99434,22.46587],[113.99419,22.4654],[113.99402,22.46484],[113.99402,22.46477],[113.99404,22.46473],[113.99407,22.46465],[113.99409,22.46462],[113.99411,22.46458],[113.99411,22.46454],[113.99411,22.46452],[113.99409,22.46449],[113.99404,22.46443],[113.9939,22.46422],[113.99389,22.46414],[113.99389,22.46408],[113.9939,22.46403],[113.99392,22.46398],[113.99395,22.46394],[113.99397,22.46393],[113.99402,22.46389],[113.99408,22.46381],[113.9941,22.46379],[113.99412,22.46374],[113.99413,22.4637],[113.99413,22.46367],[113.99413,22.46363],[113.9941,22.46358],[113.99398,22.46348],[113.99391,22.46343],[113.99381,22.46337],[113.99377,22.46332],[113.99373,22.4633],[113.99365,22.46325],[113.99356,22.46319],[113.99331,22.46311],[113.99323,22.46309],[113.99307,22.46304],[113.99298,22.46301],[113.99293,22.46299],[113.9929,22.46298],[113.99276,22.46291],[113.99268,22.46286],[113.99263,22.46281],[113.9926,22.46277],[113.99256,22.46267],[113.99252,22.4624],[113.99252,22.46212],[113.99253,22.46192],[113.99253,22.46176],[113.99252,22.4616],[113.99252,22.46159],[113.99252,22.46159],[113.99253,22.46133],[113.99256,22.46109],[113.99267,22.46048],[113.99276,22.46012],[113.99285,22.45979],[113.99292,22.45957],[113.99308,22.45909],[113.99324,22.45871],[113.99326,22.45865],[113.99339,22.4584],[113.9936,22.458],[113.99386,22.45748],[113.99387,22.45744],[113.99411,22.457],[113.99427,22.45673],[113.9959,22.45417],[113.99645,22.4533],[113.99652,22.45318],[113.99668,22.45294],[113.99731,22.45195],[113.998,22.45078],[113.99854,22.44985],[113.99833,22.4491],[113.99802,22.44831],[113.99769,22.44755],[113.99727,22.44665],[113.99785,22.4467],[113.9985,22.4467],[113.99916,22.44669],[113.99926,22.44667],[113.99928,22.44666],[113.99929,22.44666],[113.99944,22.44663],[113.99951,22.44661],[113.99957,22.4466],[113.99974,22.44656],[114.00002,22.44649],[114.00029,22.44644],[114.00057,22.44639],[114.00072,22.44637],[114.0009,22.44635],[114.00114,22.44634],[114.00139,22.44634],[114.00168,22.44635],[114.00189,22.44637],[114.00211,22.44641],[114.00241,22.44649],[114.00259,22.44656],[114.00277,22.44662],[114.00317,22.44698],[114.00391,22.44769],[114.00394,22.44772],[114.00526,22.44909],[114.0056,22.44944],[114.00583,22.4497],[114.006,22.44989],[114.00619,22.44975],[114.00629,22.44984],[114.00634,22.44989],[114.00646,22.44999],[114.00655,22.45007],[114.0067,22.45023],[114.00671,22.45024],[114.00688,22.45043],[114.0071,22.45067],[114.00724,22.45081],[114.00733,22.4509],[114.00736,22.45092],[114.00749,22.45102],[114.00758,22.45108],[114.0076,22.45109],[114.00771,22.45115],[114.00786,22.45122],[114.00787,22.45122],[114.00794,22.45124],[114.00803,22.45128],[114.00821,22.45133],[114.00842,22.45138],[114.00866,22.45142],[114.00869,22.45143],[114.00886,22.45145],[114.00889,22.45145],[114.00893,22.45146],[114.00907,22.45148],[114.00908,22.45281],[114.00908,22.45326],[114.00908,22.4534],[114.00907,22.45374],[114.00906,22.45409],[114.00906,22.4544],[114.00907,22.45469],[114.00908,22.45493],[114.00908,22.45521],[114.00907,22.45565],[114.00907,22.45568],[114.00904,22.45623],[114.00899,22.45685],[114.00899,22.45693],[114.00896,22.45754],[114.00894,22.45801],[114.00891,22.45841],[114.00891,22.45843],[114.00891,22.45845],[114.0089,22.45878],[114.00889,22.45916],[114.00888,22.45952],[114.00888,22.4596],[114.00891,22.45995],[114.00893,22.46013],[114.00907,22.46062],[114.00922,22.46103],[114.0093,22.46123],[114.00954,22.46176],[114.00973,22.46221],[114.00944,22.46259],[114.00938,22.46266],[114.0093,22.46275],[114.0086,22.46363],[114.00857,22.46367],[114.00855,22.4637],[114.00855,22.46374],[114.00854,22.46378],[114.00855,22.4638],[114.00856,22.46383],[114.00858,22.46387],[114.00862,22.46391],[114.00869,22.46395],[114.00872,22.46396],[114.00879,22.464],[114.00889,22.46405],[114.00905,22.46413],[114.00918,22.46419],[114.00932,22.46428],[114.00941,22.46433],[114.00959,22.46443],[114.00964,22.46448],[114.00968,22.4645],[114.00979,22.46458],[114.00984,22.46463],[114.00987,22.46467],[114.00993,22.46478],[114.00994,22.46484],[114.00993,22.46493],[114.00994,22.465],[114.00996,22.46504],[114.00999,22.46509],[114.01003,22.46512],[114.01017,22.46519],[114.01034,22.46525],[114.012,22.46578],[114.0128,22.46604],[114.01359,22.46635],[114.01304,22.46737],[114.01291,22.46766],[114.01278,22.46785],[114.01277,22.46788],[114.01257,22.4681],[114.01225,22.46847],[114.01159,22.46926],[114.01121,22.4697],[114.01087,22.47008],[114.01057,22.47045],[114.01025,22.47082],[114.01065,22.47117],[114.01013,22.4718],[114.0097,22.4722],[114.00951,22.47247],[114.00874,22.47344],[114.00862,22.47359]]]},"properties":{"M_NM_Eng":"Non-Metro","SR_Eng":"NWNT","PDD_Cat_En":"New Town","PDD_Eng":"Tin Shui Wai","M_NM_Tc":"非都會區","SR_Tc":"新界西北","PDD_Cat_Tc":"新市鎮","PDD_Tc":"天水圍","M_NM_Sc":"非都会区","SR_Sc_1":"新界西北","PDD_Cat_Sc":"新市镇","PDD_Sc":"天水围","Y2019_Popu":279950,"Y2019_Empl":35050,"Y2026_Popu":283250,"Y2026_Empl":33100,"Y2031_Popu":276050,"Y2031_Empl":31950}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[114.27911,22.26602],[114.27905,22.26602],[114.27904,22.26602],[114.27903,22.26602],[114.27914,22.26595],[114.27925,22.2659],[114.27925,22.2659],[114.27925,22.2659],[114.27926,22.26591],[114.27925,22.26593],[114.27925,22.26593],[114.27924,22.26593],[114.27924,22.26594],[114.27924,22.26594],[114.27924,22.26595],[114.27924,22.26595],[114.27923,22.26595],[114.27923,22.26596],[114.27923,22.26596],[114.27922,22.26597],[114.27922,22.26597],[114.27922,22.26597],[114.27922,22.26597],[114.27922,22.26598],[114.27921,22.26598],[114.27921,22.26598],[114.2792,22.26598],[114.2792,22.26599],[114.2792,22.26599],[114.27919,22.26599],[114.27919,22.266],[114.27919,22.266],[114.27918,22.266],[114.27918,22.266],[114.27917,22.26601],[114.27917,22.26601],[114.27917,22.26601],[114.27916,22.26601],[114.27916,22.26601],[114.27916,22.26601],[114.27915,22.26601],[114.27914,22.26601],[114.27914,22.26601],[114.27913,22.26602],[114.27912,22.26602],[114.27911,22.26602]]],[[[114.26618,22.27371],[114.26618,22.27371],[114.26618,22.27372],[114.26618,22.2738],[114.26619,22.27387],[114.26617,22.27393],[114.26605,22.27408],[114.26569,22.27435],[114.26562,22.27434],[114.26555,22.27427],[114.26559,22.27403],[114.2657,22.27383],[114.26581,22.27366],[114.26592,22.27362],[114.26599,22.27354],[114.26605,22.27355],[114.26602,22.27366],[114.26606,22.27363],[114.26615,22.27366],[114.26618,22.27371]]],[[[114.24347,22.28583],[114.24347,22.28584],[114.24347,22.28583],[114.24347,22.28582],[114.24347,22.28583]]],[[[114.24348,22.28597],[114.24349,22.28601],[114.24349,22.286],[114.24349,22.28599],[114.24348,22.28598],[114.24348,22.28596],[114.24348,22.28593],[114.24348,22.28597]]],[[[114.24353,22.28605],[114.24358,22.28608],[114.24361,22.2861],[114.24358,22.28609],[114.24358,22.28609],[114.24354,22.28606],[114.24351,22.28604],[114.24349,22.28601],[114.24349,22.28601],[114.24353,22.28605]]],[[[114.2576,22.33538],[114.25736,22.33617],[114.25735,22.33619],[114.25735,22.3362],[114.25734,22.3362],[114.25734,22.3362],[114.25734,22.33621],[114.25734,22.33621],[114.25734,22.33622],[114.25733,22.33622],[114.25733,22.33622],[114.25733,22.33623],[114.25733,22.33623],[114.25733,22.33624],[114.25732,22.33624],[114.25732,22.33624],[114.25732,22.33625],[114.25732,22.33625],[114.25732,22.33626],[114.25731,22.33626],[114.25731,22.33626],[114.25731,22.33627],[114.25731,22.33627],[114.25731,22.33628],[114.25731,22.33628],[114.2573,22.33629],[114.2573,22.33629],[114.2573,22.33629],[114.2573,22.3363],[114.2573,22.3363],[114.25729,22.33631],[114.25729,22.33631],[114.25729,22.33632],[114.25729,22.33632],[114.25729,22.33632],[114.25728,22.33633],[114.25728,22.33633],[114.25728,22.33634],[114.25728,22.33634],[114.25728,22.33634],[114.25727,22.33635],[114.25727,22.33635],[114.25727,22.33636],[114.25727,22.33636],[114.25726,22.33636],[114.25726,22.33637],[114.25726,22.33637],[114.25726,22.33638],[114.25726,22.33638],[114.25725,22.33638],[114.25725,22.33639],[114.25722,22.33643],[114.25719,22.33647],[114.25716,22.33649],[114.25714,22.33653],[114.25712,22.33655],[114.2571,22.33658],[114.25706,22.33662],[114.25703,22.33664],[114.25703,22.33664],[114.25689,22.33668],[114.25657,22.33678],[114.2561,22.33693],[114.25598,22.337],[114.25559,22.3372],[114.25519,22.33741],[114.25492,22.33754],[114.25448,22.33779],[114.25406,22.33801],[114.25394,22.33806],[114.25339,22.33833],[114.25298,22.33857],[114.25276,22.3387],[114.25258,22.33877],[114.25256,22.33878],[114.25255,22.33878],[114.25253,22.33878],[114.2525,22.33877],[114.25247,22.33877],[114.25245,22.33876],[114.25243,22.33876],[114.25234,22.33868],[114.25228,22.33863],[114.25221,22.33857],[114.25209,22.33844],[114.25203,22.33834],[114.25197,22.33823],[114.25194,22.33813],[114.2519,22.33795],[114.2519,22.33767],[114.25187,22.33735],[114.25186,22.33722],[114.25183,22.33691],[114.25178,22.3367],[114.25169,22.33647],[114.25144,22.33561],[114.25141,22.33555],[114.25136,22.33548],[114.2513,22.33542],[114.25123,22.33537],[114.25117,22.33532],[114.25115,22.33531],[114.2511,22.3353],[114.25098,22.33528],[114.25093,22.33528],[114.25079,22.33532],[114.25059,22.33538],[114.2504,22.33539],[114.25034,22.3354],[114.25022,22.33536],[114.25007,22.33526],[114.24984,22.33501],[114.24969,22.33485],[114.24967,22.33482],[114.24968,22.33481],[114.24969,22.3348],[114.24985,22.33465],[114.24994,22.33454],[114.25002,22.33439],[114.25015,22.33424],[114.25028,22.33405],[114.2503,22.33403],[114.25031,22.33398],[114.25035,22.33379],[114.25038,22.33365],[114.25049,22.33352],[114.25054,22.33344],[114.25058,22.33326],[114.25067,22.33313],[114.25079,22.33298],[114.25079,22.33297],[114.25079,22.33297],[114.25079,22.33297],[114.25077,22.33296],[114.25074,22.33295],[114.2507,22.33292],[114.25066,22.3329],[114.25063,22.3329],[114.25059,22.3329],[114.25055,22.33291],[114.25054,22.33291],[114.25051,22.33293],[114.25046,22.33298],[114.25043,22.333],[114.25042,22.33302],[114.25036,22.33307],[114.25034,22.33309],[114.25034,22.33309],[114.25034,22.33309],[114.25032,22.33308],[114.2503,22.33308],[114.25027,22.33308],[114.25024,22.33307],[114.25022,22.33306],[114.2502,22.33303],[114.25018,22.33301],[114.25017,22.333],[114.25015,22.33299],[114.25013,22.33299],[114.25011,22.333],[114.25008,22.33303],[114.25004,22.33306],[114.25001,22.33308],[114.24996,22.3331],[114.24989,22.33311],[114.24986,22.33311],[114.24982,22.3331],[114.24981,22.33309],[114.24978,22.33307],[114.24973,22.33305],[114.24971,22.33304],[114.24969,22.33304],[114.24967,22.33305],[114.24963,22.33306],[114.24961,22.33306],[114.24952,22.33302],[114.24951,22.33302],[114.24949,22.33302],[114.24944,22.33303],[114.24936,22.33306],[114.24933,22.33307],[114.24931,22.33308],[114.24929,22.3331],[114.24926,22.33316],[114.24925,22.3332],[114.24923,22.33327],[114.24921,22.3333],[114.24915,22.33338],[114.24911,22.33342],[114.24909,22.33343],[114.24908,22.33344],[114.24908,22.33344],[114.24904,22.33345],[114.24899,22.33348],[114.24897,22.3335],[114.24894,22.33351],[114.24891,22.33352],[114.24888,22.33352],[114.24883,22.33351],[114.24877,22.33351],[114.2487,22.33351],[114.24867,22.33351],[114.24866,22.33352],[114.24863,22.33353],[114.24862,22.33353],[114.2486,22.33353],[114.24858,22.33352],[114.24858,22.33352],[114.24857,22.33351],[114.24856,22.3335],[114.24856,22.33347],[114.24857,22.33344],[114.24857,22.33344],[114.24857,22.33343],[114.24856,22.33341],[114.24855,22.33338],[114.24851,22.33333],[114.24847,22.33329],[114.24844,22.33327],[114.24832,22.33321],[114.2483,22.3332],[114.24827,22.3332],[114.24825,22.33319],[114.24821,22.33319],[114.24816,22.3332],[114.24814,22.3332],[114.2481,22.33318],[114.24804,22.33317],[114.24801,22.33318],[114.24796,22.33319],[114.24794,22.33319],[114.24787,22.3332],[114.24783,22.33322],[114.2478,22.33322],[114.24776,22.33321],[114.24774,22.33321],[114.24771,22.33319],[114.24768,22.33316],[114.24765,22.33313],[114.24763,22.33311],[114.24761,22.3331],[114.24758,22.3331],[114.24751,22.3331],[114.24743,22.3331],[114.2474,22.33309],[114.24736,22.33306],[114.24734,22.33305],[114.24733,22.33303],[114.24729,22.333],[114.24728,22.33299],[114.24727,22.33298],[114.24725,22.33294],[114.24724,22.3329],[114.24723,22.33289],[114.24722,22.33287],[114.24722,22.33287],[114.2472,22.33283],[114.24717,22.33277],[114.24715,22.33274],[114.24708,22.3327],[114.24707,22.3327],[114.24707,22.3327],[114.24706,22.33269],[114.24703,22.33267],[114.24692,22.33261],[114.24685,22.33258],[114.24681,22.33257],[114.24678,22.33257],[114.24675,22.33256],[114.24671,22.33255],[114.24661,22.33253],[114.24649,22.33251],[114.24646,22.3325],[114.24644,22.33249],[114.24642,22.33247],[114.24639,22.33247],[114.24636,22.33246],[114.24633,22.33246],[114.24631,22.33246],[114.24627,22.33246],[114.24625,22.33247],[114.24624,22.33247],[114.24621,22.33248],[114.24619,22.33249],[114.24617,22.3325],[114.24615,22.33251],[114.24612,22.33252],[114.24611,22.33253],[114.24609,22.33254],[114.24609,22.33254],[114.24608,22.33255],[114.24608,22.33255],[114.24608,22.33255],[114.24603,22.33256],[114.246,22.33256],[114.24598,22.33256],[114.24596,22.33256],[114.24594,22.33256],[114.24592,22.33255],[114.2459,22.33254],[114.24589,22.33254],[114.24588,22.33253],[114.24585,22.33251],[114.24583,22.3325],[114.24579,22.33247],[114.24577,22.33245],[114.24576,22.33244],[114.24559,22.33231],[114.24559,22.3323],[114.24548,22.33217],[114.24545,22.33214],[114.24543,22.33213],[114.24542,22.33212],[114.24541,22.33211],[114.24539,22.33211],[114.24538,22.33211],[114.24537,22.3321],[114.24535,22.3321],[114.24534,22.3321],[114.24533,22.33211],[114.24532,22.33211],[114.24532,22.33211],[114.24532,22.33211],[114.24532,22.33211],[114.24531,22.33212],[114.24531,22.33212],[114.2453,22.33213],[114.2453,22.33213],[114.2453,22.33213],[114.24529,22.33214],[114.24529,22.33214],[114.24529,22.33214],[114.24528,22.33215],[114.24528,22.33215],[114.24527,22.33216],[114.24527,22.33217],[114.24526,22.33219],[114.24525,22.3322],[114.24523,22.33222],[114.24522,22.33223],[114.2452,22.33224],[114.24519,22.33224],[114.24517,22.33225],[114.24514,22.33225],[114.24513,22.33225],[114.24511,22.33224],[114.24509,22.33224],[114.24508,22.33224],[114.24507,22.33224],[114.24504,22.33223],[114.24501,22.33222],[114.24499,22.33221],[114.24495,22.33218],[114.24492,22.33216],[114.2449,22.33214],[114.24488,22.33212],[114.24486,22.33209],[114.24484,22.33205],[114.24482,22.33202],[114.2448,22.33199],[114.24479,22.33196],[114.24477,22.33193],[114.24476,22.3319],[114.24475,22.33186],[114.24474,22.33184],[114.24473,22.33181],[114.24473,22.33178],[114.24472,22.33175],[114.24472,22.33172],[114.24472,22.3317],[114.24472,22.33164],[114.24472,22.33161],[114.24472,22.33159],[114.24472,22.33158],[114.24472,22.33155],[114.24473,22.33152],[114.24473,22.3315],[114.24474,22.33147],[114.24475,22.33144],[114.24476,22.33142],[114.24477,22.3314],[114.24478,22.33138],[114.24479,22.33136],[114.2448,22.33134],[114.24481,22.33132],[114.24483,22.33129],[114.24485,22.33127],[114.24486,22.33126],[114.24488,22.33125],[114.24491,22.33123],[114.24493,22.33122],[114.24497,22.33122],[114.245,22.33121],[114.24504,22.33122],[114.24507,22.33122],[114.2451,22.33123],[114.24513,22.33124],[114.24515,22.33125],[114.24518,22.33127],[114.24522,22.33128],[114.24523,22.33128],[114.24524,22.33128],[114.24526,22.33129],[114.24526,22.33129],[114.24527,22.33129],[114.24528,22.33129],[114.24529,22.33129],[114.2453,22.33129],[114.24531,22.33129],[114.24532,22.33128],[114.24533,22.33128],[114.24534,22.33127],[114.24535,22.33126],[114.24536,22.33125],[114.24536,22.33124],[114.24537,22.33124],[114.24537,22.33123],[114.24539,22.33121],[114.24539,22.3312],[114.2454,22.3312],[114.2454,22.33119],[114.24566,22.33064],[114.24572,22.33048],[114.24563,22.33026],[114.24558,22.3301],[114.24558,22.32991],[114.24562,22.32981],[114.24597,22.32937],[114.24606,22.32926],[114.24609,22.32923],[114.2461,22.32921],[114.24612,22.32921],[114.24618,22.32924],[114.24621,22.32926],[114.24624,22.32927],[114.24629,22.32928],[114.24633,22.32928],[114.24638,22.32928],[114.24642,22.32928],[114.24646,22.32927],[114.24649,22.32926],[114.24652,22.32925],[114.24655,22.32923],[114.24658,22.3292],[114.24666,22.3291],[114.24681,22.32893],[114.24687,22.32885],[114.24697,22.32873],[114.24702,22.32868],[114.24704,22.32861],[114.24704,22.32856],[114.24704,22.32854],[114.24704,22.32853],[114.24702,22.3285],[114.247,22.32847],[114.24698,22.32845],[114.24696,22.32843],[114.24693,22.32841],[114.24689,22.3284],[114.24685,22.32839],[114.24682,22.32838],[114.24677,22.32836],[114.24672,22.32835],[114.24667,22.32834],[114.2466,22.32833],[114.24654,22.32833],[114.24646,22.32834],[114.24639,22.32836],[114.24633,22.32837],[114.24627,22.3284],[114.24619,22.32843],[114.24612,22.32847],[114.24604,22.32853],[114.24593,22.32862],[114.24586,22.32868],[114.24565,22.32884],[114.24563,22.32886],[114.24554,22.32891],[114.24552,22.32891],[114.2455,22.32892],[114.24548,22.32893],[114.24546,22.32893],[114.24544,22.32894],[114.24541,22.32895],[114.24537,22.32895],[114.24533,22.32896],[114.2453,22.32896],[114.24528,22.32896],[114.24525,22.32896],[114.24523,22.32895],[114.24521,22.32895],[114.24519,22.32893],[114.24518,22.32892],[114.24516,22.32891],[114.24515,22.32889],[114.24515,22.32888],[114.24514,22.32888],[114.24514,22.32888],[114.24514,22.32887],[114.24513,22.32887],[114.24512,22.32886],[114.24511,22.32885],[114.2451,22.32883],[114.24509,22.32881],[114.24507,22.32878],[114.24504,22.32872],[114.24497,22.32862],[114.24492,22.32851],[114.24491,22.3285],[114.24485,22.32838],[114.24476,22.32824],[114.24472,22.3282],[114.24455,22.32803],[114.24438,22.3279],[114.24412,22.32781],[114.24378,22.32776],[114.24353,22.32778],[114.24334,22.32783],[114.24292,22.32795],[114.24264,22.32804],[114.2425,22.32808],[114.24238,22.32809],[114.24227,22.3281],[114.24216,22.3281],[114.24209,22.3281],[114.24201,22.3281],[114.24191,22.32808],[114.24183,22.32805],[114.24178,22.328],[114.24176,22.32796],[114.24174,22.32794],[114.24173,22.32789],[114.24168,22.32774],[114.24164,22.32765],[114.24163,22.32742],[114.24164,22.32737],[114.24168,22.32723],[114.24169,22.32722],[114.24169,22.32722],[114.2417,22.3272],[114.2417,22.32718],[114.2417,22.32716],[114.2417,22.32714],[114.2417,22.32713],[114.2417,22.32712],[114.24171,22.3271],[114.24171,22.32709],[114.24172,22.32706],[114.24173,22.32705],[114.24174,22.32703],[114.24177,22.327],[114.24177,22.32699],[114.24179,22.32697],[114.24182,22.32692],[114.24184,22.32689],[114.24186,22.32686],[114.24189,22.32683],[114.24189,22.32682],[114.2419,22.3268],[114.24191,22.32678],[114.24192,22.32676],[114.24193,22.32674],[114.24194,22.3267],[114.24195,22.32669],[114.24196,22.32666],[114.24197,22.32663],[114.24197,22.32662],[114.24199,22.32656],[114.24199,22.32654],[114.242,22.32652],[114.242,22.3265],[114.24201,22.3265],[114.24202,22.32649],[114.24203,22.32647],[114.24203,22.32647],[114.24205,22.32646],[114.24206,22.32645],[114.24207,22.32644],[114.2421,22.32643],[114.24212,22.32642],[114.24213,22.3264],[114.24215,22.32639],[114.24216,22.32638],[114.24216,22.32637],[114.24217,22.32636],[114.24219,22.32633],[114.24219,22.32633],[114.24219,22.32632],[114.24219,22.32631],[114.24218,22.32627],[114.24218,22.32625],[114.24218,22.32624],[114.24218,22.32623],[114.24218,22.32622],[114.24219,22.32621],[114.24219,22.32621],[114.24219,22.32618],[114.24219,22.32618],[114.2422,22.32617],[114.2422,22.32616],[114.24221,22.32614],[114.24221,22.32613],[114.24221,22.32612],[114.24221,22.32611],[114.24221,22.3261],[114.2422,22.3261],[114.24218,22.32606],[114.24217,22.32604],[114.24217,22.32603],[114.24216,22.32602],[114.24216,22.32602],[114.24214,22.32597],[114.24214,22.32596],[114.24213,22.32595],[114.24213,22.32593],[114.24213,22.32593],[114.24212,22.32591],[114.24212,22.32591],[114.24212,22.3259],[114.24212,22.3259],[114.24211,22.32588],[114.24211,22.32587],[114.24211,22.32587],[114.2421,22.32584],[114.24209,22.32584],[114.24209,22.32582],[114.24208,22.3258],[114.24208,22.3258],[114.24208,22.32577],[114.24208,22.32577],[114.24208,22.32577],[114.24207,22.32572],[114.24207,22.32571],[114.24206,22.32569],[114.24206,22.32568],[114.24206,22.32568],[114.24206,22.32567],[114.24206,22.32567],[114.24206,22.32564],[114.24206,22.32564],[114.24206,22.32562],[114.24207,22.3256],[114.24207,22.3256],[114.24207,22.32559],[114.24206,22.32558],[114.24207,22.32555],[114.24207,22.32553],[114.24207,22.32551],[114.24207,22.32551],[114.24207,22.3255],[114.24208,22.32549],[114.24208,22.32548],[114.24208,22.32547],[114.24208,22.32545],[114.24208,22.32539],[114.24208,22.32537],[114.24208,22.32535],[114.24208,22.32532],[114.24209,22.32528],[114.24209,22.32528],[114.24209,22.32524],[114.24209,22.32523],[114.2421,22.32521],[114.2421,22.32517],[114.2421,22.32517],[114.24211,22.32516],[114.24211,22.32514],[114.24211,22.32513],[114.24211,22.32511],[114.24211,22.32509],[114.2421,22.32508],[114.2421,22.32507],[114.2421,22.32507],[114.24209,22.32505],[114.24209,22.32503],[114.24209,22.32503],[114.24208,22.32499],[114.24207,22.32498],[114.24207,22.32496],[114.24206,22.32494],[114.24205,22.32493],[114.24205,22.32492],[114.24204,22.32491],[114.24203,22.3249],[114.24205,22.3249],[114.24206,22.32489],[114.24207,22.32489],[114.24207,22.32489],[114.24207,22.32488],[114.24208,22.32487],[114.24209,22.32486],[114.2421,22.32485],[114.2421,22.32484],[114.24211,22.32483],[114.24212,22.32482],[114.24212,22.32482],[114.24213,22.32481],[114.24216,22.3248],[114.24217,22.32479],[114.24218,22.32478],[114.2422,22.32477],[114.24221,22.32477],[114.24221,22.32476],[114.24222,22.32476],[114.24222,22.32476],[114.24224,22.32474],[114.24225,22.32473],[114.24225,22.32473],[114.24226,22.32472],[114.24227,22.32471],[114.24228,22.3247],[114.24231,22.32468],[114.24233,22.32466],[114.24234,22.32465],[114.24235,22.32465],[114.24236,22.32464],[114.24236,22.32464],[114.24236,22.32463],[114.24236,22.32462],[114.24237,22.32459],[114.24237,22.32457],[114.24238,22.32455],[114.24239,22.32452],[114.24239,22.32449],[114.2424,22.32448],[114.2424,22.32446],[114.2424,22.32445],[114.2424,22.32445],[114.2424,22.32444],[114.2424,22.32443],[114.24241,22.32441],[114.24241,22.32441],[114.24242,22.32439],[114.24242,22.32439],[114.24243,22.32436],[114.24243,22.32435],[114.24244,22.32432],[114.24245,22.32431],[114.24246,22.32429],[114.24246,22.32429],[114.24246,22.32428],[114.24247,22.32426],[114.24249,22.32424],[114.2425,22.32422],[114.24251,22.3242],[114.24254,22.32416],[114.24254,22.32414],[114.24255,22.32412],[114.24256,22.32411],[114.24258,22.32409],[114.24259,22.32407],[114.24259,22.32407],[114.24262,22.32403],[114.24263,22.32401],[114.24263,22.32401],[114.24264,22.324],[114.24266,22.32399],[114.24267,22.32398],[114.24268,22.32396],[114.24269,22.32395],[114.2427,22.32394],[114.24274,22.3239],[114.24276,22.32388],[114.24276,22.32388],[114.24277,22.32387],[114.2428,22.32384],[114.2428,22.32383],[114.24282,22.32382],[114.24285,22.3238],[114.24285,22.3238],[114.24286,22.32379],[114.24286,22.32378],[114.24287,22.32378],[114.24288,22.32375],[114.24289,22.32374],[114.2429,22.32372],[114.2429,22.32372],[114.2429,22.32371],[114.2429,22.32371],[114.24291,22.32369],[114.24292,22.32367],[114.24294,22.32365],[114.24294,22.32364],[114.24295,22.32362],[114.24295,22.3236],[114.24296,22.32355],[114.24297,22.32354],[114.24297,22.32352],[114.24298,22.3235],[114.24298,22.32349],[114.24298,22.32348],[114.24298,22.32348],[114.24298,22.32348],[114.24299,22.32347],[114.24299,22.32346],[114.24301,22.32343],[114.24301,22.32343],[114.24303,22.32341],[114.24303,22.3234],[114.24304,22.32337],[114.24305,22.32336],[114.24306,22.32334],[114.24306,22.32332],[114.24307,22.3233],[114.24308,22.32325],[114.24308,22.32323],[114.24309,22.32323],[114.24309,22.32323],[114.24311,22.32318],[114.24312,22.32316],[114.24312,22.32315],[114.24313,22.32314],[114.24313,22.32313],[114.24314,22.32313],[114.24314,22.32311],[114.24314,22.32311],[114.24314,22.3231],[114.24315,22.32309],[114.24316,22.32307],[114.24316,22.32304],[114.24317,22.32302],[114.24317,22.32301],[114.24317,22.323],[114.24318,22.32296],[114.24318,22.32294],[114.24318,22.32294],[114.24318,22.32293],[114.24318,22.32293],[114.24318,22.32292],[114.24318,22.32291],[114.24318,22.3229],[114.24318,22.3229],[114.24318,22.32289],[114.24318,22.32289],[114.24318,22.32287],[114.24318,22.32286],[114.24318,22.32285],[114.24319,22.32282],[114.2432,22.32281],[114.24321,22.3228],[114.24321,22.32279],[114.24324,22.32276],[114.24324,22.32275],[114.24324,22.32275],[114.24326,22.3227],[114.24327,22.32268],[114.24327,22.32263],[114.24327,22.32262],[114.24327,22.3226],[114.24328,22.3226],[114.24327,22.32259],[114.24327,22.32258],[114.24327,22.32257],[114.24327,22.32256],[114.24327,22.32255],[114.24327,22.32254],[114.24327,22.32253],[114.24327,22.32251],[114.24327,22.3225],[114.24327,22.32249],[114.24327,22.32248],[114.24327,22.32247],[114.24327,22.32247],[114.24327,22.32245],[114.24327,22.32244],[114.24328,22.32241],[114.24329,22.32239],[114.24329,22.32238],[114.2433,22.32236],[114.24331,22.32235],[114.24331,22.32234],[114.24332,22.32233],[114.24332,22.32232],[114.24333,22.32231],[114.24334,22.32229],[114.24334,22.32228],[114.24335,22.32227],[114.24336,22.32226],[114.24337,22.32225],[114.24338,22.32224],[114.24338,22.32223],[114.24338,22.32223],[114.24339,22.32222],[114.2434,22.32221],[114.24341,22.32221],[114.24342,22.3222],[114.24342,22.3222],[114.24343,22.32218],[114.24343,22.32216],[114.24343,22.32215],[114.24344,22.32213],[114.24345,22.32211],[114.24343,22.3221],[114.24342,22.3221],[114.24341,22.32213],[114.24338,22.32216],[114.24335,22.32218],[114.24333,22.3222],[114.24329,22.32222],[114.24326,22.32224],[114.24323,22.32226],[114.2432,22.32227],[114.24317,22.32228],[114.24315,22.32228],[114.24312,22.32228],[114.24309,22.32228],[114.24307,22.32227],[114.24305,22.32225],[114.24303,22.32224],[114.24301,22.32222],[114.24299,22.3222],[114.24297,22.32219],[114.24295,22.32218],[114.24294,22.32216],[114.24292,22.32214],[114.24291,22.32213],[114.24291,22.32211],[114.24287,22.32202],[114.24286,22.32199],[114.24287,22.32197],[114.24288,22.32191],[114.24289,22.32183],[114.24289,22.32176],[114.2429,22.32169],[114.2429,22.32166],[114.24307,22.32147],[114.24318,22.32137],[114.24324,22.32134],[114.24334,22.32132],[114.24342,22.32132],[114.24342,22.32104],[114.24316,22.32104],[114.24318,22.32098],[114.24318,22.32094],[114.24317,22.3209],[114.24317,22.3209],[114.24313,22.32086],[114.2431,22.32083],[114.24308,22.32079],[114.24308,22.32079],[114.24308,22.32075],[114.24312,22.32068],[114.24313,22.32063],[114.24313,22.32061],[114.24314,22.32054],[114.24314,22.32046],[114.24314,22.32041],[114.24313,22.32035],[114.24312,22.32031],[114.24312,22.32027],[114.2431,22.32022],[114.24307,22.32016],[114.24306,22.32013],[114.24304,22.32008],[114.24298,22.32001],[114.24289,22.31977],[114.24278,22.31949],[114.24264,22.31926],[114.24262,22.31923],[114.24239,22.31853],[114.24241,22.31846],[114.24243,22.31838],[114.24243,22.31831],[114.24242,22.31822],[114.24241,22.31822],[114.2424,22.31819],[114.2424,22.31818],[114.24225,22.3179],[114.24253,22.31751],[114.24259,22.31742],[114.24261,22.3174],[114.24281,22.31713],[114.2426,22.31699],[114.24234,22.3168],[114.24219,22.31668],[114.2421,22.31656],[114.24196,22.31645],[114.24183,22.31638],[114.24178,22.31633],[114.24194,22.31605],[114.24199,22.31597],[114.24202,22.31587],[114.24205,22.31549],[114.24211,22.31546],[114.24214,22.31544],[114.24226,22.31538],[114.24248,22.31529],[114.24335,22.31512],[114.244,22.31532],[114.24415,22.31534],[114.24423,22.31534],[114.24432,22.31533],[114.24475,22.31477],[114.24476,22.31475],[114.24509,22.31467],[114.24512,22.31467],[114.24512,22.31467],[114.24512,22.31467],[114.24515,22.31464],[114.24515,22.31464],[114.24515,22.31463],[114.24516,22.31463],[114.24517,22.31462],[114.24517,22.31462],[114.24518,22.31461],[114.24519,22.3146],[114.24519,22.3146],[114.2452,22.31459],[114.2452,22.31459],[114.24521,22.31459],[114.24522,22.31458],[114.24522,22.31458],[114.24522,22.31458],[114.24523,22.31457],[114.24523,22.31457],[114.24523,22.31457],[114.24524,22.31457],[114.24524,22.31456],[114.24525,22.31456],[114.24525,22.31456],[114.24526,22.31455],[114.24526,22.31455],[114.24526,22.31455],[114.24527,22.31454],[114.24527,22.31454],[114.24527,22.31453],[114.24528,22.31453],[114.24528,22.31451],[114.24528,22.31451],[114.24528,22.3145],[114.24528,22.3145],[114.24528,22.31449],[114.24528,22.31449],[114.24528,22.31449],[114.24528,22.31448],[114.24529,22.31448],[114.24529,22.31447],[114.24529,22.31446],[114.24529,22.31446],[114.24529,22.31446],[114.24529,22.31446],[114.24529,22.31445],[114.24529,22.31445],[114.24529,22.31443],[114.2453,22.31442],[114.2453,22.31442],[114.2453,22.31442],[114.2453,22.31441],[114.2453,22.31441],[114.2453,22.31441],[114.2453,22.3144],[114.2453,22.3144],[114.2453,22.31439],[114.24531,22.31439],[114.24531,22.31438],[114.24531,22.31437],[114.24531,22.31437],[114.24531,22.31436],[114.24531,22.31436],[114.24532,22.31435],[114.24532,22.31435],[114.24532,22.31435],[114.24532,22.31434],[114.24532,22.31434],[114.24532,22.31434],[114.24532,22.31433],[114.24532,22.31433],[114.24532,22.31433],[114.24532,22.31433],[114.24532,22.31432],[114.24533,22.31432],[114.24533,22.31432],[114.24533,22.31431],[114.24533,22.31431],[114.24533,22.3143],[114.24533,22.3143],[114.24534,22.31429],[114.24534,22.31429],[114.24534,22.31428],[114.24534,22.31427],[114.24534,22.31427],[114.24535,22.31426],[114.24535,22.31426],[114.24535,22.31426],[114.24535,22.31425],[114.24535,22.31425],[114.24535,22.31425],[114.24535,22.31425],[114.24536,22.31424],[114.24536,22.31423],[114.24537,22.31422],[114.24537,22.31422],[114.24537,22.31421],[114.24538,22.3142],[114.24538,22.3142],[114.24538,22.3142],[114.24538,22.31419],[114.24539,22.31419],[114.24539,22.31419],[114.24539,22.31418],[114.2454,22.31417],[114.2454,22.31417],[114.2454,22.31416],[114.24541,22.31416],[114.24541,22.31416],[114.24541,22.31415],[114.24542,22.31415],[114.24542,22.31414],[114.24543,22.31413],[114.24543,22.31413],[114.24543,22.31412],[114.24544,22.31412],[114.24544,22.31411],[114.24544,22.31411],[114.24545,22.3141],[114.24545,22.31409],[114.24546,22.31409],[114.24546,22.31408],[114.24546,22.31408],[114.24546,22.31408],[114.24546,22.31408],[114.24547,22.31408],[114.24547,22.31407],[114.24547,22.31407],[114.24547,22.31407],[114.24548,22.31406],[114.24548,22.31406],[114.24548,22.31405],[114.24548,22.31405],[114.24548,22.31404],[114.24549,22.31404],[114.24549,22.31404],[114.24549,22.31404],[114.24549,22.31404],[114.24549,22.31403],[114.2455,22.31402],[114.2455,22.31402],[114.2455,22.31402],[114.2455,22.31401],[114.2455,22.31401],[114.2455,22.31401],[114.24551,22.314],[114.24551,22.31399],[114.24552,22.31398],[114.24552,22.31397],[114.24552,22.31397],[114.24552,22.31396],[114.24552,22.31396],[114.24552,22.31395],[114.24553,22.31395],[114.24553,22.31394],[114.24553,22.31394],[114.24553,22.31394],[114.24553,22.31393],[114.24553,22.31393],[114.24553,22.31393],[114.24553,22.31392],[114.24553,22.31392],[114.24553,22.31391],[114.24554,22.3139],[114.24554,22.3139],[114.24554,22.31389],[114.24554,22.31388],[114.24554,22.31388],[114.24554,22.31387],[114.24554,22.31387],[114.24554,22.31386],[114.24554,22.31386],[114.24554,22.31386],[114.24554,22.31385],[114.24554,22.31385],[114.24554,22.31384],[114.24554,22.31384],[114.24554,22.31383],[114.24553,22.31382],[114.24553,22.31381],[114.24553,22.31381],[114.24553,22.31381],[114.24553,22.3138],[114.24553,22.31378],[114.24553,22.31378],[114.24553,22.31377],[114.24553,22.31377],[114.24553,22.31377],[114.24553,22.31376],[114.24553,22.31375],[114.24553,22.31374],[114.24553,22.31374],[114.24553,22.31373],[114.24553,22.31373],[114.24553,22.31372],[114.24553,22.31372],[114.24553,22.31371],[114.24553,22.31371],[114.24553,22.3137],[114.24554,22.3137],[114.24554,22.31369],[114.24554,22.31368],[114.24554,22.31368],[114.24554,22.31368],[114.24555,22.31367],[114.24555,22.31366],[114.24555,22.31366],[114.24555,22.31365],[114.24556,22.31365],[114.24556,22.31365],[114.24556,22.31364],[114.24556,22.31364],[114.24556,22.31363],[114.24556,22.31363],[114.24557,22.31362],[114.24557,22.31361],[114.24557,22.31361],[114.24557,22.31361],[114.24557,22.31361],[114.24557,22.31361],[114.24556,22.3136],[114.24556,22.3136],[114.24556,22.3136],[114.24556,22.31359],[114.24556,22.31359],[114.24555,22.31359],[114.24555,22.31358],[114.24554,22.31358],[114.24554,22.31358],[114.24554,22.31357],[114.24553,22.31357],[114.24552,22.31356],[114.24552,22.31356],[114.24551,22.31356],[114.2455,22.31355],[114.2455,22.31355],[114.24549,22.31354],[114.24549,22.31354],[114.24549,22.31354],[114.24548,22.31354],[114.24547,22.31353],[114.24547,22.31353],[114.24547,22.31353],[114.24546,22.31353],[114.24546,22.31353],[114.24546,22.31352],[114.24546,22.31352],[114.24545,22.31352],[114.24544,22.31352],[114.24544,22.31351],[114.24543,22.31351],[114.24543,22.31351],[114.24542,22.31351],[114.24542,22.3135],[114.24541,22.3135],[114.24541,22.3135],[114.24541,22.3135],[114.2454,22.3135],[114.2454,22.3135],[114.24539,22.3135],[114.24539,22.31349],[114.24538,22.31349],[114.24537,22.31349],[114.24537,22.31349],[114.24537,22.31349],[114.24536,22.31349],[114.24536,22.31348],[114.24535,22.31348],[114.24535,22.31348],[114.24534,22.31348],[114.24534,22.31348],[114.24533,22.31348],[114.24533,22.31348],[114.24532,22.31347],[114.24532,22.31347],[114.24531,22.31347],[114.2453,22.31347],[114.24529,22.31347],[114.24528,22.31347],[114.24527,22.31347],[114.24526,22.31347],[114.24526,22.31347],[114.24525,22.31347],[114.24525,22.31347],[114.24524,22.31347],[114.24523,22.31347],[114.24522,22.31348],[114.24522,22.31348],[114.24521,22.31348],[114.24521,22.31349],[114.2452,22.31349],[114.2452,22.31349],[114.24519,22.31349],[114.24519,22.3135],[114.24518,22.3135],[114.24518,22.31351],[114.24517,22.31351],[114.24517,22.31351],[114.24516,22.31352],[114.24516,22.31352],[114.24516,22.31353],[114.24515,22.31353],[114.24515,22.31354],[114.24514,22.31355],[114.24513,22.31355],[114.24513,22.31356],[114.24512,22.31356],[114.24511,22.31357],[114.24511,22.31357],[114.2451,22.31358],[114.24509,22.31358],[114.24509,22.31358],[114.24507,22.31358],[114.24506,22.31359],[114.24505,22.31359],[114.24504,22.31359],[114.24504,22.31359],[114.24503,22.31359],[114.24501,22.31358],[114.24497,22.31358],[114.24497,22.31358],[114.24496,22.31357],[114.24482,22.31355],[114.24477,22.31354],[114.24476,22.31354],[114.24476,22.31354],[114.24475,22.31354],[114.24474,22.31354],[114.24474,22.31353],[114.24473,22.31353],[114.24472,22.31353],[114.24472,22.31352],[114.24471,22.31352],[114.24471,22.31352],[114.2447,22.31351],[114.2447,22.31351],[114.2447,22.31351],[114.24469,22.3135],[114.24468,22.31349],[114.24468,22.31348],[114.24468,22.31347],[114.24468,22.31347],[114.24468,22.31347],[114.24468,22.31346],[114.24468,22.31346],[114.24468,22.31345],[114.24467,22.31345],[114.24467,22.31344],[114.24467,22.31344],[114.24467,22.31344],[114.24467,22.31343],[114.24467,22.31343],[114.24467,22.31343],[114.24467,22.31342],[114.24467,22.31342],[114.24466,22.31341],[114.24466,22.3134],[114.24466,22.31339],[114.24466,22.31338],[114.24465,22.31337],[114.24465,22.31336],[114.24465,22.31336],[114.24465,22.31335],[114.24464,22.31334],[114.24464,22.31334],[114.24464,22.31334],[114.24463,22.31332],[114.24462,22.31332],[114.24461,22.31331],[114.2446,22.31331],[114.2446,22.3133],[114.2446,22.3133],[114.24459,22.3133],[114.24458,22.31329],[114.24457,22.31329],[114.24457,22.31329],[114.24456,22.31329],[114.24455,22.31328],[114.24454,22.31328],[114.24453,22.31328],[114.24452,22.31327],[114.24452,22.31327],[114.24451,22.31327],[114.24449,22.31326],[114.24449,22.31326],[114.24448,22.31326],[114.24448,22.31325],[114.24446,22.31324],[114.24445,22.31324],[114.24445,22.31323],[114.24444,22.31322],[114.24444,22.31322],[114.24444,22.31321],[114.24443,22.3132],[114.24443,22.3132],[114.24443,22.31319],[114.24442,22.31318],[114.24442,22.31317],[114.24442,22.31317],[114.24442,22.31317],[114.24441,22.31316],[114.24441,22.31316],[114.24441,22.31315],[114.24441,22.31314],[114.24441,22.31314],[114.24441,22.31312],[114.24442,22.31312],[114.24442,22.31312],[114.24442,22.31311],[114.24442,22.3131],[114.24442,22.3131],[114.24442,22.31309],[114.24443,22.31308],[114.24447,22.313],[114.24448,22.31299],[114.24448,22.31298],[114.24449,22.31298],[114.24449,22.31296],[114.24449,22.31295],[114.24449,22.31294],[114.24449,22.31294],[114.24448,22.31293],[114.24448,22.31292],[114.24448,22.31292],[114.24448,22.31292],[114.24448,22.31291],[114.24447,22.31291],[114.24446,22.3129],[114.24446,22.3129],[114.24446,22.31289],[114.24446,22.31289],[114.24445,22.31289],[114.24445,22.31288],[114.24444,22.31288],[114.24444,22.31288],[114.24443,22.31287],[114.24442,22.31286],[114.24441,22.31286],[114.24441,22.31285],[114.2444,22.31285],[114.2444,22.31285],[114.24439,22.31284],[114.24438,22.31284],[114.24437,22.31283],[114.24436,22.31283],[114.24435,22.31282],[114.24435,22.31282],[114.24434,22.31282],[114.24434,22.31282],[114.24433,22.31281],[114.24432,22.31281],[114.24431,22.31281],[114.24431,22.31281],[114.2443,22.31281],[114.24429,22.31281],[114.24428,22.31281],[114.24427,22.31281],[114.24427,22.31281],[114.24426,22.31281],[114.24425,22.31281],[114.24424,22.31281],[114.24423,22.31281],[114.24422,22.31281],[114.24421,22.31281],[114.24421,22.31281],[114.2442,22.31281],[114.2442,22.31281],[114.24418,22.31281],[114.24418,22.31281],[114.24417,22.31282],[114.24416,22.31282],[114.24414,22.31282],[114.24414,22.31282],[114.24413,22.31282],[114.24412,22.31282],[114.24412,22.31282],[114.24411,22.31282],[114.24408,22.31282],[114.24408,22.31282],[114.24407,22.31282],[114.24406,22.31281],[114.24405,22.31281],[114.24404,22.3128],[114.24404,22.31279],[114.24404,22.31279],[114.24404,22.31279],[114.24403,22.31278],[114.24403,22.31278],[114.24402,22.31277],[114.24402,22.31277],[114.24402,22.31277],[114.24402,22.31276],[114.24401,22.31276],[114.24401,22.31275],[114.24401,22.31275],[114.244,22.31274],[114.244,22.31273],[114.24399,22.31272],[114.24398,22.31271],[114.24398,22.3127],[114.24398,22.3127],[114.24397,22.3127],[114.24397,22.31269],[114.24397,22.31269],[114.24396,22.31268],[114.24396,22.31267],[114.24395,22.31267],[114.24395,22.31267],[114.24394,22.31266],[114.24394,22.31265],[114.24393,22.31265],[114.24393,22.31264],[114.24393,22.31264],[114.24393,22.31264],[114.24392,22.31263],[114.24391,22.31262],[114.24391,22.31262],[114.2439,22.31262],[114.2439,22.31261],[114.2439,22.31261],[114.24389,22.31261],[114.24389,22.3126],[114.24388,22.3126],[114.24388,22.3126],[114.24387,22.31259],[114.24386,22.31258],[114.24386,22.31258],[114.24385,22.31258],[114.24384,22.31257],[114.24384,22.31257],[114.24384,22.31256],[114.24383,22.31256],[114.24383,22.31255],[114.24381,22.31254],[114.24381,22.31253],[114.24381,22.31253],[114.2438,22.31253],[114.2438,22.31252],[114.2438,22.31252],[114.2438,22.31252],[114.24379,22.31251],[114.24379,22.3125],[114.24378,22.31249],[114.24378,22.31249],[114.24378,22.31248],[114.24378,22.31248],[114.24378,22.31247],[114.24378,22.31247],[114.24377,22.31246],[114.24377,22.31246],[114.24377,22.31245],[114.24377,22.31244],[114.24377,22.31244],[114.24377,22.31244],[114.24377,22.31243],[114.24377,22.31243],[114.24377,22.31242],[114.24377,22.31242],[114.24377,22.31241],[114.24377,22.31241],[114.24377,22.31239],[114.24377,22.31239],[114.24377,22.31238],[114.24377,22.31236],[114.24377,22.31235],[114.24378,22.31231],[114.24378,22.31229],[114.24379,22.31229],[114.24379,22.31228],[114.2438,22.31226],[114.2438,22.31225],[114.24381,22.31224],[114.24381,22.31223],[114.24382,22.31223],[114.24382,22.31222],[114.24383,22.31221],[114.24384,22.3122],[114.24384,22.31219],[114.24385,22.31219],[114.24386,22.31217],[114.24387,22.31216],[114.2439,22.31214],[114.24394,22.31211],[114.24395,22.3121],[114.24397,22.31208],[114.24399,22.31207],[114.244,22.31206],[114.244,22.31205],[114.24401,22.31204],[114.24402,22.31203],[114.24403,22.31202],[114.24404,22.31201],[114.24404,22.312],[114.24404,22.312],[114.24405,22.31199],[114.24405,22.31198],[114.24405,22.31198],[114.24405,22.31197],[114.24405,22.31196],[114.24405,22.31196],[114.24405,22.31195],[114.24406,22.31194],[114.24406,22.31193],[114.24406,22.31192],[114.24406,22.31192],[114.24405,22.31191],[114.24405,22.31191],[114.24405,22.3119],[114.24405,22.31189],[114.24405,22.31188],[114.24404,22.31188],[114.24404,22.31187],[114.24404,22.31187],[114.24403,22.31185],[114.24402,22.31185],[114.24402,22.31185],[114.24402,22.31184],[114.24401,22.31183],[114.244,22.31183],[114.24399,22.31182],[114.24398,22.3118],[114.24398,22.31179],[114.24397,22.31178],[114.24396,22.31176],[114.24396,22.31176],[114.24396,22.31175],[114.24395,22.31174],[114.24395,22.31174],[114.24395,22.31173],[114.24395,22.31172],[114.24395,22.31172],[114.24395,22.31172],[114.24395,22.31172],[114.24395,22.31171],[114.24395,22.3117],[114.24394,22.31167],[114.24394,22.31164],[114.24394,22.31157],[114.24394,22.31156],[114.24394,22.31156],[114.24394,22.31156],[114.24393,22.31155],[114.24392,22.31155],[114.24392,22.31154],[114.24392,22.31154],[114.24391,22.31154],[114.24391,22.31154],[114.24391,22.31154],[114.24391,22.31154],[114.2439,22.31153],[114.24389,22.31153],[114.24387,22.31153],[114.24387,22.31153],[114.2438,22.31152],[114.24377,22.31151],[114.24374,22.3115],[114.24365,22.31146],[114.24364,22.31146],[114.24359,22.31145],[114.24357,22.31144],[114.24357,22.31144],[114.24356,22.31144],[114.24356,22.31143],[114.24356,22.31143],[114.24355,22.31143],[114.24355,22.31143],[114.24355,22.31143],[114.24355,22.31142],[114.24354,22.31141],[114.24353,22.31139],[114.24353,22.31139],[114.24353,22.31138],[114.24353,22.31137],[114.24353,22.31136],[114.24353,22.31136],[114.24353,22.31135],[114.24353,22.31134],[114.24354,22.31132],[114.24356,22.3113],[114.24358,22.31126],[114.2436,22.31122],[114.2436,22.31122],[114.24361,22.3112],[114.24361,22.3112],[114.24361,22.31119],[114.24361,22.31119],[114.24361,22.31118],[114.24362,22.31116],[114.24362,22.31116],[114.24361,22.31114],[114.24361,22.31113],[114.24361,22.31112],[114.24361,22.31112],[114.24361,22.31112],[114.24361,22.31111],[114.2436,22.3111],[114.2436,22.3111],[114.2436,22.3111],[114.2436,22.31109],[114.24359,22.31109],[114.24359,22.31109],[114.24358,22.31108],[114.24355,22.31106],[114.24355,22.31106],[114.24354,22.31106],[114.24354,22.31105],[114.24353,22.31104],[114.24352,22.31104],[114.24352,22.31103],[114.24351,22.31102],[114.24351,22.31101],[114.2435,22.31101],[114.2435,22.311],[114.2435,22.31099],[114.2435,22.31098],[114.2435,22.31098],[114.2435,22.31096],[114.24351,22.31093],[114.24351,22.3109],[114.24352,22.31089],[114.24352,22.31088],[114.24352,22.31087],[114.24352,22.31087],[114.24352,22.31087],[114.24352,22.31086],[114.24352,22.31086],[114.24352,22.31085],[114.24352,22.31083],[114.24352,22.31083],[114.24351,22.31082],[114.24351,22.31082],[114.24351,22.31081],[114.2435,22.3108],[114.2435,22.3108],[114.24349,22.31079],[114.24349,22.31079],[114.24349,22.31078],[114.24346,22.31077],[114.24346,22.31076],[114.24341,22.31073],[114.24336,22.31069],[114.24336,22.31069],[114.24335,22.31068],[114.24325,22.31068],[114.24325,22.31068],[114.2432,22.31067],[114.24319,22.31067],[114.24318,22.31067],[114.24316,22.31066],[114.24316,22.31066],[114.24314,22.31066],[114.24312,22.31065],[114.2431,22.31064],[114.24308,22.31063],[114.24306,22.31063],[114.24303,22.31062],[114.24301,22.31062],[114.243,22.31062],[114.24299,22.31062],[114.24299,22.31062],[114.24298,22.31062],[114.24297,22.31062],[114.24297,22.31063],[114.24296,22.31063],[114.24295,22.31063],[114.24295,22.31064],[114.24294,22.31064],[114.24294,22.31064],[114.24291,22.31069],[114.24289,22.31071],[114.24287,22.31073],[114.24283,22.31079],[114.24277,22.31082],[114.24271,22.31082],[114.24263,22.31082],[114.24257,22.31079],[114.24251,22.31075],[114.24243,22.31063],[114.24243,22.31063],[114.24238,22.31056],[114.24238,22.31055],[114.24236,22.31053],[114.24234,22.31049],[114.24232,22.31038],[114.24226,22.31037],[114.24214,22.31045],[114.24208,22.31054],[114.24207,22.31055],[114.24206,22.31058],[114.24203,22.31062],[114.24199,22.31064],[114.24193,22.31064],[114.2419,22.31063],[114.24186,22.31061],[114.24184,22.31056],[114.24182,22.3105],[114.24182,22.31045],[114.24183,22.31039],[114.24184,22.31034],[114.24184,22.31033],[114.24185,22.3103],[114.24185,22.31028],[114.24185,22.31027],[114.24186,22.31026],[114.24187,22.31019],[114.24186,22.31013],[114.24185,22.31008],[114.24178,22.30991],[114.24178,22.30985],[114.24181,22.3098],[114.24183,22.30976],[114.24184,22.30975],[114.24184,22.30975],[114.24185,22.30974],[114.24186,22.30972],[114.24187,22.3097],[114.24188,22.30969],[114.24188,22.30969],[114.24188,22.30969],[114.24188,22.30968],[114.24188,22.30968],[114.24188,22.30967],[114.24188,22.30967],[114.24188,22.30966],[114.24188,22.30966],[114.24188,22.30965],[114.24188,22.30964],[114.24188,22.30963],[114.24187,22.30957],[114.24187,22.30955],[114.24186,22.30952],[114.24186,22.30949],[114.24186,22.30949],[114.24186,22.30948],[114.24186,22.30948],[114.24185,22.30943],[114.24185,22.30938],[114.24185,22.30938],[114.24185,22.30934],[114.24185,22.30933],[114.24185,22.30931],[114.24186,22.30929],[114.24186,22.30928],[114.24186,22.30927],[114.24186,22.30926],[114.24186,22.30925],[114.24186,22.30925],[114.24186,22.30924],[114.24186,22.30923],[114.24185,22.30922],[114.24185,22.30922],[114.24185,22.30922],[114.24185,22.30922],[114.24184,22.30921],[114.24182,22.3092],[114.24182,22.3092],[114.2418,22.30919],[114.24179,22.30918],[114.24179,22.30918],[114.24177,22.30917],[114.24175,22.30916],[114.24173,22.30915],[114.24172,22.30915],[114.24168,22.30914],[114.24164,22.30913],[114.24159,22.30912],[114.24156,22.30912],[114.24154,22.30911],[114.24152,22.3091],[114.24148,22.30909],[114.24146,22.30908],[114.24144,22.30908],[114.24142,22.30908],[114.24141,22.30908],[114.24139,22.30908],[114.24138,22.30908],[114.24138,22.30908],[114.24136,22.30908],[114.24134,22.30908],[114.24133,22.30908],[114.24132,22.30909],[114.24131,22.30909],[114.24129,22.3091],[114.24128,22.30911],[114.24126,22.30912],[114.24125,22.30912],[114.24124,22.30912],[114.24123,22.30912],[114.24121,22.30913],[114.2412,22.30913],[114.24119,22.30913],[114.24118,22.30913],[114.24117,22.30913],[114.24117,22.30913],[114.24116,22.30913],[114.24116,22.30913],[114.24115,22.30913],[114.24115,22.30913],[114.24114,22.30913],[114.2411,22.30913],[114.2411,22.30913],[114.24107,22.30912],[114.24106,22.30911],[114.24106,22.30911],[114.24105,22.30911],[114.24104,22.3091],[114.24104,22.3091],[114.24103,22.30909],[114.24102,22.30909],[114.24102,22.30908],[114.24101,22.30907],[114.241,22.30906],[114.24099,22.30905],[114.24098,22.30903],[114.24098,22.30903],[114.24097,22.30902],[114.24096,22.30901],[114.24095,22.30901],[114.24095,22.309],[114.24094,22.309],[114.24094,22.309],[114.24093,22.30899],[114.24091,22.30899],[114.24091,22.30899],[114.2409,22.30898],[114.24087,22.30897],[114.24086,22.30897],[114.24085,22.30897],[114.24085,22.30897],[114.24084,22.30896],[114.24083,22.30896],[114.24083,22.30896],[114.24082,22.30895],[114.24081,22.30894],[114.24077,22.30892],[114.24076,22.3089],[114.24075,22.30889],[114.24075,22.30889],[114.24074,22.30888],[114.24074,22.30887],[114.24073,22.30887],[114.24072,22.30885],[114.24071,22.30881],[114.2407,22.30881],[114.2407,22.3088],[114.24069,22.30879],[114.24069,22.30878],[114.24068,22.30877],[114.24068,22.30876],[114.24068,22.30876],[114.24066,22.30874],[114.24065,22.30873],[114.24064,22.30871],[114.24061,22.30869],[114.24058,22.30866],[114.24056,22.30865],[114.24055,22.30864],[114.24054,22.30863],[114.24053,22.30862],[114.24051,22.30861],[114.24051,22.30861],[114.24051,22.30861],[114.2405,22.3086],[114.24044,22.3086],[114.24044,22.3086],[114.24044,22.3086],[114.24047,22.30859],[114.24056,22.30841],[114.24059,22.30828],[114.24059,22.30819],[114.2404,22.30798],[114.24037,22.30795],[114.24039,22.30789],[114.24044,22.30783],[114.2405,22.30764],[114.24048,22.30736],[114.24045,22.30719],[114.24038,22.30708],[114.24016,22.30699],[114.23997,22.30666],[114.23994,22.30657],[114.23993,22.30645],[114.24001,22.30637],[114.24012,22.30632],[114.24013,22.30626],[114.2401,22.30619],[114.24006,22.30617],[114.24002,22.30613],[114.23996,22.30607],[114.23989,22.306],[114.23986,22.30593],[114.23986,22.30591],[114.23986,22.3059],[114.23988,22.30584],[114.23994,22.30578],[114.24003,22.30573],[114.24013,22.30564],[114.24019,22.30558],[114.2402,22.30553],[114.24019,22.30549],[114.24016,22.30546],[114.23993,22.30533],[114.23992,22.3053],[114.23993,22.30526],[114.23999,22.30521],[114.24011,22.30515],[114.24013,22.30512],[114.24014,22.30501],[114.2402,22.30495],[114.24027,22.30496],[114.24033,22.30492],[114.2404,22.30492],[114.24041,22.30492],[114.24048,22.30494],[114.24057,22.30501],[114.24062,22.30501],[114.24066,22.30495],[114.24067,22.30477],[114.24068,22.30472],[114.24071,22.30468],[114.24076,22.30468],[114.24087,22.30476],[114.24095,22.30478],[114.24096,22.30477],[114.241,22.30474],[114.24104,22.30463],[114.24134,22.30446],[114.24143,22.30444],[114.24146,22.30442],[114.24149,22.30436],[114.24149,22.30428],[114.24147,22.30422],[114.24146,22.30418],[114.24144,22.30414],[114.24135,22.30395],[114.24136,22.30389],[114.24138,22.30386],[114.24146,22.30383],[114.24159,22.30384],[114.24167,22.3038],[114.24171,22.30376],[114.24174,22.3037],[114.24178,22.3035],[114.24199,22.30329],[114.24217,22.30329],[114.2422,22.30326],[114.24223,22.30323],[114.24224,22.30318],[114.24219,22.30306],[114.24218,22.30303],[114.24216,22.30296],[114.24215,22.30289],[114.24217,22.30287],[114.24225,22.30282],[114.24245,22.3028],[114.24257,22.30271],[114.24271,22.30268],[114.24289,22.30252],[114.24297,22.30248],[114.24315,22.30252],[114.24339,22.30238],[114.24353,22.30238],[114.24363,22.30231],[114.24365,22.30229],[114.2437,22.30224],[114.24374,22.30216],[114.24376,22.30199],[114.24379,22.30196],[114.24388,22.30194],[114.2439,22.30191],[114.24388,22.30176],[114.2439,22.30174],[114.24392,22.30171],[114.24391,22.30165],[114.24393,22.3016],[114.24396,22.30154],[114.24401,22.30151],[114.24404,22.30149],[114.24404,22.30148],[114.24408,22.30144],[114.24412,22.30137],[114.24413,22.30128],[114.24411,22.3012],[114.24407,22.30112],[114.244,22.30108],[114.24371,22.30077],[114.24359,22.30068],[114.24357,22.30063],[114.24358,22.30055],[114.24366,22.30043],[114.2437,22.30036],[114.24369,22.30026],[114.24369,22.30021],[114.24371,22.30016],[114.24379,22.30014],[114.24388,22.30008],[114.24409,22.29991],[114.24422,22.29974],[114.24423,22.29973],[114.24432,22.2997],[114.24443,22.29963],[114.2444,22.29951],[114.24435,22.29939],[114.24435,22.2993],[114.24437,22.2992],[114.24442,22.29911],[114.24442,22.29908],[114.24445,22.29891],[114.2445,22.29882],[114.24462,22.29871],[114.24467,22.29853],[114.24471,22.29847],[114.24476,22.29844],[114.24481,22.29837],[114.2448,22.29823],[114.24476,22.29812],[114.24477,22.29803],[114.24482,22.29801],[114.24512,22.29794],[114.24514,22.29788],[114.24516,22.29784],[114.2452,22.29762],[114.24521,22.2976],[114.24529,22.29745],[114.24537,22.29724],[114.2454,22.29718],[114.24543,22.29705],[114.24545,22.29691],[114.24542,22.2968],[114.2455,22.29651],[114.2455,22.29649],[114.24544,22.29642],[114.24542,22.29633],[114.24538,22.29629],[114.24527,22.29626],[114.24512,22.29625],[114.24507,22.2962],[114.24496,22.29614],[114.24495,22.2961],[114.2449,22.29597],[114.24485,22.2959],[114.2449,22.29582],[114.24497,22.29577],[114.24507,22.29575],[114.24514,22.2957],[114.24516,22.29562],[114.24517,22.2955],[114.24518,22.29547],[114.24519,22.29546],[114.24522,22.29543],[114.24524,22.29542],[114.24527,22.29541],[114.24535,22.29537],[114.24539,22.29535],[114.24542,22.29531],[114.24544,22.29528],[114.24544,22.29526],[114.24544,22.29522],[114.24543,22.29512],[114.24543,22.29504],[114.24543,22.29492],[114.24542,22.29489],[114.2454,22.29485],[114.24538,22.29482],[114.24535,22.29478],[114.24529,22.29472],[114.24525,22.29468],[114.24519,22.29466],[114.24519,22.29466],[114.24513,22.29468],[114.24503,22.2947],[114.24495,22.29472],[114.24492,22.29473],[114.24482,22.29476],[114.24478,22.29478],[114.24466,22.29482],[114.24454,22.29483],[114.24443,22.29484],[114.24432,22.29483],[114.24424,22.2948],[114.2443,22.29486],[114.24441,22.29493],[114.24479,22.29506],[114.24467,22.2951],[114.24455,22.2951],[114.24444,22.29511],[114.24426,22.29508],[114.24413,22.29503],[114.2439,22.29489],[114.24377,22.29486],[114.24355,22.29479],[114.24342,22.29476],[114.24327,22.29469],[114.24314,22.29462],[114.24309,22.29459],[114.24297,22.29455],[114.24294,22.29444],[114.24281,22.29439],[114.24269,22.29429],[114.24268,22.29418],[114.24255,22.29417],[114.24246,22.2942],[114.24237,22.29423],[114.24229,22.29425],[114.24222,22.29424],[114.24217,22.29422],[114.24215,22.29419],[114.24214,22.29412],[114.24215,22.29409],[114.24223,22.29392],[114.24221,22.29374],[114.24224,22.29357],[114.24227,22.29352],[114.24226,22.2935],[114.24225,22.29341],[114.24222,22.29336],[114.24213,22.2933],[114.24212,22.29324],[114.24211,22.29317],[114.2421,22.29311],[114.24208,22.29305],[114.24195,22.29283],[114.24185,22.29282],[114.24167,22.29287],[114.24161,22.29286],[114.24156,22.29283],[114.24148,22.2927],[114.24147,22.29264],[114.24147,22.29248],[114.24149,22.29241],[114.24153,22.29235],[114.24153,22.29228],[114.24149,22.29224],[114.24147,22.29224],[114.24137,22.29221],[114.24134,22.29221],[114.2412,22.29222],[114.24113,22.29219],[114.24107,22.29214],[114.24105,22.29208],[114.24106,22.29204],[114.24109,22.292],[114.24115,22.29194],[114.24121,22.29183],[114.24122,22.29178],[114.24121,22.2917],[114.24109,22.29152],[114.24108,22.2914],[114.24116,22.29128],[114.24132,22.29117],[114.24138,22.2911],[114.24139,22.29103],[114.24138,22.29094],[114.2413,22.29063],[114.24133,22.29056],[114.24141,22.29047],[114.24153,22.29037],[114.24157,22.2903],[114.24158,22.29023],[114.24154,22.29009],[114.24134,22.28978],[114.2412,22.28952],[114.24116,22.28927],[114.24118,22.28908],[114.24136,22.28864],[114.24158,22.28828],[114.2418,22.28802],[114.24203,22.28772],[114.24209,22.28765],[114.24212,22.28764],[114.24216,22.28765],[114.24224,22.28773],[114.24227,22.2877],[114.24236,22.28744],[114.24236,22.28741],[114.24235,22.2873],[114.24232,22.28721],[114.24223,22.28712],[114.24203,22.28698],[114.24199,22.28692],[114.24198,22.28681],[114.24196,22.28659],[114.24197,22.28642],[114.24202,22.28634],[114.2421,22.28631],[114.24223,22.28634],[114.24238,22.28644],[114.24242,22.28647],[114.24247,22.28648],[114.24249,22.28648],[114.24251,22.28648],[114.24256,22.28646],[114.24264,22.28638],[114.24266,22.28637],[114.24274,22.28645],[114.24282,22.2865],[114.24298,22.28651],[114.24306,22.28652],[114.24315,22.28653],[114.24318,22.28652],[114.24324,22.28649],[114.24328,22.28647],[114.24334,22.28643],[114.24359,22.28625],[114.24366,22.28619],[114.24369,22.28628],[114.24382,22.28653],[114.24406,22.28679],[114.24453,22.28722],[114.24467,22.28742],[114.24474,22.28747],[114.24481,22.28748],[114.24488,22.28764],[114.24497,22.28771],[114.24503,22.28788],[114.24488,22.28834],[114.24488,22.28836],[114.24488,22.28837],[114.24489,22.28837],[114.24491,22.28836],[114.24493,22.28835],[114.24494,22.2883],[114.24496,22.28825],[114.24498,22.28824],[114.24503,22.28824],[114.24505,22.28823],[114.24515,22.28814],[114.2452,22.28812],[114.24536,22.28818],[114.24555,22.28836],[114.24551,22.28846],[114.24552,22.28859],[114.24544,22.28874],[114.24528,22.28874],[114.24504,22.28882],[114.245,22.28885],[114.245,22.28888],[114.245,22.28889],[114.24506,22.28898],[114.24507,22.289],[114.24507,22.28902],[114.24505,22.2891],[114.24505,22.28912],[114.24506,22.28914],[114.24508,22.28915],[114.24509,22.28915],[114.24511,22.28914],[114.24513,22.28912],[114.24515,22.28912],[114.24527,22.28911],[114.24538,22.28912],[114.24541,22.28908],[114.2455,22.28902],[114.24556,22.28899],[114.2457,22.28904],[114.24623,22.28933],[114.24639,22.28956],[114.24639,22.28959],[114.24639,22.2896],[114.24637,22.28964],[114.24636,22.28967],[114.24635,22.28968],[114.24635,22.2897],[114.24637,22.28972],[114.24639,22.28973],[114.2466,22.28987],[114.24665,22.28988],[114.2467,22.28988],[114.24683,22.28984],[114.24686,22.28983],[114.24689,22.28985],[114.24691,22.28987],[114.24704,22.29023],[114.24723,22.29039],[114.24734,22.29062],[114.24735,22.29064],[114.24734,22.29065],[114.24734,22.29066],[114.24732,22.29066],[114.24732,22.29067],[114.24732,22.29068],[114.24733,22.2907],[114.24739,22.29076],[114.24741,22.29079],[114.24742,22.29089],[114.24741,22.29092],[114.24739,22.29093],[114.24733,22.29092],[114.2473,22.29092],[114.2473,22.29093],[114.24732,22.29094],[114.24742,22.29097],[114.2475,22.29101],[114.24751,22.29102],[114.24753,22.29101],[114.24754,22.291],[114.24756,22.291],[114.24771,22.29101],[114.24774,22.29102],[114.24781,22.29111],[114.24782,22.29113],[114.24789,22.29115],[114.24804,22.29123],[114.24805,22.29124],[114.24805,22.29126],[114.24805,22.2913],[114.24805,22.29131],[114.24818,22.29144],[114.24823,22.29147],[114.24823,22.29143],[114.24823,22.29142],[114.24825,22.29142],[114.24828,22.29145],[114.2483,22.29148],[114.24832,22.29151],[114.24833,22.29156],[114.24833,22.29159],[114.24831,22.29162],[114.24823,22.2917],[114.24822,22.29173],[114.24827,22.29184],[114.24832,22.29197],[114.24826,22.29203],[114.2482,22.29203],[114.24828,22.29217],[114.24829,22.29219],[114.24832,22.29221],[114.24839,22.29225],[114.2484,22.29226],[114.24863,22.29252],[114.24863,22.29248],[114.24861,22.29242],[114.24859,22.29238],[114.24861,22.29228],[114.24863,22.29226],[114.24869,22.29218],[114.24871,22.29217],[114.24874,22.29218],[114.24888,22.2922],[114.2489,22.29228],[114.24891,22.29235],[114.24889,22.29241],[114.24886,22.29243],[114.24879,22.29243],[114.24875,22.29241],[114.24873,22.29245],[114.24872,22.29249],[114.24873,22.29254],[114.24876,22.29254],[114.24883,22.29254],[114.24885,22.29254],[114.24886,22.29255],[114.24886,22.29258],[114.24888,22.29258],[114.24906,22.29259],[114.24909,22.29258],[114.24912,22.29256],[114.24917,22.2925],[114.24917,22.29249],[114.24914,22.29244],[114.24915,22.29242],[114.24919,22.29239],[114.24926,22.29237],[114.24929,22.29238],[114.2493,22.2924],[114.24927,22.29243],[114.24927,22.29246],[114.24928,22.29248],[114.2495,22.2926],[114.24958,22.29266],[114.2496,22.29268],[114.24973,22.29273],[114.24977,22.29275],[114.24979,22.29278],[114.24984,22.29289],[114.24985,22.29292],[114.25011,22.2932],[114.25014,22.29327],[114.25016,22.29329],[114.25028,22.29337],[114.25031,22.29339],[114.25031,22.2934],[114.25031,22.29341],[114.25032,22.29343],[114.25034,22.29344],[114.25036,22.29346],[114.25037,22.29346],[114.2504,22.29346],[114.25041,22.29346],[114.25043,22.29348],[114.25043,22.29351],[114.25043,22.29355],[114.25043,22.29357],[114.25043,22.29358],[114.25044,22.29358],[114.25045,22.29357],[114.2505,22.29354],[114.25052,22.29354],[114.25054,22.29355],[114.25055,22.29357],[114.25055,22.29367],[114.25056,22.29369],[114.25057,22.2937],[114.25058,22.2937],[114.25058,22.29369],[114.25061,22.29366],[114.25063,22.29366],[114.25065,22.29367],[114.25066,22.29369],[114.25071,22.29378],[114.25071,22.2938],[114.25071,22.29384],[114.25069,22.29388],[114.25065,22.29393],[114.25064,22.29394],[114.25058,22.29393],[114.25055,22.29396],[114.25056,22.294],[114.25055,22.2941],[114.25061,22.29419],[114.25063,22.29432],[114.25066,22.29434],[114.25073,22.29438],[114.25075,22.29439],[114.25074,22.29441],[114.25069,22.29445],[114.25067,22.29446],[114.25065,22.29447],[114.25066,22.29448],[114.25066,22.2945],[114.25074,22.29455],[114.25075,22.29455],[114.25075,22.29456],[114.25072,22.29458],[114.25072,22.29458],[114.25072,22.29459],[114.25076,22.29458],[114.25082,22.29457],[114.25082,22.29456],[114.25082,22.29455],[114.25081,22.29454],[114.25081,22.29453],[114.25081,22.29453],[114.25091,22.2945],[114.25092,22.29449],[114.25093,22.29448],[114.25093,22.29442],[114.25094,22.29441],[114.25095,22.2944],[114.25108,22.29436],[114.25111,22.29435],[114.25116,22.29437],[114.25124,22.29443],[114.25132,22.29453],[114.25138,22.29455],[114.2515,22.29464],[114.25159,22.29478],[114.25162,22.2949],[114.25173,22.29508],[114.25168,22.29526],[114.25171,22.29539],[114.25171,22.29544],[114.25158,22.29565],[114.25156,22.29567],[114.25154,22.29567],[114.25192,22.29589],[114.25201,22.29592],[114.25217,22.29597],[114.25223,22.29597],[114.25225,22.29596],[114.25227,22.29594],[114.25225,22.29586],[114.25227,22.29584],[114.25233,22.29582],[114.25235,22.29582],[114.25239,22.29585],[114.25262,22.29605],[114.25266,22.29611],[114.25276,22.29617],[114.25281,22.2962],[114.25287,22.29629],[114.25286,22.2963],[114.25284,22.29634],[114.25284,22.29637],[114.25291,22.29646],[114.25293,22.29647],[114.25297,22.29648],[114.253,22.29647],[114.253,22.29643],[114.25301,22.29642],[114.25302,22.2964],[114.25304,22.29644],[114.25302,22.29654],[114.25302,22.29658],[114.25305,22.29664],[114.25306,22.29665],[114.25307,22.29664],[114.25307,22.29659],[114.2531,22.29657],[114.25315,22.29662],[114.25324,22.29676],[114.25326,22.29683],[114.25326,22.29688],[114.25317,22.29696],[114.25315,22.29699],[114.25315,22.29705],[114.25317,22.29713],[114.25321,22.29716],[114.25328,22.29721],[114.2533,22.29722],[114.25337,22.29721],[114.25339,22.29722],[114.25345,22.29728],[114.25392,22.29745],[114.25398,22.29746],[114.254,22.29744],[114.25407,22.29724],[114.25409,22.29721],[114.25412,22.29721],[114.25418,22.29722],[114.2542,22.29721],[114.25422,22.2972],[114.25424,22.29718],[114.25425,22.29715],[114.25421,22.29709],[114.2542,22.29706],[114.25422,22.29702],[114.25424,22.297],[114.25429,22.297],[114.25437,22.29704],[114.25452,22.29716],[114.25462,22.29725],[114.25467,22.29734],[114.25467,22.29765],[114.25473,22.29806],[114.25483,22.2982],[114.25484,22.29834],[114.25482,22.29848],[114.25481,22.29858],[114.25475,22.29859],[114.25462,22.29853],[114.25463,22.29866],[114.25465,22.29868],[114.25466,22.29872],[114.25464,22.2988],[114.25475,22.29889],[114.25471,22.29893],[114.25469,22.29903],[114.25473,22.29907],[114.25555,22.29932],[114.25558,22.30017],[114.2556,22.30092],[114.25562,22.30155],[114.25579,22.30154],[114.25589,22.30155],[114.25601,22.30154],[114.25606,22.30154],[114.25611,22.30154],[114.25619,22.30154],[114.25621,22.30148],[114.25619,22.30143],[114.25619,22.30137],[114.2562,22.30133],[114.25619,22.30127],[114.25621,22.30116],[114.2562,22.30106],[114.25619,22.30092],[114.25618,22.30084],[114.25618,22.30075],[114.25619,22.30067],[114.25621,22.30063],[114.25624,22.30055],[114.25625,22.3005],[114.25625,22.30039],[114.25626,22.30035],[114.2563,22.30034],[114.25633,22.30034],[114.25633,22.30025],[114.25663,22.30025],[114.25663,22.30035],[114.25668,22.30035],[114.25672,22.30037],[114.25673,22.30043],[114.25674,22.30051],[114.25675,22.3006],[114.25674,22.30068],[114.25673,22.30083],[114.25674,22.3009],[114.25676,22.30092],[114.25717,22.3013],[114.25868,22.30131],[114.25905,22.30132],[114.25933,22.30132],[114.25958,22.30133],[114.2596,22.30136],[114.25965,22.30162],[114.25967,22.30167],[114.25968,22.30169],[114.25975,22.30175],[114.25976,22.30177],[114.25988,22.30183],[114.25994,22.30184],[114.26006,22.30184],[114.26018,22.3018],[114.26023,22.30178],[114.26037,22.30165],[114.26041,22.30153],[114.26041,22.30138],[114.26043,22.30132],[114.26047,22.30131],[114.26078,22.30131],[114.26092,22.30132],[114.26117,22.30132],[114.26133,22.30133],[114.26143,22.30131],[114.26147,22.30131],[114.26156,22.30134],[114.26162,22.30134],[114.26187,22.30133],[114.26249,22.30133],[114.26283,22.30135],[114.26316,22.30148],[114.26343,22.30169],[114.26379,22.30228],[114.26513,22.30468],[114.26524,22.3049],[114.26533,22.30509],[114.26534,22.30516],[114.26536,22.30528],[114.26536,22.3054],[114.26534,22.30558],[114.2653,22.30575],[114.2648,22.30695],[114.26488,22.30698],[114.26485,22.30704],[114.26478,22.30701],[114.26434,22.30806],[114.26444,22.30833],[114.26443,22.30862],[114.2646,22.30888],[114.26467,22.309],[114.2647,22.30902],[114.26477,22.30906],[114.26481,22.30906],[114.26485,22.30905],[114.26487,22.309],[114.26487,22.30898],[114.26488,22.30893],[114.26491,22.3089],[114.26498,22.30887],[114.26501,22.30884],[114.26501,22.30882],[114.265,22.3088],[114.26498,22.30877],[114.26496,22.30875],[114.26497,22.30873],[114.26502,22.30869],[114.26505,22.30867],[114.26508,22.30866],[114.26512,22.30866],[114.26513,22.30863],[114.26511,22.30858],[114.26506,22.30854],[114.26504,22.30851],[114.26507,22.30849],[114.2651,22.30848],[114.26513,22.3085],[114.26516,22.30854],[114.2652,22.30853],[114.26522,22.30852],[114.26525,22.30851],[114.26525,22.30849],[114.26525,22.30846],[114.26521,22.30844],[114.2652,22.30842],[114.26522,22.3084],[114.26529,22.30834],[114.26532,22.30829],[114.26536,22.30825],[114.26538,22.30824],[114.26541,22.30825],[114.26548,22.30823],[114.26549,22.30821],[114.26551,22.30819],[114.26554,22.30818],[114.26557,22.30819],[114.26561,22.30818],[114.26564,22.30815],[114.26567,22.30815],[114.26572,22.30812],[114.26577,22.3081],[114.26582,22.30806],[114.26582,22.30799],[114.2658,22.30795],[114.26578,22.30793],[114.26575,22.30791],[114.26577,22.30777],[114.2658,22.30771],[114.26583,22.30766],[114.26588,22.30757],[114.26607,22.30736],[114.26616,22.30712],[114.2661,22.30672],[114.26594,22.30621],[114.26595,22.30609],[114.26603,22.30596],[114.26613,22.30589],[114.26625,22.30585],[114.26684,22.30573],[114.26684,22.30568],[114.26652,22.30515],[114.26624,22.30464],[114.26614,22.30446],[114.26579,22.30382],[114.26576,22.30369],[114.26513,22.30257],[114.26507,22.30256],[114.26504,22.30251],[114.26415,22.30092],[114.26406,22.30077],[114.26391,22.30044],[114.26391,22.30042],[114.26385,22.30026],[114.26382,22.30015],[114.26379,22.29998],[114.26379,22.29991],[114.26379,22.29978],[114.2638,22.29969],[114.2638,22.29959],[114.26385,22.29926],[114.26387,22.29915],[114.26402,22.2982],[114.26402,22.29811],[114.26392,22.29809],[114.26398,22.29787],[114.264,22.29788],[114.26403,22.29779],[114.26401,22.29778],[114.26405,22.29765],[114.26416,22.29768],[114.26424,22.29743],[114.26428,22.2973],[114.26448,22.29704],[114.26494,22.29663],[114.26534,22.29637],[114.26577,22.29617],[114.26656,22.2959],[114.2666,22.29585],[114.26662,22.29568],[114.26664,22.29558],[114.26665,22.29557],[114.26671,22.29554],[114.2667,22.29189],[114.27102,22.29188],[114.27102,22.29115],[114.27096,22.29112],[114.27094,22.29107],[114.27095,22.29089],[114.27097,22.29009],[114.27096,22.28987],[114.27096,22.28978],[114.27088,22.28962],[114.27054,22.28911],[114.27019,22.28857],[114.27008,22.28863],[114.26998,22.28847],[114.27009,22.28841],[114.26987,22.28807],[114.2693,22.28717],[114.26889,22.2865],[114.26883,22.28642],[114.26846,22.28581],[114.26816,22.28536],[114.26734,22.28409],[114.26735,22.28407],[114.26733,22.28403],[114.26731,22.28404],[114.26725,22.28393],[114.26715,22.28376],[114.26701,22.28384],[114.26664,22.28326],[114.26678,22.28318],[114.26642,22.28262],[114.26633,22.28247],[114.26634,22.28245],[114.26636,22.28242],[114.26648,22.28234],[114.26672,22.28222],[114.26685,22.28214],[114.26704,22.28204],[114.2672,22.28194],[114.2673,22.28189],[114.26751,22.28176],[114.26753,22.28175],[114.26759,22.28174],[114.2676,22.28173],[114.26762,22.28172],[114.26759,22.28162],[114.26759,22.28156],[114.26758,22.28155],[114.26756,22.28155],[114.26746,22.2815],[114.26741,22.28145],[114.26739,22.28141],[114.26739,22.28136],[114.26738,22.28131],[114.26737,22.28125],[114.26735,22.28121],[114.26734,22.28117],[114.26735,22.2811],[114.26735,22.28096],[114.26737,22.2809],[114.26739,22.28087],[114.2674,22.28084],[114.26737,22.28081],[114.26737,22.28078],[114.26738,22.28072],[114.26737,22.28063],[114.26732,22.28053],[114.26725,22.28034],[114.26714,22.28013],[114.26704,22.27981],[114.26695,22.27968],[114.26683,22.27963],[114.26681,22.27956],[114.26675,22.27945],[114.26673,22.27944],[114.26669,22.27943],[114.26666,22.27942],[114.26664,22.27942],[114.26659,22.27947],[114.26657,22.27947],[114.26656,22.27947],[114.26653,22.27948],[114.26651,22.27947],[114.26649,22.27946],[114.26647,22.27945],[114.26645,22.27945],[114.26643,22.27946],[114.26642,22.27947],[114.26641,22.27947],[114.26638,22.27945],[114.26638,22.27944],[114.26639,22.27943],[114.26643,22.27942],[114.26644,22.2794],[114.26642,22.27938],[114.26641,22.27938],[114.26638,22.27938],[114.26636,22.27941],[114.26634,22.27946],[114.26634,22.27946],[114.26621,22.27947],[114.26611,22.27935],[114.2661,22.27927],[114.26611,22.27924],[114.26611,22.27922],[114.26602,22.27921],[114.266,22.27919],[114.26598,22.27912],[114.26595,22.2791],[114.26595,22.27906],[114.26595,22.27905],[114.26592,22.27906],[114.2659,22.27905],[114.26594,22.27889],[114.26586,22.27891],[114.26581,22.27886],[114.26572,22.27882],[114.26572,22.27877],[114.26566,22.27872],[114.2655,22.27866],[114.26545,22.27858],[114.26552,22.27853],[114.26557,22.27851],[114.26547,22.27847],[114.26541,22.27848],[114.26536,22.27844],[114.26535,22.27839],[114.2653,22.27843],[114.26527,22.27838],[114.26532,22.27827],[114.26532,22.27825],[114.26527,22.27825],[114.26526,22.27823],[114.2653,22.27818],[114.26534,22.2781],[114.26533,22.27808],[114.26526,22.27814],[114.2652,22.27814],[114.26514,22.27812],[114.26512,22.27815],[114.26514,22.27819],[114.26513,22.27821],[114.2651,22.27817],[114.26495,22.2781],[114.26493,22.27802],[114.26496,22.27795],[114.26495,22.27793],[114.26491,22.27793],[114.26489,22.27784],[114.26491,22.27761],[114.26496,22.27755],[114.26501,22.27746],[114.26498,22.27743],[114.26492,22.27749],[114.26486,22.27751],[114.26482,22.27758],[114.26485,22.27764],[114.26486,22.27766],[114.26483,22.27772],[114.26465,22.27767],[114.26465,22.27762],[114.2647,22.27755],[114.26474,22.27747],[114.26477,22.27742],[114.26495,22.27738],[114.26475,22.27708],[114.26476,22.27697],[114.26472,22.27697],[114.26477,22.27684],[114.26481,22.27647],[114.26467,22.27642],[114.26468,22.27626],[114.26473,22.27618],[114.26477,22.2762],[114.26485,22.27611],[114.26494,22.27609],[114.26493,22.27602],[114.26496,22.27596],[114.26493,22.27595],[114.26483,22.27601],[114.26476,22.27603],[114.26473,22.276],[114.26465,22.27603],[114.2646,22.27588],[114.26467,22.27573],[114.26456,22.27573],[114.26454,22.27567],[114.26456,22.27555],[114.26462,22.27551],[114.26462,22.2756],[114.26464,22.2756],[114.26465,22.27552],[114.26474,22.27548],[114.26482,22.27553],[114.26483,22.27566],[114.26489,22.27567],[114.26504,22.2756],[114.26507,22.27555],[114.26495,22.27539],[114.26498,22.27517],[114.26506,22.27513],[114.26507,22.27535],[114.26514,22.27535],[114.26511,22.2752],[114.26512,22.27507],[114.26517,22.27516],[114.26521,22.27514],[114.26522,22.27506],[114.26528,22.27499],[114.26528,22.2749],[114.26532,22.27498],[114.26536,22.27498],[114.26537,22.27489],[114.26558,22.27451],[114.26579,22.2744],[114.2658,22.27433],[114.26607,22.27419],[114.26617,22.27417],[114.26618,22.27417],[114.26619,22.27417],[114.26624,22.27417],[114.26625,22.27417],[114.26627,22.27417],[114.26627,22.27417],[114.26628,22.27417],[114.26629,22.27417],[114.26631,22.27417],[114.26631,22.27417],[114.26634,22.27417],[114.26634,22.27417],[114.26635,22.27417],[114.26635,22.27417],[114.26636,22.27417],[114.26638,22.27416],[114.26642,22.27416],[114.26646,22.27416],[114.26653,22.27422],[114.26645,22.27433],[114.26631,22.27437],[114.2663,22.27438],[114.26628,22.27438],[114.26627,22.27438],[114.26627,22.27438],[114.26627,22.27438],[114.26626,22.27439],[114.26626,22.27439],[114.26626,22.27439],[114.26626,22.2744],[114.26626,22.2744],[114.26626,22.27441],[114.26626,22.27441],[114.26626,22.27441],[114.26627,22.27442],[114.26627,22.27442],[114.26628,22.27442],[114.26628,22.27442],[114.26628,22.27442],[114.26628,22.27442],[114.26659,22.27449],[114.26664,22.27454],[114.26684,22.27407],[114.2682,22.27457],[114.26869,22.27476],[114.26888,22.27483],[114.26902,22.27488],[114.26922,22.27495],[114.26923,22.27493],[114.26933,22.2747],[114.27012,22.27291],[114.26796,22.27208],[114.26805,22.27186],[114.268,22.27184],[114.26799,22.27184],[114.26801,22.27181],[114.26801,22.27181],[114.268,22.2718],[114.26799,22.2718],[114.26796,22.27179],[114.26795,22.27179],[114.26794,22.27178],[114.26793,22.27178],[114.26793,22.27177],[114.26793,22.27176],[114.26793,22.27175],[114.26795,22.27172],[114.26798,22.27168],[114.26801,22.27163],[114.26803,22.2716],[114.26806,22.27156],[114.26807,22.27154],[114.26809,22.2715],[114.26811,22.27145],[114.26813,22.27141],[114.2682,22.27131],[114.26828,22.27119],[114.26837,22.27103],[114.26845,22.27091],[114.26851,22.27081],[114.26856,22.27073],[114.26861,22.27065],[114.26866,22.27059],[114.26871,22.27055],[114.26878,22.27052],[114.26879,22.27051],[114.26908,22.27065],[114.26962,22.26977],[114.27385,22.26287],[114.27466,22.26332],[114.27466,22.26332],[114.27466,22.26332],[114.27467,22.26333],[114.27467,22.26333],[114.27467,22.26333],[114.27467,22.26334],[114.27467,22.26334],[114.27468,22.26335],[114.27468,22.26335],[114.27468,22.26335],[114.27468,22.26336],[114.27468,22.26336],[114.27469,22.26337],[114.27469,22.26337],[114.27469,22.26337],[114.27469,22.26338],[114.27469,22.26338],[114.2747,22.26339],[114.2747,22.2634],[114.2747,22.2634],[114.2747,22.2634],[114.2747,22.26341],[114.27471,22.26341],[114.27471,22.26341],[114.27471,22.26342],[114.27471,22.26342],[114.27471,22.26343],[114.27472,22.26344],[114.27472,22.26344],[114.27472,22.26344],[114.27472,22.26345],[114.27472,22.26346],[114.27472,22.26346],[114.27473,22.26347],[114.27473,22.26347],[114.27473,22.26347],[114.27473,22.26348],[114.27473,22.26348],[114.27473,22.26349],[114.27474,22.26349],[114.27474,22.2635],[114.27474,22.2635],[114.27474,22.2635],[114.27474,22.26351],[114.27474,22.26351],[114.27475,22.26352],[114.27475,22.26352],[114.27475,22.26352],[114.27477,22.26354],[114.27481,22.26359],[114.27499,22.26373],[114.27509,22.26379],[114.27524,22.26383],[114.27537,22.26385],[114.27552,22.26385],[114.27576,22.26384],[114.2759,22.26385],[114.2761,22.26387],[114.27615,22.26388],[114.27619,22.26389],[114.27623,22.2639],[114.27623,22.2639],[114.27624,22.2639],[114.27624,22.2639],[114.27625,22.2639],[114.27625,22.2639],[114.27626,22.2639],[114.27626,22.2639],[114.27627,22.2639],[114.27627,22.2639],[114.27628,22.26391],[114.27628,22.26391],[114.27629,22.26391],[114.27629,22.26391],[114.2763,22.26391],[114.2763,22.26391],[114.27631,22.26391],[114.27631,22.26391],[114.27632,22.26391],[114.27632,22.26391],[114.27633,22.26391],[114.27633,22.26392],[114.27634,22.26392],[114.27634,22.26392],[114.27634,22.26392],[114.27636,22.26392],[114.27637,22.26392],[114.27637,22.26392],[114.27638,22.26393],[114.27638,22.26393],[114.27639,22.26393],[114.27639,22.26393],[114.2764,22.26393],[114.2764,22.26393],[114.27641,22.26393],[114.27641,22.26393],[114.27642,22.26393],[114.27642,22.26394],[114.27642,22.26394],[114.27643,22.26394],[114.27643,22.26394],[114.27644,22.26394],[114.27644,22.26394],[114.27645,22.26394],[114.27646,22.26395],[114.27646,22.26395],[114.27647,22.26395],[114.27647,22.26395],[114.27648,22.26395],[114.27648,22.26395],[114.27648,22.26395],[114.27649,22.26396],[114.2765,22.26396],[114.2765,22.26396],[114.27651,22.26396],[114.27651,22.26396],[114.27652,22.26396],[114.27652,22.26396],[114.27653,22.26396],[114.27653,22.26397],[114.27654,22.26397],[114.27654,22.26397],[114.27655,22.26397],[114.27655,22.26397],[114.27655,22.26397],[114.27656,22.26398],[114.27656,22.26398],[114.27657,22.26398],[114.27657,22.26398],[114.27658,22.26398],[114.27658,22.26398],[114.27659,22.26398],[114.27659,22.26399],[114.2766,22.26399],[114.2766,22.26399],[114.27661,22.26399],[114.27661,22.26399],[114.27661,22.26399],[114.27662,22.26399],[114.27662,22.264],[114.27663,22.264],[114.27663,22.264],[114.27664,22.264],[114.27664,22.264],[114.27665,22.264],[114.27665,22.26401],[114.27665,22.26401],[114.27666,22.26401],[114.27666,22.26401],[114.27667,22.26401],[114.27667,22.26401],[114.27668,22.26402],[114.27668,22.26402],[114.27669,22.26402],[114.27669,22.26402],[114.27669,22.26402],[114.2767,22.26403],[114.2767,22.26403],[114.27671,22.26403],[114.27671,22.26403],[114.27672,22.26403],[114.27672,22.26403],[114.27673,22.26404],[114.27673,22.26404],[114.27673,22.26404],[114.27674,22.26404],[114.27674,22.26404],[114.27675,22.26405],[114.27675,22.26405],[114.27676,22.26405],[114.27676,22.26405],[114.27677,22.26405],[114.27677,22.26406],[114.27677,22.26406],[114.27678,22.26406],[114.27678,22.26406],[114.27679,22.26406],[114.27679,22.26407],[114.2768,22.26407],[114.2768,22.26407],[114.2768,22.26407],[114.27681,22.26407],[114.27681,22.26408],[114.27682,22.26408],[114.27682,22.26408],[114.27683,22.26408],[114.27683,22.26409],[114.27684,22.26409],[114.27684,22.26409],[114.27684,22.26409],[114.27685,22.26409],[114.27685,22.2641],[114.27686,22.2641],[114.27686,22.2641],[114.27687,22.2641],[114.27687,22.2641],[114.27687,22.26411],[114.27688,22.26411],[114.27688,22.26411],[114.27688,22.26411],[114.27688,22.26411],[114.27689,22.26411],[114.27689,22.26411],[114.2769,22.26412],[114.2769,22.26412],[114.27691,22.26412],[114.27691,22.26412],[114.27691,22.26412],[114.27692,22.26413],[114.27692,22.26413],[114.27693,22.26413],[114.27693,22.26413],[114.27694,22.26414],[114.27694,22.26414],[114.27694,22.26414],[114.27695,22.26414],[114.27695,22.26414],[114.27696,22.26415],[114.27696,22.26415],[114.27696,22.26415],[114.27697,22.26415],[114.27697,22.26416],[114.27698,22.26416],[114.27698,22.26416],[114.27699,22.26416],[114.27699,22.26416],[114.27699,22.26417],[114.277,22.26417],[114.277,22.26417],[114.27701,22.26417],[114.27701,22.26418],[114.27702,22.26418],[114.27702,22.26418],[114.27702,22.26418],[114.27703,22.26419],[114.27703,22.26419],[114.27704,22.26419],[114.27704,22.26419],[114.27704,22.2642],[114.27705,22.2642],[114.27705,22.2642],[114.27706,22.2642],[114.27706,22.26421],[114.27706,22.26421],[114.27707,22.26421],[114.27707,22.26421],[114.27708,22.26422],[114.27708,22.26422],[114.27708,22.26422],[114.27709,22.26422],[114.27709,22.26422],[114.27709,22.26422],[114.27709,22.26423],[114.2771,22.26423],[114.2771,22.26423],[114.2771,22.26423],[114.27711,22.26424],[114.27711,22.26424],[114.27712,22.26424],[114.27712,22.26424],[114.27712,22.26425],[114.27713,22.26425],[114.27713,22.26425],[114.27714,22.26425],[114.27714,22.26426],[114.27714,22.26426],[114.27715,22.26426],[114.27715,22.26426],[114.27716,22.26427],[114.27716,22.26427],[114.27716,22.26427],[114.27717,22.26427],[114.27717,22.26428],[114.27718,22.26428],[114.27718,22.26429],[114.27719,22.26429],[114.27719,22.26429],[114.27719,22.26429],[114.2772,22.2643],[114.2772,22.2643],[114.27721,22.2643],[114.27721,22.26431],[114.27721,22.26431],[114.27722,22.26431],[114.27722,22.26431],[114.27722,22.26432],[114.27723,22.26432],[114.27723,22.26432],[114.27724,22.26433],[114.27724,22.26433],[114.27724,22.26433],[114.27725,22.26433],[114.27725,22.26434],[114.27725,22.26434],[114.27726,22.26434],[114.27726,22.26435],[114.27727,22.26435],[114.27727,22.26435],[114.27727,22.26435],[114.27728,22.26436],[114.27728,22.26436],[114.27728,22.26436],[114.27729,22.26437],[114.27729,22.26437],[114.27729,22.26437],[114.2773,22.26438],[114.2773,22.26438],[114.27731,22.26438],[114.27731,22.26438],[114.27731,22.26439],[114.27732,22.26439],[114.27732,22.26439],[114.27732,22.2644],[114.27733,22.2644],[114.27734,22.2644],[114.27734,22.26441],[114.27734,22.26441],[114.27735,22.26441],[114.27735,22.26442],[114.27735,22.26442],[114.27736,22.26442],[114.27737,22.26443],[114.27737,22.26443],[114.27737,22.26443],[114.27738,22.26444],[114.27738,22.26444],[114.27739,22.26444],[114.27739,22.26444],[114.27739,22.26445],[114.2774,22.26445],[114.2774,22.26445],[114.2774,22.26445],[114.27741,22.26446],[114.27741,22.26446],[114.27742,22.26446],[114.27742,22.26447],[114.27742,22.26447],[114.27743,22.26447],[114.27743,22.26447],[114.27744,22.26448],[114.27744,22.26448],[114.27744,22.26448],[114.27745,22.26448],[114.27745,22.26449],[114.27746,22.26449],[114.27746,22.26449],[114.27746,22.26449],[114.27747,22.2645],[114.27747,22.2645],[114.27748,22.2645],[114.27748,22.2645],[114.27748,22.26451],[114.27749,22.26451],[114.27749,22.26451],[114.2775,22.26451],[114.2775,22.26452],[114.2775,22.26452],[114.27751,22.26452],[114.27751,22.26452],[114.27752,22.26453],[114.27752,22.26453],[114.27752,22.26453],[114.27753,22.26453],[114.27753,22.26454],[114.27754,22.26454],[114.27754,22.26454],[114.27754,22.26454],[114.27755,22.26455],[114.27755,22.26455],[114.27756,22.26455],[114.27756,22.26455],[114.27756,22.26456],[114.27757,22.26456],[114.27757,22.26456],[114.27758,22.26457],[114.27758,22.26457],[114.27758,22.26457],[114.27759,22.26457],[114.27759,22.26458],[114.27759,22.26458],[114.2776,22.26458],[114.2776,22.26459],[114.27761,22.26459],[114.27761,22.26459],[114.27761,22.26459],[114.27762,22.2646],[114.27762,22.2646],[114.27762,22.2646],[114.27763,22.26461],[114.27763,22.26461],[114.27764,22.26461],[114.27764,22.26461],[114.27764,22.26462],[114.27765,22.26462],[114.27765,22.26462],[114.27765,22.26463],[114.27766,22.26463],[114.27766,22.26463],[114.27773,22.26467],[114.27786,22.26478],[114.27809,22.26495],[114.27808,22.26496],[114.27865,22.26583],[114.27882,22.26603],[114.27882,22.26604],[114.27882,22.26604],[114.27882,22.26604],[114.27881,22.26604],[114.27881,22.26605],[114.2788,22.26605],[114.2788,22.26605],[114.27879,22.26605],[114.27879,22.26605],[114.27878,22.26605],[114.27877,22.26605],[114.27877,22.26605],[114.27877,22.26605],[114.27875,22.26606],[114.27875,22.26606],[114.27874,22.26606],[114.27873,22.26606],[114.27872,22.26607],[114.27871,22.26607],[114.27871,22.26607],[114.2787,22.26607],[114.2787,22.26607],[114.27869,22.26607],[114.27869,22.26607],[114.27869,22.26607],[114.27868,22.26608],[114.27868,22.26608],[114.27867,22.26608],[114.27867,22.26608],[114.27867,22.26608],[114.27866,22.26608],[114.27866,22.26608],[114.27865,22.26609],[114.27865,22.26609],[114.27864,22.26609],[114.27864,22.26609],[114.27863,22.26609],[114.27863,22.26609],[114.27862,22.26609],[114.27862,22.2661],[114.27861,22.2661],[114.27861,22.2661],[114.27861,22.2661],[114.2786,22.2661],[114.2786,22.2661],[114.27859,22.26611],[114.27859,22.26611],[114.27858,22.26611],[114.27858,22.26611],[114.27857,22.26611],[114.27857,22.26611],[114.27856,22.26611],[114.27856,22.26612],[114.27856,22.26612],[114.27855,22.26612],[114.27855,22.26612],[114.27854,22.26612],[114.27854,22.26612],[114.27853,22.26613],[114.27853,22.26613],[114.27852,22.26613],[114.27852,22.26613],[114.27851,22.26613],[114.27851,22.26613],[114.27851,22.26614],[114.2785,22.26614],[114.27849,22.26614],[114.27849,22.26614],[114.27848,22.26614],[114.27848,22.26615],[114.27847,22.26615],[114.27847,22.26615],[114.27847,22.26615],[114.27846,22.26615],[114.27846,22.26616],[114.27845,22.26616],[114.27845,22.26616],[114.27844,22.26616],[114.27844,22.26616],[114.27844,22.26617],[114.27843,22.26617],[114.27843,22.26617],[114.27842,22.26617],[114.27842,22.26617],[114.27841,22.26618],[114.27841,22.26618],[114.27841,22.26618],[114.2784,22.26618],[114.2784,22.26618],[114.27839,22.26619],[114.27839,22.26619],[114.27838,22.26619],[114.27838,22.26619],[114.27838,22.2662],[114.27837,22.2662],[114.27837,22.2662],[114.27836,22.2662],[114.27836,22.26621],[114.27835,22.26621],[114.27835,22.26621],[114.27835,22.26621],[114.27834,22.26622],[114.27834,22.26622],[114.27833,22.26622],[114.27833,22.26623],[114.27832,22.26623],[114.27831,22.26624],[114.2782,22.26633],[114.27819,22.26634],[114.27818,22.26635],[114.27818,22.26635],[114.27817,22.26635],[114.27817,22.26636],[114.27817,22.26636],[114.27816,22.26636],[114.27816,22.26637],[114.27815,22.26637],[114.27815,22.26637],[114.27815,22.26638],[114.27814,22.26638],[114.27814,22.26638],[114.27814,22.26638],[114.27813,22.26639],[114.27813,22.26639],[114.27813,22.26639],[114.27812,22.2664],[114.27812,22.2664],[114.27812,22.2664],[114.27811,22.26641],[114.27811,22.26641],[114.27811,22.26641],[114.2781,22.26642],[114.2781,22.26642],[114.2781,22.26642],[114.27809,22.26643],[114.27809,22.26643],[114.27809,22.26643],[114.27808,22.26644],[114.27808,22.26644],[114.27808,22.26644],[114.27807,22.26645],[114.27807,22.26645],[114.27807,22.26645],[114.27806,22.26646],[114.27801,22.26652],[114.27791,22.26664],[114.27781,22.26675],[114.27773,22.26686],[114.27765,22.26697],[114.27765,22.26698],[114.27764,22.26699],[114.27764,22.26699],[114.27764,22.267],[114.27764,22.267],[114.27763,22.267],[114.27763,22.26701],[114.27763,22.26701],[114.27763,22.26702],[114.27762,22.26702],[114.27762,22.26702],[114.27762,22.26703],[114.27762,22.26703],[114.27761,22.26704],[114.27761,22.26704],[114.27761,22.26704],[114.27761,22.26705],[114.2776,22.26705],[114.2776,22.26706],[114.2776,22.26706],[114.2776,22.26706],[114.27759,22.26707],[114.27759,22.26707],[114.27759,22.26708],[114.27759,22.26708],[114.27759,22.26708],[114.27758,22.26709],[114.27758,22.26709],[114.27758,22.2671],[114.27758,22.2671],[114.27758,22.2671],[114.27757,22.26711],[114.27757,22.26711],[114.27757,22.26712],[114.27757,22.26712],[114.27757,22.26712],[114.27756,22.26713],[114.27756,22.26713],[114.27756,22.26714],[114.27756,22.26714],[114.27755,22.26714],[114.27755,22.26715],[114.27755,22.26715],[114.27755,22.26715],[114.27755,22.26716],[114.27754,22.26716],[114.27754,22.26717],[114.27754,22.26717],[114.27754,22.26717],[114.27753,22.26718],[114.27753,22.26718],[114.27753,22.26719],[114.27753,22.26719],[114.27752,22.2672],[114.27752,22.2672],[114.27752,22.2672],[114.27752,22.26721],[114.27752,22.26721],[114.27751,22.26721],[114.27751,22.26722],[114.27751,22.26722],[114.27751,22.26723],[114.2775,22.26723],[114.2775,22.26723],[114.2775,22.26724],[114.2775,22.26724],[114.27749,22.26725],[114.27749,22.26725],[114.27749,22.26725],[114.27749,22.26726],[114.27748,22.26726],[114.27748,22.26727],[114.27748,22.26727],[114.27748,22.26727],[114.27747,22.26728],[114.27747,22.26728],[114.27747,22.26728],[114.27747,22.26729],[114.27746,22.26729],[114.27746,22.2673],[114.27746,22.2673],[114.27746,22.2673],[114.27745,22.26731],[114.27745,22.26731],[114.27745,22.26732],[114.27745,22.26732],[114.27744,22.26732],[114.27744,22.26733],[114.27744,22.26733],[114.27744,22.26734],[114.27743,22.26734],[114.27743,22.26734],[114.27743,22.26735],[114.27743,22.26735],[114.27742,22.26735],[114.27742,22.26736],[114.27742,22.26736],[114.27742,22.26737],[114.27742,22.26737],[114.27741,22.26737],[114.27741,22.26738],[114.27741,22.26738],[114.27741,22.26739],[114.2774,22.26739],[114.2774,22.26739],[114.2774,22.2674],[114.2774,22.2674],[114.27739,22.26741],[114.27739,22.26741],[114.27739,22.26741],[114.27739,22.26742],[114.27739,22.26742],[114.27738,22.26743],[114.27738,22.26743],[114.27738,22.26743],[114.27738,22.26744],[114.27738,22.26744],[114.27737,22.26745],[114.27737,22.26745],[114.27737,22.26745],[114.27737,22.26746],[114.27736,22.26746],[114.27736,22.26747],[114.27736,22.26747],[114.27736,22.26748],[114.27736,22.26748],[114.27735,22.26748],[114.27735,22.26749],[114.27735,22.26749],[114.27735,22.2675],[114.27734,22.2675],[114.27734,22.26751],[114.27734,22.26751],[114.27734,22.26752],[114.27734,22.26752],[114.27734,22.26753],[114.27733,22.26753],[114.27733,22.26753],[114.27733,22.26754],[114.27733,22.26754],[114.27733,22.26755],[114.27732,22.26755],[114.27732,22.26755],[114.27732,22.26756],[114.27732,22.26756],[114.27732,22.26757],[114.27732,22.26757],[114.27731,22.26757],[114.27731,22.26758],[114.27731,22.26758],[114.27731,22.26758],[114.27731,22.26759],[114.2773,22.26759],[114.2773,22.2676],[114.2773,22.2676],[114.2773,22.26761],[114.2773,22.26761],[114.2773,22.26761],[114.27729,22.26762],[114.27729,22.26762],[114.27729,22.26763],[114.27729,22.26763],[114.27729,22.26764],[114.27728,22.26765],[114.27728,22.26765],[114.27728,22.26766],[114.27728,22.26766],[114.27728,22.26767],[114.27728,22.26767],[114.27728,22.26768],[114.27728,22.26768],[114.27728,22.26768],[114.27728,22.26769],[114.27727,22.2677],[114.27727,22.2677],[114.27727,22.26771],[114.27727,22.26772],[114.27727,22.26772],[114.27727,22.26772],[114.27727,22.26773],[114.27727,22.26773],[114.27727,22.26774],[114.27727,22.26774],[114.27727,22.26775],[114.27727,22.26775],[114.27727,22.26776],[114.27726,22.26776],[114.27726,22.26776],[114.27726,22.26777],[114.27726,22.26777],[114.27726,22.26778],[114.27726,22.26778],[114.27726,22.26779],[114.27726,22.2678],[114.27726,22.2678],[114.27726,22.2678],[114.27725,22.26782],[114.27725,22.26782],[114.27725,22.26783],[114.27725,22.26783],[114.27725,22.26784],[114.27725,22.26784],[114.27725,22.26785],[114.27724,22.26785],[114.27724,22.26786],[114.27724,22.26786],[114.27724,22.26787],[114.27724,22.26787],[114.27724,22.26788],[114.27724,22.26788],[114.27724,22.26788],[114.27724,22.26789],[114.27724,22.26789],[114.27723,22.2679],[114.27723,22.2679],[114.27723,22.26791],[114.27723,22.26791],[114.27723,22.26791],[114.27723,22.26792],[114.27723,22.26792],[114.27723,22.26793],[114.27723,22.26793],[114.27723,22.26794],[114.27723,22.26794],[114.27723,22.26795],[114.27722,22.26795],[114.27722,22.26795],[114.27722,22.26796],[114.27722,22.26796],[114.27722,22.26797],[114.27722,22.26797],[114.27722,22.26798],[114.27722,22.26799],[114.27722,22.268],[114.27722,22.268],[114.27722,22.268],[114.27722,22.26801],[114.27721,22.26801],[114.27721,22.26802],[114.27721,22.26802],[114.27721,22.26803],[114.27721,22.26804],[114.27721,22.26804],[114.27721,22.26805],[114.27721,22.26805],[114.27721,22.26806],[114.27721,22.26807],[114.27721,22.26807],[114.27721,22.26808],[114.27721,22.26808],[114.27721,22.26809],[114.2772,22.26809],[114.2772,22.2681],[114.2772,22.2681],[114.2772,22.26811],[114.2772,22.26812],[114.2772,22.26812],[114.2772,22.26813],[114.2772,22.26813],[114.2772,22.26813],[114.2772,22.26814],[114.2772,22.26814],[114.2772,22.26815],[114.2772,22.26815],[114.2772,22.26816],[114.2772,22.26816],[114.2772,22.26817],[114.2772,22.26817],[114.2772,22.26818],[114.2772,22.26818],[114.27719,22.26819],[114.27719,22.26819],[114.27719,22.2682],[114.27719,22.2682],[114.27719,22.26821],[114.27719,22.26821],[114.27719,22.26822],[114.27719,22.26822],[114.27719,22.26823],[114.27719,22.26823],[114.27719,22.26824],[114.27719,22.26825],[114.27719,22.26825],[114.27719,22.26828],[114.27719,22.26828],[114.27719,22.26829],[114.27719,22.26829],[114.27719,22.2683],[114.27719,22.2683],[114.27719,22.26831],[114.27719,22.26831],[114.27719,22.26832],[114.27719,22.26832],[114.27719,22.26833],[114.27719,22.26833],[114.27719,22.26834],[114.27719,22.26834],[114.2772,22.26835],[114.2772,22.26835],[114.2772,22.26836],[114.2772,22.26836],[114.2772,22.26837],[114.2772,22.26837],[114.2772,22.26838],[114.2772,22.26838],[114.2772,22.26839],[114.2772,22.26839],[114.2772,22.2684],[114.2772,22.2684],[114.2772,22.26841],[114.2772,22.26844],[114.2772,22.26845],[114.2772,22.26846],[114.2772,22.26846],[114.2772,22.26846],[114.2772,22.26847],[114.2772,22.26847],[114.2772,22.26848],[114.2772,22.26848],[114.2772,22.26849],[114.2772,22.26849],[114.2772,22.2685],[114.2772,22.2685],[114.2772,22.2685],[114.27719,22.26851],[114.27719,22.26851],[114.27719,22.26852],[114.27719,22.26852],[114.27719,22.26853],[114.27719,22.26853],[114.27719,22.26854],[114.27719,22.26854],[114.27719,22.26854],[114.27719,22.26855],[114.27719,22.26855],[114.27718,22.26857],[114.27718,22.26857],[114.27718,22.26858],[114.27718,22.26858],[114.27718,22.26858],[114.27718,22.26859],[114.27718,22.26859],[114.27717,22.2686],[114.27717,22.2686],[114.27717,22.26861],[114.27717,22.26861],[114.27717,22.26861],[114.27717,22.26862],[114.27717,22.26862],[114.27716,22.26863],[114.27716,22.26864],[114.27716,22.26864],[114.27716,22.26865],[114.27716,22.26865],[114.27716,22.26865],[114.27716,22.26866],[114.27715,22.26866],[114.27715,22.26867],[114.27715,22.26867],[114.27715,22.26868],[114.27715,22.26868],[114.27715,22.26868],[114.27714,22.26869],[114.27714,22.26869],[114.27714,22.2687],[114.27714,22.2687],[114.27714,22.26871],[114.27714,22.26871],[114.27713,22.26871],[114.27713,22.26872],[114.27713,22.26872],[114.27713,22.26873],[114.27713,22.26873],[114.27713,22.26873],[114.27712,22.26874],[114.27712,22.26874],[114.27712,22.26875],[114.27712,22.26875],[114.27712,22.26876],[114.27711,22.26876],[114.27711,22.26877],[114.27711,22.26877],[114.27711,22.26878],[114.27711,22.26878],[114.2771,22.26878],[114.2771,22.26879],[114.2771,22.26879],[114.2771,22.2688],[114.2771,22.2688],[114.27709,22.2688],[114.27709,22.26881],[114.27709,22.26881],[114.27709,22.26881],[114.27709,22.26882],[114.27708,22.26882],[114.27708,22.26882],[114.27708,22.26883],[114.27708,22.26883],[114.27708,22.26884],[114.27707,22.26884],[114.27707,22.26885],[114.27707,22.26885],[114.27707,22.26885],[114.27707,22.26886],[114.27707,22.26886],[114.27706,22.26887],[114.27706,22.26887],[114.27706,22.26888],[114.27706,22.26888],[114.27706,22.26888],[114.27706,22.26889],[114.27705,22.26889],[114.27705,22.2689],[114.27705,22.2689],[114.27705,22.26891],[114.27705,22.26891],[114.27705,22.26891],[114.27704,22.26892],[114.27704,22.26892],[114.27704,22.26893],[114.27704,22.26893],[114.27704,22.26893],[114.27704,22.26894],[114.27703,22.26894],[114.27703,22.26895],[114.27703,22.26895],[114.27703,22.26896],[114.27702,22.26896],[114.27702,22.26897],[114.27702,22.26897],[114.27702,22.26898],[114.27702,22.26898],[114.27702,22.26899],[114.27701,22.26899],[114.27701,22.26899],[114.27701,22.269],[114.27701,22.269],[114.27701,22.26901],[114.27701,22.26901],[114.27701,22.26902],[114.277,22.26902],[114.277,22.26902],[114.277,22.26903],[114.277,22.26903],[114.277,22.26904],[114.277,22.26905],[114.277,22.26905],[114.277,22.26906],[114.27699,22.26906],[114.27699,22.26906],[114.27699,22.26907],[114.27699,22.26907],[114.27699,22.26908],[114.27699,22.26908],[114.27699,22.26909],[114.27699,22.26909],[114.27699,22.26909],[114.27699,22.2691],[114.27698,22.2691],[114.27698,22.26911],[114.27698,22.26911],[114.27698,22.26912],[114.27698,22.26913],[114.27698,22.26913],[114.27698,22.26913],[114.27697,22.26914],[114.27697,22.26914],[114.27697,22.26915],[114.27697,22.26915],[114.27697,22.26916],[114.27697,22.26916],[114.27697,22.26916],[114.27696,22.26917],[114.27696,22.26917],[114.27696,22.26918],[114.27696,22.26918],[114.27696,22.26919],[114.27696,22.26919],[114.27696,22.26919],[114.27695,22.2692],[114.27695,22.2692],[114.27695,22.26921],[114.27695,22.26921],[114.27695,22.26922],[114.27695,22.26922],[114.27694,22.26922],[114.27694,22.26923],[114.27694,22.26923],[114.27694,22.26924],[114.27694,22.26924],[114.27694,22.26925],[114.27693,22.26925],[114.27693,22.26925],[114.27693,22.26926],[114.27693,22.26926],[114.27693,22.26927],[114.27693,22.26927],[114.27692,22.26928],[114.27692,22.26928],[114.27692,22.26928],[114.27692,22.26929],[114.27692,22.26929],[114.27692,22.2693],[114.27692,22.2693],[114.27692,22.26931],[114.27691,22.26931],[114.27691,22.26932],[114.27691,22.26932],[114.27691,22.26934],[114.2769,22.26934],[114.2769,22.26935],[114.2769,22.26936],[114.2769,22.26936],[114.2769,22.26937],[114.2769,22.26937],[114.2769,22.26938],[114.27689,22.26938],[114.27689,22.26939],[114.27689,22.26939],[114.27689,22.2694],[114.27689,22.2694],[114.27689,22.26941],[114.27689,22.26941],[114.27689,22.26942],[114.27689,22.26942],[114.27689,22.26942],[114.27689,22.26943],[114.27688,22.26943],[114.27688,22.26944],[114.27688,22.26945],[114.27688,22.26945],[114.27688,22.26946],[114.27688,22.26946],[114.27688,22.26947],[114.27688,22.26948],[114.27688,22.26948],[114.27688,22.26949],[114.27688,22.26949],[114.27688,22.2695],[114.27688,22.26951],[114.27688,22.26951],[114.27688,22.26951],[114.27688,22.26952],[114.27688,22.26952],[114.27687,22.26953],[114.27687,22.26953],[114.27687,22.26954],[114.27687,22.26955],[114.27687,22.26955],[114.27687,22.26958],[114.27687,22.26958],[114.27687,22.26959],[114.27687,22.2696],[114.27687,22.2696],[114.27687,22.2696],[114.27687,22.26961],[114.27687,22.26962],[114.27687,22.26962],[114.27687,22.26963],[114.27687,22.26964],[114.27687,22.26964],[114.27686,22.26964],[114.27686,22.26965],[114.27686,22.26965],[114.27686,22.26966],[114.27686,22.26966],[114.27686,22.26967],[114.27686,22.26967],[114.27686,22.26968],[114.27686,22.26968],[114.27686,22.26969],[114.27686,22.26969],[114.27686,22.26969],[114.27686,22.2697],[114.27686,22.26971],[114.27686,22.26971],[114.27685,22.26972],[114.27685,22.26973],[114.27685,22.26973],[114.27685,22.26974],[114.27685,22.26974],[114.27685,22.26975],[114.27685,22.26975],[114.27685,22.26976],[114.27685,22.26977],[114.27685,22.26978],[114.27685,22.26979],[114.27685,22.2698],[114.27685,22.2698],[114.27685,22.26981],[114.27685,22.26981],[114.27685,22.26982],[114.27685,22.26982],[114.27685,22.26983],[114.27685,22.26983],[114.27686,22.26984],[114.27686,22.26984],[114.27686,22.26985],[114.27686,22.26986],[114.27686,22.26987],[114.27686,22.26988],[114.27686,22.26989],[114.27686,22.2699],[114.27686,22.2699],[114.27686,22.26991],[114.27685,22.26991],[114.27685,22.26991],[114.27685,22.26992],[114.27685,22.26992],[114.27685,22.26993],[114.27685,22.26994],[114.27685,22.26995],[114.27685,22.26995],[114.27685,22.26996],[114.27685,22.26997],[114.27685,22.26997],[114.27685,22.26998],[114.27685,22.26998],[114.27686,22.26999],[114.27686,22.27],[114.27686,22.27],[114.27686,22.27001],[114.27686,22.27001],[114.27686,22.27002],[114.27686,22.27002],[114.27686,22.27003],[114.27686,22.27003],[114.27686,22.27004],[114.27687,22.27004],[114.27687,22.27004],[114.27687,22.27005],[114.27687,22.27006],[114.27687,22.27006],[114.27687,22.27007],[114.27687,22.27008],[114.27687,22.27008],[114.27687,22.27008],[114.27687,22.27009],[114.27688,22.27009],[114.27688,22.2701],[114.27688,22.2701],[114.27688,22.27011],[114.27688,22.27011],[114.27688,22.27012],[114.27688,22.27012],[114.27688,22.27012],[114.27688,22.27013],[114.27688,22.27013],[114.27688,22.27014],[114.27688,22.27014],[114.27688,22.27015],[114.27688,22.27015],[114.27688,22.27016],[114.27688,22.27016],[114.27688,22.27017],[114.27688,22.27017],[114.27688,22.27017],[114.27688,22.27018],[114.27689,22.27018],[114.27689,22.27019],[114.27689,22.27019],[114.27689,22.2702],[114.27689,22.2702],[114.27689,22.2702],[114.2769,22.27021],[114.2769,22.27021],[114.2769,22.27022],[114.2769,22.27022],[114.2769,22.27023],[114.2769,22.27023],[114.2769,22.27023],[114.27691,22.27024],[114.27691,22.27025],[114.27691,22.27025],[114.27691,22.27026],[114.27691,22.27026],[114.27691,22.27026],[114.27691,22.27027],[114.27692,22.27027],[114.27692,22.27028],[114.27692,22.27028],[114.27692,22.27029],[114.27692,22.2703],[114.27692,22.2703],[114.27692,22.2703],[114.27693,22.27031],[114.27693,22.27032],[114.27693,22.27032],[114.27693,22.27033],[114.27693,22.27033],[114.27694,22.27033],[114.27694,22.27034],[114.27694,22.27034],[114.27694,22.27035],[114.27694,22.27035],[114.27695,22.27035],[114.27695,22.27036],[114.27695,22.27036],[114.27695,22.27037],[114.27695,22.27037],[114.27696,22.27037],[114.27696,22.27038],[114.27696,22.27038],[114.27696,22.27039],[114.27697,22.27039],[114.27697,22.27039],[114.27697,22.2704],[114.27697,22.2704],[114.27698,22.27041],[114.27698,22.27041],[114.27698,22.27041],[114.27698,22.27042],[114.27699,22.27042],[114.27699,22.27042],[114.27699,22.27043],[114.27699,22.27043],[114.277,22.27044],[114.277,22.27044],[114.277,22.27044],[114.27701,22.27045],[114.27701,22.27045],[114.27703,22.27049],[114.27711,22.27061],[114.27713,22.27065],[114.27714,22.27066],[114.27714,22.27066],[114.27714,22.27067],[114.27715,22.27067],[114.27715,22.27067],[114.27715,22.27068],[114.27715,22.27068],[114.27716,22.27068],[114.27716,22.27069],[114.27716,22.27069],[114.27717,22.2707],[114.27717,22.2707],[114.27717,22.2707],[114.27717,22.27071],[114.27718,22.27071],[114.27718,22.27071],[114.27718,22.27072],[114.27718,22.27072],[114.27719,22.27073],[114.27719,22.27073],[114.27719,22.27073],[114.2772,22.27074],[114.2772,22.27074],[114.2772,22.27074],[114.2772,22.27075],[114.27721,22.27075],[114.27721,22.27075],[114.27721,22.27076],[114.27721,22.27076],[114.27722,22.27077],[114.27722,22.27077],[114.27722,22.27077],[114.27723,22.27078],[114.27723,22.27078],[114.27723,22.27078],[114.27723,22.27079],[114.27724,22.27079],[114.27724,22.2708],[114.27724,22.2708],[114.27724,22.2708],[114.27725,22.27081],[114.27725,22.27081],[114.27725,22.27082],[114.27725,22.27082],[114.27726,22.27082],[114.27726,22.27083],[114.27726,22.27083],[114.27726,22.27083],[114.27727,22.27084],[114.27727,22.27084],[114.27727,22.27085],[114.27728,22.27085],[114.27728,22.27085],[114.27728,22.27086],[114.27728,22.27086],[114.27729,22.27086],[114.27729,22.27087],[114.27729,22.27087],[114.27729,22.27088],[114.2773,22.27089],[114.2773,22.27089],[114.2773,22.27089],[114.27731,22.2709],[114.27731,22.2709],[114.27731,22.27091],[114.27731,22.27091],[114.27731,22.27092],[114.27732,22.27092],[114.27732,22.27092],[114.27732,22.27094],[114.27732,22.27094],[114.27732,22.27095],[114.27732,22.27095],[114.27732,22.27095],[114.27733,22.27096],[114.27733,22.27096],[114.27733,22.27097],[114.27733,22.27097],[114.27733,22.27098],[114.27733,22.27098],[114.27733,22.27099],[114.27733,22.27099],[114.27734,22.271],[114.27734,22.271],[114.27734,22.27101],[114.27734,22.27101],[114.27734,22.27102],[114.27734,22.27102],[114.27734,22.27102],[114.27734,22.27103],[114.27734,22.27103],[114.27734,22.27104],[114.27734,22.27105],[114.27735,22.27105],[114.27735,22.27106],[114.27735,22.27106],[114.27735,22.27107],[114.27735,22.27107],[114.27735,22.27108],[114.27735,22.27109],[114.27735,22.27109],[114.27735,22.2711],[114.27736,22.2711],[114.27736,22.27111],[114.27736,22.27111],[114.27736,22.27112],[114.27736,22.27112],[114.27736,22.27113],[114.27736,22.27113],[114.27736,22.27113],[114.27736,22.27114],[114.27736,22.27114],[114.27736,22.27115],[114.27736,22.27116],[114.27736,22.27116],[114.27736,22.27117],[114.27736,22.27117],[114.27736,22.27117],[114.27736,22.27118],[114.27736,22.27118],[114.27736,22.27119],[114.27736,22.27119],[114.27736,22.2712],[114.27736,22.27123],[114.27736,22.27124],[114.27736,22.27125],[114.27736,22.27126],[114.27736,22.27126],[114.27736,22.27127],[114.27736,22.27127],[114.27736,22.27128],[114.27736,22.27128],[114.27736,22.27129],[114.27736,22.2713],[114.27736,22.2713],[114.27736,22.27131],[114.27736,22.27131],[114.27736,22.27132],[114.27735,22.27132],[114.27735,22.27133],[114.27735,22.27133],[114.27735,22.27134],[114.27735,22.27134],[114.27735,22.27135],[114.27735,22.27135],[114.27735,22.27135],[114.27735,22.27136],[114.27735,22.27137],[114.27735,22.27137],[114.27735,22.27138],[114.27735,22.27138],[114.27735,22.27139],[114.27735,22.27139],[114.27735,22.2714],[114.27735,22.2714],[114.27735,22.2714],[114.27735,22.27141],[114.27735,22.27142],[114.27735,22.27142],[114.27734,22.27143],[114.27734,22.27143],[114.27734,22.27144],[114.27734,22.27144],[114.27734,22.27144],[114.27734,22.27145],[114.27734,22.27145],[114.27734,22.27146],[114.27734,22.27147],[114.27734,22.27147],[114.27734,22.27148],[114.27734,22.27148],[114.27734,22.27149],[114.27734,22.27149],[114.27734,22.27149],[114.27734,22.2715],[114.27734,22.27151],[114.27734,22.27151],[114.27734,22.27152],[114.27733,22.27152],[114.27733,22.27153],[114.27733,22.27153],[114.27733,22.27153],[114.27733,22.27154],[114.27733,22.27155],[114.27733,22.27155],[114.27733,22.27156],[114.27733,22.27157],[114.27733,22.27157],[114.27733,22.27158],[114.27733,22.27158],[114.27733,22.27159],[114.27733,22.27159],[114.27733,22.2716],[114.27733,22.2716],[114.27732,22.27161],[114.27732,22.27162],[114.27732,22.27162],[114.27732,22.27162],[114.27732,22.27163],[114.27732,22.27163],[114.27732,22.27164],[114.27732,22.27164],[114.27732,22.27165],[114.27732,22.27166],[114.27732,22.27166],[114.27732,22.27167],[114.27732,22.27167],[114.27732,22.27168],[114.27731,22.27169],[114.27731,22.27169],[114.27731,22.2717],[114.27731,22.2717],[114.27731,22.2717],[114.27731,22.27171],[114.27731,22.27171],[114.27731,22.27172],[114.27731,22.27172],[114.27731,22.27173],[114.27731,22.27174],[114.27731,22.27174],[114.27731,22.27175],[114.2773,22.27175],[114.2773,22.27175],[114.2773,22.27176],[114.2773,22.27176],[114.2773,22.27177],[114.2773,22.27177],[114.2773,22.27178],[114.2773,22.27178],[114.2773,22.27179],[114.2773,22.27179],[114.2773,22.27179],[114.2773,22.2718],[114.2773,22.2718],[114.27729,22.27181],[114.27729,22.27181],[114.27729,22.27182],[114.27729,22.27182],[114.27729,22.27183],[114.27729,22.27183],[114.27729,22.27183],[114.27729,22.27184],[114.27729,22.27184],[114.27729,22.27185],[114.27728,22.27185],[114.27728,22.27186],[114.27728,22.27187],[114.27728,22.27187],[114.27728,22.27187],[114.27728,22.27188],[114.27728,22.27188],[114.27728,22.27189],[114.27728,22.27189],[114.27728,22.2719],[114.27727,22.2719],[114.27727,22.27191],[114.27727,22.27191],[114.27727,22.27191],[114.27727,22.27192],[114.27727,22.27192],[114.27727,22.27193],[114.27727,22.27193],[114.27727,22.27194],[114.27727,22.27194],[114.27727,22.27194],[114.27727,22.27195],[114.27726,22.27195],[114.27726,22.27196],[114.27726,22.27196],[114.27726,22.27197],[114.27726,22.27197],[114.27726,22.27198],[114.27726,22.27198],[114.27726,22.27198],[114.27726,22.27199],[114.27726,22.27199],[114.27726,22.272],[114.27725,22.272],[114.27725,22.27201],[114.27725,22.27201],[114.27725,22.27202],[114.27725,22.27202],[114.27725,22.27202],[114.27725,22.27203],[114.27725,22.27203],[114.27725,22.27204],[114.27725,22.27204],[114.27725,22.27205],[114.27725,22.27205],[114.27724,22.27206],[114.27724,22.27206],[114.27724,22.27206],[114.27724,22.27207],[114.27724,22.27207],[114.27724,22.27208],[114.27724,22.27208],[114.27724,22.27209],[114.27724,22.27209],[114.27724,22.2721],[114.27723,22.27211],[114.27723,22.27211],[114.27723,22.27211],[114.27723,22.27212],[114.27723,22.27212],[114.27723,22.27213],[114.27723,22.27213],[114.27723,22.27214],[114.27722,22.27215],[114.27722,22.27215],[114.27722,22.27216],[114.27722,22.27217],[114.27722,22.27217],[114.27722,22.27218],[114.27721,22.27218],[114.27721,22.27218],[114.27721,22.27219],[114.27721,22.27219],[114.27721,22.2722],[114.27721,22.2722],[114.27721,22.2722],[114.2772,22.27221],[114.2772,22.27221],[114.2772,22.27222],[114.2772,22.27222],[114.2772,22.27223],[114.2772,22.27223],[114.2772,22.27224],[114.27719,22.27224],[114.27719,22.27224],[114.27719,22.27226],[114.27719,22.27226],[114.27719,22.27227],[114.27719,22.27227],[114.27718,22.27227],[114.27718,22.27228],[114.27718,22.27228],[114.27718,22.27229],[114.27718,22.27229],[114.27718,22.2723],[114.27718,22.2723],[114.27718,22.27231],[114.27717,22.27231],[114.27717,22.27231],[114.27717,22.27232],[114.27717,22.27232],[114.27717,22.27233],[114.27717,22.27233],[114.27717,22.27234],[114.27717,22.27234],[114.27716,22.27234],[114.27716,22.27235],[114.27716,22.27235],[114.27716,22.27236],[114.27716,22.27236],[114.27716,22.27237],[114.27716,22.27237],[114.27716,22.27237],[114.27715,22.27238],[114.27715,22.27238],[114.27715,22.27239],[114.27715,22.27239],[114.27715,22.2724],[114.27715,22.27241],[114.27715,22.27241],[114.27714,22.27242],[114.27714,22.27242],[114.27714,22.27243],[114.27714,22.27244],[114.27714,22.27244],[114.27714,22.27244],[114.27713,22.27245],[114.27713,22.27245],[114.27713,22.27246],[114.27713,22.27246],[114.27713,22.27247],[114.27713,22.27247],[114.27713,22.27248],[114.27712,22.27248],[114.27712,22.27248],[114.27712,22.27249],[114.27712,22.27249],[114.27712,22.2725],[114.27712,22.2725],[114.27712,22.27251],[114.27712,22.27251],[114.27712,22.27251],[114.27711,22.27252],[114.27711,22.27252],[114.27711,22.27253],[114.27711,22.27253],[114.27711,22.27255],[114.27711,22.27255],[114.27711,22.27255],[114.2771,22.27256],[114.2771,22.27256],[114.2771,22.27257],[114.2771,22.27257],[114.2771,22.27258],[114.2771,22.27258],[114.2771,22.27258],[114.2771,22.27259],[114.2771,22.27259],[114.27709,22.2726],[114.27709,22.2726],[114.27709,22.27261],[114.27709,22.27261],[114.27709,22.27262],[114.27709,22.27262],[114.27709,22.27262],[114.27709,22.27263],[114.27708,22.27264],[114.27708,22.27265],[114.27708,22.27265],[114.27708,22.27265],[114.27708,22.27266],[114.27708,22.27266],[114.27708,22.27267],[114.27708,22.27267],[114.27708,22.27268],[114.27708,22.27268],[114.27707,22.27269],[114.27707,22.2727],[114.27707,22.2727],[114.27707,22.2727],[114.27707,22.27271],[114.27707,22.27271],[114.27707,22.27272],[114.27706,22.27273],[114.27706,22.27274],[114.27706,22.27274],[114.27706,22.27274],[114.27706,22.27275],[114.27706,22.27275],[114.27706,22.27276],[114.27706,22.27276],[114.27706,22.27277],[114.27706,22.27277],[114.27705,22.27278],[114.27705,22.27278],[114.27705,22.27279],[114.27705,22.27279],[114.27705,22.2728],[114.27705,22.2728],[114.27705,22.27281],[114.27704,22.27281],[114.27704,22.27281],[114.27704,22.27282],[114.27704,22.27282],[114.27704,22.27283],[114.27704,22.27283],[114.27704,22.27284],[114.27704,22.27284],[114.27703,22.27285],[114.27703,22.27285],[114.27703,22.27285],[114.27703,22.27286],[114.27703,22.27286],[114.27703,22.27287],[114.27702,22.27287],[114.27702,22.27288],[114.27702,22.27288],[114.27702,22.27288],[114.27702,22.27289],[114.27702,22.27289],[114.27701,22.2729],[114.27701,22.2729],[114.27701,22.2729],[114.27701,22.27291],[114.27701,22.27291],[114.277,22.27292],[114.277,22.27292],[114.277,22.27292],[114.277,22.27293],[114.277,22.27293],[114.27699,22.27294],[114.27699,22.27294],[114.27699,22.27294],[114.27699,22.27295],[114.27698,22.27295],[114.27698,22.27296],[114.27698,22.27296],[114.27698,22.27296],[114.27697,22.27297],[114.27697,22.27297],[114.27697,22.27298],[114.27697,22.27298],[114.27696,22.27298],[114.27696,22.27299],[114.27695,22.273],[114.27695,22.273],[114.27695,22.273],[114.27694,22.27301],[114.27694,22.27301],[114.27694,22.27302],[114.27694,22.27302],[114.27693,22.27303],[114.27693,22.27303],[114.27692,22.27303],[114.27692,22.27304],[114.27692,22.27304],[114.27691,22.27304],[114.27691,22.27305],[114.27691,22.27305],[114.2769,22.27305],[114.2769,22.27306],[114.2769,22.27306],[114.27689,22.27306],[114.27689,22.27307],[114.27689,22.27307],[114.27688,22.27307],[114.27688,22.27307],[114.27688,22.27308],[114.27687,22.27308],[114.27687,22.27308],[114.27686,22.27309],[114.27686,22.27309],[114.27686,22.27309],[114.27685,22.2731],[114.27685,22.2731],[114.27685,22.2731],[114.27684,22.27311],[114.27684,22.27311],[114.27684,22.27311],[114.27683,22.27312],[114.27683,22.27312],[114.27683,22.27312],[114.27682,22.27313],[114.27682,22.27313],[114.27682,22.27313],[114.27681,22.27313],[114.27681,22.27314],[114.27681,22.27314],[114.2768,22.27314],[114.2768,22.27315],[114.2768,22.27315],[114.27679,22.27315],[114.27679,22.27316],[114.27678,22.27316],[114.27678,22.27316],[114.27678,22.27317],[114.27677,22.27317],[114.27677,22.27317],[114.27677,22.27317],[114.27676,22.27318],[114.27676,22.27318],[114.27676,22.27318],[114.27675,22.27319],[114.27675,22.27319],[114.27674,22.2732],[114.27674,22.2732],[114.27673,22.27321],[114.27673,22.27321],[114.27673,22.27322],[114.27672,22.27322],[114.27672,22.27322],[114.27672,22.27323],[114.27671,22.27323],[114.27671,22.27323],[114.27671,22.27324],[114.2767,22.27324],[114.2767,22.27324],[114.2767,22.27325],[114.27669,22.27325],[114.27669,22.27325],[114.27669,22.27326],[114.27669,22.27326],[114.27668,22.27326],[114.27668,22.27327],[114.27668,22.27327],[114.27667,22.27327],[114.27667,22.27328],[114.27667,22.27328],[114.27667,22.27329],[114.27666,22.27329],[114.27666,22.27329],[114.27666,22.2733],[114.27666,22.2733],[114.27665,22.27331],[114.27665,22.27331],[114.27665,22.27331],[114.27665,22.27332],[114.27664,22.27332],[114.27664,22.27333],[114.27664,22.27333],[114.27664,22.27333],[114.27663,22.27334],[114.27663,22.27334],[114.27663,22.27334],[114.27663,22.27335],[114.27663,22.27335],[114.27662,22.27336],[114.27662,22.27336],[114.27662,22.27337],[114.27662,22.27337],[114.27661,22.27337],[114.27661,22.27338],[114.27661,22.27338],[114.27661,22.27339],[114.27661,22.27339],[114.2766,22.27339],[114.2766,22.2734],[114.2766,22.2734],[114.2766,22.27341],[114.2766,22.27341],[114.27659,22.27341],[114.27659,22.27342],[114.27659,22.27343],[114.27659,22.27343],[114.27659,22.27344],[114.27658,22.27344],[114.27658,22.27344],[114.27658,22.27345],[114.27658,22.27345],[114.27658,22.27346],[114.27658,22.27346],[114.27657,22.27347],[114.27657,22.27347],[114.27657,22.27347],[114.27657,22.27348],[114.27657,22.27348],[114.27657,22.27349],[114.27657,22.27349],[114.27657,22.2735],[114.27657,22.2735],[114.27657,22.27351],[114.27657,22.27351],[114.27657,22.27352],[114.27657,22.27352],[114.27657,22.27353],[114.27657,22.27353],[114.27656,22.27354],[114.27656,22.27354],[114.27656,22.27355],[114.27656,22.27355],[114.27656,22.27355],[114.27656,22.27356],[114.27656,22.27356],[114.27656,22.27357],[114.27656,22.27357],[114.27656,22.27358],[114.27656,22.27358],[114.27656,22.27359],[114.27656,22.27359],[114.27656,22.27359],[114.27656,22.2736],[114.27656,22.2736],[114.27656,22.27361],[114.27656,22.27361],[114.27656,22.27362],[114.27656,22.27363],[114.27656,22.27363],[114.27656,22.27364],[114.27655,22.27364],[114.27655,22.27365],[114.27655,22.27366],[114.27655,22.27366],[114.27655,22.27367],[114.27655,22.27367],[114.27655,22.27368],[114.27655,22.27368],[114.27655,22.27368],[114.27655,22.27369],[114.27655,22.27371],[114.27655,22.27371],[114.27655,22.27372],[114.27655,22.27373],[114.27655,22.27373],[114.27655,22.27376],[114.27655,22.27376],[114.27655,22.27377],[114.27655,22.27378],[114.27655,22.27378],[114.27655,22.27378],[114.27655,22.27379],[114.27654,22.2738],[114.27654,22.27381],[114.27654,22.27381],[114.27654,22.27381],[114.27654,22.27382],[114.27654,22.27382],[114.27654,22.27383],[114.27654,22.27383],[114.27653,22.27384],[114.27653,22.27385],[114.27653,22.27385],[114.27653,22.27385],[114.27653,22.27386],[114.27653,22.27386],[114.27653,22.27387],[114.27653,22.27387],[114.27653,22.27388],[114.27653,22.27388],[114.27652,22.27389],[114.27652,22.27389],[114.27652,22.27389],[114.27652,22.2739],[114.27652,22.2739],[114.27652,22.27391],[114.27652,22.27391],[114.27651,22.27392],[114.27651,22.27392],[114.27651,22.27392],[114.27651,22.27393],[114.27651,22.27393],[114.2765,22.27394],[114.2765,22.27394],[114.2765,22.27394],[114.2765,22.27395],[114.2765,22.27395],[114.27649,22.27396],[114.27649,22.27396],[114.27649,22.27396],[114.27649,22.27397],[114.27648,22.27397],[114.27648,22.27398],[114.27648,22.27398],[114.27648,22.27398],[114.27647,22.27399],[114.27647,22.27399],[114.27647,22.274],[114.27647,22.274],[114.27646,22.274],[114.27646,22.27401],[114.27646,22.27401],[114.27646,22.27401],[114.27645,22.27402],[114.27645,22.27402],[114.27645,22.27403],[114.27644,22.27403],[114.27644,22.27403],[114.27644,22.27404],[114.27644,22.27404],[114.27644,22.27404],[114.27643,22.27405],[114.27643,22.27405],[114.27643,22.27406],[114.27642,22.27406],[114.27642,22.27406],[114.27642,22.27407],[114.27641,22.27407],[114.27641,22.27407],[114.27641,22.27408],[114.2764,22.27408],[114.2764,22.27408],[114.2764,22.27409],[114.27639,22.27409],[114.27639,22.27409],[114.27639,22.2741],[114.27638,22.2741],[114.27638,22.2741],[114.27638,22.27411],[114.27637,22.27411],[114.27637,22.27411],[114.27637,22.27411],[114.27636,22.27412],[114.27636,22.27412],[114.27636,22.27412],[114.27635,22.27413],[114.27635,22.27413],[114.27635,22.27413],[114.27634,22.27414],[114.27634,22.27414],[114.27633,22.27415],[114.27633,22.27415],[114.27633,22.27415],[114.27632,22.27416],[114.27632,22.27416],[114.27631,22.27417],[114.27631,22.27417],[114.2763,22.27418],[114.2763,22.27418],[114.2763,22.27418],[114.27629,22.27419],[114.27629,22.27419],[114.27629,22.2742],[114.27628,22.2742],[114.27628,22.2742],[114.27628,22.2742],[114.27627,22.27421],[114.27627,22.27421],[114.27627,22.27421],[114.27626,22.27422],[114.27626,22.27422],[114.27626,22.27422],[114.27626,22.27423],[114.27625,22.27423],[114.27625,22.27424],[114.27625,22.27424],[114.27624,22.27424],[114.27624,22.27425],[114.27624,22.27425],[114.27624,22.27425],[114.27624,22.27426],[114.27623,22.27426],[114.27623,22.27427],[114.27623,22.27427],[114.27623,22.27428],[114.27623,22.27428],[114.27622,22.27428],[114.27622,22.27429],[114.27622,22.27429],[114.27622,22.2743],[114.27621,22.2743],[114.27621,22.2743],[114.27621,22.27431],[114.27621,22.27431],[114.2762,22.27432],[114.2762,22.27432],[114.2762,22.27432],[114.2762,22.27433],[114.2762,22.27433],[114.27619,22.27434],[114.27619,22.27434],[114.27619,22.27434],[114.27619,22.27434],[114.27619,22.27435],[114.27619,22.27435],[114.27619,22.27436],[114.27619,22.27436],[114.27618,22.27437],[114.27618,22.27437],[114.27618,22.27438],[114.27618,22.27438],[114.27618,22.27439],[114.27618,22.27439],[114.27618,22.2744],[114.27618,22.2744],[114.27618,22.27442],[114.27618,22.27442],[114.27618,22.27442],[114.27618,22.27443],[114.27618,22.27443],[114.27618,22.27444],[114.27618,22.27444],[114.27618,22.27445],[114.27619,22.27445],[114.27619,22.27446],[114.27619,22.27446],[114.27619,22.27447],[114.27619,22.27447],[114.27619,22.27447],[114.27619,22.27448],[114.27619,22.27448],[114.2762,22.27449],[114.2762,22.27449],[114.2762,22.2745],[114.2762,22.2745],[114.2762,22.27451],[114.2762,22.27451],[114.2762,22.27451],[114.2762,22.27452],[114.2762,22.27452],[114.2762,22.27454],[114.27623,22.27462],[114.27625,22.27471],[114.27626,22.27475],[114.27626,22.27482],[114.27633,22.2751],[114.27637,22.27516],[114.27648,22.27535],[114.27651,22.2754],[114.27656,22.27549],[114.27661,22.27566],[114.27807,22.27589],[114.27984,22.27617],[114.28016,22.27785],[114.28339,22.28086],[114.28326,22.2815],[114.28298,22.2829],[114.28287,22.28335],[114.2828,22.28359],[114.28272,22.28395],[114.28263,22.28426],[114.28257,22.28447],[114.28249,22.28477],[114.28245,22.28493],[114.2824,22.28505],[114.28168,22.28704],[114.28125,22.28823],[114.28117,22.28845],[114.28078,22.28948],[114.28076,22.28957],[114.28074,22.28967],[114.28106,22.29016],[114.28152,22.2909],[114.28167,22.29137],[114.28186,22.29226],[114.28184,22.29243],[114.28161,22.29249],[114.28157,22.29252],[114.28158,22.29262],[114.28194,22.29276],[114.28239,22.29319],[114.28259,22.29346],[114.28265,22.29357],[114.28274,22.29372],[114.28278,22.29387],[114.28283,22.2941],[114.28234,22.29411],[114.28209,22.29422],[114.28177,22.2945],[114.2817,22.29479],[114.28151,22.29514],[114.28143,22.2952],[114.28135,22.29533],[114.28136,22.29548],[114.28154,22.29581],[114.2817,22.2962],[114.28174,22.29638],[114.28173,22.29659],[114.28168,22.29664],[114.28145,22.29667],[114.2812,22.29679],[114.281,22.29694],[114.28082,22.29722],[114.28063,22.29736],[114.28027,22.29825],[114.28022,22.29827],[114.2802,22.29825],[114.28008,22.29824],[114.27998,22.29829],[114.27985,22.29844],[114.27967,22.29879],[114.27963,22.29897],[114.27965,22.29934],[114.27973,22.2996],[114.27987,22.29989],[114.27988,22.29998],[114.27984,22.30012],[114.27983,22.30042],[114.27974,22.30085],[114.27973,22.30091],[114.2795,22.30171],[114.2795,22.30196],[114.27958,22.30225],[114.27943,22.3026],[114.27941,22.30283],[114.27944,22.30315],[114.27943,22.30337],[114.27917,22.30387],[114.27915,22.30458],[114.27914,22.30468],[114.27907,22.30534],[114.27908,22.30551],[114.27925,22.30596],[114.27926,22.30727],[114.27928,22.30746],[114.27914,22.30777],[114.27898,22.30793],[114.27852,22.30815],[114.27846,22.30819],[114.27844,22.3082],[114.27835,22.30827],[114.27832,22.30833],[114.27832,22.30899],[114.27914,22.3112],[114.27915,22.3113],[114.27922,22.31137],[114.27949,22.31161],[114.27971,22.31178],[114.27998,22.31199],[114.28053,22.31251],[114.28053,22.31251],[114.28053,22.31251],[114.28054,22.31252],[114.28054,22.31252],[114.28054,22.31252],[114.28054,22.31252],[114.28055,22.31253],[114.28055,22.31253],[114.28055,22.31253],[114.28056,22.31254],[114.28056,22.31254],[114.28056,22.31254],[114.28057,22.31255],[114.28057,22.31255],[114.28057,22.31255],[114.28057,22.31256],[114.28058,22.31256],[114.28058,22.31257],[114.28058,22.31257],[114.28059,22.31257],[114.28059,22.31258],[114.28059,22.31258],[114.28059,22.31258],[114.2806,22.31259],[114.2806,22.31259],[114.2806,22.3126],[114.2806,22.3126],[114.28061,22.3126],[114.28061,22.31261],[114.28061,22.31261],[114.28061,22.31261],[114.28062,22.31262],[114.28062,22.31262],[114.28062,22.31263],[114.28062,22.31263],[114.28063,22.31263],[114.28063,22.31264],[114.28063,22.31264],[114.28063,22.31265],[114.28063,22.31265],[114.28064,22.31266],[114.28064,22.31266],[114.28064,22.31266],[114.28064,22.31267],[114.28064,22.31267],[114.28065,22.31268],[114.28065,22.31268],[114.28065,22.31268],[114.28065,22.31269],[114.28066,22.31269],[114.28066,22.3127],[114.28066,22.3127],[114.28066,22.31271],[114.28067,22.31271],[114.28067,22.31272],[114.28067,22.31272],[114.28067,22.31273],[114.28068,22.31273],[114.28068,22.31274],[114.28068,22.31274],[114.28068,22.31275],[114.28068,22.31275],[114.28068,22.31275],[114.28069,22.31276],[114.28069,22.31276],[114.28069,22.31277],[114.28069,22.31277],[114.28069,22.31278],[114.28069,22.31278],[114.28069,22.31278],[114.28069,22.31279],[114.2807,22.31279],[114.2807,22.3128],[114.2807,22.3128],[114.2807,22.31281],[114.2807,22.31281],[114.2807,22.31282],[114.2807,22.31282],[114.2807,22.31282],[114.2807,22.31283],[114.2807,22.31283],[114.2807,22.31284],[114.2807,22.31284],[114.2807,22.31285],[114.2807,22.31285],[114.28069,22.31286],[114.28069,22.31286],[114.28069,22.31286],[114.28069,22.31287],[114.28069,22.31287],[114.28069,22.31288],[114.28069,22.31288],[114.28069,22.31289],[114.28069,22.31289],[114.28068,22.3129],[114.28068,22.3129],[114.28068,22.3129],[114.28068,22.31291],[114.28068,22.31291],[114.28067,22.31292],[114.28067,22.31292],[114.28067,22.31292],[114.28067,22.31293],[114.28067,22.31293],[114.28066,22.31294],[114.28066,22.31294],[114.28066,22.31294],[114.28066,22.31295],[114.28065,22.31295],[114.28065,22.31295],[114.28065,22.31296],[114.28064,22.31296],[114.28064,22.31296],[114.28064,22.31297],[114.28063,22.31297],[114.28063,22.31297],[114.28063,22.31298],[114.28062,22.31298],[114.28062,22.31298],[114.28061,22.31298],[114.28061,22.31299],[114.28061,22.31299],[114.2806,22.31299],[114.2806,22.31299],[114.28059,22.313],[114.28059,22.313],[114.28059,22.313],[114.28058,22.313],[114.28058,22.31301],[114.28057,22.31301],[114.28057,22.31301],[114.28056,22.31301],[114.28056,22.31301],[114.28055,22.31301],[114.28055,22.31302],[114.28055,22.31302],[114.28054,22.31302],[114.28054,22.31302],[114.28053,22.31302],[114.28053,22.31302],[114.28052,22.31302],[114.28052,22.31303],[114.28051,22.31303],[114.28051,22.31303],[114.2805,22.31303],[114.2805,22.31303],[114.28049,22.31303],[114.28049,22.31303],[114.28048,22.31303],[114.28048,22.31303],[114.28047,22.31303],[114.28047,22.31303],[114.28047,22.31304],[114.28046,22.31304],[114.28046,22.31304],[114.28045,22.31304],[114.28045,22.31304],[114.28044,22.31304],[114.28044,22.31304],[114.28043,22.31304],[114.28043,22.31304],[114.28042,22.31304],[114.28042,22.31304],[114.28041,22.31304],[114.28041,22.31304],[114.2804,22.31304],[114.2804,22.31304],[114.28039,22.31304],[114.28039,22.31304],[114.28038,22.31304],[114.28038,22.31304],[114.28037,22.31304],[114.28037,22.31304],[114.28036,22.31304],[114.28036,22.31304],[114.28035,22.31304],[114.28034,22.31304],[114.28034,22.31304],[114.28033,22.31304],[114.28033,22.31304],[114.28033,22.31304],[114.28032,22.31304],[114.28032,22.31304],[114.28031,22.31304],[114.28031,22.31304],[114.2803,22.31304],[114.2803,22.31304],[114.28029,22.31304],[114.28029,22.31304],[114.28028,22.31304],[114.28028,22.31304],[114.28027,22.31304],[114.28027,22.31304],[114.28026,22.31304],[114.28026,22.31304],[114.28025,22.31304],[114.28025,22.31304],[114.28024,22.31304],[114.28024,22.31304],[114.28023,22.31304],[114.28023,22.31304],[114.28022,22.31304],[114.28022,22.31304],[114.28021,22.31304],[114.28021,22.31304],[114.2802,22.31304],[114.2802,22.31304],[114.28019,22.31304],[114.28019,22.31304],[114.28018,22.31304],[114.28018,22.31303],[114.28018,22.31303],[114.28017,22.31303],[114.28017,22.31303],[114.28017,22.31303],[114.28016,22.31302],[114.28015,22.31302],[114.28015,22.31302],[114.28014,22.31302],[114.28014,22.31302],[114.28013,22.31301],[114.28013,22.31301],[114.28013,22.31301],[114.28012,22.31301],[114.28012,22.313],[114.28011,22.313],[114.28011,22.313],[114.28011,22.313],[114.2801,22.31299],[114.2801,22.31299],[114.2801,22.31299],[114.28009,22.31298],[114.28009,22.31298],[114.28008,22.31298],[114.28008,22.31297],[114.28008,22.31297],[114.28007,22.31297],[114.28007,22.31296],[114.28007,22.31296],[114.28006,22.31296],[114.28006,22.31295],[114.28006,22.31295],[114.28006,22.31295],[114.28005,22.31295],[114.28005,22.31294],[114.28005,22.31294],[114.28004,22.31294],[114.28004,22.31293],[114.28004,22.31293],[114.28003,22.31293],[114.28003,22.31292],[114.28003,22.31292],[114.28003,22.31291],[114.28002,22.31291],[114.28002,22.31291],[114.28002,22.3129],[114.28001,22.3129],[114.28001,22.3129],[114.28001,22.31289],[114.28001,22.31289],[114.28,22.31288],[114.28,22.31288],[114.28,22.31288],[114.28,22.31287],[114.28,22.31287],[114.27999,22.31286],[114.27999,22.31286],[114.27999,22.31286],[114.27999,22.31285],[114.27998,22.31285],[114.27998,22.31284],[114.27998,22.31284],[114.27998,22.31284],[114.27998,22.31283],[114.27998,22.31283],[114.27998,22.31282],[114.27997,22.31282],[114.27997,22.31281],[114.27997,22.31281],[114.27997,22.31281],[114.27997,22.3128],[114.27997,22.3128],[114.27997,22.31279],[114.27997,22.31279],[114.27997,22.31278],[114.27997,22.31278],[114.27997,22.31277],[114.27997,22.31277],[114.27997,22.31276],[114.27997,22.31276],[114.27997,22.31276],[114.27997,22.31275],[114.27997,22.31275],[114.27997,22.31274],[114.27997,22.31274],[114.27997,22.31273],[114.27997,22.31273],[114.27997,22.31272],[114.27997,22.31272],[114.27997,22.31272],[114.27997,22.31271],[114.27997,22.31271],[114.27997,22.3127],[114.27998,22.3127],[114.27998,22.31269],[114.27998,22.31269],[114.27998,22.31268],[114.27998,22.31268],[114.27998,22.31267],[114.27999,22.31267],[114.27999,22.31267],[114.27999,22.31266],[114.27999,22.31266],[114.27999,22.31265],[114.28,22.31265],[114.28,22.31265],[114.28,22.31264],[114.28,22.31264],[114.28001,22.31263],[114.28001,22.31263],[114.28001,22.31263],[114.28002,22.31262],[114.28002,22.31262],[114.28002,22.31262],[114.28003,22.31261],[114.28003,22.31261],[114.28003,22.31261],[114.28004,22.31261],[114.28004,22.3126],[114.28005,22.3126],[114.28005,22.3126],[114.28005,22.3126],[114.28006,22.31259],[114.28006,22.31259],[114.28007,22.31259],[114.28007,22.31259],[114.28008,22.31258],[114.28008,22.31258],[114.28008,22.31258],[114.28009,22.31258],[114.28009,22.31258],[114.2801,22.31258],[114.2801,22.31257],[114.28011,22.31257],[114.28011,22.31257],[114.28012,22.31257],[114.28012,22.31257],[114.28013,22.31257],[114.28013,22.31257],[114.28013,22.31256],[114.28014,22.31256],[114.28014,22.31256],[114.28015,22.31256],[114.28015,22.31255],[114.28015,22.31255],[114.28016,22.31255],[114.28016,22.31255],[114.28016,22.31254],[114.28017,22.31254],[114.28017,22.31254],[114.28017,22.31253],[114.28018,22.31253],[114.28018,22.31252],[114.28018,22.31252],[114.28018,22.31252],[114.28018,22.31251],[114.28019,22.31251],[114.28019,22.3125],[114.28019,22.3125],[114.28019,22.31249],[114.28019,22.31249],[114.28019,22.31249],[114.28019,22.31248],[114.28019,22.31248],[114.28019,22.31247],[114.2802,22.31246],[114.2802,22.31246],[114.2802,22.31245],[114.2802,22.31245],[114.2802,22.31245],[114.28019,22.31244],[114.28019,22.31244],[114.28019,22.31243],[114.28019,22.31243],[114.28019,22.31242],[114.28019,22.31242],[114.28019,22.31241],[114.28019,22.31241],[114.28019,22.31241],[114.28019,22.3124],[114.28019,22.3124],[114.28018,22.31239],[114.28018,22.31239],[114.28018,22.31238],[114.28018,22.31238],[114.28018,22.31238],[114.28018,22.31237],[114.28017,22.31237],[114.28017,22.31236],[114.28017,22.31236],[114.28017,22.31236],[114.28016,22.31235],[114.28016,22.31235],[114.28016,22.31234],[114.28016,22.31234],[114.28015,22.31234],[114.28015,22.31233],[114.28015,22.31233],[114.28015,22.31233],[114.28014,22.31232],[114.28014,22.31232],[114.28014,22.31232],[114.28013,22.31231],[114.28013,22.31231],[114.28013,22.31231],[114.28012,22.3123],[114.28012,22.3123],[114.28011,22.3123],[114.28011,22.31229],[114.28011,22.31229],[114.2801,22.31229],[114.2801,22.31229],[114.28009,22.31228],[114.28009,22.31228],[114.28009,22.31228],[114.28008,22.31228],[114.28006,22.31227],[114.28006,22.31227],[114.28006,22.31227],[114.28005,22.31226],[114.28005,22.31226],[114.28004,22.31226],[114.28004,22.31226],[114.28004,22.31225],[114.28003,22.31225],[114.28003,22.31225],[114.28002,22.31225],[114.28002,22.31225],[114.28001,22.31225],[114.28001,22.31225],[114.28,22.31224],[114.28,22.31224],[114.27999,22.31224],[114.27999,22.31224],[114.27999,22.31224],[114.27998,22.31224],[114.27998,22.31224],[114.27997,22.31224],[114.27997,22.31224],[114.27996,22.31223],[114.27996,22.31223],[114.27995,22.31223],[114.27995,22.31223],[114.27994,22.31223],[114.27993,22.31223],[114.27992,22.31223],[114.27992,22.31223],[114.27991,22.31223],[114.27991,22.31223],[114.2799,22.31223],[114.27989,22.31223],[114.27989,22.31223],[114.27988,22.31223],[114.27987,22.31223],[114.27986,22.31223],[114.27986,22.31223],[114.27986,22.31223],[114.27985,22.31223],[114.27985,22.31222],[114.27984,22.31222],[114.27984,22.31222],[114.27983,22.31222],[114.27983,22.31222],[114.27982,22.31222],[114.27982,22.31222],[114.27981,22.31222],[114.27981,22.31222],[114.2798,22.31222],[114.2798,22.31222],[114.27979,22.31222],[114.27979,22.31222],[114.27978,22.31222],[114.27978,22.31222],[114.27977,22.31222],[114.27977,22.31222],[114.27976,22.31222],[114.27976,22.31222],[114.27975,22.31222],[114.27975,22.31222],[114.27974,22.31222],[114.27974,22.31222],[114.27973,22.31222],[114.27973,22.31222],[114.27972,22.31222],[114.27972,22.31222],[114.27971,22.31222],[114.27971,22.31222],[114.2797,22.31222],[114.2797,22.31222],[114.2797,22.31222],[114.27969,22.31222],[114.27969,22.31222],[114.27968,22.31222],[114.27968,22.31222],[114.27967,22.31222],[114.27967,22.31222],[114.27966,22.31222],[114.27966,22.31222],[114.27965,22.31222],[114.27965,22.31222],[114.27964,22.31222],[114.27964,22.31222],[114.27963,22.31223],[114.27963,22.31223],[114.27962,22.31223],[114.27962,22.31223],[114.27961,22.31223],[114.27961,22.31223],[114.2796,22.31223],[114.2796,22.31223],[114.27959,22.31223],[114.27959,22.31223],[114.27958,22.31223],[114.27958,22.31223],[114.27957,22.31223],[114.27957,22.31223],[114.27957,22.31224],[114.27956,22.31224],[114.27955,22.31224],[114.27955,22.31224],[114.27954,22.31224],[114.27954,22.31224],[114.27953,22.31224],[114.27953,22.31224],[114.27952,22.31224],[114.27951,22.31224],[114.27951,22.31224],[114.2795,22.31225],[114.2795,22.31225],[114.27949,22.31225],[114.27949,22.31225],[114.27948,22.31225],[114.27947,22.31225],[114.27947,22.31225],[114.27947,22.31225],[114.27946,22.31225],[114.27946,22.31225],[114.27945,22.31225],[114.27945,22.31226],[114.27944,22.31226],[114.27944,22.31226],[114.27943,22.31226],[114.27943,22.31226],[114.27942,22.31226],[114.27942,22.31226],[114.27941,22.31226],[114.27941,22.31226],[114.2794,22.31226],[114.2794,22.31226],[114.27939,22.31227],[114.27939,22.31227],[114.27938,22.31227],[114.27938,22.31227],[114.27937,22.31227],[114.27937,22.31227],[114.27937,22.31227],[114.27936,22.31227],[114.27935,22.31227],[114.27935,22.31228],[114.27934,22.31228],[114.27934,22.31228],[114.27933,22.31228],[114.27932,22.31228],[114.27932,22.31228],[114.27931,22.31228],[114.2793,22.31228],[114.2793,22.31229],[114.27929,22.31229],[114.27928,22.31229],[114.27928,22.31229],[114.27928,22.31229],[114.27927,22.31229],[114.27927,22.31229],[114.27926,22.31229],[114.27926,22.3123],[114.27925,22.3123],[114.27924,22.3123],[114.27924,22.3123],[114.27923,22.3123],[114.27923,22.3123],[114.27922,22.3123],[114.27922,22.3123],[114.27922,22.3123],[114.27921,22.3123],[114.27921,22.3123],[114.2792,22.3123],[114.2792,22.3123],[114.27919,22.3123],[114.27919,22.31229],[114.27919,22.31229],[114.27918,22.31229],[114.27918,22.31228],[114.27918,22.31228],[114.27917,22.31228],[114.27917,22.31227],[114.27917,22.31227],[114.27917,22.31226],[114.27916,22.31226],[114.27916,22.31225],[114.27916,22.31225],[114.27916,22.31224],[114.27916,22.31224],[114.27915,22.31223],[114.27915,22.31223],[114.27915,22.31223],[114.27915,22.31222],[114.27915,22.31222],[114.27915,22.31221],[114.27915,22.31221],[114.27915,22.31221],[114.27915,22.31221],[114.27914,22.3122],[114.27914,22.3122],[114.27914,22.31219],[114.27914,22.31219],[114.27914,22.31218],[114.27914,22.31218],[114.27914,22.31217],[114.27914,22.31217],[114.27913,22.31217],[114.27913,22.31216],[114.27913,22.31216],[114.27913,22.31215],[114.27913,22.31215],[114.27913,22.31214],[114.27912,22.31214],[114.27912,22.31214],[114.27912,22.31213],[114.27912,22.31213],[114.27912,22.31212],[114.27912,22.31212],[114.27911,22.31212],[114.27911,22.31211],[114.27911,22.31211],[114.27911,22.3121],[114.2791,22.3121],[114.2791,22.3121],[114.2791,22.3121],[114.2791,22.31209],[114.2791,22.31209],[114.27909,22.31209],[114.27909,22.31208],[114.27908,22.31208],[114.27908,22.31207],[114.27908,22.31207],[114.27907,22.31207],[114.27907,22.31206],[114.27906,22.31206],[114.27906,22.31206],[114.27906,22.31206],[114.27905,22.31206],[114.27905,22.31205],[114.27904,22.31205],[114.27904,22.31205],[114.27903,22.31205],[114.27903,22.31205],[114.27902,22.31205],[114.27902,22.31205],[114.27901,22.31205],[114.27901,22.31205],[114.279,22.31205],[114.279,22.31206],[114.27899,22.31206],[114.27899,22.31206],[114.27899,22.31206],[114.27898,22.31206],[114.27898,22.31206],[114.27897,22.31206],[114.27897,22.31207],[114.27896,22.31207],[114.27896,22.31207],[114.27895,22.31207],[114.27895,22.31207],[114.27895,22.31208],[114.27894,22.31208],[114.27894,22.31208],[114.27893,22.31208],[114.27893,22.31209],[114.27893,22.31209],[114.27893,22.31209],[114.27892,22.3121],[114.27892,22.3121],[114.27892,22.31211],[114.27892,22.31211],[114.27892,22.31212],[114.27892,22.31212],[114.27891,22.31212],[114.27891,22.31213],[114.27891,22.31213],[114.27891,22.31214],[114.27891,22.31214],[114.27891,22.31215],[114.27891,22.31215],[114.27891,22.31216],[114.27891,22.31216],[114.27891,22.31217],[114.27891,22.31217],[114.27891,22.31217],[114.27891,22.31218],[114.27891,22.31218],[114.27891,22.31219],[114.27891,22.31219],[114.27891,22.3122],[114.27891,22.3122],[114.27891,22.31221],[114.27892,22.31221],[114.27892,22.31221],[114.27892,22.31222],[114.27892,22.31222],[114.27892,22.31223],[114.27892,22.31223],[114.27892,22.31224],[114.27892,22.31224],[114.27892,22.31225],[114.27892,22.31225],[114.27892,22.31225],[114.27892,22.31226],[114.27893,22.31226],[114.27893,22.31227],[114.27893,22.31227],[114.27893,22.31228],[114.27893,22.31228],[114.27893,22.31228],[114.27893,22.31229],[114.27893,22.31229],[114.27893,22.3123],[114.27893,22.3123],[114.27892,22.31231],[114.27892,22.31231],[114.2789,22.31232],[114.27868,22.31242],[114.27868,22.31242],[114.27868,22.31242],[114.27867,22.31243],[114.27867,22.31243],[114.27866,22.31243],[114.27866,22.31243],[114.27865,22.31243],[114.27865,22.31243],[114.27864,22.31243],[114.27864,22.31243],[114.27863,22.31243],[114.27863,22.31243],[114.27862,22.31243],[114.27862,22.31243],[114.27861,22.31243],[114.27861,22.31243],[114.2786,22.31243],[114.2786,22.31243],[114.2786,22.31243],[114.27859,22.31242],[114.27859,22.31242],[114.27858,22.31242],[114.27858,22.31242],[114.27858,22.31242],[114.27857,22.31241],[114.27857,22.31241],[114.27856,22.31241],[114.27856,22.3124],[114.27856,22.3124],[114.27855,22.3124],[114.27855,22.3124],[114.27854,22.31239],[114.27854,22.31239],[114.27854,22.31239],[114.27853,22.31239],[114.27853,22.31238],[114.27852,22.31238],[114.27851,22.31237],[114.27851,22.31237],[114.2785,22.31236],[114.2785,22.31236],[114.27849,22.31236],[114.27849,22.31236],[114.27849,22.31235],[114.27848,22.31235],[114.27848,22.31235],[114.27847,22.31235],[114.27847,22.31234],[114.27846,22.31234],[114.27846,22.31233],[114.27846,22.31233],[114.27845,22.31233],[114.27845,22.31233],[114.27844,22.31232],[114.27844,22.31232],[114.27843,22.31231],[114.27843,22.31231],[114.27842,22.31231],[114.27842,22.3123],[114.27841,22.3123],[114.27841,22.3123],[114.27841,22.31229],[114.2784,22.31229],[114.2784,22.31229],[114.2784,22.31229],[114.27839,22.31228],[114.27839,22.31228],[114.27838,22.31228],[114.27838,22.31227],[114.27838,22.31227],[114.27837,22.31227],[114.27837,22.31226],[114.27837,22.31226],[114.27836,22.31226],[114.27836,22.31226],[114.27836,22.31225],[114.27835,22.31225],[114.27835,22.31225],[114.27835,22.31224],[114.27834,22.31224],[114.27834,22.31223],[114.27834,22.31223],[114.27833,22.31223],[114.27833,22.31222],[114.27833,22.31222],[114.27833,22.31222],[114.27832,22.31221],[114.27832,22.31221],[114.27832,22.31221],[114.27832,22.3122],[114.27831,22.3122],[114.27831,22.31219],[114.27831,22.31219],[114.27831,22.31219],[114.2783,22.31218],[114.2783,22.31218],[114.2783,22.31217],[114.2783,22.31217],[114.2783,22.31217],[114.2783,22.31216],[114.2783,22.31216],[114.2783,22.31215],[114.2783,22.31215],[114.2783,22.31215],[114.2783,22.31214],[114.2783,22.31214],[114.2783,22.31213],[114.2783,22.31213],[114.2783,22.31212],[114.2783,22.31212],[114.2783,22.31211],[114.2783,22.31211],[114.27831,22.31211],[114.27831,22.3121],[114.27831,22.3121],[114.27831,22.31209],[114.27831,22.31209],[114.27831,22.31208],[114.27831,22.31208],[114.27831,22.31207],[114.27831,22.31207],[114.27831,22.31207],[114.27832,22.31206],[114.27832,22.31206],[114.27832,22.31205],[114.27832,22.31205],[114.27832,22.31204],[114.27832,22.31204],[114.27832,22.31204],[114.27832,22.31203],[114.27832,22.31203],[114.27833,22.31202],[114.27833,22.31202],[114.27833,22.31201],[114.27833,22.31201],[114.27833,22.312],[114.27833,22.312],[114.27833,22.312],[114.27833,22.31199],[114.27833,22.31199],[114.27833,22.31198],[114.27833,22.31198],[114.27833,22.31197],[114.27833,22.31197],[114.27833,22.31196],[114.27833,22.31196],[114.27833,22.31195],[114.27833,22.31195],[114.27833,22.31195],[114.27833,22.31194],[114.27833,22.31194],[114.27833,22.31193],[114.27833,22.31193],[114.27833,22.31192],[114.27833,22.31192],[114.27833,22.31191],[114.27833,22.31191],[114.27833,22.31191],[114.27832,22.3119],[114.27832,22.3119],[114.27832,22.31189],[114.27832,22.31189],[114.27832,22.31188],[114.27832,22.31188],[114.27831,22.31188],[114.27831,22.31187],[114.27831,22.31187],[114.27831,22.31186],[114.27831,22.31186],[114.2783,22.31185],[114.2783,22.31185],[114.2783,22.31185],[114.2783,22.31184],[114.2783,22.31184],[114.27829,22.31184],[114.27829,22.31183],[114.27829,22.31183],[114.27828,22.31182],[114.27828,22.31182],[114.27828,22.31182],[114.27828,22.31181],[114.27827,22.31181],[114.27827,22.31181],[114.27827,22.3118],[114.27826,22.3118],[114.27826,22.31179],[114.27826,22.31179],[114.27825,22.31179],[114.27825,22.31179],[114.27825,22.31178],[114.27824,22.31178],[114.27824,22.31178],[114.27823,22.31178],[114.27823,22.31177],[114.27823,22.31177],[114.27822,22.31177],[114.27822,22.31177],[114.27821,22.31177],[114.27821,22.31176],[114.2782,22.31176],[114.2782,22.31176],[114.2782,22.31176],[114.27819,22.31176],[114.27819,22.31176],[114.27818,22.31175],[114.27818,22.31175],[114.27817,22.31175],[114.27817,22.31175],[114.27817,22.31174],[114.27816,22.31174],[114.27816,22.31174],[114.27815,22.31174],[114.27815,22.31173],[114.27815,22.31173],[114.27814,22.31173],[114.27814,22.31173],[114.27813,22.31172],[114.27813,22.31172],[114.27813,22.31172],[114.27812,22.31171],[114.27812,22.31171],[114.27812,22.31171],[114.27811,22.3117],[114.27811,22.3117],[114.27811,22.3117],[114.2781,22.31169],[114.2781,22.31169],[114.2781,22.31169],[114.2781,22.31168],[114.27809,22.31168],[114.27809,22.31167],[114.27809,22.31167],[114.27809,22.31167],[114.27808,22.31166],[114.27808,22.31166],[114.27808,22.31165],[114.27808,22.31165],[114.27808,22.31165],[114.27807,22.31164],[114.27807,22.31164],[114.27807,22.31163],[114.27807,22.31163],[114.27807,22.31162],[114.27807,22.31162],[114.27807,22.31162],[114.27806,22.31161],[114.27806,22.31161],[114.27806,22.3116],[114.27806,22.3116],[114.27806,22.31159],[114.27806,22.31159],[114.27806,22.31158],[114.27806,22.31158],[114.27806,22.31158],[114.27806,22.31157],[114.27806,22.31157],[114.27805,22.31156],[114.27805,22.31156],[114.27805,22.31155],[114.27805,22.31155],[114.27805,22.31154],[114.27805,22.31154],[114.27805,22.31154],[114.27805,22.31153],[114.27805,22.31153],[114.27805,22.31152],[114.27805,22.31152],[114.27805,22.31151],[114.27806,22.31151],[114.27806,22.3115],[114.27806,22.3115],[114.27806,22.31149],[114.27806,22.31149],[114.27806,22.31149],[114.27806,22.31148],[114.27806,22.31148],[114.27806,22.31147],[114.27806,22.31147],[114.27806,22.31146],[114.27806,22.31146],[114.27806,22.31146],[114.27807,22.31145],[114.27807,22.31145],[114.27807,22.31144],[114.27807,22.31144],[114.27807,22.31143],[114.27807,22.31143],[114.27807,22.31142],[114.27807,22.31142],[114.27807,22.31142],[114.27807,22.31141],[114.27807,22.31141],[114.27807,22.3114],[114.27807,22.3114],[114.27807,22.31139],[114.27807,22.31139],[114.27807,22.31138],[114.27807,22.31138],[114.27807,22.31137],[114.27807,22.31137],[114.27807,22.31137],[114.27807,22.31136],[114.27807,22.31136],[114.27806,22.31135],[114.27806,22.31135],[114.27806,22.31134],[114.27806,22.31134],[114.27806,22.31134],[114.27806,22.31133],[114.27805,22.31133],[114.27805,22.31132],[114.27805,22.31132],[114.27805,22.31131],[114.27805,22.31131],[114.27805,22.31131],[114.27804,22.3113],[114.27804,22.3113],[114.27804,22.31129],[114.27804,22.31129],[114.27803,22.31129],[114.27803,22.31128],[114.27803,22.31128],[114.27803,22.31127],[114.27802,22.31127],[114.27802,22.31127],[114.27802,22.31126],[114.27802,22.31126],[114.27801,22.31126],[114.27801,22.31125],[114.27801,22.31125],[114.278,22.31124],[114.278,22.31124],[114.278,22.31124],[114.27799,22.31123],[114.27799,22.31123],[114.27799,22.31123],[114.27798,22.31122],[114.27798,22.31122],[114.27798,22.31122],[114.27798,22.31121],[114.27797,22.31121],[114.27797,22.31121],[114.27797,22.3112],[114.27796,22.3112],[114.27796,22.3112],[114.27796,22.31119],[114.27795,22.31119],[114.27795,22.31119],[114.27795,22.31118],[114.27794,22.31118],[114.27794,22.31118],[114.27794,22.31117],[114.27793,22.31117],[114.27793,22.31117],[114.27792,22.31117],[114.27792,22.31116],[114.27792,22.31116],[114.27791,22.31116],[114.27791,22.31115],[114.27791,22.31115],[114.2779,22.31115],[114.2779,22.31115],[114.2779,22.31114],[114.27789,22.31114],[114.27789,22.31114],[114.27788,22.31114],[114.27788,22.31113],[114.27788,22.31113],[114.27787,22.31113],[114.27787,22.31113],[114.27786,22.31113],[114.27786,22.31112],[114.27785,22.31112],[114.27785,22.31112],[114.27785,22.31112],[114.27784,22.31111],[114.27784,22.31111],[114.27783,22.31111],[114.27783,22.3111],[114.27783,22.3111],[114.27782,22.3111],[114.27782,22.31109],[114.27782,22.31109],[114.27782,22.31109],[114.27781,22.31108],[114.27781,22.31108],[114.27781,22.31108],[114.27781,22.31107],[114.2778,22.31107],[114.2778,22.31106],[114.2778,22.31106],[114.2778,22.31105],[114.2778,22.31105],[114.2778,22.31105],[114.2778,22.31104],[114.2778,22.31104],[114.27779,22.31103],[114.27779,22.31103],[114.27779,22.31102],[114.27779,22.31102],[114.27779,22.31102],[114.27779,22.31101],[114.27778,22.31101],[114.27778,22.311],[114.27778,22.311],[114.27778,22.31099],[114.27778,22.31099],[114.27777,22.31099],[114.27777,22.31098],[114.27777,22.31098],[114.27776,22.31098],[114.27776,22.31097],[114.27776,22.31097],[114.27776,22.31096],[114.27775,22.31096],[114.27775,22.31096],[114.27775,22.31095],[114.27774,22.31095],[114.27774,22.31095],[114.27774,22.31095],[114.27773,22.31094],[114.27773,22.31094],[114.27772,22.31094],[114.27772,22.31093],[114.27772,22.31093],[114.27771,22.31093],[114.27771,22.31092],[114.27771,22.31092],[114.2777,22.31092],[114.2777,22.31092],[114.27769,22.31091],[114.27769,22.31091],[114.27769,22.31091],[114.27768,22.31091],[114.27768,22.3109],[114.27768,22.3109],[114.27767,22.3109],[114.27767,22.31089],[114.27766,22.31089],[114.27766,22.31089],[114.27766,22.31089],[114.27765,22.31089],[114.27765,22.31088],[114.27764,22.31088],[114.27764,22.31088],[114.27763,22.31088],[114.27763,22.31087],[114.27763,22.31087],[114.27762,22.31087],[114.27762,22.31087],[114.27761,22.31087],[114.27761,22.31086],[114.2776,22.31086],[114.2776,22.31086],[114.2776,22.31086],[114.27759,22.31086],[114.27759,22.31085],[114.27758,22.31085],[114.27758,22.31085],[114.27757,22.31085],[114.27757,22.31085],[114.27757,22.31084],[114.27756,22.31084],[114.27756,22.31084],[114.27755,22.31084],[114.27755,22.31083],[114.27754,22.31083],[114.27754,22.31083],[114.27754,22.31083],[114.27753,22.31083],[114.27753,22.31082],[114.27752,22.31082],[114.27752,22.31082],[114.27751,22.31082],[114.27751,22.31081],[114.27751,22.31081],[114.2775,22.31081],[114.2775,22.31081],[114.27749,22.3108],[114.27749,22.3108],[114.27749,22.3108],[114.27748,22.3108],[114.27748,22.31079],[114.27747,22.31079],[114.27747,22.31079],[114.27747,22.31079],[114.27746,22.31079],[114.27746,22.31078],[114.27745,22.31078],[114.27745,22.31078],[114.27744,22.31078],[114.27744,22.31078],[114.27743,22.31078],[114.27743,22.31077],[114.27742,22.31077],[114.27742,22.31077],[114.27742,22.31077],[114.27741,22.31077],[114.27741,22.31077],[114.2774,22.31077],[114.2774,22.31077],[114.27739,22.31076],[114.27739,22.31076],[114.27738,22.31076],[114.27738,22.31076],[114.27737,22.31076],[114.27737,22.31076],[114.27736,22.31076],[114.27736,22.31076],[114.27735,22.31076],[114.27735,22.31076],[114.27734,22.31076],[114.27734,22.31076],[114.27733,22.31076],[114.27733,22.31075],[114.27733,22.31075],[114.27732,22.31075],[114.27732,22.31075],[114.27731,22.31075],[114.27731,22.31075],[114.2773,22.31075],[114.2773,22.31074],[114.27729,22.31074],[114.27729,22.31074],[114.27729,22.31074],[114.27728,22.31074],[114.27728,22.31073],[114.27727,22.31073],[114.27727,22.31073],[114.27726,22.31073],[114.27726,22.31073],[114.27725,22.31072],[114.27725,22.31072],[114.27725,22.31072],[114.27724,22.31072],[114.27724,22.31072],[114.27723,22.31072],[114.27723,22.31071],[114.27722,22.31071],[114.27722,22.31071],[114.27721,22.31071],[114.27721,22.31071],[114.2772,22.31071],[114.2772,22.31071],[114.2772,22.3107],[114.27719,22.3107],[114.27719,22.3107],[114.27718,22.3107],[114.27718,22.3107],[114.27717,22.3107],[114.27717,22.3107],[114.27716,22.3107],[114.27716,22.31069],[114.27715,22.31069],[114.27715,22.31069],[114.27714,22.31069],[114.27714,22.31069],[114.27713,22.31069],[114.27713,22.31069],[114.27712,22.31069],[114.27712,22.31069],[114.27711,22.31069],[114.27711,22.31069],[114.2771,22.31069],[114.2771,22.31069],[114.27709,22.31069],[114.27709,22.31069],[114.27709,22.31069],[114.27708,22.31069],[114.27707,22.31069],[114.27704,22.31069],[114.277,22.31068],[114.27699,22.31068],[114.27698,22.31068],[114.27698,22.31068],[114.27697,22.31068],[114.27697,22.31068],[114.27696,22.31068],[114.27696,22.31068],[114.27695,22.31068],[114.27695,22.31068],[114.27695,22.31067],[114.27694,22.31067],[114.27694,22.31067],[114.27693,22.31067],[114.27693,22.31066],[114.27692,22.31066],[114.27692,22.31066],[114.27692,22.31066],[114.27685,22.31062],[114.27676,22.31058],[114.2767,22.31056],[114.27669,22.31056],[114.27668,22.31056],[114.27668,22.31056],[114.27667,22.31056],[114.27667,22.31056],[114.27667,22.31056],[114.27666,22.31056],[114.27666,22.31056],[114.27665,22.31056],[114.27665,22.31055],[114.27664,22.31055],[114.27664,22.31055],[114.27663,22.31055],[114.27663,22.31055],[114.27662,22.31055],[114.27662,22.31055],[114.27661,22.31055],[114.27661,22.31054],[114.27661,22.31054],[114.2766,22.31054],[114.2766,22.31053],[114.2766,22.31053],[114.27659,22.31053],[114.27659,22.31052],[114.27659,22.31052],[114.27658,22.31052],[114.27658,22.31051],[114.27658,22.31051],[114.27658,22.3105],[114.27658,22.3105],[114.27658,22.31049],[114.27658,22.31049],[114.27658,22.31048],[114.27658,22.31048],[114.27659,22.31048],[114.27659,22.31047],[114.27659,22.31047],[114.2766,22.31047],[114.2766,22.31046],[114.27668,22.31041],[114.27669,22.31041],[114.27669,22.3104],[114.27669,22.3104],[114.2767,22.3104],[114.2767,22.3104],[114.27671,22.31039],[114.27671,22.31039],[114.27671,22.31039],[114.27672,22.31038],[114.27672,22.31038],[114.27673,22.31038],[114.27673,22.31038],[114.27673,22.31037],[114.27674,22.31037],[114.27674,22.31037],[114.27675,22.31037],[114.27675,22.31036],[114.27675,22.31036],[114.27676,22.31036],[114.27676,22.31036],[114.27677,22.31036],[114.27677,22.31035],[114.27678,22.31035],[114.27678,22.31035],[114.27678,22.31035],[114.27679,22.31035],[114.27679,22.31034],[114.2768,22.31034],[114.2768,22.31034],[114.27681,22.31034],[114.27681,22.31034],[114.27683,22.31033],[114.27683,22.31033],[114.27684,22.31032],[114.27684,22.31032],[114.27684,22.31032],[114.27685,22.31031],[114.27685,22.31031],[114.27685,22.3103],[114.27685,22.3103],[114.27685,22.3103],[114.27686,22.31029],[114.27686,22.31029],[114.27686,22.31028],[114.27686,22.31028],[114.27686,22.31027],[114.27686,22.31027],[114.27685,22.31026],[114.27685,22.31026],[114.27685,22.31026],[114.27685,22.31025],[114.27685,22.31025],[114.27684,22.31024],[114.27684,22.31024],[114.27684,22.31024],[114.27684,22.31023],[114.27684,22.31023],[114.27683,22.31023],[114.27683,22.31023],[114.27683,22.31022],[114.27682,22.31022],[114.27682,22.31022],[114.27682,22.31021],[114.27681,22.31021],[114.27681,22.31021],[114.27679,22.3102],[114.27679,22.3102],[114.27679,22.31019],[114.27678,22.31019],[114.27678,22.31019],[114.27677,22.31019],[114.27677,22.31019],[114.27677,22.31018],[114.27676,22.31018],[114.27676,22.31018],[114.27675,22.31018],[114.27675,22.31017],[114.27675,22.31017],[114.27674,22.31017],[114.27674,22.31017],[114.27673,22.31016],[114.27673,22.31016],[114.27673,22.31016],[114.27672,22.31016],[114.27672,22.31015],[114.27671,22.31015],[114.27671,22.31015],[114.27671,22.31014],[114.2767,22.31014],[114.2767,22.31014],[114.27669,22.31014],[114.27669,22.31013],[114.27669,22.31013],[114.27668,22.31013],[114.27668,22.31013],[114.27667,22.31012],[114.27667,22.31012],[114.27667,22.31012],[114.27666,22.31011],[114.27666,22.31011],[114.27666,22.31011],[114.27665,22.31011],[114.27665,22.3101],[114.27664,22.3101],[114.27664,22.3101],[114.27664,22.31009],[114.27663,22.31009],[114.27663,22.31008],[114.27662,22.31008],[114.27662,22.31008],[114.27662,22.31007],[114.27661,22.31007],[114.27661,22.31007],[114.2766,22.31007],[114.2766,22.31006],[114.2766,22.31006],[114.27659,22.31006],[114.27659,22.31005],[114.27659,22.31005],[114.27659,22.31005],[114.27658,22.31004],[114.27658,22.31004],[114.27658,22.31003],[114.27657,22.31003],[114.27657,22.31003],[114.27657,22.31002],[114.27656,22.31002],[114.27656,22.31002],[114.27656,22.31001],[114.27656,22.31001],[114.27655,22.31001],[114.27655,22.31],[114.27655,22.31],[114.27654,22.31],[114.27654,22.30999],[114.27653,22.30999],[114.27653,22.30999],[114.27653,22.30998],[114.27652,22.30998],[114.27652,22.30998],[114.27652,22.30998],[114.27651,22.30997],[114.27651,22.30997],[114.27651,22.30997],[114.2765,22.30996],[114.2765,22.30996],[114.2765,22.30995],[114.27649,22.30995],[114.27649,22.30995],[114.27649,22.30994],[114.27649,22.30994],[114.27648,22.30994],[114.27648,22.30993],[114.27648,22.30993],[114.27647,22.30993],[114.27647,22.30992],[114.27647,22.30992],[114.27646,22.30992],[114.27646,22.30991],[114.27646,22.30991],[114.27646,22.3099],[114.27645,22.3099],[114.27645,22.3099],[114.27645,22.30989],[114.27644,22.30989],[114.27644,22.30989],[114.27644,22.30988],[114.27643,22.30988],[114.27643,22.30988],[114.27643,22.30987],[114.27643,22.30987],[114.27642,22.30987],[114.27642,22.30986],[114.27641,22.30985],[114.27641,22.30985],[114.27641,22.30984],[114.2764,22.30984],[114.2764,22.30984],[114.2764,22.30983],[114.2764,22.30983],[114.27639,22.30983],[114.27639,22.30982],[114.27639,22.30982],[114.27638,22.30982],[114.27638,22.30981],[114.27638,22.30981],[114.27638,22.3098],[114.27637,22.3098],[114.27637,22.3098],[114.27637,22.30979],[114.27637,22.30979],[114.27636,22.30978],[114.27636,22.30978],[114.27636,22.30978],[114.27636,22.30977],[114.27635,22.30977],[114.27635,22.30977],[114.27635,22.30976],[114.27635,22.30976],[114.27634,22.30975],[114.27634,22.30975],[114.27634,22.30975],[114.27634,22.30974],[114.27633,22.30974],[114.27633,22.30974],[114.27633,22.30973],[114.27632,22.30973],[114.27632,22.30973],[114.27632,22.30972],[114.27631,22.30972],[114.27631,22.30972],[114.2763,22.30972],[114.2763,22.30971],[114.27629,22.30971],[114.27629,22.30971],[114.27628,22.30971],[114.27628,22.30971],[114.27627,22.30971],[114.27627,22.30971],[114.27627,22.30971],[114.27626,22.30971],[114.27626,22.30971],[114.27625,22.30971],[114.27625,22.30972],[114.27624,22.30972],[114.27624,22.30972],[114.27623,22.30972],[114.27623,22.30972],[114.27623,22.30973],[114.27622,22.30973],[114.27622,22.30973],[114.27621,22.30973],[114.27621,22.30974],[114.27621,22.30974],[114.2762,22.30974],[114.2762,22.30975],[114.27619,22.30975],[114.27619,22.30975],[114.27619,22.30975],[114.27619,22.30975],[114.27618,22.30976],[114.27618,22.30976],[114.27618,22.30976],[114.27617,22.30977],[114.27617,22.30977],[114.27617,22.30977],[114.27616,22.30978],[114.27616,22.30978],[114.27616,22.30978],[114.27615,22.30979],[114.27615,22.30979],[114.27615,22.30979],[114.27615,22.3098],[114.27615,22.3098],[114.27614,22.3098],[114.27614,22.30981],[114.27614,22.30981],[114.27614,22.30982],[114.27614,22.30982],[114.27613,22.30982],[114.27613,22.30983],[114.27613,22.30983],[114.27613,22.30984],[114.27613,22.30984],[114.27613,22.30985],[114.27613,22.30985],[114.27613,22.30986],[114.27613,22.30986],[114.27613,22.30986],[114.27613,22.30987],[114.27613,22.30987],[114.27613,22.30988],[114.27613,22.30988],[114.27613,22.30989],[114.27613,22.30989],[114.27613,22.3099],[114.27613,22.3099],[114.27613,22.3099],[114.27614,22.30991],[114.27614,22.30991],[114.27614,22.30991],[114.27615,22.30992],[114.27615,22.30992],[114.27615,22.30992],[114.27616,22.30993],[114.27616,22.30993],[114.27616,22.30993],[114.27616,22.30994],[114.27617,22.30994],[114.27617,22.30995],[114.27617,22.30995],[114.27617,22.30996],[114.27616,22.30999],[114.27589,22.3103],[114.2755,22.31064],[114.27542,22.31053],[114.275,22.31052],[114.27497,22.31063],[114.2751,22.31066],[114.27473,22.31136],[114.27445,22.31126],[114.27445,22.31126],[114.27445,22.31127],[114.27445,22.31127],[114.27445,22.31128],[114.27445,22.31128],[114.27445,22.31128],[114.27444,22.31129],[114.27444,22.31129],[114.27444,22.3113],[114.27444,22.3113],[114.27444,22.31131],[114.27444,22.31131],[114.27444,22.31132],[114.27444,22.31132],[114.27444,22.31133],[114.27444,22.31133],[114.27444,22.31133],[114.27444,22.31134],[114.27444,22.31135],[114.27444,22.31136],[114.27444,22.31137],[114.27444,22.31137],[114.27444,22.31137],[114.27443,22.31138],[114.27443,22.31138],[114.27443,22.31139],[114.27443,22.31139],[114.27443,22.3114],[114.27443,22.3114],[114.27443,22.31141],[114.27443,22.31141],[114.27443,22.31141],[114.27443,22.31142],[114.27443,22.31142],[114.27443,22.31143],[114.27443,22.31143],[114.27443,22.31144],[114.27443,22.31144],[114.27443,22.31145],[114.27443,22.31145],[114.27442,22.31146],[114.27442,22.31146],[114.27442,22.31147],[114.27442,22.31147],[114.27442,22.31148],[114.27442,22.31148],[114.27442,22.31149],[114.27442,22.31149],[114.27442,22.3115],[114.27442,22.3115],[114.27442,22.3115],[114.27442,22.31151],[114.27442,22.31151],[114.27442,22.31152],[114.27442,22.31152],[114.27442,22.31153],[114.27441,22.31153],[114.27441,22.31154],[114.27441,22.31154],[114.27441,22.31155],[114.27441,22.31155],[114.27441,22.31156],[114.27441,22.31156],[114.27441,22.31157],[114.27441,22.31157],[114.27441,22.31158],[114.27441,22.31158],[114.27441,22.31159],[114.27441,22.31159],[114.27441,22.31159],[114.27441,22.3116],[114.2744,22.3116],[114.2744,22.31161],[114.2744,22.31161],[114.2744,22.31162],[114.2744,22.31162],[114.2744,22.31163],[114.2744,22.31163],[114.2744,22.31163],[114.2744,22.31164],[114.2744,22.31164],[114.2744,22.31166],[114.2744,22.31166],[114.2744,22.31167],[114.27439,22.31167],[114.27439,22.31167],[114.27439,22.31168],[114.27439,22.31169],[114.27439,22.31169],[114.27439,22.3117],[114.27439,22.3117],[114.27439,22.31171],[114.27439,22.31171],[114.27439,22.31171],[114.27439,22.31172],[114.27439,22.31172],[114.27439,22.31173],[114.27438,22.31173],[114.27438,22.31174],[114.27438,22.31174],[114.27438,22.31175],[114.27438,22.31175],[114.27438,22.31175],[114.27438,22.31176],[114.27438,22.31177],[114.27438,22.31177],[114.27438,22.31178],[114.27438,22.31178],[114.27438,22.31179],[114.27438,22.31179],[114.27437,22.3118],[114.27437,22.3118],[114.27437,22.31181],[114.27437,22.31181],[114.27437,22.31182],[114.27437,22.31182],[114.27437,22.31183],[114.27437,22.31183],[114.27437,22.31184],[114.27437,22.31184],[114.27437,22.31184],[114.27437,22.31185],[114.27436,22.31185],[114.27436,22.31186],[114.27436,22.31186],[114.27436,22.31187],[114.27436,22.31187],[114.27436,22.31188],[114.27436,22.31188],[114.27436,22.31188],[114.27436,22.31189],[114.27436,22.31189],[114.27436,22.3119],[114.27436,22.3119],[114.27436,22.31191],[114.27435,22.31191],[114.27435,22.31192],[114.27435,22.31192],[114.27435,22.31192],[114.27435,22.31193],[114.27435,22.31194],[114.27435,22.31195],[114.27435,22.31195],[114.27435,22.31196],[114.27435,22.31196],[114.27434,22.31196],[114.27434,22.31197],[114.27434,22.31197],[114.27434,22.31198],[114.27434,22.31198],[114.27434,22.31199],[114.27434,22.312],[114.27434,22.312],[114.27434,22.312],[114.27434,22.31201],[114.27434,22.31201],[114.27433,22.31203],[114.27433,22.31204],[114.27433,22.31204],[114.27433,22.31204],[114.27433,22.31205],[114.27433,22.31205],[114.27433,22.31206],[114.27433,22.31206],[114.27432,22.31207],[114.27432,22.31207],[114.27432,22.31208],[114.27432,22.31208],[114.27432,22.31208],[114.27432,22.31209],[114.27432,22.31209],[114.27432,22.3121],[114.27432,22.3121],[114.27432,22.31211],[114.27431,22.31212],[114.27431,22.31213],[114.27431,22.31213],[114.27431,22.31214],[114.27431,22.31214],[114.27431,22.31214],[114.27431,22.31215],[114.27431,22.31215],[114.27431,22.31216],[114.27431,22.31216],[114.27431,22.31217],[114.2743,22.31218],[114.2743,22.31219],[114.2743,22.31219],[114.2743,22.3122],[114.2743,22.31221],[114.2743,22.31221],[114.27422,22.31226],[114.27416,22.31231],[114.27416,22.31233],[114.27417,22.31235],[114.27418,22.31238],[114.2742,22.31241],[114.27422,22.31244],[114.27422,22.31244],[114.27422,22.31245],[114.27423,22.31245],[114.27423,22.31245],[114.27423,22.31246],[114.27423,22.31246],[114.27424,22.31246],[114.27424,22.31247],[114.27424,22.31247],[114.27425,22.31248],[114.27425,22.31248],[114.27425,22.31248],[114.27425,22.31249],[114.27426,22.31249],[114.27426,22.31249],[114.27426,22.3125],[114.27427,22.3125],[114.27427,22.3125],[114.27427,22.31251],[114.27427,22.31251],[114.27428,22.31251],[114.27428,22.31252],[114.27428,22.31252],[114.27429,22.31252],[114.27429,22.31253],[114.27429,22.31253],[114.2743,22.31253],[114.2743,22.31254],[114.2743,22.31254],[114.27431,22.31254],[114.27431,22.31255],[114.27431,22.31255],[114.27432,22.31255],[114.27432,22.31256],[114.27432,22.31256],[114.27433,22.31256],[114.27433,22.31257],[114.27434,22.31257],[114.27434,22.31257],[114.27434,22.31258],[114.27435,22.31258],[114.27435,22.31258],[114.27435,22.31258],[114.27436,22.31259],[114.27436,22.31259],[114.27436,22.31259],[114.27437,22.3126],[114.27437,22.3126],[114.27438,22.3126],[114.27438,22.3126],[114.27438,22.31261],[114.27439,22.31261],[114.27439,22.31261],[114.2744,22.31262],[114.2744,22.31262],[114.2744,22.31262],[114.27441,22.31262],[114.27441,22.31263],[114.27442,22.31263],[114.27442,22.31263],[114.27442,22.31263],[114.27446,22.31277],[114.27446,22.3128],[114.27445,22.31285],[114.27445,22.31285],[114.27445,22.31286],[114.27445,22.31286],[114.27445,22.31287],[114.27445,22.31287],[114.27445,22.31287],[114.27444,22.31288],[114.27444,22.31288],[114.27444,22.31289],[114.27444,22.31289],[114.27444,22.3129],[114.27444,22.3129],[114.27444,22.3129],[114.27444,22.31291],[114.27444,22.31291],[114.27444,22.31292],[114.27444,22.31292],[114.27444,22.31293],[114.27443,22.31293],[114.27443,22.31294],[114.27443,22.31294],[114.27443,22.31295],[114.27443,22.31295],[114.27443,22.31295],[114.27443,22.31296],[114.27443,22.31296],[114.27443,22.31297],[114.27443,22.31297],[114.27443,22.31298],[114.27443,22.31298],[114.27443,22.31299],[114.27443,22.31299],[114.27443,22.31299],[114.27443,22.313],[114.27443,22.313],[114.27442,22.31301],[114.27442,22.31301],[114.27442,22.31302],[114.27442,22.31302],[114.27442,22.31303],[114.27442,22.31303],[114.27442,22.31303],[114.27442,22.31304],[114.27442,22.31304],[114.27442,22.31305],[114.27442,22.31305],[114.27442,22.31306],[114.27442,22.31306],[114.27442,22.31307],[114.27442,22.31307],[114.27442,22.31308],[114.27442,22.31308],[114.27442,22.31308],[114.27442,22.31309],[114.27442,22.31309],[114.27442,22.3131],[114.27442,22.3131],[114.27442,22.31311],[114.27442,22.31311],[114.27442,22.31312],[114.27442,22.31312],[114.27442,22.31313],[114.27442,22.31313],[114.27442,22.31313],[114.27442,22.31314],[114.27442,22.31314],[114.27442,22.31315],[114.27442,22.31315],[114.27443,22.31316],[114.27443,22.31316],[114.27443,22.31316],[114.27442,22.31316],[114.27441,22.31317],[114.2744,22.31317],[114.27439,22.31317],[114.27438,22.31317],[114.27438,22.31317],[114.27437,22.31318],[114.27437,22.31318],[114.27437,22.31318],[114.27436,22.31319],[114.27436,22.31319],[114.27435,22.31321],[114.27434,22.31323],[114.27433,22.31325],[114.27433,22.31327],[114.27434,22.3133],[114.27435,22.31332],[114.27435,22.31334],[114.27436,22.31335],[114.27437,22.31336],[114.27438,22.31338],[114.27438,22.31338],[114.27439,22.31339],[114.2744,22.31339],[114.27441,22.31339],[114.27442,22.3134],[114.27442,22.3134],[114.27443,22.3134],[114.27444,22.3134],[114.27448,22.3134],[114.27448,22.3134],[114.27448,22.3134],[114.27448,22.31341],[114.27448,22.31341],[114.27449,22.31342],[114.27449,22.31342],[114.27449,22.31342],[114.27449,22.31343],[114.27449,22.31343],[114.27449,22.31344],[114.2745,22.31344],[114.2745,22.31345],[114.2745,22.31345],[114.2745,22.31345],[114.2745,22.31346],[114.27451,22.31346],[114.27451,22.31347],[114.27451,22.31347],[114.27451,22.31347],[114.27451,22.31348],[114.27452,22.31348],[114.27452,22.31349],[114.27452,22.31349],[114.27452,22.3135],[114.27452,22.3135],[114.27453,22.3135],[114.27453,22.31351],[114.27453,22.31351],[114.27453,22.31352],[114.27453,22.31352],[114.27454,22.31352],[114.27454,22.31353],[114.27455,22.31355],[114.27455,22.31355],[114.27456,22.31356],[114.27456,22.31356],[114.27456,22.31357],[114.27456,22.31357],[114.27456,22.31358],[114.27456,22.31358],[114.27457,22.31358],[114.27457,22.31359],[114.27457,22.31359],[114.27457,22.3136],[114.27457,22.3136],[114.27457,22.31361],[114.27457,22.31361],[114.27457,22.31362],[114.27457,22.31362],[114.27458,22.31362],[114.27458,22.31363],[114.27458,22.31363],[114.27458,22.31364],[114.27458,22.31364],[114.27458,22.31365],[114.27458,22.31365],[114.27458,22.31366],[114.27458,22.31366],[114.27458,22.31366],[114.27458,22.31367],[114.27458,22.31367],[114.27458,22.31368],[114.27458,22.31368],[114.27458,22.31369],[114.27458,22.31369],[114.27458,22.3137],[114.27458,22.3137],[114.27458,22.31371],[114.27458,22.31371],[114.27458,22.31371],[114.27458,22.31372],[114.27458,22.31372],[114.27458,22.31373],[114.27458,22.31373],[114.27458,22.31374],[114.27458,22.31374],[114.27457,22.31375],[114.27457,22.31375],[114.27457,22.31375],[114.27457,22.31376],[114.27457,22.31376],[114.27457,22.31377],[114.27457,22.31377],[114.27457,22.31378],[114.27457,22.31378],[114.27456,22.31379],[114.27456,22.31379],[114.27456,22.31379],[114.27456,22.3138],[114.27456,22.3138],[114.27456,22.31381],[114.27455,22.31381],[114.27455,22.31381],[114.27455,22.31382],[114.27455,22.31382],[114.27455,22.31383],[114.27454,22.31383],[114.27454,22.31384],[114.27454,22.31384],[114.27454,22.31384],[114.27454,22.31385],[114.27453,22.31385],[114.27453,22.31386],[114.27453,22.31386],[114.27453,22.31386],[114.27452,22.31387],[114.27452,22.31387],[114.27452,22.31387],[114.27452,22.31388],[114.27448,22.31391],[114.27446,22.31391],[114.27443,22.31392],[114.27441,22.31393],[114.2744,22.31394],[114.27438,22.31396],[114.27434,22.31401],[114.27431,22.31404],[114.27427,22.3141],[114.27415,22.31434],[114.27411,22.31445],[114.27397,22.31472],[114.27395,22.31476],[114.27393,22.3148],[114.27392,22.31483],[114.27391,22.31484],[114.27389,22.31486],[114.27386,22.31488],[114.27384,22.3149],[114.27382,22.31491],[114.27379,22.31493],[114.27375,22.31494],[114.27371,22.31496],[114.27369,22.31497],[114.27365,22.31499],[114.27363,22.31501],[114.27361,22.31503],[114.2736,22.31504],[114.27359,22.31506],[114.27358,22.31507],[114.27358,22.31508],[114.27358,22.31508],[114.27358,22.31508],[114.27358,22.31508],[114.27358,22.31509],[114.27359,22.31511],[114.2736,22.31516],[114.2736,22.31521],[114.2736,22.31525],[114.2736,22.31527],[114.27358,22.31531],[114.27357,22.31532],[114.27357,22.31532],[114.27357,22.31532],[114.27356,22.31533],[114.27356,22.31533],[114.27356,22.31533],[114.27355,22.31534],[114.27355,22.31534],[114.27355,22.31534],[114.27354,22.31534],[114.27354,22.31535],[114.27354,22.31535],[114.27353,22.31535],[114.27353,22.31536],[114.27353,22.31536],[114.27353,22.31536],[114.27353,22.31537],[114.27352,22.31537],[114.27352,22.31538],[114.27352,22.31538],[114.27352,22.31539],[114.27352,22.31539],[114.27352,22.3154],[114.27352,22.3154],[114.27352,22.3154],[114.27352,22.31541],[114.27352,22.31541],[114.27352,22.31542],[114.27352,22.31542],[114.27352,22.31543],[114.27353,22.31543],[114.27353,22.31544],[114.27353,22.31544],[114.27353,22.31544],[114.27353,22.31545],[114.27353,22.31545],[114.27353,22.31546],[114.27353,22.31547],[114.27354,22.31547],[114.27354,22.31547],[114.27354,22.31548],[114.27354,22.31548],[114.27354,22.31549],[114.27354,22.31549],[114.27354,22.3155],[114.27355,22.3155],[114.27355,22.3155],[114.27355,22.31551],[114.27355,22.31551],[114.27355,22.31552],[114.27356,22.31552],[114.27356,22.31552],[114.27358,22.31555],[114.27358,22.31555],[114.27359,22.31555],[114.27359,22.31556],[114.27359,22.31556],[114.27359,22.31556],[114.2736,22.31557],[114.2736,22.31557],[114.2736,22.31557],[114.27361,22.31558],[114.27361,22.31558],[114.27361,22.31558],[114.27362,22.31559],[114.27362,22.31559],[114.27362,22.31559],[114.27363,22.31559],[114.27363,22.3156],[114.27364,22.3156],[114.27364,22.3156],[114.27364,22.31561],[114.27365,22.31561],[114.27365,22.31561],[114.27365,22.31562],[114.27366,22.31562],[114.27366,22.31562],[114.27367,22.31562],[114.27367,22.31563],[114.27367,22.31563],[114.27368,22.31563],[114.27368,22.31564],[114.27368,22.31564],[114.27369,22.31564],[114.27369,22.31564],[114.2737,22.31565],[114.2737,22.31565],[114.2737,22.31565],[114.27371,22.31566],[114.27372,22.31566],[114.27372,22.31566],[114.27372,22.31566],[114.27373,22.31566],[114.27373,22.31567],[114.27374,22.31567],[114.27374,22.31567],[114.27375,22.31567],[114.27375,22.31567],[114.27375,22.31568],[114.27376,22.31568],[114.27377,22.31568],[114.27377,22.31569],[114.27378,22.31569],[114.27378,22.31569],[114.27379,22.31569],[114.27379,22.3157],[114.2738,22.3157],[114.2738,22.3157],[114.27381,22.3157],[114.27381,22.3157],[114.27381,22.31571],[114.27382,22.31571],[114.27382,22.31571],[114.27384,22.31572],[114.27389,22.31574],[114.27389,22.31575],[114.27389,22.31575],[114.2739,22.31575],[114.2739,22.31576],[114.27391,22.31576],[114.27391,22.31577],[114.27391,22.31577],[114.27392,22.31578],[114.27392,22.31578],[114.27393,22.31579],[114.27393,22.31579],[114.27393,22.3158],[114.27393,22.3158],[114.27394,22.31581],[114.27394,22.31581],[114.27395,22.31582],[114.27395,22.31582],[114.27395,22.31582],[114.27395,22.31583],[114.27396,22.31583],[114.27396,22.31583],[114.27396,22.31584],[114.27397,22.31585],[114.27397,22.31585],[114.27397,22.31585],[114.27398,22.31586],[114.27398,22.31586],[114.27399,22.31587],[114.27399,22.31588],[114.27399,22.31588],[114.274,22.31588],[114.274,22.31589],[114.274,22.31589],[114.27401,22.3159],[114.27401,22.3159],[114.27402,22.31591],[114.27431,22.31626],[114.27418,22.31646],[114.27419,22.31646],[114.27419,22.31647],[114.27419,22.31647],[114.2742,22.31647],[114.2742,22.31647],[114.2742,22.31648],[114.27421,22.31648],[114.27421,22.31648],[114.27421,22.31649],[114.27422,22.31649],[114.27422,22.3165],[114.27422,22.3165],[114.27423,22.3165],[114.27423,22.31651],[114.27423,22.31651],[114.27424,22.31652],[114.27424,22.31652],[114.27424,22.31653],[114.27425,22.31653],[114.27425,22.31653],[114.27426,22.31654],[114.27426,22.31654],[114.27426,22.31655],[114.27426,22.31655],[114.27427,22.31655],[114.27427,22.31656],[114.27427,22.31656],[114.27428,22.31657],[114.27428,22.31657],[114.27428,22.31658],[114.27429,22.31659],[114.27429,22.31659],[114.2743,22.31659],[114.2743,22.3166],[114.2743,22.3166],[114.27431,22.3166],[114.27431,22.31661],[114.27431,22.31661],[114.27432,22.31661],[114.27432,22.31662],[114.27432,22.31662],[114.27433,22.31662],[114.27433,22.31663],[114.27433,22.31663],[114.27433,22.31663],[114.27434,22.31664],[114.27434,22.31664],[114.27434,22.31664],[114.27435,22.31665],[114.27435,22.31665],[114.27435,22.31666],[114.27436,22.31666],[114.27436,22.31666],[114.27436,22.31667],[114.27437,22.31667],[114.27438,22.31669],[114.27439,22.31671],[114.2744,22.31671],[114.2744,22.31671],[114.2744,22.31672],[114.27441,22.31672],[114.27441,22.31672],[114.27441,22.31673],[114.27442,22.31673],[114.27442,22.31673],[114.27442,22.31674],[114.27442,22.31674],[114.27443,22.31675],[114.27443,22.31675],[114.27443,22.31675],[114.27443,22.31676],[114.27444,22.31676],[114.27444,22.31676],[114.27444,22.31677],[114.27444,22.31677],[114.27445,22.31678],[114.27445,22.31678],[114.27445,22.31678],[114.27446,22.31679],[114.27446,22.31679],[114.27446,22.3168],[114.27446,22.3168],[114.27447,22.3168],[114.27447,22.31681],[114.27447,22.31681],[114.27447,22.31681],[114.27448,22.31682],[114.27448,22.31682],[114.27448,22.31683],[114.27448,22.31683],[114.27449,22.31683],[114.27449,22.31684],[114.2745,22.31686],[114.2745,22.31686],[114.27449,22.31687],[114.27449,22.31688],[114.27449,22.31689],[114.27449,22.3169],[114.27448,22.31691],[114.27448,22.31692],[114.27448,22.31693],[114.27448,22.31694],[114.27448,22.31694],[114.27448,22.31695],[114.27448,22.31696],[114.27448,22.31697],[114.27448,22.31698],[114.27448,22.31699],[114.27449,22.317],[114.27449,22.31701],[114.27449,22.31702],[114.27449,22.31703],[114.2745,22.31703],[114.2745,22.31704],[114.27451,22.31705],[114.27451,22.31706],[114.27455,22.31712],[114.27456,22.31713],[114.27456,22.31714],[114.27457,22.31715],[114.27457,22.31715],[114.27457,22.31716],[114.27458,22.31717],[114.27458,22.31718],[114.27458,22.31719],[114.27458,22.3172],[114.27458,22.31721],[114.27458,22.31722],[114.27458,22.31723],[114.27458,22.31724],[114.2738,22.31741],[114.27335,22.31792],[114.27311,22.31817],[114.27291,22.3184],[114.2727,22.31862],[114.27267,22.31865],[114.27267,22.31865],[114.27267,22.31865],[114.27267,22.31865],[114.27266,22.31866],[114.27266,22.31866],[114.27266,22.31867],[114.27265,22.31867],[114.27265,22.31867],[114.27265,22.31868],[114.27264,22.31868],[114.27264,22.31869],[114.27263,22.31869],[114.27263,22.31869],[114.27263,22.3187],[114.27262,22.3187],[114.27262,22.3187],[114.27262,22.31871],[114.27262,22.31871],[114.27261,22.31872],[114.27261,22.31872],[114.27261,22.31872],[114.2726,22.31873],[114.2726,22.31873],[114.2726,22.31873],[114.27259,22.31874],[114.27259,22.31874],[114.27259,22.31874],[114.27258,22.31875],[114.27258,22.31875],[114.27258,22.31875],[114.27257,22.31876],[114.27257,22.31876],[114.27256,22.31877],[114.27256,22.31877],[114.27256,22.31877],[114.27255,22.31878],[114.27255,22.31878],[114.27255,22.31878],[114.27254,22.31879],[114.27254,22.31879],[114.27254,22.31879],[114.27253,22.3188],[114.27253,22.3188],[114.27253,22.3188],[114.27252,22.31881],[114.27251,22.31882],[114.27251,22.31882],[114.2725,22.31883],[114.2725,22.31883],[114.27249,22.31884],[114.27249,22.31884],[114.27249,22.31884],[114.27248,22.31885],[114.27248,22.31885],[114.27248,22.31885],[114.27247,22.31886],[114.27247,22.31886],[114.27247,22.31886],[114.27246,22.31887],[114.27245,22.31887],[114.27245,22.31888],[114.27245,22.31888],[114.27244,22.31888],[114.27244,22.31889],[114.27244,22.31889],[114.27243,22.31889],[114.27243,22.3189],[114.27243,22.3189],[114.27242,22.31891],[114.27241,22.31891],[114.27241,22.31892],[114.2724,22.31892],[114.2724,22.31893],[114.2724,22.31893],[114.27239,22.31893],[114.27239,22.31894],[114.27239,22.31894],[114.27238,22.31894],[114.27238,22.31895],[114.27238,22.31895],[114.27237,22.31895],[114.27237,22.31895],[114.27237,22.31896],[114.27236,22.31896],[114.27236,22.31896],[114.27235,22.31897],[114.27235,22.31897],[114.27235,22.31897],[114.27234,22.31898],[114.27234,22.31898],[114.27233,22.31899],[114.27233,22.31899],[114.27233,22.31899],[114.27232,22.319],[114.27232,22.319],[114.27232,22.319],[114.27231,22.319],[114.27231,22.31901],[114.27231,22.31901],[114.2723,22.31901],[114.2723,22.31902],[114.27229,22.31902],[114.27229,22.31903],[114.27228,22.31903],[114.27228,22.31903],[114.27228,22.31903],[114.27227,22.31904],[114.27227,22.31904],[114.27227,22.31904],[114.27226,22.31905],[114.27226,22.31905],[114.27225,22.31905],[114.27225,22.31906],[114.27225,22.31906],[114.27224,22.31906],[114.27224,22.31907],[114.27223,22.31907],[114.27223,22.31907],[114.27222,22.31908],[114.27222,22.31908],[114.27222,22.31908],[114.27221,22.31908],[114.27221,22.31909],[114.27221,22.31909],[114.2722,22.31909],[114.2722,22.3191],[114.27219,22.3191],[114.27219,22.3191],[114.27218,22.31911],[114.27218,22.31911],[114.27218,22.31911],[114.27217,22.31912],[114.27216,22.31912],[114.27216,22.31912],[114.27216,22.31913],[114.27215,22.31913],[114.27215,22.31914],[114.27214,22.31914],[114.27214,22.31914],[114.27213,22.31914],[114.27213,22.31915],[114.27213,22.31915],[114.27212,22.31915],[114.27212,22.31915],[114.27212,22.31916],[114.27211,22.31916],[114.27211,22.31916],[114.2721,22.31917],[114.2721,22.31917],[114.2721,22.31917],[114.27209,22.31917],[114.27209,22.31918],[114.27208,22.31918],[114.27208,22.31918],[114.27207,22.31919],[114.27206,22.31919],[114.27206,22.3192],[114.27205,22.3192],[114.27205,22.3192],[114.27204,22.31921],[114.27201,22.31923],[114.27192,22.31929],[114.2718,22.31938],[114.27179,22.31939],[114.27163,22.31949],[114.27162,22.31949],[114.27162,22.3195],[114.27161,22.3195],[114.27161,22.3195],[114.2716,22.3195],[114.27159,22.31951],[114.27159,22.31951],[114.27159,22.31951],[114.27158,22.31951],[114.27157,22.31952],[114.27156,22.31952],[114.27156,22.31952],[114.27156,22.31952],[114.27155,22.31953],[114.27155,22.31953],[114.27154,22.31953],[114.27154,22.31953],[114.27153,22.31953],[114.27153,22.31954],[114.27152,22.31954],[114.27152,22.31954],[114.27152,22.31954],[114.27151,22.31954],[114.27151,22.31955],[114.2715,22.31955],[114.2715,22.31955],[114.27149,22.31955],[114.27149,22.31955],[114.27148,22.31956],[114.27148,22.31956],[114.27148,22.31956],[114.27147,22.31956],[114.27147,22.31956],[114.27146,22.31957],[114.27146,22.31957],[114.27145,22.31957],[114.27145,22.31957],[114.27145,22.31957],[114.27144,22.31958],[114.27143,22.31958],[114.27143,22.31958],[114.27142,22.31958],[114.27142,22.31958],[114.27141,22.31959],[114.27141,22.31959],[114.27141,22.31959],[114.2714,22.31959],[114.2714,22.31959],[114.27139,22.3196],[114.27139,22.3196],[114.27138,22.3196],[114.27138,22.3196],[114.27137,22.3196],[114.27136,22.31961],[114.27135,22.31961],[114.27135,22.31961],[114.27134,22.31962],[114.27133,22.31962],[114.27133,22.31962],[114.27133,22.31962],[114.27132,22.31962],[114.27132,22.31963],[114.27131,22.31963],[114.27131,22.31963],[114.2713,22.31963],[114.2713,22.31963],[114.27129,22.31964],[114.27129,22.31964],[114.27129,22.31964],[114.27128,22.31964],[114.27127,22.31965],[114.27127,22.31965],[114.27126,22.31965],[114.27126,22.31965],[114.27125,22.31965],[114.27125,22.31965],[114.27124,22.31965],[114.27124,22.31965],[114.27123,22.31965],[114.27123,22.31966],[114.27122,22.31966],[114.27122,22.31966],[114.27122,22.31966],[114.27121,22.31966],[114.27121,22.31966],[114.2712,22.31967],[114.2712,22.31967],[114.27119,22.31967],[114.27119,22.31967],[114.27118,22.31967],[114.27118,22.31968],[114.27118,22.31968],[114.27117,22.31968],[114.27117,22.31968],[114.27116,22.31968],[114.27116,22.31968],[114.27116,22.31969],[114.27115,22.31969],[114.27115,22.31969],[114.27115,22.31969],[114.27114,22.31969],[114.27114,22.3197],[114.27113,22.3197],[114.27113,22.3197],[114.27112,22.3197],[114.27112,22.31971],[114.27112,22.31971],[114.27111,22.31971],[114.27111,22.31971],[114.27111,22.31972],[114.2711,22.31972],[114.2711,22.31972],[114.27109,22.31972],[114.27109,22.31973],[114.27109,22.31973],[114.27108,22.31973],[114.27108,22.31974],[114.27107,22.31974],[114.27107,22.31974],[114.27107,22.31975],[114.27106,22.31975],[114.27106,22.31975],[114.27106,22.31975],[114.27105,22.31976],[114.27105,22.31976],[114.27105,22.31976],[114.27104,22.31977],[114.27104,22.31977],[114.27104,22.31977],[114.27103,22.31978],[114.27103,22.31978],[114.27103,22.31978],[114.27102,22.31979],[114.27102,22.31979],[114.27102,22.31979],[114.27101,22.3198],[114.27101,22.3198],[114.27101,22.31981],[114.27101,22.31981],[114.271,22.31981],[114.271,22.31982],[114.271,22.31982],[114.27099,22.31982],[114.27099,22.31983],[114.27099,22.31983],[114.27099,22.31983],[114.27098,22.31984],[114.27098,22.31984],[114.27098,22.31985],[114.27098,22.31985],[114.27094,22.31991],[114.27093,22.31992],[114.27093,22.31992],[114.27093,22.31993],[114.27093,22.31993],[114.27092,22.31993],[114.27092,22.31994],[114.27092,22.31994],[114.27092,22.31994],[114.27091,22.31995],[114.27091,22.31995],[114.27091,22.31996],[114.27091,22.31996],[114.2709,22.31996],[114.2709,22.31997],[114.2709,22.31997],[114.27089,22.31997],[114.27089,22.31998],[114.27089,22.31998],[114.27089,22.31999],[114.27088,22.31999],[114.27088,22.31999],[114.27088,22.32],[114.27088,22.32],[114.27087,22.32001],[114.27087,22.32001],[114.27086,22.32002],[114.27086,22.32002],[114.27086,22.32002],[114.27086,22.32003],[114.27085,22.32003],[114.27085,22.32003],[114.27085,22.32004],[114.27085,22.32004],[114.27084,22.32005],[114.27084,22.32005],[114.27084,22.32006],[114.27083,22.32006],[114.27083,22.32006],[114.27083,22.32007],[114.27083,22.32007],[114.27082,22.32008],[114.27082,22.32008],[114.27082,22.32008],[114.27082,22.32009],[114.27081,22.32009],[114.27081,22.3201],[114.27081,22.3201],[114.27081,22.3201],[114.2708,22.32011],[114.2708,22.32011],[114.2708,22.32012],[114.2708,22.32012],[114.27079,22.32012],[114.27079,22.32013],[114.27079,22.32013],[114.27079,22.32014],[114.27079,22.32014],[114.27078,22.32014],[114.27078,22.32015],[114.27078,22.32015],[114.27078,22.32016],[114.27077,22.32016],[114.27077,22.32016],[114.27077,22.32017],[114.27077,22.32017],[114.27076,22.32017],[114.27076,22.32018],[114.27076,22.32018],[114.27076,22.32019],[114.27075,22.32019],[114.27075,22.32019],[114.27075,22.3202],[114.27074,22.32021],[114.27074,22.32021],[114.27074,22.32021],[114.27074,22.32022],[114.27073,22.32022],[114.27073,22.32023],[114.27073,22.32023],[114.27073,22.32023],[114.27073,22.32024],[114.27072,22.32024],[114.27072,22.32025],[114.27072,22.32025],[114.27072,22.32025],[114.27071,22.32026],[114.27071,22.32026],[114.27071,22.32027],[114.27071,22.32027],[114.27071,22.32027],[114.2707,22.32028],[114.2707,22.32028],[114.2707,22.32029],[114.2707,22.32029],[114.2707,22.3203],[114.27069,22.3203],[114.27069,22.3203],[114.27069,22.32031],[114.27069,22.32032],[114.27068,22.32032],[114.27068,22.32032],[114.27068,22.32033],[114.27068,22.32033],[114.27067,22.32034],[114.27067,22.32034],[114.27067,22.32034],[114.27067,22.32035],[114.27067,22.32035],[114.27066,22.32036],[114.27066,22.32036],[114.27066,22.32036],[114.27066,22.32037],[114.27065,22.32037],[114.27065,22.32038],[114.27065,22.32038],[114.27065,22.32038],[114.27065,22.32039],[114.27064,22.32039],[114.27064,22.3204],[114.27064,22.3204],[114.27064,22.3204],[114.27063,22.32041],[114.27063,22.32041],[114.27063,22.32042],[114.27063,22.32042],[114.27062,22.32042],[114.27062,22.32043],[114.27062,22.32043],[114.27062,22.32043],[114.27061,22.32044],[114.27061,22.32044],[114.27061,22.32045],[114.27061,22.32045],[114.2706,22.32045],[114.2706,22.32046],[114.27052,22.32055],[114.27042,22.32064],[114.27037,22.32066],[114.27021,22.32069],[114.27008,22.3207],[114.26992,22.32071],[114.26975,22.32072],[114.26955,22.32076],[114.2694,22.32079],[114.26926,22.32086],[114.26916,22.32091],[114.26899,22.321],[114.26899,22.32102],[114.26898,22.32105],[114.26898,22.32107],[114.26898,22.3211],[114.26898,22.32115],[114.26898,22.3212],[114.26899,22.32123],[114.26899,22.32125],[114.26903,22.32158],[114.26903,22.32163],[114.26904,22.3217],[114.26905,22.32183],[114.26905,22.32189],[114.26905,22.32192],[114.26905,22.32194],[114.26904,22.32196],[114.26904,22.322],[114.26903,22.32204],[114.26901,22.32215],[114.26901,22.32218],[114.269,22.3222],[114.26898,22.32229],[114.26897,22.32233],[114.26896,22.32238],[114.26896,22.3224],[114.26896,22.32241],[114.26896,22.32242],[114.26896,22.32243],[114.26896,22.32244],[114.26896,22.32245],[114.26896,22.32246],[114.26896,22.32247],[114.26897,22.32248],[114.26897,22.32249],[114.26898,22.3225],[114.26898,22.32251],[114.26899,22.32252],[114.26899,22.32253],[114.269,22.32253],[114.26901,22.32254],[114.26902,22.32255],[114.26904,22.32257],[114.26913,22.32259],[114.26914,22.3226],[114.26915,22.3226],[114.26916,22.3226],[114.26917,22.3226],[114.26919,22.32261],[114.2692,22.32261],[114.26921,22.3226],[114.26923,22.3226],[114.26923,22.3226],[114.26923,22.3226],[114.26923,22.32261],[114.26923,22.32261],[114.26922,22.32261],[114.26922,22.32262],[114.26922,22.32262],[114.26922,22.32263],[114.26921,22.32264],[114.26921,22.32265],[114.26921,22.32265],[114.2692,22.32266],[114.2692,22.32266],[114.2692,22.32266],[114.2692,22.32267],[114.2692,22.32267],[114.2692,22.32268],[114.26919,22.32268],[114.26919,22.32269],[114.26919,22.32269],[114.26919,22.32269],[114.26919,22.3227],[114.26918,22.3227],[114.26918,22.32271],[114.26918,22.32271],[114.26918,22.32271],[114.26918,22.32272],[114.26918,22.32272],[114.26918,22.32273],[114.26917,22.32273],[114.26917,22.32274],[114.26917,22.32274],[114.26917,22.32274],[114.26917,22.32275],[114.26917,22.32275],[114.26917,22.32276],[114.26916,22.32276],[114.26916,22.32277],[114.26916,22.32277],[114.26916,22.32277],[114.26916,22.32278],[114.26916,22.32279],[114.26914,22.32283],[114.26913,22.32288],[114.26911,22.32292],[114.26909,22.32297],[114.26909,22.32298],[114.26909,22.32298],[114.26908,22.32299],[114.26904,22.32306],[114.26897,22.32322],[114.26892,22.32334],[114.2689,22.32342],[114.26889,22.32346],[114.26886,22.32352],[114.26883,22.32356],[114.26882,22.32359],[114.2688,22.32362],[114.26878,22.32364],[114.26877,22.32367],[114.26874,22.3237],[114.26872,22.32374],[114.2687,22.32377],[114.26867,22.3238],[114.26854,22.32391],[114.2685,22.32395],[114.26847,22.32399],[114.26842,22.32406],[114.26838,22.32412],[114.26829,22.32421],[114.26826,22.32425],[114.26823,22.32428],[114.26817,22.32435],[114.26809,22.32443],[114.26801,22.32452],[114.26793,22.32461],[114.26791,22.32464],[114.26789,22.32466],[114.26786,22.32468],[114.26783,22.3247],[114.26781,22.32472],[114.26781,22.32472],[114.26778,22.32474],[114.26775,22.32476],[114.26772,22.32477],[114.26769,22.32479],[114.26767,22.3248],[114.26764,22.32481],[114.26762,22.32482],[114.26761,22.32482],[114.26757,22.32483],[114.26753,22.32485],[114.26749,22.32486],[114.26744,22.32487],[114.26741,22.32489],[114.26738,22.3249],[114.26735,22.32491],[114.26731,22.32493],[114.26728,22.32495],[114.26725,22.32497],[114.26722,22.32499],[114.26719,22.32502],[114.26717,22.32503],[114.26716,22.32504],[114.26714,22.32505],[114.26713,22.32507],[114.26709,22.3251],[114.26705,22.32515],[114.26702,22.32519],[114.26698,22.32523],[114.26696,22.32525],[114.26694,22.32528],[114.26692,22.3253],[114.2669,22.32532],[114.26685,22.3254],[114.26684,22.32542],[114.26683,22.32543],[114.26682,22.32545],[114.26681,22.32547],[114.2668,22.32548],[114.26678,22.32549],[114.26677,22.3255],[114.26676,22.3255],[114.26671,22.32554],[114.26666,22.32558],[114.26658,22.32564],[114.26651,22.32569],[114.26649,22.32571],[114.26647,22.32572],[114.26644,22.32574],[114.26642,22.32576],[114.26639,22.32578],[114.26637,22.3258],[114.26634,22.32582],[114.26631,22.32585],[114.26629,22.32587],[114.26627,22.3259],[114.26624,22.32593],[114.26622,22.32595],[114.2662,22.32598],[114.26619,22.326],[114.26617,22.32603],[114.26616,22.32605],[114.26614,22.32607],[114.26613,22.32611],[114.26612,22.32613],[114.2661,22.32616],[114.26608,22.32618],[114.26606,22.32621],[114.26604,22.32623],[114.26602,22.32626],[114.266,22.32628],[114.26598,22.3263],[114.26596,22.32631],[114.26594,22.32633],[114.26592,22.32635],[114.26588,22.32637],[114.26585,22.32639],[114.26582,22.3264],[114.2658,22.32641],[114.26577,22.32643],[114.26574,22.32645],[114.26571,22.32647],[114.26568,22.32649],[114.26565,22.32652],[114.26561,22.32655],[114.26557,22.32658],[114.26554,22.32662],[114.26551,22.32666],[114.26549,22.32669],[114.26547,22.32672],[114.26544,22.32676],[114.26537,22.32688],[114.26529,22.32704],[114.26526,22.3271],[114.26523,22.32716],[114.26519,22.32724],[114.26518,22.32723],[114.26514,22.3272],[114.26514,22.3272],[114.26514,22.3272],[114.26513,22.3272],[114.26513,22.3272],[114.26512,22.32719],[114.26512,22.32719],[114.26512,22.32719],[114.26511,22.32719],[114.2651,22.32718],[114.2651,22.32718],[114.26509,22.32718],[114.26509,22.32718],[114.26509,22.32717],[114.26508,22.32717],[114.26508,22.32717],[114.26507,22.32717],[114.26507,22.32717],[114.26506,22.32716],[114.26506,22.32716],[114.26505,22.32716],[114.26505,22.32716],[114.26505,22.32715],[114.26504,22.32715],[114.26504,22.32715],[114.26503,22.32714],[114.26503,22.32714],[114.26502,22.32714],[114.26502,22.32714],[114.26501,22.32714],[114.26501,22.32713],[114.26501,22.32713],[114.265,22.32713],[114.26499,22.32712],[114.26499,22.32712],[114.26498,22.32712],[114.26498,22.32711],[114.26497,22.32711],[114.26497,22.32711],[114.26497,22.32711],[114.26496,22.3271],[114.26496,22.3271],[114.26495,22.3271],[114.26495,22.3271],[114.26494,22.3271],[114.26494,22.32709],[114.26494,22.32709],[114.26493,22.32709],[114.26493,22.32709],[114.26492,22.32709],[114.26492,22.32708],[114.26491,22.32708],[114.26491,22.32708],[114.2649,22.32708],[114.2649,22.32708],[114.2649,22.32708],[114.26489,22.32707],[114.26489,22.32707],[114.26488,22.32707],[114.26488,22.32707],[114.26487,22.32707],[114.26487,22.32707],[114.26486,22.32706],[114.26486,22.32706],[114.26485,22.32706],[114.26485,22.32706],[114.26485,22.32706],[114.26484,22.32706],[114.26484,22.32705],[114.26483,22.32705],[114.26483,22.32705],[114.26482,22.32705],[114.26482,22.32705],[114.26481,22.32705],[114.26481,22.32704],[114.2648,22.32704],[114.2648,22.32704],[114.2648,22.32704],[114.26479,22.32704],[114.26479,22.32703],[114.26478,22.32703],[114.26478,22.32703],[114.26477,22.32703],[114.26477,22.32703],[114.26477,22.32702],[114.26476,22.32702],[114.26476,22.32702],[114.26475,22.32702],[114.26475,22.32702],[114.26474,22.32702],[114.26474,22.32701],[114.26473,22.32701],[114.26473,22.32701],[114.26473,22.32701],[114.26472,22.32701],[114.26472,22.327],[114.26471,22.327],[114.26471,22.327],[114.2647,22.327],[114.2647,22.327],[114.26469,22.327],[114.26469,22.32699],[114.26469,22.32699],[114.26468,22.32699],[114.26468,22.32699],[114.26467,22.32699],[114.26467,22.32699],[114.26466,22.32698],[114.26465,22.32698],[114.26465,22.32698],[114.26465,22.32698],[114.26464,22.32698],[114.26464,22.32698],[114.26464,22.32698],[114.26463,22.32697],[114.26462,22.32697],[114.26462,22.32697],[114.26461,22.32697],[114.26461,22.32697],[114.2646,22.32697],[114.2646,22.32696],[114.26459,22.32696],[114.26459,22.32696],[114.26458,22.32696],[114.26458,22.32696],[114.26458,22.32696],[114.26457,22.32696],[114.26457,22.32695],[114.26456,22.32695],[114.26456,22.32695],[114.26455,22.32695],[114.26455,22.32695],[114.26454,22.32695],[114.26452,22.32694],[114.26451,22.32694],[114.26451,22.32694],[114.26451,22.32694],[114.2645,22.32694],[114.2645,22.32694],[114.26449,22.32694],[114.26449,22.32694],[114.26448,22.32694],[114.26448,22.32693],[114.26447,22.32693],[114.26447,22.32693],[114.26446,22.32693],[114.26446,22.32693],[114.26445,22.32693],[114.26445,22.32693],[114.26444,22.32693],[114.26444,22.32693],[114.26443,22.32693],[114.26443,22.32693],[114.26442,22.32693],[114.26442,22.32693],[114.26441,22.32693],[114.26441,22.32693],[114.2644,22.32693],[114.2644,22.32693],[114.26439,22.32693],[114.26439,22.32693],[114.26439,22.32693],[114.26438,22.32693],[114.26438,22.32693],[114.26437,22.32692],[114.26437,22.32692],[114.26436,22.32692],[114.26436,22.32692],[114.26435,22.32692],[114.26435,22.32692],[114.26434,22.32692],[114.26434,22.32692],[114.26433,22.32692],[114.26433,22.32692],[114.26432,22.32692],[114.26431,22.32692],[114.26431,22.32692],[114.2643,22.32692],[114.2643,22.32692],[114.26429,22.32692],[114.26429,22.32692],[114.26428,22.32692],[114.26428,22.32692],[114.26427,22.32692],[114.26427,22.32692],[114.26426,22.32692],[114.26426,22.32692],[114.26425,22.32692],[114.26425,22.32691],[114.26424,22.32691],[114.26424,22.32691],[114.26424,22.32691],[114.26423,22.32691],[114.26423,22.32691],[114.26422,22.32691],[114.26422,22.32691],[114.26421,22.32691],[114.26421,22.32691],[114.2642,22.32691],[114.2642,22.32691],[114.26419,22.32691],[114.26419,22.32691],[114.26418,22.32691],[114.26418,22.32691],[114.26417,22.32691],[114.26417,22.32691],[114.26416,22.32691],[114.26416,22.32692],[114.26416,22.32692],[114.26414,22.32692],[114.26414,22.32692],[114.26413,22.32692],[114.26413,22.32692],[114.26412,22.32692],[114.26412,22.32692],[114.26411,22.32692],[114.26411,22.32692],[114.2641,22.32692],[114.2641,22.32693],[114.26409,22.32693],[114.26409,22.32693],[114.26408,22.32693],[114.26408,22.32693],[114.26407,22.32693],[114.26407,22.32693],[114.26406,22.32693],[114.26406,22.32693],[114.26406,22.32693],[114.26405,22.32694],[114.26405,22.32694],[114.26404,22.32694],[114.26404,22.32694],[114.26403,22.32694],[114.26403,22.32694],[114.26402,22.32694],[114.26402,22.32694],[114.26401,22.32695],[114.26401,22.32695],[114.264,22.32695],[114.264,22.32695],[114.264,22.32695],[114.26399,22.32695],[114.26399,22.32696],[114.26398,22.32696],[114.26398,22.32696],[114.26397,22.32696],[114.26397,22.32696],[114.26396,22.32696],[114.26396,22.32696],[114.26395,22.32697],[114.26395,22.32697],[114.26395,22.32697],[114.26394,22.32697],[114.26394,22.32697],[114.26393,22.32698],[114.26393,22.32698],[114.26393,22.32698],[114.26393,22.32698],[114.26392,22.32698],[114.26392,22.32698],[114.26391,22.32698],[114.26391,22.32699],[114.2639,22.32699],[114.2639,22.32699],[114.2639,22.32699],[114.26389,22.327],[114.26389,22.327],[114.26388,22.327],[114.26388,22.327],[114.26387,22.32701],[114.26387,22.32701],[114.26387,22.32701],[114.26386,22.32701],[114.26386,22.32702],[114.26386,22.32702],[114.26385,22.32702],[114.26385,22.32703],[114.26384,22.32703],[114.26384,22.32703],[114.26384,22.32703],[114.26383,22.32704],[114.26383,22.32704],[114.26383,22.32704],[114.26382,22.32704],[114.26382,22.32705],[114.26381,22.32705],[114.26381,22.32705],[114.26381,22.32705],[114.2638,22.32706],[114.2638,22.32706],[114.26379,22.32706],[114.26379,22.32707],[114.26379,22.32707],[114.26378,22.32707],[114.26378,22.32707],[114.26378,22.32708],[114.26377,22.32708],[114.26377,22.32708],[114.26376,22.32709],[114.26376,22.32709],[114.26376,22.32709],[114.26376,22.3271],[114.26375,22.3271],[114.26375,22.3271],[114.26375,22.32711],[114.26374,22.32711],[114.26374,22.32712],[114.26374,22.32712],[114.26374,22.32712],[114.26373,22.32713],[114.26373,22.32713],[114.26373,22.32713],[114.26373,22.32714],[114.26372,22.32714],[114.26372,22.32715],[114.26372,22.32715],[114.26372,22.32715],[114.26371,22.32716],[114.26371,22.32716],[114.26371,22.32717],[114.26371,22.32717],[114.2637,22.32717],[114.2637,22.32718],[114.2637,22.32718],[114.2637,22.32718],[114.26369,22.32719],[114.26369,22.32719],[114.26369,22.3272],[114.26369,22.3272],[114.26368,22.3272],[114.26368,22.32721],[114.26368,22.32721],[114.26368,22.32722],[114.26368,22.32722],[114.26367,22.32723],[114.26367,22.32724],[114.26367,22.32724],[114.26366,22.32725],[114.26366,22.32725],[114.26366,22.32725],[114.26366,22.32726],[114.26365,22.32727],[114.26365,22.32727],[114.26365,22.32727],[114.26365,22.32728],[114.26364,22.32729],[114.26364,22.32729],[114.26364,22.32729],[114.26364,22.3273],[114.26364,22.3273],[114.26363,22.32731],[114.26363,22.32731],[114.26363,22.32732],[114.26363,22.32732],[114.26363,22.32732],[114.26362,22.32733],[114.26362,22.32733],[114.26362,22.32734],[114.26362,22.32734],[114.26362,22.32734],[114.26362,22.32735],[114.26361,22.32735],[114.26361,22.32736],[114.26361,22.32736],[114.26361,22.32737],[114.26361,22.32737],[114.26361,22.32738],[114.26361,22.32738],[114.2636,22.32738],[114.2636,22.32739],[114.2636,22.32739],[114.2636,22.3274],[114.2636,22.3274],[114.2636,22.32741],[114.2636,22.32741],[114.2636,22.32741],[114.26359,22.32742],[114.26359,22.32742],[114.26359,22.32743],[114.26359,22.32743],[114.26359,22.32744],[114.26359,22.32744],[114.26359,22.32745],[114.26359,22.32745],[114.26359,22.32745],[114.26359,22.32746],[114.26358,22.32746],[114.26358,22.32747],[114.26358,22.32747],[114.26398,22.3277],[114.26399,22.32772],[114.26399,22.32772],[114.26399,22.32773],[114.26398,22.32773],[114.26398,22.32773],[114.26398,22.32774],[114.26397,22.32774],[114.26397,22.32774],[114.26397,22.32775],[114.26396,22.32775],[114.26396,22.32775],[114.26396,22.32776],[114.26396,22.32776],[114.26395,22.32776],[114.26395,22.32777],[114.26395,22.32777],[114.26394,22.32777],[114.26394,22.32778],[114.26394,22.32778],[114.26394,22.32779],[114.26393,22.32779],[114.26393,22.32779],[114.26393,22.3278],[114.26393,22.3278],[114.26392,22.32781],[114.26392,22.32781],[114.26392,22.32781],[114.26392,22.32782],[114.26391,22.32782],[114.26391,22.32782],[114.26391,22.32783],[114.26391,22.32783],[114.2639,22.32784],[114.2639,22.32784],[114.2639,22.32784],[114.2639,22.32785],[114.2639,22.32785],[114.26389,22.32786],[114.26389,22.32786],[114.26389,22.32787],[114.26389,22.32787],[114.26389,22.32787],[114.26388,22.32788],[114.26388,22.32788],[114.26388,22.32789],[114.26388,22.32789],[114.26388,22.32789],[114.26387,22.3279],[114.26387,22.3279],[114.26387,22.32791],[114.26387,22.32791],[114.26387,22.32791],[114.26386,22.32792],[114.26386,22.32792],[114.26386,22.32793],[114.26386,22.32793],[114.26386,22.32794],[114.26385,22.32794],[114.26385,22.32795],[114.26385,22.32795],[114.26385,22.32796],[114.26384,22.32796],[114.26384,22.32797],[114.26384,22.32797],[114.26384,22.32798],[114.26384,22.32798],[114.26383,22.32799],[114.26383,22.328],[114.26383,22.328],[114.26382,22.32802],[114.26382,22.32802],[114.26382,22.32802],[114.26382,22.32803],[114.26382,22.32803],[114.26381,22.32804],[114.26381,22.32804],[114.26381,22.32804],[114.26381,22.32805],[114.26381,22.32805],[114.26381,22.32806],[114.26381,22.32806],[114.2638,22.32807],[114.2638,22.32807],[114.2638,22.32808],[114.2638,22.32808],[114.2638,22.32808],[114.2638,22.32809],[114.2638,22.32809],[114.2638,22.3281],[114.2638,22.3281],[114.2638,22.32811],[114.2638,22.32811],[114.2638,22.32812],[114.2638,22.32812],[114.26379,22.32812],[114.26379,22.32813],[114.26379,22.32813],[114.26379,22.32814],[114.26379,22.32814],[114.26379,22.32815],[114.26379,22.32815],[114.26379,22.32816],[114.26379,22.32816],[114.26379,22.32817],[114.26379,22.32817],[114.26379,22.32817],[114.26379,22.32818],[114.26379,22.32818],[114.26379,22.32819],[114.26379,22.32819],[114.26379,22.3282],[114.26379,22.3282],[114.2638,22.32821],[114.2638,22.32821],[114.2638,22.32821],[114.2638,22.32822],[114.2638,22.32822],[114.2638,22.32823],[114.2638,22.32823],[114.2638,22.32824],[114.2638,22.32824],[114.2638,22.32825],[114.2638,22.32825],[114.2638,22.32826],[114.2638,22.32826],[114.2638,22.32826],[114.2638,22.32827],[114.2638,22.32827],[114.2638,22.32828],[114.2638,22.32828],[114.2638,22.32829],[114.2638,22.32829],[114.2638,22.3283],[114.2638,22.3283],[114.2638,22.32831],[114.26379,22.32831],[114.26379,22.32831],[114.26379,22.32832],[114.26379,22.32832],[114.26379,22.32833],[114.26379,22.32833],[114.26379,22.32834],[114.26379,22.32834],[114.26379,22.32835],[114.26379,22.32835],[114.26379,22.32835],[114.26379,22.32836],[114.26379,22.32836],[114.26379,22.32837],[114.26379,22.32837],[114.26379,22.32838],[114.26378,22.32838],[114.26378,22.32839],[114.26378,22.32839],[114.26378,22.32839],[114.26378,22.3284],[114.26378,22.3284],[114.26378,22.32841],[114.26378,22.32841],[114.26378,22.32842],[114.26378,22.32842],[114.26377,22.32843],[114.26377,22.32843],[114.26377,22.32843],[114.26377,22.32844],[114.26377,22.32844],[114.26377,22.32845],[114.26377,22.32845],[114.26376,22.32846],[114.26376,22.32846],[114.26376,22.32846],[114.26376,22.32847],[114.26376,22.32847],[114.26376,22.32848],[114.26376,22.32848],[114.26375,22.32849],[114.26375,22.32849],[114.26375,22.32849],[114.26375,22.3285],[114.26375,22.3285],[114.26375,22.32851],[114.26374,22.32851],[114.26374,22.32851],[114.26374,22.32852],[114.26374,22.32852],[114.26374,22.32853],[114.26373,22.32853],[114.26373,22.32854],[114.26373,22.32854],[114.26373,22.32854],[114.26373,22.32855],[114.26371,22.32857],[114.26371,22.32858],[114.26266,22.3296],[114.26264,22.32962],[114.2626,22.32959],[114.26256,22.32962],[114.26259,22.32964],[114.2626,22.32965],[114.26259,22.32966],[114.26259,22.32966],[114.26228,22.32997],[114.26249,22.33015],[114.26255,22.33021],[114.2626,22.33026],[114.26263,22.33028],[114.26262,22.33029],[114.26262,22.33029],[114.26258,22.33032],[114.26246,22.33043],[114.26244,22.33045],[114.26242,22.33047],[114.26239,22.33051],[114.26236,22.33053],[114.26234,22.33056],[114.26231,22.33058],[114.26229,22.33061],[114.26228,22.33062],[114.26221,22.3307],[114.2622,22.3307],[114.2622,22.33071],[114.26215,22.33077],[114.26211,22.33082],[114.26207,22.33086],[114.26204,22.33089],[114.262,22.33092],[114.26197,22.33096],[114.26193,22.33099],[114.2619,22.33102],[114.26187,22.33106],[114.26186,22.33106],[114.26183,22.33109],[114.26183,22.3311],[114.26182,22.33111],[114.26177,22.33118],[114.26175,22.33121],[114.26173,22.33124],[114.26171,22.33128],[114.26166,22.3314],[114.26165,22.33141],[114.26164,22.33143],[114.26163,22.33144],[114.26161,22.33147],[114.2616,22.33151],[114.26156,22.33157],[114.26153,22.33163],[114.26152,22.33164],[114.26103,22.33262],[114.26099,22.33271],[114.26097,22.33273],[114.26071,22.33326],[114.26071,22.33326],[114.2607,22.33327],[114.2607,22.33327],[114.26067,22.33334],[114.26062,22.33343],[114.26049,22.33368],[114.26033,22.33401],[114.26031,22.33408],[114.26025,22.33406],[114.25985,22.33391],[114.25964,22.33436],[114.26002,22.33453],[114.26003,22.33454],[114.26004,22.33454],[114.25986,22.33486],[114.25978,22.33497],[114.25976,22.33501],[114.25861,22.3345],[114.25861,22.3345],[114.2586,22.3345],[114.2586,22.3345],[114.2586,22.33449],[114.25859,22.33449],[114.25859,22.33449],[114.25858,22.33449],[114.25858,22.33449],[114.25858,22.33448],[114.25857,22.33448],[114.25857,22.33448],[114.25856,22.33448],[114.25856,22.33447],[114.25855,22.33447],[114.25855,22.33447],[114.25855,22.33447],[114.25854,22.33447],[114.25854,22.33446],[114.25853,22.33446],[114.25853,22.33446],[114.25852,22.33446],[114.25852,22.33445],[114.25852,22.33445],[114.25851,22.33445],[114.25851,22.33445],[114.2585,22.33444],[114.2585,22.33444],[114.2585,22.33444],[114.25849,22.33444],[114.25849,22.33444],[114.25848,22.33443],[114.25848,22.33443],[114.25847,22.33443],[114.25847,22.33443],[114.25847,22.33442],[114.25846,22.33442],[114.25846,22.33442],[114.25845,22.33442],[114.25845,22.33441],[114.25844,22.33441],[114.25844,22.33441],[114.25844,22.33441],[114.25843,22.33441],[114.25843,22.3344],[114.25842,22.3344],[114.25842,22.3344],[114.25841,22.3344],[114.25841,22.3344],[114.2584,22.3344],[114.2584,22.33439],[114.2584,22.33439],[114.25839,22.33439],[114.25839,22.33439],[114.25838,22.33439],[114.25838,22.33439],[114.25837,22.33438],[114.25837,22.33438],[114.25836,22.33438],[114.25836,22.33438],[114.25835,22.33438],[114.25835,22.33438],[114.25835,22.33438],[114.25834,22.33437],[114.25834,22.33437],[114.25833,22.33437],[114.25833,22.33437],[114.25832,22.33437],[114.25832,22.33437],[114.25831,22.33437],[114.25831,22.33437],[114.2583,22.33437],[114.2583,22.33437],[114.25829,22.33436],[114.25829,22.33436],[114.25828,22.33436],[114.25828,22.33436],[114.25827,22.33436],[114.25827,22.33436],[114.25826,22.33436],[114.25826,22.33436],[114.25826,22.33436],[114.25825,22.33436],[114.25825,22.33436],[114.25824,22.33436],[114.25824,22.33436],[114.25819,22.33435],[114.25819,22.33435],[114.25819,22.33435],[114.25818,22.33435],[114.25818,22.33435],[114.25817,22.33435],[114.25817,22.33435],[114.25816,22.33435],[114.25816,22.33435],[114.25815,22.33435],[114.25815,22.33435],[114.25814,22.33435],[114.25814,22.33435],[114.25813,22.33435],[114.25813,22.33435],[114.25812,22.33435],[114.25812,22.33435],[114.25811,22.33435],[114.25811,22.33436],[114.2581,22.33436],[114.2581,22.33436],[114.25809,22.33436],[114.25809,22.33436],[114.25809,22.33436],[114.25808,22.33436],[114.25808,22.33436],[114.25807,22.33437],[114.25807,22.33437],[114.25807,22.33437],[114.25806,22.33437],[114.25806,22.33437],[114.25805,22.33437],[114.25805,22.33437],[114.25804,22.33437],[114.25804,22.33438],[114.25803,22.33438],[114.25803,22.33438],[114.25803,22.33438],[114.25802,22.33438],[114.25802,22.33438],[114.25801,22.33439],[114.25801,22.33439],[114.258,22.33439],[114.258,22.33439],[114.25799,22.33439],[114.25799,22.33439],[114.25799,22.3344],[114.25798,22.3344],[114.25798,22.3344],[114.25797,22.3344],[114.25797,22.3344],[114.25796,22.33441],[114.25796,22.33441],[114.25795,22.33441],[114.25795,22.33441],[114.25795,22.33441],[114.25794,22.33442],[114.25794,22.33442],[114.25793,22.33442],[114.25793,22.33442],[114.25792,22.33442],[114.25792,22.33443],[114.25792,22.33443],[114.25791,22.33443],[114.25791,22.33443],[114.2579,22.33444],[114.2579,22.33444],[114.2579,22.33444],[114.25789,22.33444],[114.25789,22.33445],[114.25788,22.33445],[114.25788,22.33445],[114.25788,22.33446],[114.25787,22.33446],[114.25787,22.33446],[114.25787,22.33446],[114.25786,22.33447],[114.25786,22.33447],[114.25786,22.33447],[114.25785,22.33448],[114.25785,22.33448],[114.25785,22.33448],[114.25784,22.33449],[114.25784,22.33449],[114.25784,22.33449],[114.25783,22.3345],[114.25783,22.3345],[114.25783,22.3345],[114.25782,22.33451],[114.25782,22.33451],[114.25782,22.33451],[114.25781,22.33452],[114.25781,22.33452],[114.25781,22.33453],[114.2578,22.33453],[114.2578,22.33453],[114.2578,22.33454],[114.2578,22.33454],[114.25779,22.33454],[114.25779,22.33455],[114.25779,22.33455],[114.25779,22.33455],[114.25778,22.33456],[114.25778,22.33456],[114.25778,22.33457],[114.25777,22.33457],[114.25777,22.33457],[114.25777,22.33458],[114.25777,22.33458],[114.25776,22.33459],[114.25776,22.33459],[114.25776,22.33459],[114.25776,22.3346],[114.25776,22.3346],[114.25775,22.33461],[114.25775,22.33461],[114.25775,22.33461],[114.25775,22.33462],[114.25774,22.33462],[114.25774,22.33463],[114.25774,22.33463],[114.25774,22.33463],[114.25774,22.33464],[114.25773,22.33464],[114.25773,22.33465],[114.25773,22.33465],[114.25773,22.33465],[114.25773,22.33466],[114.25773,22.33466],[114.25772,22.33467],[114.25772,22.33467],[114.25772,22.33468],[114.25772,22.33468],[114.25772,22.33468],[114.25772,22.33469],[114.25772,22.33469],[114.25771,22.3347],[114.25771,22.3347],[114.25771,22.33471],[114.25771,22.33471],[114.25771,22.33471],[114.25771,22.33472],[114.25771,22.33472],[114.25771,22.33473],[114.2577,22.33473],[114.2577,22.33474],[114.2577,22.33474],[114.2577,22.33476],[114.25766,22.33504],[114.2576,22.33538]],[[114.2644,22.30862],[114.26443,22.30868],[114.2644,22.30861],[114.26426,22.30858],[114.2644,22.30862]]]]},"properties":{"M_NM_Eng":"Non-Metro","SR_Eng":"SENT","PDD_Cat_En":"New Town","PDD_Eng":"Tseung Kwan O","M_NM_Tc":"非都會區","SR_Tc":"新界東南","PDD_Cat_Tc":"新市鎮","PDD_Tc":"將軍澳","M_NM_Sc":"非都会区","SR_Sc_1":"新界东南","PDD_Cat_Sc":"新市镇","PDD_Sc":"将军澳","Y2019_Popu":410000,"Y2019_Empl":87000,"Y2026_Popu":447400,"Y2026_Empl":94150,"Y2031_Popu":428100,"Y2031_Empl":89200}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[114.09497,22.32529],[114.09512,22.32529],[114.09512,22.32539],[114.09509,22.3254],[114.09474,22.3254],[114.09474,22.32529],[114.09493,22.32529],[114.09493,22.32526],[114.09497,22.32526],[114.09497,22.32529]]],[[[114.09334,22.32529],[114.09334,22.32538],[114.09337,22.3254],[114.09337,22.32542],[114.09308,22.32542],[114.09309,22.32539],[114.09311,22.32537],[114.09312,22.32529],[114.09334,22.32529]]],[[[114.10742,22.32572],[114.10753,22.32583],[114.10753,22.3259],[114.10719,22.32588],[114.10715,22.32586],[114.10716,22.3258],[114.10728,22.32571],[114.10742,22.32572]]],[[[114.10898,22.32583],[114.10897,22.32596],[114.10899,22.32602],[114.10898,22.32603],[114.10876,22.32602],[114.10877,22.32582],[114.10898,22.32583]]],[[[114.1129,22.34783],[114.11288,22.34784],[114.1128,22.34782],[114.11276,22.34782],[114.11273,22.34781],[114.11271,22.34779],[114.11272,22.34776],[114.11274,22.34773],[114.11281,22.34771],[114.11288,22.34772],[114.1129,22.34776],[114.11291,22.3478],[114.1129,22.34783]]],[[[114.10971,22.35766],[114.10972,22.35771],[114.10974,22.35786],[114.10966,22.35797],[114.1096,22.35796],[114.10958,22.35792],[114.10957,22.35777],[114.10964,22.35766],[114.10971,22.35766]]],[[[114.10957,22.35972],[114.10959,22.35976],[114.10958,22.35983],[114.10954,22.36001],[114.10953,22.36008],[114.10948,22.36011],[114.10941,22.3601],[114.10938,22.36005],[114.1094,22.35999],[114.10943,22.35981],[114.10945,22.35974],[114.10949,22.3597],[114.10957,22.35972]]],[[[114.10945,22.3602],[114.10946,22.36022],[114.10942,22.36039],[114.10941,22.36041],[114.1094,22.36041],[114.10938,22.36041],[114.10937,22.3604],[114.10937,22.36039],[114.10941,22.36021],[114.10941,22.3602],[114.10943,22.3602],[114.10944,22.3602],[114.10945,22.3602]]],[[[114.1042,22.36348],[114.10405,22.36356],[114.10348,22.36372],[114.10145,22.36378],[114.10035,22.3638],[114.10028,22.36377],[114.10022,22.36372],[114.10019,22.36365],[114.10018,22.36352],[114.10013,22.36345],[114.10004,22.36344],[114.09994,22.36341],[114.09984,22.36351],[114.09982,22.36353],[114.09978,22.36356],[114.09975,22.36357],[114.09972,22.36358],[114.09969,22.36358],[114.09965,22.36359],[114.09959,22.36358],[114.09955,22.36356],[114.09933,22.36344],[114.09869,22.3631],[114.09777,22.36259],[114.09735,22.36236],[114.09733,22.36231],[114.09624,22.36172],[114.0962,22.36172],[114.09615,22.36172],[114.09611,22.36168],[114.09609,22.36167],[114.09609,22.36173],[114.09607,22.36181],[114.09605,22.36189],[114.09603,22.36194],[114.09602,22.36203],[114.09599,22.36203],[114.09598,22.36189],[114.09597,22.36179],[114.09597,22.36162],[114.09591,22.36161],[114.09589,22.36162],[114.0958,22.36163],[114.0957,22.36162],[114.09567,22.36162],[114.0955,22.36162],[114.0955,22.3618],[114.09541,22.3618],[114.09538,22.3618],[114.09525,22.3618],[114.09525,22.36164],[114.09516,22.36163],[114.09511,22.36166],[114.09498,22.36166],[114.09491,22.36166],[114.09492,22.36187],[114.09476,22.36187],[114.09476,22.3617],[114.0947,22.36165],[114.09451,22.36167],[114.09443,22.36164],[114.0944,22.36166],[114.09436,22.36169],[114.09431,22.36169],[114.09426,22.36167],[114.09424,22.3616],[114.09418,22.36158],[114.09399,22.36162],[114.09394,22.36168],[114.0939,22.36172],[114.09383,22.36169],[114.09379,22.36169],[114.09371,22.36168],[114.0937,22.36175],[114.09367,22.36178],[114.09356,22.36174],[114.09347,22.3617],[114.09347,22.36166],[114.09335,22.36166],[114.09333,22.3616],[114.09324,22.36162],[114.09315,22.36158],[114.09312,22.36158],[114.09312,22.36209],[114.09276,22.3621],[114.09275,22.36163],[114.09272,22.36163],[114.0927,22.36166],[114.09267,22.36168],[114.09265,22.36168],[114.09262,22.36168],[114.09256,22.36165],[114.09244,22.36166],[114.09241,22.36167],[114.09239,22.36168],[114.09238,22.36167],[114.09236,22.36166],[114.09231,22.36162],[114.09226,22.36161],[114.09226,22.36231],[114.09209,22.36231],[114.0921,22.36158],[114.09198,22.36157],[114.09198,22.36204],[114.09161,22.36204],[114.09161,22.36168],[114.09154,22.36169],[114.09148,22.36168],[114.09142,22.36167],[114.0914,22.36195],[114.09138,22.36195],[114.09138,22.36197],[114.09131,22.36197],[114.09131,22.36162],[114.0912,22.36164],[114.09115,22.36164],[114.09107,22.36163],[114.09099,22.36161],[114.09093,22.3616],[114.09078,22.36163],[114.09069,22.36163],[114.09069,22.36206],[114.09024,22.36205],[114.09023,22.3617],[114.09001,22.3617],[114.0899,22.36167],[114.08989,22.3624],[114.08968,22.3624],[114.08967,22.36283],[114.08928,22.36281],[114.0893,22.36201],[114.0891,22.36201],[114.08908,22.36281],[114.08892,22.36282],[114.08892,22.36237],[114.08785,22.36235],[114.08785,22.36218],[114.0877,22.36218],[114.08726,22.36196],[114.08713,22.36195],[114.08697,22.36196],[114.08652,22.36193],[114.08592,22.36168],[114.08585,22.36166],[114.08568,22.36166],[114.08557,22.36169],[114.08553,22.3617],[114.0855,22.36172],[114.08548,22.36175],[114.08545,22.36176],[114.08543,22.36177],[114.08539,22.36177],[114.08535,22.36175],[114.08532,22.36173],[114.0853,22.36169],[114.08529,22.36167],[114.08273,22.36034],[114.08269,22.36034],[114.08264,22.36033],[114.08258,22.36031],[114.08228,22.3602],[114.08218,22.36016],[114.08215,22.36016],[114.08213,22.3602],[114.08211,22.36024],[114.08206,22.36028],[114.08163,22.36014],[114.08161,22.35997],[114.08145,22.36001],[114.08094,22.35993],[114.08062,22.35986],[114.08054,22.35981],[114.08017,22.35969],[114.08017,22.35964],[114.08024,22.35959],[114.08021,22.35955],[114.07948,22.35896],[114.07937,22.35876],[114.07936,22.35868],[114.07929,22.35866],[114.07925,22.35859],[114.07919,22.35861],[114.07919,22.35867],[114.07906,22.35866],[114.07902,22.35863],[114.07902,22.35856],[114.07905,22.35849],[114.07897,22.35852],[114.07896,22.35848],[114.07903,22.35845],[114.07897,22.35843],[114.07898,22.35831],[114.07902,22.35828],[114.07911,22.35829],[114.07915,22.35833],[114.07919,22.35827],[114.07911,22.35807],[114.07916,22.35802],[114.07912,22.35797],[114.07916,22.35789],[114.07918,22.35776],[114.07929,22.35771],[114.07929,22.35764],[114.07931,22.35761],[114.07936,22.35762],[114.07935,22.35767],[114.07944,22.35759],[114.07947,22.35752],[114.07956,22.35742],[114.07957,22.35734],[114.07963,22.35728],[114.07973,22.35701],[114.07994,22.35676],[114.08003,22.35669],[114.08013,22.35671],[114.08016,22.35664],[114.08022,22.35663],[114.08029,22.3566],[114.08029,22.35652],[114.08033,22.3565],[114.08035,22.35644],[114.08042,22.35518],[114.08038,22.35518],[114.08036,22.3551],[114.08036,22.35509],[114.08018,22.35505],[114.08004,22.35497],[114.07998,22.35489],[114.0799,22.35485],[114.07993,22.35478],[114.07998,22.35446],[114.08021,22.35401],[114.08027,22.35372],[114.08026,22.35363],[114.07998,22.35331],[114.07991,22.35315],[114.07993,22.35295],[114.07994,22.3529],[114.08004,22.35264],[114.08009,22.3525],[114.0802,22.35238],[114.08045,22.35222],[114.08045,22.35214],[114.08039,22.35211],[114.08043,22.35205],[114.08053,22.35205],[114.08065,22.35212],[114.08074,22.3521],[114.08103,22.35194],[114.08131,22.35171],[114.08134,22.35169],[114.08135,22.35167],[114.08137,22.35164],[114.08137,22.3516],[114.08138,22.35156],[114.08138,22.35153],[114.08138,22.35149],[114.08137,22.35146],[114.08137,22.35142],[114.08138,22.35139],[114.08139,22.35137],[114.0814,22.35134],[114.08141,22.3513],[114.08143,22.3513],[114.08146,22.35129],[114.08146,22.35123],[114.08147,22.35103],[114.08259,22.35107],[114.0826,22.351],[114.08274,22.35101],[114.08274,22.35108],[114.08357,22.35111],[114.08367,22.35101],[114.08337,22.34878],[114.08338,22.34876],[114.08489,22.34846],[114.08482,22.34831],[114.08463,22.34709],[114.08467,22.34703],[114.08464,22.34682],[114.08429,22.34687],[114.08428,22.3468],[114.08463,22.34675],[114.08459,22.3465],[114.08452,22.34648],[114.08443,22.34585],[114.08433,22.34587],[114.08426,22.34542],[114.08434,22.3454],[114.08425,22.3448],[114.08425,22.34476],[114.08432,22.34474],[114.08427,22.34449],[114.0853,22.34436],[114.08528,22.34422],[114.08551,22.34419],[114.08553,22.34433],[114.08575,22.3443],[114.08564,22.34341],[114.08591,22.34291],[114.08582,22.34286],[114.08572,22.34304],[114.08557,22.34296],[114.08578,22.34262],[114.08593,22.3427],[114.08587,22.34279],[114.08629,22.343],[114.08622,22.34312],[114.08614,22.34308],[114.08617,22.34302],[114.086,22.34296],[114.08571,22.34343],[114.08584,22.34429],[114.08795,22.344],[114.08783,22.34324],[114.08792,22.34323],[114.08804,22.34399],[114.08857,22.34392],[114.08856,22.34386],[114.08865,22.34385],[114.08855,22.34324],[114.08865,22.34323],[114.08875,22.3439],[114.08929,22.34382],[114.08918,22.34315],[114.08928,22.34314],[114.08939,22.34381],[114.08978,22.34376],[114.08976,22.34362],[114.09011,22.34357],[114.09012,22.34357],[114.0901,22.34347],[114.09009,22.34347],[114.09001,22.34348],[114.08999,22.34336],[114.09008,22.34336],[114.09014,22.34335],[114.09018,22.34334],[114.09012,22.34293],[114.09016,22.34292],[114.09018,22.34306],[114.09026,22.34305],[114.09032,22.34346],[114.09042,22.34332],[114.09044,22.34323],[114.09068,22.34289],[114.09123,22.3421],[114.09139,22.34195],[114.09144,22.34188],[114.09132,22.34182],[114.09116,22.34167],[114.09063,22.34139],[114.09057,22.34137],[114.09049,22.3413],[114.09018,22.34148],[114.09013,22.34155],[114.08973,22.34128],[114.08978,22.34121],[114.0901,22.34142],[114.09044,22.34125],[114.09037,22.3412],[114.09034,22.34119],[114.09031,22.34115],[114.09026,22.34108],[114.09016,22.341],[114.08999,22.3411],[114.08967,22.34065],[114.08967,22.33977],[114.0887,22.33943],[114.08898,22.33871],[114.08912,22.33876],[114.0889,22.33936],[114.08983,22.33967],[114.09032,22.3389],[114.09041,22.33888],[114.09056,22.33896],[114.0909,22.33931],[114.09093,22.33928],[114.09083,22.33899],[114.09065,22.33841],[114.09071,22.33839],[114.09088,22.33897],[114.09098,22.33924],[114.09125,22.33901],[114.09146,22.33919],[114.0928,22.33833],[114.09087,22.3354],[114.09102,22.33536],[114.09094,22.33523],[114.09082,22.33527],[114.08915,22.33085],[114.08933,22.33059],[114.08972,22.33002],[114.09041,22.32903],[114.09137,22.32719],[114.09194,22.32607],[114.09389,22.32609],[114.0939,22.32515],[114.09391,22.32501],[114.09439,22.32502],[114.09439,22.32519],[114.09399,22.32519],[114.09398,22.3261],[114.09489,22.32611],[114.09499,22.32613],[114.09508,22.32619],[114.09514,22.32626],[114.09517,22.32635],[114.09527,22.32704],[114.09527,22.32711],[114.09526,22.32717],[114.09526,22.3272],[114.10089,22.32793],[114.1009,22.32793],[114.10197,22.32807],[114.10214,22.32702],[114.102,22.327],[114.10201,22.32693],[114.10203,22.32684],[114.1024,22.32689],[114.10239,22.32698],[114.10238,22.32706],[114.10226,22.32704],[114.10209,22.32809],[114.10388,22.32832],[114.10418,22.3283],[114.10621,22.32702],[114.10784,22.32712],[114.10785,22.32688],[114.10798,22.32689],[114.10798,22.32688],[114.10802,22.32637],[114.10809,22.32638],[114.10813,22.32577],[114.108,22.32575],[114.10802,22.32552],[114.10837,22.32554],[114.10835,22.32578],[114.10824,22.32578],[114.1082,22.32638],[114.10817,22.32678],[114.10814,22.32714],[114.10898,22.3272],[114.10898,22.32718],[114.10899,22.32716],[114.109,22.32715],[114.10902,22.32714],[114.10903,22.32713],[114.10905,22.32713],[114.10907,22.32712],[114.10909,22.32712],[114.10943,22.32714],[114.10953,22.32715],[114.10995,22.32718],[114.10997,22.32717],[114.10999,22.32716],[114.11001,22.32715],[114.11003,22.32713],[114.11005,22.32711],[114.11006,22.32709],[114.11007,22.32707],[114.11007,22.32699],[114.11008,22.32693],[114.11008,22.3269],[114.11009,22.32686],[114.11011,22.32683],[114.11013,22.32679],[114.11016,22.32675],[114.11018,22.32673],[114.11019,22.32671],[114.11021,22.32669],[114.11025,22.32666],[114.11029,22.32664],[114.11032,22.32663],[114.11036,22.32661],[114.11042,22.3266],[114.11044,22.3266],[114.11048,22.3266],[114.11142,22.32666],[114.1116,22.32667],[114.11162,22.32667],[114.11164,22.32668],[114.11165,22.3267],[114.11167,22.32672],[114.11167,22.32674],[114.11167,22.32676],[114.11167,22.32679],[114.11165,22.32681],[114.11163,22.32682],[114.11162,22.32683],[114.1116,22.32683],[114.11158,22.32683],[114.11156,22.32683],[114.1114,22.32682],[114.11103,22.3268],[114.1107,22.32677],[114.11054,22.32677],[114.11046,22.32676],[114.11043,22.32677],[114.11041,22.32677],[114.11039,22.32678],[114.11036,22.32679],[114.11034,22.3268],[114.11032,22.32682],[114.1103,22.32684],[114.11029,22.32686],[114.11027,22.32689],[114.11026,22.32691],[114.11026,22.32694],[114.11025,22.32702],[114.11023,22.32727],[114.11033,22.32728],[114.11024,22.32856],[114.11255,22.3287],[114.11257,22.32842],[114.11263,22.32843],[114.1126,22.32879],[114.1129,22.3288],[114.11294,22.32826],[114.11259,22.32824],[114.11266,22.32743],[114.11274,22.32744],[114.11275,22.32742],[114.11276,22.3274],[114.11278,22.32738],[114.11279,22.32737],[114.11281,22.32737],[114.11283,22.32736],[114.11403,22.32744],[114.11405,22.32744],[114.11406,22.32745],[114.11407,22.32745],[114.11408,22.32746],[114.1141,22.32748],[114.11485,22.3283],[114.11517,22.32865],[114.11533,22.32883],[114.11555,22.32865],[114.11603,22.32919],[114.11768,22.331],[114.11603,22.33585],[114.11548,22.33747],[114.11278,22.34543],[114.11208,22.3475],[114.11216,22.34787],[114.11221,22.34813],[114.11223,22.34822],[114.11223,22.34832],[114.11204,22.34869],[114.1119,22.34895],[114.1109,22.35088],[114.11078,22.35083],[114.11044,22.35152],[114.11027,22.35187],[114.11025,22.35188],[114.11022,22.35189],[114.11016,22.35202],[114.11022,22.35204],[114.11012,22.35275],[114.11003,22.35274],[114.11001,22.35294],[114.10992,22.35291],[114.10985,22.35307],[114.10956,22.35393],[114.10969,22.35397],[114.1097,22.35399],[114.10945,22.35472],[114.10943,22.35473],[114.10932,22.3547],[114.1092,22.35511],[114.10912,22.35555],[114.10908,22.35601],[114.10904,22.35651],[114.10903,22.35721],[114.10899,22.35721],[114.10899,22.35765],[114.10903,22.35766],[114.10905,22.35794],[114.10906,22.3581],[114.10912,22.35905],[114.1091,22.35949],[114.10906,22.35974],[114.10902,22.35992],[114.10886,22.36042],[114.10876,22.36064],[114.10862,22.3609],[114.10845,22.36115],[114.10782,22.36198],[114.10742,22.36312],[114.10738,22.36315],[114.10735,22.36317],[114.10557,22.36321],[114.10554,22.36317],[114.10505,22.36319],[114.10491,22.3632],[114.10487,22.36322],[114.10466,22.36327],[114.10457,22.3633],[114.10434,22.3634],[114.1042,22.36348]]]]},"properties":{"M_NM_Eng":"Metro","SR_Eng":"Metro","PDD_Cat_En":"New Town","PDD_Eng":"Tsing Yi","M_NM_Tc":"都會區","SR_Tc":"都會區","PDD_Cat_Tc":"新市鎮","PDD_Tc":"青衣","M_NM_Sc":"都会区","SR_Sc_1":"都会区","PDD_Cat_Sc":"新市镇","PDD_Sc":"青衣","Y2019_Popu":182350,"Y2019_Empl":38500,"Y2026_Popu":188550,"Y2026_Empl":38700,"Y2031_Popu":184400,"Y2031_Empl":36650}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[114.11109,22.36021],[114.11107,22.36028],[114.11106,22.36034],[114.11101,22.36038],[114.11094,22.36037],[114.11091,22.36032],[114.11093,22.36025],[114.11094,22.36018],[114.11109,22.36021]]],[[[114.11097,22.36048],[114.11098,22.3605],[114.11097,22.36053],[114.11096,22.3606],[114.11095,22.36063],[114.11095,22.36064],[114.11095,22.36065],[114.11094,22.36066],[114.11094,22.36067],[114.11094,22.36068],[114.11093,22.36068],[114.11093,22.36068],[114.11092,22.36068],[114.11092,22.36069],[114.11092,22.36069],[114.11091,22.36068],[114.11091,22.36068],[114.1109,22.36068],[114.1109,22.36067],[114.1109,22.36067],[114.1109,22.36066],[114.1109,22.36066],[114.1109,22.36065],[114.1109,22.36063],[114.11091,22.36058],[114.11092,22.36054],[114.11092,22.36051],[114.11093,22.3605],[114.11094,22.36048],[114.11095,22.36047],[114.11097,22.36048]]],[[[114.08015,22.36442],[114.08014,22.36443],[114.08013,22.36444],[114.08011,22.36445],[114.0801,22.36446],[114.08007,22.36446],[114.08006,22.36447],[114.08004,22.36447],[114.08002,22.36447],[114.07998,22.36447],[114.07993,22.36446],[114.0799,22.36445],[114.07982,22.36441],[114.07944,22.36424],[114.07938,22.36421],[114.07937,22.36421],[114.07937,22.36421],[114.07923,22.36415],[114.07923,22.36412],[114.07931,22.36386],[114.07942,22.36365],[114.07952,22.36356],[114.07966,22.36355],[114.07967,22.36356],[114.07971,22.36358],[114.07977,22.36361],[114.08015,22.36379],[114.08021,22.36381],[114.08025,22.36384],[114.08027,22.36385],[114.08029,22.36387],[114.08031,22.36389],[114.08032,22.3639],[114.08033,22.36392],[114.08034,22.36393],[114.08034,22.36394],[114.08035,22.36396],[114.08035,22.36398],[114.08035,22.364],[114.08035,22.36401],[114.08035,22.36402],[114.08035,22.36404],[114.08035,22.36405],[114.08034,22.36406],[114.08033,22.36408],[114.0803,22.36414],[114.08038,22.36418],[114.08032,22.3643],[114.08024,22.36427],[114.08015,22.36442]]],[[[114.10751,22.38726],[114.10748,22.3873],[114.10681,22.38756],[114.10678,22.38758],[114.10676,22.38759],[114.1067,22.38762],[114.10668,22.38764],[114.10666,22.38766],[114.10656,22.38773],[114.10631,22.38793],[114.10622,22.388],[114.1061,22.38808],[114.10603,22.38813],[114.10598,22.38818],[114.10592,22.38822],[114.10584,22.38828],[114.10581,22.3883],[114.1058,22.38832],[114.10579,22.38833],[114.10579,22.38833],[114.10578,22.38833],[114.10578,22.38834],[114.10576,22.38836],[114.10575,22.38837],[114.10574,22.38838],[114.10573,22.3884],[114.10571,22.38842],[114.1057,22.38843],[114.10569,22.38845],[114.10568,22.38846],[114.10567,22.38847],[114.10566,22.38848],[114.10564,22.38849],[114.10563,22.38849],[114.10562,22.3885],[114.1056,22.38851],[114.10558,22.38852],[114.10557,22.38852],[114.10555,22.38852],[114.10554,22.38852],[114.10552,22.38852],[114.1055,22.38852],[114.10549,22.38852],[114.10548,22.38852],[114.10547,22.38852],[114.10545,22.38852],[114.10542,22.38851],[114.1054,22.38851],[114.10538,22.3885],[114.10536,22.38849],[114.10535,22.38849],[114.10535,22.38849],[114.10534,22.38849],[114.10534,22.38849],[114.10533,22.38849],[114.10533,22.38849],[114.10533,22.38849],[114.10532,22.38849],[114.10532,22.38848],[114.10531,22.38848],[114.10531,22.38848],[114.1053,22.38848],[114.1053,22.38848],[114.10529,22.38848],[114.10529,22.38848],[114.10529,22.38848],[114.10528,22.38847],[114.10528,22.38847],[114.10527,22.38847],[114.10527,22.38847],[114.10527,22.38847],[114.10526,22.38847],[114.10526,22.38846],[114.10525,22.38846],[114.10525,22.38846],[114.10524,22.38846],[114.10524,22.38846],[114.10524,22.38845],[114.10523,22.38845],[114.10523,22.38845],[114.10522,22.38845],[114.10522,22.38844],[114.10521,22.38844],[114.10521,22.38844],[114.10521,22.38844],[114.1052,22.38844],[114.1052,22.38843],[114.1052,22.38843],[114.10519,22.38843],[114.10519,22.38843],[114.10519,22.38842],[114.10518,22.38842],[114.10518,22.38842],[114.10518,22.38841],[114.10517,22.38841],[114.10517,22.38841],[114.10517,22.3884],[114.10516,22.3884],[114.10516,22.3884],[114.10515,22.3884],[114.10515,22.38839],[114.10515,22.38839],[114.10514,22.38839],[114.10514,22.38838],[114.10514,22.38838],[114.10514,22.38838],[114.10513,22.38837],[114.10513,22.38837],[114.10513,22.38836],[114.10512,22.38836],[114.10512,22.38836],[114.10512,22.38835],[114.10511,22.38835],[114.10511,22.38835],[114.10511,22.38834],[114.10511,22.38834],[114.1051,22.38834],[114.1051,22.38833],[114.1051,22.38833],[114.1051,22.38832],[114.10509,22.38832],[114.10509,22.38832],[114.10509,22.38831],[114.10509,22.38831],[114.10509,22.3883],[114.10508,22.3883],[114.10508,22.3883],[114.10508,22.38829],[114.10508,22.38829],[114.10508,22.38828],[114.10507,22.38828],[114.10507,22.38827],[114.10505,22.38825],[114.10504,22.38822],[114.10503,22.38819],[114.10499,22.38815],[114.10494,22.38811],[114.10492,22.38808],[114.10489,22.38804],[114.10487,22.38801],[114.10485,22.38798],[114.10484,22.38797],[114.10483,22.38795],[114.10481,22.38795],[114.10481,22.38794],[114.10481,22.38793],[114.10481,22.38792],[114.10481,22.38792],[114.10482,22.38791],[114.10481,22.3879],[114.10481,22.3879],[114.10481,22.38789],[114.10481,22.38789],[114.1048,22.38787],[114.1048,22.38787],[114.1048,22.38786],[114.1048,22.38785],[114.1048,22.38784],[114.10482,22.38778],[114.10484,22.38772],[114.10486,22.38764],[114.10484,22.38758],[114.1048,22.38745],[114.10479,22.3874],[114.10482,22.38735],[114.10483,22.38725],[114.10482,22.38722],[114.10478,22.38722],[114.10475,22.38721],[114.10472,22.38717],[114.1047,22.38715],[114.10461,22.38665],[114.10458,22.38662],[114.10446,22.38654],[114.1044,22.38649],[114.10432,22.38629],[114.1043,22.38621],[114.1043,22.38617],[114.10431,22.38612],[114.10453,22.38578],[114.10453,22.38574],[114.10453,22.38571],[114.10451,22.38567],[114.10449,22.38566],[114.10444,22.38565],[114.10425,22.38567],[114.1042,22.38567],[114.10416,22.38566],[114.10348,22.38534],[114.10342,22.38533],[114.10336,22.38534],[114.10314,22.38542],[114.10303,22.38544],[114.10288,22.38544],[114.10277,22.38542],[114.10273,22.3854],[114.10267,22.38535],[114.1026,22.38528],[114.10257,22.38522],[114.10254,22.38512],[114.1025,22.38485],[114.10248,22.3848],[114.10245,22.38477],[114.10242,22.38474],[114.10234,22.38471],[114.10229,22.38471],[114.10223,22.38474],[114.10209,22.38484],[114.102,22.38492],[114.10198,22.38495],[114.10197,22.385],[114.10199,22.38516],[114.10199,22.38521],[114.10198,22.38524],[114.10195,22.38527],[114.10184,22.38538],[114.1018,22.38553],[114.10177,22.38559],[114.10173,22.38562],[114.10167,22.38565],[114.10162,22.38565],[114.10156,22.38565],[114.10149,22.38561],[114.10144,22.38557],[114.10142,22.38549],[114.10144,22.38517],[114.10143,22.3851],[114.10131,22.38484],[114.10124,22.38477],[114.10117,22.38474],[114.1011,22.38475],[114.10102,22.38478],[114.10085,22.38494],[114.10082,22.38497],[114.10076,22.38499],[114.10046,22.38506],[114.10041,22.38508],[114.10037,22.38511],[114.10019,22.38527],[114.10013,22.3853],[114.0999,22.38536],[114.09985,22.38537],[114.09979,22.38537],[114.09974,22.38535],[114.09971,22.38532],[114.09968,22.38529],[114.09966,22.38525],[114.09962,22.38491],[114.09962,22.38485],[114.09964,22.38481],[114.09968,22.38475],[114.09974,22.3847],[114.09979,22.38468],[114.09987,22.38468],[114.10002,22.38469],[114.10006,22.38468],[114.1001,22.38466],[114.10038,22.38448],[114.10041,22.38445],[114.10043,22.38442],[114.10046,22.38428],[114.10048,22.38423],[114.10061,22.38401],[114.10064,22.38398],[114.10067,22.38397],[114.10085,22.38392],[114.10088,22.3839],[114.10091,22.38387],[114.10098,22.38375],[114.10105,22.3837],[114.10109,22.38369],[114.10133,22.38368],[114.1014,22.38364],[114.10144,22.38359],[114.10162,22.38333],[114.10163,22.38327],[114.10164,22.383],[114.10164,22.38295],[114.10167,22.38289],[114.10172,22.38284],[114.10177,22.38282],[114.10181,22.38281],[114.10192,22.38282],[114.10228,22.38291],[114.10244,22.383],[114.1025,22.38302],[114.10257,22.38301],[114.1029,22.38294],[114.10293,22.38292],[114.10297,22.38289],[114.10311,22.38269],[114.10319,22.38262],[114.10327,22.38259],[114.10368,22.38254],[114.10374,22.38252],[114.10378,22.3825],[114.10407,22.38228],[114.10413,22.3822],[114.10412,22.38215],[114.10409,22.38207],[114.10384,22.38176],[114.10378,22.38167],[114.10377,22.38163],[114.10377,22.38158],[114.10379,22.3814],[114.10379,22.3813],[114.10378,22.38126],[114.10372,22.38114],[114.10369,22.3811],[114.10364,22.38107],[114.1036,22.38107],[114.1033,22.3812],[114.10322,22.38123],[114.10315,22.38123],[114.1031,22.38122],[114.10304,22.38119],[114.103,22.38113],[114.10296,22.38107],[114.10295,22.38101],[114.10295,22.38096],[114.103,22.38055],[114.10301,22.38033],[114.103,22.38026],[114.10298,22.38021],[114.10295,22.38017],[114.10259,22.37983],[114.10257,22.3798],[114.10255,22.37975],[114.10254,22.37971],[114.10255,22.37966],[114.1026,22.37947],[114.10261,22.37936],[114.10261,22.37883],[114.10259,22.37875],[114.10244,22.37854],[114.10242,22.37847],[114.10241,22.37843],[114.10241,22.37839],[114.1025,22.37819],[114.10251,22.37811],[114.10249,22.37804],[114.10246,22.37797],[114.10243,22.37793],[114.10234,22.37787],[114.10233,22.37784],[114.10231,22.37778],[114.1023,22.37741],[114.10229,22.37738],[114.10229,22.37726],[114.10227,22.37716],[114.10225,22.37711],[114.10224,22.37709],[114.10224,22.37709],[114.10208,22.37686],[114.10206,22.37684],[114.10201,22.37678],[114.10192,22.37671],[114.10185,22.37666],[114.10182,22.37665],[114.10179,22.37663],[114.10176,22.37662],[114.10172,22.37662],[114.10168,22.37661],[114.10168,22.37661],[114.10163,22.37661],[114.10159,22.37658],[114.10158,22.37658],[114.10155,22.37653],[114.10143,22.37629],[114.10137,22.37619],[114.10138,22.37616],[114.10138,22.37615],[114.10139,22.37613],[114.10141,22.37611],[114.10164,22.37593],[114.10167,22.3759],[114.10171,22.37583],[114.10171,22.37579],[114.10171,22.37579],[114.10172,22.37575],[114.10171,22.37572],[114.10171,22.37572],[114.10168,22.37565],[114.10152,22.37548],[114.10145,22.37542],[114.10136,22.37538],[114.10135,22.37538],[114.1012,22.37533],[114.10113,22.37533],[114.1011,22.37534],[114.10108,22.37535],[114.10096,22.37545],[114.10092,22.37547],[114.10089,22.37549],[114.10088,22.37549],[114.10083,22.3755],[114.10081,22.3755],[114.10081,22.3755],[114.10078,22.3755],[114.10072,22.37549],[114.10069,22.37548],[114.10068,22.37548],[114.10064,22.37546],[114.10061,22.37543],[114.10054,22.37535],[114.10034,22.37511],[114.10032,22.37509],[114.10029,22.37507],[114.10021,22.37507],[114.0999,22.37515],[114.09989,22.37515],[114.09989,22.37515],[114.0998,22.37514],[114.09977,22.37513],[114.09976,22.37512],[114.09973,22.3751],[114.09968,22.37506],[114.09968,22.37506],[114.09968,22.37506],[114.09966,22.37504],[114.09956,22.37491],[114.09953,22.3749],[114.0995,22.37489],[114.09945,22.3749],[114.09928,22.37497],[114.09918,22.37498],[114.09916,22.37498],[114.09915,22.37498],[114.09905,22.37494],[114.09905,22.37494],[114.09903,22.37493],[114.09901,22.37491],[114.09899,22.37488],[114.09899,22.37488],[114.09897,22.3748],[114.09897,22.3748],[114.09896,22.37462],[114.09895,22.3746],[114.09893,22.37456],[114.09889,22.37452],[114.09885,22.3745],[114.09884,22.3745],[114.09832,22.37432],[114.09827,22.37429],[114.09819,22.37422],[114.09815,22.3742],[114.09815,22.37419],[114.09812,22.37418],[114.09803,22.37416],[114.09801,22.37417],[114.09801,22.37417],[114.09799,22.37418],[114.09789,22.3741],[114.09784,22.37407],[114.09783,22.37407],[114.09783,22.37405],[114.09783,22.37405],[114.09732,22.37388],[114.09726,22.37387],[114.09724,22.37387],[114.09724,22.37387],[114.09722,22.37387],[114.09695,22.37389],[114.09694,22.37389],[114.09673,22.37391],[114.09666,22.3739],[114.09629,22.37379],[114.09629,22.37379],[114.09626,22.37379],[114.09619,22.37379],[114.09607,22.37382],[114.09601,22.37382],[114.0954,22.3736],[114.09533,22.37358],[114.09532,22.37358],[114.09531,22.37358],[114.09527,22.37358],[114.09527,22.37358],[114.09521,22.37358],[114.09519,22.37357],[114.09518,22.37356],[114.09515,22.37354],[114.09499,22.37326],[114.09497,22.37324],[114.09495,22.37321],[114.09492,22.3732],[114.09489,22.37319],[114.09461,22.37318],[114.09379,22.3728],[114.09379,22.3728],[114.09375,22.37278],[114.09357,22.37266],[114.09353,22.37264],[114.09352,22.37264],[114.09349,22.37263],[114.09345,22.37264],[114.09344,22.37264],[114.09339,22.37266],[114.09327,22.37271],[114.09326,22.37272],[114.09319,22.37274],[114.09278,22.37272],[114.09275,22.37273],[114.09271,22.37274],[114.09263,22.37277],[114.09262,22.37277],[114.09254,22.37278],[114.09253,22.37278],[114.09248,22.37276],[114.09237,22.37267],[114.09232,22.37265],[114.09225,22.37263],[114.0921,22.37263],[114.09208,22.37263],[114.09207,22.37263],[114.09205,22.37262],[114.09201,22.37261],[114.09193,22.37255],[114.09186,22.37245],[114.09185,22.37244],[114.09183,22.37243],[114.09177,22.37239],[114.09174,22.37238],[114.09173,22.37238],[114.09166,22.37239],[114.09149,22.37242],[114.09139,22.37242],[114.0913,22.37239],[114.09128,22.37237],[114.09115,22.37228],[114.09107,22.37225],[114.09074,22.37222],[114.09055,22.37219],[114.09046,22.37217],[114.09032,22.37209],[114.0903,22.37207],[114.09029,22.37205],[114.09027,22.37201],[114.09028,22.37198],[114.09029,22.37196],[114.09029,22.37195],[114.09041,22.37182],[114.09044,22.37176],[114.09045,22.37174],[114.09044,22.37171],[114.09044,22.3717],[114.09043,22.37166],[114.09036,22.37157],[114.09004,22.37126],[114.08999,22.37123],[114.08998,22.37123],[114.08981,22.37119],[114.08831,22.37856],[114.08775,22.38143],[114.08705,22.38219],[114.08382,22.3857],[114.08328,22.38564],[114.08276,22.3857],[114.08235,22.38578],[114.08212,22.38589],[114.08186,22.38602],[114.08148,22.38626],[114.08122,22.38648],[114.08101,22.38682],[114.08089,22.38703],[114.08072,22.38722],[114.08066,22.38729],[114.08039,22.38738],[114.08004,22.38742],[114.07981,22.38739],[114.07959,22.38736],[114.07906,22.38728],[114.07856,22.3872],[114.07772,22.38707],[114.07696,22.38702],[114.07578,22.38707],[114.07465,22.38714],[114.07465,22.38714],[114.07271,22.38734],[114.07141,22.38736],[114.07084,22.38739],[114.07038,22.38731],[114.06945,22.38711],[114.06907,22.38711],[114.06868,22.38719],[114.06827,22.38735],[114.06806,22.3874],[114.06763,22.38711],[114.06722,22.38652],[114.06696,22.38586],[114.06649,22.38496],[114.06623,22.38458],[114.06603,22.38451],[114.06577,22.38454],[114.06495,22.38496],[114.06374,22.38521],[114.0623,22.38528],[114.06114,22.38511],[114.05979,22.38487],[114.05886,22.38473],[114.05682,22.38473],[114.05475,22.38495],[114.054,22.38503],[114.05364,22.38517],[114.05331,22.38541],[114.05231,22.38641],[114.05185,22.38657],[114.05143,22.38653],[114.05126,22.38635],[114.05125,22.38632],[114.0512,22.38621],[114.0512,22.38621],[114.05105,22.38588],[114.05079,22.38536],[114.05018,22.38465],[114.04915,22.38329],[114.04886,22.38283],[114.04887,22.38249],[114.04888,22.38235],[114.04888,22.38235],[114.04889,22.38228],[114.04891,22.38217],[114.04901,22.38171],[114.04945,22.3811],[114.04968,22.38078],[114.04981,22.38052],[114.04981,22.38051],[114.04989,22.38034],[114.04989,22.38034],[114.04984,22.37994],[114.04955,22.37967],[114.04935,22.37948],[114.04868,22.37918],[114.04783,22.37896],[114.04709,22.37893],[114.04629,22.37898],[114.04517,22.37919],[114.04395,22.37944],[114.04319,22.37956],[114.04288,22.37961],[114.04218,22.37969],[114.04097,22.37994],[114.04015,22.3803],[114.03885,22.38083],[114.03811,22.38097],[114.03739,22.38083],[114.03703,22.38059],[114.03674,22.38007],[114.03659,22.37937],[114.03646,22.37797],[114.03634,22.37745],[114.03613,22.37719],[114.03575,22.37706],[114.03526,22.37727],[114.03472,22.37785],[114.03428,22.37807],[114.03391,22.37806],[114.03341,22.37774],[114.03309,22.37724],[114.03292,22.37641],[114.03288,22.37565],[114.03322,22.37501],[114.03345,22.37466],[114.03376,22.37448],[114.03453,22.37409],[114.03484,22.37395],[114.03528,22.37393],[114.03587,22.37386],[114.0362,22.37363],[114.0363,22.37339],[114.03595,22.37266],[114.03588,22.37213],[114.03599,22.37163],[114.03626,22.37114],[114.03682,22.37077],[114.03765,22.37055],[114.03869,22.3705],[114.03945,22.37041],[114.03993,22.37013],[114.04034,22.36949],[114.04029,22.3688],[114.03998,22.36824],[114.03962,22.36782],[114.03901,22.36749],[114.03795,22.36698],[114.03721,22.36683],[114.03602,22.36656],[114.03548,22.36627],[114.03509,22.36593],[114.03491,22.36549],[114.03491,22.36505],[114.03496,22.36467],[114.03496,22.36467],[114.03497,22.36466],[114.03498,22.36464],[114.03499,22.36462],[114.03501,22.3646],[114.03501,22.3646],[114.03502,22.36459],[114.03503,22.36458],[114.03504,22.36458],[114.03504,22.36457],[114.03504,22.36456],[114.03503,22.36454],[114.03503,22.36452],[114.03503,22.36452],[114.03503,22.3645],[114.03503,22.36449],[114.03503,22.36447],[114.03503,22.36446],[114.03502,22.36444],[114.03502,22.36444],[114.03502,22.36443],[114.03502,22.36442],[114.03503,22.36441],[114.03503,22.3644],[114.03504,22.3644],[114.03504,22.3644],[114.03505,22.36439],[114.03505,22.36438],[114.03505,22.36437],[114.03505,22.36437],[114.03505,22.36435],[114.03504,22.36434],[114.03503,22.3643],[114.03503,22.36429],[114.03503,22.36428],[114.03504,22.36426],[114.03504,22.36422],[114.03504,22.36421],[114.03505,22.3642],[114.03505,22.3642],[114.03507,22.36419],[114.03508,22.36418],[114.03508,22.36417],[114.03508,22.36416],[114.03507,22.36415],[114.03507,22.36415],[114.03506,22.36413],[114.03505,22.36413],[114.03504,22.36412],[114.03502,22.36411],[114.03502,22.36411],[114.03501,22.3641],[114.03499,22.36409],[114.03496,22.36407],[114.03495,22.36407],[114.03495,22.36406],[114.03494,22.36406],[114.03493,22.36404],[114.03493,22.36403],[114.03491,22.36401],[114.03491,22.364],[114.0349,22.36399],[114.03489,22.36398],[114.03488,22.36397],[114.03486,22.36395],[114.03486,22.36394],[114.03484,22.36393],[114.03482,22.36392],[114.03478,22.36389],[114.03477,22.36388],[114.03477,22.36388],[114.03476,22.36388],[114.03474,22.36387],[114.03474,22.36386],[114.03473,22.36386],[114.03471,22.36385],[114.03468,22.36383],[114.03466,22.36381],[114.03465,22.36381],[114.03465,22.3638],[114.03464,22.36379],[114.03461,22.36376],[114.0346,22.36374],[114.03458,22.36372],[114.03458,22.36372],[114.03457,22.36371],[114.03456,22.3637],[114.03455,22.36368],[114.03452,22.36365],[114.03451,22.36364],[114.03449,22.36362],[114.03448,22.36361],[114.03448,22.36361],[114.03448,22.36359],[114.03447,22.36358],[114.03447,22.36357],[114.03447,22.36355],[114.03447,22.36352],[114.03447,22.36351],[114.03447,22.3635],[114.03448,22.36348],[114.03448,22.36347],[114.03447,22.36346],[114.03447,22.36345],[114.03446,22.36344],[114.03445,22.36344],[114.03445,22.36343],[114.03444,22.36342],[114.03443,22.36342],[114.03443,22.3634],[114.03442,22.36339],[114.03442,22.36339],[114.03442,22.36338],[114.0344,22.36337],[114.0344,22.36336],[114.03438,22.36335],[114.03435,22.36333],[114.03434,22.36333],[114.03432,22.36331],[114.03431,22.3633],[114.03431,22.3633],[114.03431,22.36329],[114.0343,22.36328],[114.03431,22.36327],[114.0343,22.36326],[114.03429,22.36326],[114.03428,22.36325],[114.03428,22.36324],[114.03428,22.36322],[114.03427,22.36321],[114.03427,22.3632],[114.03427,22.36319],[114.03427,22.36318],[114.03426,22.36317],[114.03425,22.36315],[114.03424,22.36314],[114.03424,22.36313],[114.03423,22.36311],[114.03423,22.3631],[114.03422,22.3631],[114.0342,22.36307],[114.0342,22.36305],[114.0342,22.36304],[114.03419,22.36304],[114.03418,22.36303],[114.03416,22.36302],[114.03416,22.36301],[114.03415,22.363],[114.03414,22.36299],[114.03414,22.36297],[114.03413,22.36294],[114.03412,22.36293],[114.03411,22.3629],[114.03407,22.36282],[114.03406,22.36278],[114.03406,22.36277],[114.03405,22.36276],[114.03405,22.36275],[114.03404,22.36274],[114.03403,22.36273],[114.03401,22.36271],[114.034,22.3627],[114.034,22.36269],[114.03399,22.36268],[114.03399,22.36267],[114.03397,22.36265],[114.03397,22.36265],[114.03395,22.36263],[114.03394,22.36262],[114.03393,22.3626],[114.03392,22.36259],[114.0339,22.36258],[114.03388,22.36257],[114.03384,22.36254],[114.03383,22.36253],[114.03381,22.36252],[114.03379,22.36251],[114.03376,22.36249],[114.03375,22.36248],[114.03372,22.36246],[114.03371,22.36246],[114.03368,22.36244],[114.03366,22.36243],[114.03364,22.36243],[114.03363,22.36242],[114.03361,22.36242],[114.03359,22.36241],[114.03358,22.36241],[114.03356,22.36242],[114.03355,22.36242],[114.03354,22.36242],[114.03351,22.36242],[114.03348,22.36241],[114.03346,22.3624],[114.03345,22.3624],[114.03343,22.3624],[114.03341,22.36241],[114.0334,22.36241],[114.03339,22.36241],[114.03337,22.36241],[114.03336,22.3624],[114.03334,22.36239],[114.03333,22.36238],[114.03331,22.36238],[114.0333,22.36238],[114.03329,22.36237],[114.03327,22.36236],[114.03327,22.36235],[114.03326,22.36235],[114.03325,22.36234],[114.03323,22.36232],[114.03322,22.36232],[114.0332,22.3623],[114.03319,22.3623],[114.03318,22.36229],[114.03318,22.36229],[114.03317,22.36228],[114.03316,22.36228],[114.03315,22.36228],[114.03314,22.36227],[114.03309,22.36226],[114.03305,22.36225],[114.03303,22.36224],[114.03303,22.36224],[114.03302,22.36223],[114.03301,22.36223],[114.033,22.36221],[114.033,22.36221],[114.03299,22.3622],[114.03297,22.3622],[114.03295,22.36219],[114.03294,22.36219],[114.03292,22.36219],[114.03291,22.36219],[114.0329,22.36219],[114.03288,22.36219],[114.03288,22.36219],[114.03287,22.36219],[114.03285,22.36219],[114.03284,22.36219],[114.03281,22.3622],[114.0328,22.3622],[114.03278,22.36221],[114.03277,22.36221],[114.03275,22.36221],[114.03273,22.36221],[114.03273,22.36221],[114.03272,22.36221],[114.03268,22.36219],[114.03267,22.36218],[114.03266,22.36217],[114.03264,22.36216],[114.03262,22.36215],[114.03261,22.36215],[114.0326,22.36214],[114.03258,22.36214],[114.03258,22.36214],[114.03241,22.36214],[114.03195,22.36186],[114.03136,22.36144],[114.03079,22.36066],[114.0305,22.35991],[114.03025,22.35924],[114.0301,22.35829],[114.02865,22.3588],[114.02865,22.35629],[114.02865,22.35613],[114.02865,22.35595],[114.02865,22.35595],[114.02865,22.3558],[114.02865,22.3554],[114.02903,22.35543],[114.02914,22.35535],[114.02927,22.35534],[114.02964,22.35538],[114.03005,22.35538],[114.0302,22.35561],[114.03058,22.35562],[114.03148,22.35573],[114.03197,22.35594],[114.03213,22.35592],[114.03245,22.35616],[114.03277,22.35632],[114.03349,22.35648],[114.03364,22.35655],[114.03405,22.35689],[114.0342,22.35696],[114.03433,22.35701],[114.03448,22.35705],[114.03467,22.35711],[114.0349,22.35717],[114.03537,22.35728],[114.03561,22.35731],[114.03575,22.35733],[114.03582,22.35734],[114.03585,22.35735],[114.03586,22.35737],[114.03615,22.3573],[114.03621,22.35734],[114.03634,22.35734],[114.03663,22.35744],[114.03721,22.35779],[114.03725,22.35783],[114.03728,22.35785],[114.03777,22.35795],[114.03802,22.358],[114.03807,22.358],[114.03836,22.35807],[114.03851,22.35809],[114.03859,22.35812],[114.03866,22.35815],[114.03874,22.35819],[114.03884,22.35821],[114.03888,22.35821],[114.03899,22.35821],[114.0391,22.35819],[114.03922,22.35819],[114.03927,22.35819],[114.03928,22.3582],[114.03938,22.35826],[114.03947,22.35828],[114.03949,22.35829],[114.0395,22.35831],[114.0395,22.35832],[114.03948,22.35837],[114.03948,22.35851],[114.03949,22.35854],[114.03952,22.35865],[114.03987,22.35893],[114.03993,22.35896],[114.04002,22.35899],[114.04006,22.35901],[114.04008,22.35901],[114.04008,22.35903],[114.04003,22.35906],[114.04002,22.35907],[114.04002,22.35909],[114.04002,22.3591],[114.04004,22.35912],[114.04043,22.35945],[114.04075,22.35969],[114.04079,22.35971],[114.04114,22.35995],[114.04133,22.36006],[114.04176,22.36027],[114.04194,22.36033],[114.04206,22.36037],[114.04221,22.36047],[114.04256,22.36061],[114.04262,22.36063],[114.04271,22.36061],[114.04286,22.36066],[114.0432,22.3608],[114.04345,22.36089],[114.04349,22.36095],[114.0436,22.361],[114.04379,22.36108],[114.04395,22.36115],[114.04408,22.3612],[114.04419,22.36123],[114.04426,22.36124],[114.04441,22.36126],[114.04454,22.36127],[114.0447,22.3613],[114.04498,22.36132],[114.045,22.3612],[114.04501,22.36118],[114.04506,22.36097],[114.04506,22.36096],[114.04506,22.36096],[114.04507,22.36095],[114.04507,22.36095],[114.04508,22.36094],[114.04508,22.36094],[114.04509,22.36094],[114.0451,22.36094],[114.04513,22.36084],[114.04506,22.36082],[114.04508,22.36075],[114.04519,22.36077],[114.04514,22.36095],[114.04515,22.36095],[114.04516,22.36095],[114.04516,22.36096],[114.04517,22.36097],[114.04517,22.36098],[114.04517,22.36099],[114.04516,22.36102],[114.04521,22.36104],[114.04519,22.36111],[114.04515,22.3611],[114.04512,22.36121],[114.04512,22.36123],[114.0451,22.36132],[114.04512,22.36133],[114.04511,22.36137],[114.04519,22.36136],[114.04534,22.36129],[114.04547,22.3612],[114.0456,22.36118],[114.04566,22.36118],[114.04572,22.36118],[114.0458,22.3612],[114.04595,22.36121],[114.04646,22.36102],[114.04668,22.36096],[114.04694,22.3609],[114.04697,22.3609],[114.04721,22.3609],[114.04724,22.36089],[114.04725,22.36083],[114.04725,22.36082],[114.04717,22.36077],[114.04716,22.36075],[114.04705,22.36068],[114.04704,22.36067],[114.04702,22.36063],[114.047,22.36058],[114.04697,22.36052],[114.04697,22.36051],[114.04698,22.3605],[114.04706,22.36047],[114.04709,22.36043],[114.04712,22.36042],[114.0471,22.36039],[114.04716,22.36037],[114.04723,22.36039],[114.04724,22.36044],[114.04728,22.36046],[114.04737,22.3605],[114.04738,22.3605],[114.0474,22.36048],[114.04743,22.36047],[114.04745,22.36047],[114.04747,22.36047],[114.04748,22.36048],[114.04749,22.36049],[114.04749,22.3605],[114.04747,22.36052],[114.04746,22.36054],[114.04745,22.36056],[114.04745,22.36058],[114.04746,22.3606],[114.0475,22.36063],[114.04761,22.36071],[114.04763,22.36072],[114.04765,22.36072],[114.04766,22.36069],[114.04774,22.36063],[114.04778,22.3606],[114.04784,22.36058],[114.04791,22.36056],[114.04795,22.36056],[114.04798,22.36057],[114.048,22.36058],[114.04802,22.3606],[114.04804,22.36061],[114.04804,22.36063],[114.04805,22.36065],[114.04805,22.36068],[114.04805,22.3607],[114.04802,22.36076],[114.04813,22.36084],[114.04825,22.36092],[114.04838,22.36091],[114.04843,22.36092],[114.04847,22.36094],[114.04847,22.361],[114.04865,22.36104],[114.04872,22.36106],[114.04876,22.36104],[114.04885,22.36107],[114.0489,22.3611],[114.04903,22.36113],[114.04912,22.36116],[114.04919,22.36116],[114.04933,22.36117],[114.04934,22.36122],[114.04938,22.36126],[114.04945,22.36129],[114.04953,22.36133],[114.04957,22.36136],[114.04962,22.36137],[114.04966,22.36134],[114.04972,22.36136],[114.04978,22.36138],[114.04986,22.36142],[114.04991,22.36144],[114.05001,22.36147],[114.05003,22.36146],[114.05007,22.36148],[114.05025,22.36157],[114.0503,22.36161],[114.05029,22.36168],[114.05048,22.36179],[114.05056,22.36183],[114.05075,22.36201],[114.05089,22.36207],[114.05098,22.36212],[114.05102,22.36213],[114.05126,22.3622],[114.05133,22.36221],[114.05135,22.36213],[114.05147,22.36215],[114.05146,22.3622],[114.05153,22.36217],[114.05155,22.36217],[114.05155,22.36218],[114.05156,22.36219],[114.05156,22.36227],[114.05156,22.36229],[114.05163,22.36233],[114.05184,22.36241],[114.05198,22.3622],[114.05217,22.36218],[114.05222,22.36221],[114.05232,22.36221],[114.05236,22.36216],[114.0524,22.36214],[114.05246,22.36219],[114.05264,22.36216],[114.05294,22.36222],[114.05298,22.36226],[114.05302,22.3623],[114.05305,22.36236],[114.05306,22.36275],[114.05322,22.36285],[114.05344,22.3628],[114.05354,22.3628],[114.05356,22.36287],[114.05372,22.36291],[114.05385,22.363],[114.05394,22.3631],[114.05393,22.36318],[114.05397,22.36321],[114.054,22.36321],[114.05404,22.36322],[114.05406,22.36327],[114.05407,22.36328],[114.05429,22.36346],[114.0544,22.36351],[114.05451,22.36357],[114.05449,22.3636],[114.05463,22.3638],[114.05466,22.36384],[114.05485,22.36401],[114.05504,22.36417],[114.05506,22.36416],[114.05507,22.36415],[114.0551,22.36414],[114.05512,22.36415],[114.05517,22.36416],[114.05523,22.36419],[114.05528,22.3642],[114.05531,22.36422],[114.05535,22.36423],[114.05537,22.36426],[114.0554,22.36429],[114.05546,22.36435],[114.05549,22.3644],[114.05552,22.36447],[114.05555,22.3645],[114.05561,22.36454],[114.05576,22.36466],[114.05583,22.36471],[114.05612,22.36487],[114.05623,22.36493],[114.05649,22.36503],[114.0566,22.36508],[114.05686,22.36519],[114.05704,22.36484],[114.05706,22.3648],[114.0571,22.36482],[114.05708,22.36486],[114.0569,22.36521],[114.05735,22.36538],[114.05745,22.36543],[114.05754,22.36547],[114.05765,22.36553],[114.05769,22.36555],[114.05791,22.36511],[114.05788,22.3651],[114.05793,22.36499],[114.05814,22.36508],[114.05809,22.36519],[114.05796,22.36513],[114.05773,22.36559],[114.05776,22.3656],[114.05828,22.36586],[114.05829,22.36585],[114.05832,22.36581],[114.05833,22.3658],[114.05834,22.3658],[114.05841,22.36583],[114.05975,22.36628],[114.05984,22.36628],[114.05989,22.36628],[114.05995,22.3663],[114.05999,22.36632],[114.06001,22.36633],[114.06003,22.36634],[114.06003,22.36636],[114.06004,22.36638],[114.06027,22.36647],[114.06077,22.36534],[114.06216,22.36541],[114.06303,22.36545],[114.06303,22.36533],[114.06303,22.36527],[114.06303,22.36525],[114.06305,22.36523],[114.06309,22.36523],[114.06315,22.36523],[114.06338,22.36522],[114.06349,22.36522],[114.06354,22.3652],[114.06356,22.3652],[114.06359,22.36518],[114.06365,22.36514],[114.06367,22.36512],[114.0637,22.3651],[114.06372,22.36507],[114.06407,22.36455],[114.06441,22.36404],[114.06444,22.36401],[114.06445,22.364],[114.06446,22.36399],[114.06447,22.36399],[114.06452,22.36397],[114.06457,22.36396],[114.06465,22.36395],[114.06472,22.36395],[114.06481,22.36394],[114.06489,22.36394],[114.06551,22.36395],[114.06563,22.36395],[114.06569,22.36396],[114.06577,22.36396],[114.06579,22.36397],[114.06585,22.36398],[114.06588,22.36398],[114.06593,22.364],[114.06597,22.36402],[114.06605,22.36397],[114.06626,22.36385],[114.06652,22.36372],[114.06653,22.3637],[114.06656,22.36364],[114.06656,22.36355],[114.06678,22.36339],[114.06685,22.3634],[114.06687,22.36343],[114.06686,22.36347],[114.06707,22.3635],[114.06717,22.36348],[114.06726,22.36346],[114.06733,22.36345],[114.06757,22.36342],[114.06761,22.36342],[114.06767,22.36342],[114.06773,22.36337],[114.06778,22.36333],[114.06785,22.36331],[114.06786,22.3633],[114.06789,22.36329],[114.06797,22.36332],[114.06809,22.36328],[114.06812,22.36327],[114.06814,22.36326],[114.06817,22.36325],[114.0682,22.36324],[114.06823,22.36324],[114.06825,22.36325],[114.06826,22.36326],[114.06826,22.36328],[114.06827,22.36329],[114.06828,22.36331],[114.06826,22.36341],[114.06829,22.36345],[114.0685,22.36355],[114.06858,22.36358],[114.06862,22.36358],[114.06862,22.36357],[114.06862,22.36355],[114.06862,22.36354],[114.06865,22.36352],[114.06868,22.36351],[114.06873,22.36351],[114.06876,22.36351],[114.06877,22.36352],[114.06876,22.36355],[114.06881,22.36357],[114.06891,22.36358],[114.06898,22.36357],[114.06907,22.36357],[114.06909,22.3636],[114.06912,22.36363],[114.06913,22.36367],[114.06915,22.36376],[114.06914,22.36388],[114.06911,22.36393],[114.06908,22.36397],[114.0693,22.36409],[114.06967,22.36393],[114.06987,22.36389],[114.07006,22.36381],[114.07026,22.36379],[114.07058,22.36361],[114.07077,22.36356],[114.07096,22.3636],[114.071,22.36386],[114.07112,22.3639],[114.07165,22.3639],[114.07165,22.36399],[114.07135,22.36399],[114.07135,22.36393],[114.07114,22.36393],[114.07114,22.36403],[114.07104,22.36421],[114.07079,22.36441],[114.07089,22.3649],[114.0713,22.36527],[114.07158,22.36525],[114.07173,22.36531],[114.07174,22.36535],[114.07187,22.36538],[114.07201,22.3655],[114.07233,22.36553],[114.07252,22.36563],[114.07258,22.36573],[114.07249,22.36597],[114.07269,22.3661],[114.07276,22.36604],[114.07279,22.36603],[114.07282,22.36604],[114.07288,22.36607],[114.07292,22.36607],[114.07299,22.36612],[114.07306,22.36621],[114.07309,22.36618],[114.07311,22.3662],[114.07313,22.36619],[114.07316,22.36622],[114.07312,22.36626],[114.07317,22.36634],[114.07348,22.36659],[114.07365,22.36684],[114.07388,22.36704],[114.07398,22.36709],[114.07403,22.3671],[114.07407,22.36711],[114.07414,22.36709],[114.07424,22.36713],[114.07424,22.36713],[114.07425,22.36714],[114.07425,22.36714],[114.07424,22.36715],[114.07423,22.36717],[114.07423,22.36718],[114.07422,22.36719],[114.07422,22.36721],[114.07423,22.36723],[114.07425,22.36725],[114.07436,22.36732],[114.07448,22.36745],[114.07453,22.36748],[114.07459,22.36751],[114.07464,22.36752],[114.07469,22.36753],[114.07506,22.36758],[114.07508,22.36756],[114.07511,22.36753],[114.07513,22.36751],[114.07515,22.36748],[114.07517,22.36747],[114.0752,22.36747],[114.07541,22.36753],[114.07548,22.36759],[114.07548,22.3677],[114.076,22.36772],[114.07699,22.36765],[114.07721,22.36768],[114.07732,22.36774],[114.07748,22.36744],[114.07775,22.36709],[114.07793,22.36704],[114.07852,22.36688],[114.07863,22.36685],[114.07905,22.36724],[114.0791,22.36722],[114.07914,22.36722],[114.0792,22.36723],[114.07923,22.36724],[114.0793,22.36729],[114.07941,22.36746],[114.07934,22.36754],[114.07946,22.36762],[114.07955,22.36779],[114.07933,22.36816],[114.07926,22.36824],[114.07917,22.36834],[114.07912,22.36841],[114.07911,22.36845],[114.07908,22.3686],[114.0791,22.36869],[114.07912,22.36871],[114.07913,22.36873],[114.07961,22.36902],[114.07984,22.36912],[114.08018,22.36919],[114.08047,22.36923],[114.08067,22.36925],[114.08092,22.36925],[114.08106,22.36924],[114.08111,22.36923],[114.08124,22.36919],[114.08127,22.36919],[114.08129,22.36918],[114.0813,22.36918],[114.08132,22.36918],[114.08136,22.36918],[114.08138,22.36918],[114.08139,22.36918],[114.08142,22.36917],[114.08149,22.36915],[114.08152,22.36914],[114.08153,22.36914],[114.08155,22.36914],[114.08157,22.36914],[114.08159,22.36914],[114.08161,22.36914],[114.08165,22.36914],[114.08179,22.36909],[114.08178,22.36907],[114.0818,22.36906],[114.08213,22.3689],[114.08216,22.36896],[114.08245,22.36881],[114.08254,22.36876],[114.08266,22.3687],[114.08268,22.36869],[114.0827,22.36868],[114.08286,22.3686],[114.08306,22.3685],[114.08309,22.36849],[114.08302,22.36838],[114.08305,22.36837],[114.08308,22.36842],[114.08319,22.36839],[114.08344,22.36829],[114.08348,22.36827],[114.08358,22.36823],[114.08367,22.36818],[114.08371,22.36815],[114.08376,22.36812],[114.08384,22.36808],[114.08392,22.36801],[114.08386,22.36796],[114.08395,22.36788],[114.08403,22.36798],[114.08407,22.36795],[114.08405,22.36789],[114.08409,22.36787],[114.08425,22.36777],[114.08428,22.36777],[114.08429,22.36779],[114.08444,22.36766],[114.08454,22.3676],[114.08468,22.36753],[114.08488,22.36746],[114.08487,22.3674],[114.08492,22.36739],[114.08496,22.36743],[114.08498,22.36744],[114.08497,22.36745],[114.08544,22.36741],[114.08564,22.36741],[114.0857,22.36743],[114.08572,22.36748],[114.08595,22.36753],[114.0866,22.36737],[114.08689,22.36733],[114.08703,22.36735],[114.08723,22.36732],[114.08732,22.36728],[114.08734,22.36729],[114.08735,22.3673],[114.08736,22.36732],[114.08786,22.36731],[114.08798,22.36729],[114.08815,22.36731],[114.08825,22.36727],[114.0885,22.36725],[114.08878,22.36725],[114.08896,22.36727],[114.08916,22.36729],[114.08925,22.36731],[114.08932,22.36732],[114.08946,22.36727],[114.08953,22.36727],[114.08958,22.36729],[114.08973,22.36725],[114.08982,22.36724],[114.08992,22.36724],[114.09009,22.36729],[114.09028,22.36728],[114.09059,22.36728],[114.09067,22.36727],[114.09076,22.36725],[114.0909,22.36727],[114.09088,22.36724],[114.0909,22.3672],[114.09092,22.36719],[114.09094,22.36718],[114.09096,22.36717],[114.09097,22.36717],[114.09099,22.36717],[114.091,22.36718],[114.091,22.36718],[114.09102,22.36721],[114.09103,22.36723],[114.09112,22.3672],[114.09115,22.36719],[114.09119,22.36719],[114.09124,22.36719],[114.09129,22.36721],[114.09133,22.36724],[114.09141,22.36725],[114.09147,22.36732],[114.09196,22.36741],[114.09201,22.36739],[114.09208,22.36717],[114.09213,22.36719],[114.09206,22.36739],[114.09227,22.36745],[114.09244,22.36749],[114.09265,22.36756],[114.09277,22.3676],[114.09281,22.36762],[114.09287,22.36766],[114.09291,22.3677],[114.09299,22.36779],[114.09328,22.36781],[114.09328,22.3678],[114.09331,22.36779],[114.09335,22.36777],[114.0934,22.36776],[114.09347,22.36774],[114.09359,22.36773],[114.0936,22.36773],[114.09361,22.36773],[114.09363,22.36773],[114.09364,22.36774],[114.09365,22.36775],[114.09365,22.36775],[114.09366,22.36776],[114.0937,22.36775],[114.0937,22.36775],[114.09371,22.36774],[114.09371,22.36774],[114.09372,22.36773],[114.09373,22.36773],[114.09375,22.36773],[114.09375,22.36773],[114.09376,22.36774],[114.0938,22.36773],[114.0938,22.36774],[114.09381,22.36775],[114.09382,22.36776],[114.09382,22.36777],[114.09383,22.36778],[114.09383,22.36779],[114.09382,22.36781],[114.09382,22.36782],[114.09383,22.36787],[114.09403,22.36783],[114.09407,22.36782],[114.09412,22.36782],[114.09417,22.36783],[114.09423,22.36785],[114.09427,22.36787],[114.09428,22.36787],[114.0944,22.36787],[114.09453,22.36788],[114.09468,22.36796],[114.09485,22.36801],[114.09507,22.36805],[114.09522,22.36806],[114.09536,22.36807],[114.09602,22.36815],[114.0964,22.36816],[114.09659,22.36815],[114.09691,22.36813],[114.09702,22.36813],[114.09721,22.36812],[114.09738,22.36813],[114.0974,22.36814],[114.09743,22.36815],[114.09743,22.36816],[114.09747,22.36818],[114.09756,22.36817],[114.09761,22.36818],[114.09766,22.36816],[114.09771,22.36815],[114.09777,22.36817],[114.09781,22.36818],[114.09785,22.3682],[114.09789,22.36821],[114.09794,22.36823],[114.09801,22.36824],[114.09806,22.36824],[114.09811,22.36825],[114.09816,22.36825],[114.0982,22.36824],[114.09823,22.36822],[114.0983,22.36827],[114.0984,22.36833],[114.09849,22.36823],[114.09853,22.36819],[114.09858,22.36822],[114.09854,22.36827],[114.09847,22.36833],[114.09861,22.36838],[114.09869,22.36841],[114.09871,22.36842],[114.09873,22.36843],[114.09875,22.36845],[114.09877,22.36847],[114.09878,22.36849],[114.09916,22.3685],[114.1002,22.36929],[114.10026,22.3693],[114.10032,22.36933],[114.10145,22.37018],[114.10296,22.37134],[114.10298,22.37136],[114.10301,22.37143],[114.10401,22.37218],[114.10556,22.37201],[114.10801,22.3697],[114.10798,22.36955],[114.10797,22.36929],[114.10799,22.36915],[114.10795,22.36912],[114.10796,22.369],[114.108,22.36885],[114.10809,22.3686],[114.10822,22.36838],[114.10841,22.36815],[114.10845,22.36811],[114.10858,22.36799],[114.10869,22.3679],[114.10894,22.36775],[114.10879,22.36746],[114.10886,22.36743],[114.10901,22.36771],[114.10924,22.36762],[114.10954,22.36748],[114.11007,22.36721],[114.11,22.36711],[114.11019,22.36697],[114.11027,22.36707],[114.11061,22.3668],[114.11059,22.36677],[114.11048,22.36686],[114.11046,22.36684],[114.11057,22.36675],[114.11054,22.36672],[114.11076,22.36654],[114.11079,22.36657],[114.1109,22.36648],[114.11092,22.3665],[114.11081,22.36659],[114.11083,22.36661],[114.11115,22.36632],[114.11137,22.36611],[114.11188,22.36553],[114.11201,22.36536],[114.11228,22.36493],[114.11239,22.36471],[114.11241,22.36464],[114.11238,22.36443],[114.11234,22.36428],[114.11237,22.36423],[114.11163,22.36249],[114.11141,22.36202],[114.11138,22.36192],[114.11137,22.36182],[114.11137,22.36169],[114.11142,22.36146],[114.11141,22.36144],[114.11143,22.36135],[114.1114,22.36122],[114.11144,22.3612],[114.11162,22.36038],[114.11164,22.36028],[114.11172,22.3603],[114.11265,22.36046],[114.11283,22.3605],[114.11323,22.36059],[114.11339,22.36065],[114.11352,22.36069],[114.11365,22.36075],[114.11388,22.36085],[114.11409,22.36097],[114.11445,22.3612],[114.11516,22.36173],[114.1155,22.36198],[114.11575,22.36214],[114.11715,22.36286],[114.11763,22.36309],[114.11768,22.36312],[114.11771,22.36313],[114.11803,22.36326],[114.11851,22.36342],[114.11887,22.36352],[114.11916,22.36361],[114.11944,22.36372],[114.11966,22.36383],[114.11979,22.36393],[114.11989,22.36402],[114.11999,22.36413],[114.1201,22.36427],[114.12016,22.36434],[114.12025,22.36445],[114.12064,22.36493],[114.12084,22.36524],[114.12089,22.36534],[114.12097,22.36548],[114.12106,22.36573],[114.12113,22.36597],[114.12115,22.36604],[114.12129,22.36667],[114.12138,22.36693],[114.12147,22.36713],[114.12149,22.36718],[114.12165,22.36744],[114.12198,22.36793],[114.12207,22.36806],[114.12234,22.3685],[114.12239,22.36858],[114.12295,22.36939],[114.12318,22.36979],[114.12326,22.36995],[114.12332,22.37012],[114.12333,22.37016],[114.12339,22.37037],[114.12341,22.37049],[114.12341,22.37051],[114.12344,22.3707],[114.12345,22.37081],[114.12345,22.37089],[114.12344,22.37106],[114.12343,22.37128],[114.12343,22.37129],[114.12341,22.37146],[114.12337,22.37168],[114.1233,22.3721],[114.12325,22.37228],[114.12325,22.37228],[114.12325,22.37228],[114.12382,22.37253],[114.1241,22.37264],[114.12423,22.3727],[114.12435,22.37275],[114.12446,22.3728],[114.1246,22.37286],[114.12476,22.37293],[114.12487,22.37298],[114.12502,22.37304],[114.12524,22.37313],[114.1254,22.3732],[114.12558,22.37328],[114.12583,22.37338],[114.1262,22.37354],[114.1264,22.3734],[114.12714,22.37288],[114.12727,22.37295],[114.12768,22.373],[114.12794,22.37281],[114.12863,22.37293],[114.12923,22.37303],[114.12973,22.37312],[114.12989,22.37315],[114.13002,22.37317],[114.13017,22.3732],[114.13048,22.37318],[114.13069,22.37316],[114.13102,22.37387],[114.13224,22.37342],[114.1326,22.37328],[114.13263,22.37318],[114.13267,22.37312],[114.13278,22.37304],[114.13289,22.373],[114.13302,22.37302],[114.13312,22.37309],[114.13337,22.37328],[114.13348,22.37333],[114.13359,22.37332],[114.13376,22.37328],[114.13391,22.37324],[114.13401,22.37318],[114.13409,22.37306],[114.13417,22.37298],[114.13436,22.37288],[114.13465,22.37279],[114.13475,22.37265],[114.1348,22.37251],[114.13485,22.37228],[114.13486,22.37197],[114.13491,22.37199],[114.13501,22.37201],[114.13509,22.37201],[114.13517,22.372],[114.13523,22.37197],[114.13525,22.37196],[114.13531,22.37193],[114.13537,22.37187],[114.13539,22.37184],[114.13541,22.37182],[114.1355,22.37167],[114.13584,22.3719],[114.13584,22.3719],[114.13598,22.372],[114.13604,22.37204],[114.13609,22.3721],[114.13611,22.37213],[114.13618,22.37223],[114.13632,22.37248],[114.13636,22.37256],[114.13638,22.37279],[114.13638,22.37449],[114.13638,22.37523],[114.13638,22.37561],[114.1364,22.37587],[114.13643,22.37605],[114.1365,22.37631],[114.13651,22.3764],[114.13651,22.37645],[114.13656,22.3766],[114.1372,22.37835],[114.13732,22.37853],[114.13743,22.37881],[114.13747,22.37909],[114.13749,22.37931],[114.13747,22.37947],[114.13744,22.37962],[114.13738,22.37976],[114.13731,22.37989],[114.13725,22.37997],[114.13723,22.38],[114.13713,22.38011],[114.13701,22.38021],[114.13695,22.38024],[114.13684,22.38031],[114.13674,22.38035],[114.13666,22.38038],[114.13647,22.38042],[114.13633,22.38043],[114.13624,22.38043],[114.13599,22.38043],[114.13609,22.3807],[114.13621,22.38099],[114.13635,22.38124],[114.13656,22.38151],[114.13671,22.38168],[114.13712,22.38168],[114.13714,22.38176],[114.13717,22.38184],[114.13722,22.38194],[114.13725,22.38198],[114.13727,22.382],[114.13727,22.382],[114.13731,22.38204],[114.13735,22.38208],[114.13739,22.38211],[114.13743,22.38214],[114.13747,22.38216],[114.13751,22.38218],[114.13754,22.38219],[114.13758,22.3822],[114.13761,22.38221],[114.13764,22.38222],[114.13768,22.38222],[114.13774,22.38223],[114.13778,22.38223],[114.13782,22.38223],[114.13789,22.38222],[114.13796,22.38221],[114.13801,22.3822],[114.13806,22.38218],[114.13832,22.38205],[114.13837,22.38204],[114.13842,22.38202],[114.13847,22.38201],[114.13851,22.382],[114.13856,22.382],[114.1386,22.382],[114.13864,22.382],[114.13869,22.38201],[114.13873,22.38202],[114.1388,22.38203],[114.13886,22.38206],[114.13892,22.38209],[114.13921,22.38229],[114.14115,22.38345],[114.14131,22.38354],[114.14141,22.3836],[114.14144,22.38362],[114.14148,22.38364],[114.14161,22.38369],[114.14171,22.38373],[114.14189,22.3838],[114.14197,22.38383],[114.14216,22.38391],[114.14292,22.38421],[114.14333,22.38441],[114.14342,22.38445],[114.14348,22.38448],[114.14351,22.38449],[114.14356,22.38452],[114.14357,22.38452],[114.1436,22.38452],[114.14379,22.38451],[114.14379,22.38454],[114.1438,22.38454],[114.14379,22.38456],[114.14379,22.38457],[114.14379,22.38458],[114.14378,22.38459],[114.14378,22.3846],[114.14376,22.38461],[114.14376,22.38461],[114.14375,22.38462],[114.14374,22.38463],[114.14373,22.38463],[114.14371,22.38463],[114.1437,22.38464],[114.14368,22.38464],[114.14367,22.38464],[114.14366,22.38464],[114.14364,22.38464],[114.14363,22.38464],[114.14362,22.38464],[114.14346,22.38462],[114.14342,22.38461],[114.14338,22.3846],[114.14335,22.3846],[114.14331,22.38459],[114.14328,22.38458],[114.14324,22.38457],[114.14321,22.38455],[114.14318,22.38454],[114.14316,22.38453],[114.14313,22.38452],[114.14311,22.38451],[114.1431,22.3845],[114.14308,22.3845],[114.14305,22.38449],[114.14304,22.38448],[114.14302,22.38448],[114.143,22.38448],[114.14299,22.38447],[114.14297,22.38447],[114.14295,22.38447],[114.14292,22.38447],[114.14291,22.38447],[114.14289,22.38447],[114.14287,22.38448],[114.14285,22.38448],[114.14284,22.38448],[114.14283,22.38448],[114.14281,22.38449],[114.14281,22.38449],[114.1428,22.38449],[114.1428,22.38449],[114.14201,22.38417],[114.14195,22.38415],[114.14193,22.38415],[114.14191,22.38415],[114.14189,22.38415],[114.14185,22.38415],[114.14181,22.38416],[114.14175,22.38417],[114.14173,22.38417],[114.1417,22.38418],[114.14168,22.3842],[114.14164,22.38421],[114.14162,22.38422],[114.14159,22.38424],[114.14157,22.38425],[114.14155,22.38427],[114.14153,22.38428],[114.14151,22.3843],[114.14149,22.38433],[114.14147,22.38435],[114.14146,22.38437],[114.14144,22.38439],[114.14143,22.38441],[114.14142,22.38443],[114.14141,22.38444],[114.1414,22.38446],[114.14138,22.38453],[114.14138,22.38455],[114.14137,22.38457],[114.14134,22.38462],[114.14133,22.38465],[114.14133,22.38467],[114.14132,22.38472],[114.14131,22.38473],[114.1413,22.38475],[114.14129,22.38477],[114.14127,22.3848],[114.14125,22.38482],[114.14124,22.38484],[114.14122,22.38486],[114.1412,22.38487],[114.14116,22.38489],[114.14098,22.38496],[114.14096,22.385],[114.14095,22.38502],[114.14094,22.38505],[114.14094,22.38508],[114.14093,22.38511],[114.14093,22.38512],[114.14092,22.38514],[114.1409,22.38517],[114.14084,22.38526],[114.14076,22.38536],[114.14069,22.38546],[114.14066,22.38551],[114.14063,22.38555],[114.14061,22.38556],[114.1406,22.38557],[114.1406,22.38557],[114.1406,22.38557],[114.14059,22.38557],[114.14059,22.38557],[114.14058,22.38557],[114.14058,22.38558],[114.14057,22.38558],[114.14057,22.38558],[114.14056,22.38558],[114.14056,22.38558],[114.14055,22.38558],[114.14055,22.38558],[114.14052,22.38558],[114.1405,22.38557],[114.14048,22.38556],[114.14046,22.38554],[114.14044,22.38551],[114.14039,22.38545],[114.14015,22.38513],[114.14007,22.38502],[114.13999,22.38492],[114.13993,22.38484],[114.1399,22.3848],[114.13987,22.38477],[114.13983,22.38474],[114.1398,22.38471],[114.13976,22.38468],[114.13972,22.38466],[114.13967,22.38463],[114.13963,22.38461],[114.13959,22.3846],[114.13955,22.38459],[114.13949,22.38458],[114.13945,22.38458],[114.1394,22.38457],[114.13935,22.38458],[114.13922,22.38459],[114.13901,22.38461],[114.13886,22.38462],[114.13872,22.38463],[114.13858,22.38464],[114.13845,22.38465],[114.13838,22.38466],[114.13833,22.38466],[114.1383,22.38466],[114.13828,22.38466],[114.13825,22.38465],[114.13823,22.38464],[114.13821,22.38463],[114.13818,22.38461],[114.13815,22.38459],[114.13808,22.38453],[114.13786,22.38435],[114.13776,22.38427],[114.1377,22.38422],[114.13766,22.3842],[114.13763,22.38418],[114.13759,22.38416],[114.13753,22.38415],[114.13748,22.38414],[114.13745,22.38414],[114.13741,22.38415],[114.13737,22.38416],[114.13734,22.38417],[114.13731,22.38418],[114.13728,22.3842],[114.13726,22.38421],[114.13724,22.38423],[114.13722,22.38425],[114.1372,22.38428],[114.13718,22.38431],[114.13717,22.38435],[114.13715,22.3844],[114.13713,22.38446],[114.13711,22.3845],[114.13709,22.38453],[114.13707,22.38457],[114.13703,22.3846],[114.137,22.38462],[114.13697,22.38463],[114.13694,22.38464],[114.13688,22.38464],[114.13683,22.38465],[114.13678,22.38466],[114.13675,22.38467],[114.13671,22.38468],[114.13667,22.3847],[114.13664,22.38471],[114.13661,22.38473],[114.13656,22.38477],[114.13646,22.38485],[114.13636,22.38492],[114.13619,22.38505],[114.13607,22.38514],[114.13603,22.38517],[114.13601,22.38519],[114.13598,22.38522],[114.13597,22.38524],[114.13596,22.38526],[114.13595,22.38529],[114.13593,22.38533],[114.13591,22.38538],[114.1359,22.3854],[114.13589,22.38543],[114.13587,22.38545],[114.13587,22.38545],[114.13586,22.38546],[114.13585,22.38546],[114.13584,22.38546],[114.13584,22.38546],[114.13583,22.38546],[114.13583,22.38546],[114.13583,22.38546],[114.13582,22.38546],[114.13582,22.38546],[114.13581,22.38546],[114.13581,22.38546],[114.1358,22.38546],[114.13579,22.38545],[114.13575,22.38543],[114.13569,22.38538],[114.13563,22.38533],[114.13558,22.3853],[114.13553,22.38527],[114.1355,22.38526],[114.13547,22.38525],[114.13544,22.38524],[114.13541,22.38524],[114.13537,22.38523],[114.13533,22.38524],[114.13531,22.38524],[114.13523,22.38525],[114.13519,22.38525],[114.13515,22.38525],[114.13513,22.38525],[114.13512,22.38525],[114.13511,22.38525],[114.13511,22.38525],[114.1351,22.38524],[114.1351,22.38524],[114.13509,22.38524],[114.13509,22.38523],[114.13509,22.38523],[114.13509,22.38523],[114.13508,22.38522],[114.13508,22.38522],[114.13508,22.38521],[114.13508,22.3852],[114.13507,22.38519],[114.13508,22.38517],[114.13508,22.38515],[114.13509,22.38511],[114.1351,22.38508],[114.1351,22.38505],[114.1351,22.38505],[114.1351,22.38503],[114.13509,22.38501],[114.13508,22.38498],[114.13506,22.38494],[114.13504,22.38491],[114.135,22.38485],[114.13496,22.38479],[114.13493,22.38474],[114.1349,22.38469],[114.13486,22.38462],[114.1348,22.38451],[114.13474,22.3844],[114.13472,22.38436],[114.13471,22.38434],[114.1347,22.38431],[114.13469,22.38426],[114.13464,22.38418],[114.13462,22.38418],[114.13459,22.38416],[114.13456,22.38414],[114.13453,22.38413],[114.13449,22.38411],[114.13445,22.3841],[114.13441,22.38409],[114.13438,22.38409],[114.13434,22.38409],[114.13431,22.38409],[114.13426,22.3841],[114.13419,22.38412],[114.134,22.38417],[114.13389,22.3842],[114.1338,22.38422],[114.13376,22.38423],[114.13372,22.38424],[114.13369,22.38424],[114.13366,22.38423],[114.13363,22.38422],[114.13359,22.38421],[114.13355,22.3842],[114.13351,22.38418],[114.13347,22.38417],[114.13344,22.38416],[114.1334,22.38416],[114.13337,22.38416],[114.13332,22.38417],[114.13324,22.38418],[114.13315,22.38419],[114.13311,22.38419],[114.13308,22.38419],[114.13305,22.38419],[114.13303,22.38418],[114.133,22.38417],[114.13298,22.38416],[114.13294,22.38414],[114.13291,22.38413],[114.13288,22.38411],[114.13284,22.3841],[114.13281,22.38409],[114.13278,22.38409],[114.13275,22.38408],[114.1327,22.38405],[114.13261,22.38402],[114.13255,22.38404],[114.1325,22.38403],[114.13244,22.38402],[114.13237,22.384],[114.13231,22.38398],[114.13231,22.38398],[114.1323,22.38397],[114.1323,22.38397],[114.13229,22.38397],[114.13229,22.38397],[114.13228,22.38396],[114.13228,22.38396],[114.13228,22.38396],[114.13227,22.38396],[114.13227,22.38395],[114.13227,22.38395],[114.13226,22.38395],[114.13226,22.38394],[114.13226,22.38394],[114.13225,22.38392],[114.13224,22.3839],[114.13223,22.38388],[114.13223,22.38385],[114.13223,22.38383],[114.13223,22.3838],[114.13223,22.38377],[114.13223,22.38374],[114.13222,22.38371],[114.1322,22.38367],[114.13219,22.38365],[114.13217,22.38362],[114.13215,22.3836],[114.13214,22.38359],[114.13211,22.38357],[114.13209,22.38356],[114.13205,22.38353],[114.13202,22.38351],[114.13199,22.38349],[114.13197,22.38348],[114.13194,22.38345],[114.13192,22.38342],[114.1319,22.38338],[114.13189,22.38334],[114.13188,22.38334],[114.13186,22.38329],[114.13184,22.38322],[114.13181,22.38316],[114.13178,22.38313],[114.13176,22.3831],[114.13174,22.38308],[114.13171,22.38305],[114.13168,22.38303],[114.13164,22.38302],[114.13162,22.38301],[114.1316,22.38301],[114.13156,22.383],[114.13151,22.38299],[114.13147,22.38298],[114.13142,22.38298],[114.13138,22.38298],[114.13135,22.38298],[114.13131,22.38299],[114.13128,22.38299],[114.13125,22.383],[114.13122,22.38302],[114.13118,22.38305],[114.13117,22.38306],[114.13115,22.38308],[114.13114,22.3831],[114.13111,22.38312],[114.13109,22.38315],[114.13106,22.38317],[114.13104,22.38319],[114.131,22.38321],[114.13096,22.38322],[114.13092,22.38323],[114.13088,22.38324],[114.13084,22.38325],[114.13079,22.38325],[114.13074,22.38326],[114.1307,22.38325],[114.13068,22.38325],[114.13064,22.38324],[114.13061,22.38323],[114.13059,22.38322],[114.13058,22.38321],[114.13058,22.3832],[114.13056,22.38319],[114.13052,22.38315],[114.13044,22.38307],[114.1304,22.38304],[114.13039,22.38303],[114.13037,22.38302],[114.13035,22.38301],[114.13031,22.383],[114.13028,22.383],[114.13025,22.38299],[114.13024,22.38299],[114.13021,22.383],[114.13018,22.38301],[114.13014,22.38302],[114.13012,22.38303],[114.13009,22.38305],[114.13008,22.38307],[114.12983,22.38322],[114.12976,22.38324],[114.12957,22.38328],[114.12949,22.3833],[114.12943,22.38331],[114.12938,22.38332],[114.12933,22.38334],[114.12929,22.38336],[114.12925,22.38338],[114.12923,22.3834],[114.1292,22.38343],[114.12919,22.38345],[114.12917,22.38347],[114.12916,22.38349],[114.12914,22.38351],[114.12913,22.38353],[114.12911,22.38355],[114.12909,22.38357],[114.12907,22.38358],[114.12907,22.38358],[114.12907,22.38358],[114.12906,22.38358],[114.12906,22.38359],[114.12905,22.38359],[114.12905,22.38359],[114.12904,22.38359],[114.12904,22.38359],[114.12903,22.38359],[114.12903,22.38359],[114.12902,22.38359],[114.12902,22.38359],[114.12899,22.38359],[114.12895,22.38358],[114.1289,22.38357],[114.12887,22.38357],[114.12881,22.38355],[114.12871,22.38352],[114.12861,22.38349],[114.12844,22.38344],[114.12835,22.38341],[114.12827,22.38338],[114.1282,22.38336],[114.12815,22.38334],[114.12812,22.38333],[114.12809,22.38331],[114.12806,22.3833],[114.12801,22.38327],[114.12794,22.38323],[114.12783,22.38317],[114.12778,22.38315],[114.12773,22.38313],[114.1277,22.38312],[114.12766,22.38311],[114.12763,22.3831],[114.12759,22.3831],[114.12756,22.3831],[114.12751,22.38311],[114.12747,22.38312],[114.12744,22.38313],[114.1274,22.38314],[114.12738,22.38316],[114.12735,22.38317],[114.12731,22.3832],[114.12728,22.38322],[114.12726,22.38325],[114.12723,22.38327],[114.12721,22.38329],[114.1272,22.38329],[114.1272,22.3833],[114.1272,22.3833],[114.12719,22.3833],[114.12719,22.38331],[114.12719,22.38331],[114.12719,22.38331],[114.12719,22.38332],[114.12718,22.38332],[114.12718,22.38333],[114.12718,22.38333],[114.12718,22.38334],[114.12718,22.38334],[114.12718,22.38335],[114.12717,22.38337],[114.12717,22.3834],[114.12717,22.38342],[114.12717,22.38343],[114.12718,22.38346],[114.12718,22.38347],[114.12719,22.38348],[114.12719,22.3835],[114.1272,22.38352],[114.12721,22.38354],[114.12723,22.38362],[114.12734,22.38409],[114.12736,22.38417],[114.12737,22.38421],[114.12738,22.38425],[114.12738,22.38428],[114.12738,22.3843],[114.12738,22.38434],[114.12738,22.38437],[114.12737,22.38442],[114.12736,22.38447],[114.12735,22.38451],[114.12734,22.38455],[114.12732,22.3846],[114.1273,22.38466],[114.12727,22.38475],[114.12724,22.38483],[114.12723,22.38486],[114.12722,22.38488],[114.12721,22.3849],[114.1272,22.38491],[114.12718,22.38492],[114.12718,22.38492],[114.12717,22.38493],[114.12717,22.38493],[114.12717,22.38493],[114.12716,22.38493],[114.12716,22.38494],[114.12715,22.38494],[114.12715,22.38494],[114.12714,22.38494],[114.12714,22.38494],[114.12712,22.38495],[114.12711,22.38495],[114.12711,22.38495],[114.1271,22.38495],[114.1271,22.38495],[114.12709,22.38495],[114.12709,22.38495],[114.12708,22.38495],[114.12708,22.38495],[114.12706,22.38494],[114.12703,22.38493],[114.12701,22.38492],[114.12699,22.38491],[114.12698,22.38491],[114.12698,22.38491],[114.12697,22.38491],[114.12697,22.38491],[114.12696,22.38491],[114.12696,22.38491],[114.12695,22.38491],[114.12695,22.38491],[114.12694,22.38491],[114.12694,22.38491],[114.12693,22.38491],[114.12693,22.38491],[114.12692,22.38491],[114.1269,22.38492],[114.12687,22.38493],[114.12684,22.38494],[114.12682,22.38495],[114.12667,22.38494],[114.12662,22.38494],[114.12659,22.38494],[114.12656,22.38495],[114.12653,22.38495],[114.12651,22.38496],[114.12649,22.38496],[114.12647,22.38497],[114.12644,22.38499],[114.12641,22.38501],[114.12638,22.38503],[114.12636,22.38505],[114.12634,22.38508],[114.12632,22.3851],[114.1263,22.38513],[114.12629,22.38515],[114.12626,22.3852],[114.12625,22.38522],[114.12624,22.38526],[114.12623,22.38529],[114.12622,22.38532],[114.12622,22.38535],[114.12622,22.38539],[114.12621,22.38543],[114.12621,22.38546],[114.12621,22.3855],[114.1262,22.38554],[114.12619,22.38557],[114.12618,22.38563],[114.12617,22.38568],[114.12616,22.38572],[114.12614,22.38577],[114.12613,22.38581],[114.12612,22.38584],[114.12611,22.38588],[114.1261,22.38591],[114.12609,22.38594],[114.12608,22.38598],[114.12607,22.38602],[114.12607,22.38606],[114.12607,22.38609],[114.12607,22.38609],[114.12607,22.3861],[114.12607,22.3861],[114.12607,22.38611],[114.12607,22.38611],[114.12607,22.38612],[114.12607,22.38612],[114.12607,22.38613],[114.12607,22.38613],[114.12607,22.38614],[114.12608,22.38614],[114.12608,22.38614],[114.12608,22.38615],[114.12608,22.38615],[114.12608,22.38617],[114.12609,22.38621],[114.12618,22.38648],[114.12623,22.38667],[114.12627,22.38678],[114.12627,22.38679],[114.12629,22.38686],[114.1263,22.3869],[114.1263,22.38692],[114.1263,22.38694],[114.1263,22.38696],[114.1263,22.38698],[114.12629,22.38698],[114.12629,22.38699],[114.12629,22.38699],[114.12629,22.387],[114.12629,22.387],[114.12628,22.387],[114.12628,22.38701],[114.12628,22.38701],[114.12627,22.38701],[114.12627,22.38702],[114.12627,22.38702],[114.12626,22.38702],[114.12625,22.38703],[114.12623,22.38703],[114.12621,22.38704],[114.1262,22.38704],[114.1262,22.38704],[114.12618,22.38704],[114.12617,22.38704],[114.12616,22.38704],[114.12613,22.38704],[114.12611,22.38703],[114.12609,22.38702],[114.12606,22.38701],[114.12603,22.387],[114.126,22.38699],[114.12596,22.38698],[114.12591,22.38697],[114.12586,22.38697],[114.12582,22.38697],[114.1258,22.38697],[114.12578,22.38697],[114.12576,22.38697],[114.12574,22.38697],[114.12573,22.38696],[114.12572,22.38696],[114.12571,22.38696],[114.12569,22.38697],[114.12565,22.38698],[114.12563,22.38699],[114.12561,22.387],[114.12559,22.38702],[114.12558,22.38703],[114.12556,22.38704],[114.12554,22.38705],[114.12553,22.38705],[114.12552,22.38706],[114.12549,22.38708],[114.12548,22.38709],[114.12547,22.3871],[114.12545,22.38711],[114.12543,22.38713],[114.12542,22.38715],[114.1254,22.38717],[114.12538,22.38719],[114.12536,22.38721],[114.12535,22.38723],[114.12533,22.38725],[114.12532,22.38727],[114.1253,22.38729],[114.12527,22.38731],[114.12525,22.38732],[114.12522,22.38734],[114.1252,22.38734],[114.1252,22.38734],[114.12519,22.38734],[114.12519,22.38734],[114.12518,22.38734],[114.12518,22.38734],[114.12517,22.38734],[114.12517,22.38734],[114.12516,22.38734],[114.12516,22.38733],[114.12515,22.38733],[114.12514,22.38732],[114.12513,22.38732],[114.12511,22.3873],[114.12508,22.38728],[114.12505,22.38726],[114.12503,22.38724],[114.125,22.38722],[114.12498,22.38721],[114.12495,22.3872],[114.12493,22.38719],[114.12491,22.38719],[114.12487,22.38718],[114.12485,22.38718],[114.12483,22.38718],[114.1248,22.38718],[114.12479,22.38718],[114.12477,22.38717],[114.12474,22.38717],[114.12472,22.38718],[114.1247,22.38718],[114.12469,22.38718],[114.12469,22.38719],[114.12468,22.38719],[114.12468,22.38719],[114.12467,22.38719],[114.12467,22.3872],[114.12467,22.3872],[114.12466,22.3872],[114.12466,22.3872],[114.12465,22.38721],[114.12465,22.38721],[114.12463,22.38723],[114.12462,22.38724],[114.12461,22.38726],[114.12459,22.38729],[114.12456,22.38732],[114.12453,22.38736],[114.1245,22.38739],[114.12447,22.38743],[114.12444,22.38748],[114.12441,22.38753],[114.12438,22.38758],[114.12435,22.38763],[114.12435,22.38764],[114.12433,22.38769],[114.12432,22.3877],[114.12429,22.38777],[114.12426,22.38785],[114.12424,22.38791],[114.12422,22.38796],[114.1242,22.388],[114.12419,22.38801],[114.12419,22.38803],[114.12418,22.38804],[114.12417,22.38805],[114.12414,22.38808],[114.12413,22.38809],[114.12412,22.38809],[114.12411,22.3881],[114.12409,22.3881],[114.12407,22.38811],[114.12406,22.38811],[114.12402,22.38813],[114.12396,22.38815],[114.1239,22.38817],[114.1238,22.3882],[114.12367,22.38824],[114.12359,22.38827],[114.12349,22.3883],[114.12345,22.38831],[114.12341,22.38832],[114.12339,22.38833],[114.12337,22.38833],[114.12334,22.38833],[114.12332,22.38832],[114.1233,22.38832],[114.12329,22.38831],[114.12328,22.3883],[114.12326,22.38829],[114.12311,22.38818],[114.12306,22.38811],[114.12303,22.38809],[114.12301,22.38812],[114.123,22.38811],[114.12299,22.3881],[114.12297,22.38809],[114.12296,22.38808],[114.12294,22.38807],[114.12292,22.38807],[114.12291,22.38806],[114.12289,22.38806],[114.12286,22.38805],[114.12284,22.38805],[114.12282,22.38805],[114.12278,22.38805],[114.12274,22.38805],[114.12269,22.38805],[114.12263,22.38806],[114.12255,22.38806],[114.12254,22.38806],[114.12253,22.38806],[114.12251,22.38806],[114.1225,22.38806],[114.12249,22.38806],[114.12248,22.38806],[114.12247,22.38806],[114.12246,22.38805],[114.12245,22.38805],[114.12243,22.38804],[114.12242,22.38803],[114.1224,22.38802],[114.12239,22.38801],[114.12238,22.388],[114.12236,22.38799],[114.12235,22.38797],[114.12233,22.38795],[114.12232,22.38792],[114.12227,22.38785],[114.12222,22.38776],[114.12221,22.38774],[114.1222,22.38773],[114.12219,22.38772],[114.12217,22.38771],[114.12216,22.3877],[114.12214,22.38769],[114.12213,22.38768],[114.12211,22.38768],[114.12209,22.38767],[114.12207,22.38766],[114.12206,22.38766],[114.12204,22.38765],[114.12203,22.38764],[114.12198,22.38763],[114.12196,22.38761],[114.12195,22.3876],[114.12194,22.38759],[114.12193,22.38758],[114.12193,22.38757],[114.12192,22.38755],[114.12191,22.38753],[114.12191,22.38751],[114.12191,22.38751],[114.12191,22.38751],[114.12191,22.3875],[114.12191,22.38748],[114.12191,22.38747],[114.12191,22.38746],[114.12191,22.38745],[114.12192,22.38744],[114.12192,22.38743],[114.12192,22.38742],[114.12193,22.38741],[114.12195,22.38737],[114.12195,22.38735],[114.12196,22.38732],[114.12197,22.38732],[114.12198,22.38728],[114.12198,22.38727],[114.12198,22.38726],[114.12198,22.38725],[114.12198,22.38723],[114.12198,22.38721],[114.12197,22.38716],[114.12196,22.38715],[114.12196,22.38714],[114.12196,22.38713],[114.12195,22.38713],[114.12195,22.38711],[114.12194,22.3871],[114.12193,22.38709],[114.12192,22.38707],[114.12192,22.38707],[114.12191,22.38706],[114.12191,22.38706],[114.1219,22.38705],[114.12189,22.38704],[114.12189,22.38703],[114.12188,22.38703],[114.12187,22.38702],[114.12184,22.38699],[114.12183,22.38698],[114.12183,22.38698],[114.12182,22.38697],[114.12182,22.38697],[114.12181,22.38697],[114.1218,22.38696],[114.12178,22.38694],[114.12178,22.38694],[114.12177,22.38694],[114.12176,22.38693],[114.12175,22.38692],[114.12175,22.38692],[114.12173,22.38691],[114.12171,22.3869],[114.12171,22.38689],[114.12169,22.38688],[114.12168,22.38688],[114.1216,22.38683],[114.12159,22.38683],[114.12159,22.38682],[114.12158,22.38682],[114.12157,22.38681],[114.12156,22.3868],[114.12155,22.3868],[114.12153,22.38679],[114.12153,22.38678],[114.12152,22.38677],[114.12151,22.38677],[114.12149,22.38675],[114.12143,22.3867],[114.12141,22.38669],[114.1214,22.38668],[114.12138,22.38667],[114.12137,22.38666],[114.12134,22.38664],[114.12133,22.38663],[114.12133,22.38663],[114.12131,22.38661],[114.12129,22.3866],[114.12128,22.3866],[114.12127,22.38659],[114.12126,22.38658],[114.12125,22.38657],[114.12124,22.38656],[114.12124,22.38656],[114.12123,22.38656],[114.12123,22.38655],[114.12122,22.38655],[114.12119,22.38653],[114.12118,22.38652],[114.12117,22.38651],[114.12116,22.3865],[114.12111,22.38646],[114.12109,22.38645],[114.12109,22.38645],[114.12102,22.38639],[114.12094,22.38634],[114.12094,22.38634],[114.12091,22.38631],[114.12088,22.38629],[114.12088,22.38628],[114.12087,22.38628],[114.12087,22.38627],[114.12087,22.38627],[114.12086,22.38627],[114.12086,22.38626],[114.12086,22.38626],[114.12085,22.38625],[114.12085,22.38625],[114.12085,22.38625],[114.12084,22.38623],[114.12084,22.38623],[114.12083,22.38621],[114.12083,22.38621],[114.12083,22.3862],[114.12083,22.3862],[114.12082,22.38617],[114.12082,22.38617],[114.12082,22.38615],[114.12082,22.38611],[114.12082,22.3861],[114.12082,22.38609],[114.12082,22.38606],[114.12082,22.38604],[114.12082,22.38603],[114.12082,22.38602],[114.12082,22.38602],[114.12083,22.38598],[114.12083,22.38593],[114.12083,22.3859],[114.12083,22.3859],[114.12083,22.38588],[114.12083,22.38587],[114.12083,22.38586],[114.12082,22.38585],[114.12082,22.38584],[114.12081,22.38581],[114.12081,22.3858],[114.12081,22.3858],[114.12079,22.38576],[114.12078,22.38575],[114.12078,22.38575],[114.12078,22.38574],[114.12077,22.38574],[114.12077,22.38573],[114.12077,22.38573],[114.12076,22.38572],[114.12075,22.38571],[114.12075,22.38571],[114.12075,22.38571],[114.12074,22.3857],[114.12074,22.38569],[114.12072,22.38567],[114.12072,22.38567],[114.12071,22.38567],[114.12071,22.38566],[114.1207,22.38566],[114.12069,22.38565],[114.12069,22.38564],[114.12068,22.38564],[114.12068,22.38564],[114.12068,22.38563],[114.12067,22.38562],[114.12066,22.38561],[114.12065,22.3856],[114.12064,22.38559],[114.12064,22.38557],[114.12063,22.38557],[114.12063,22.38556],[114.12063,22.38555],[114.12063,22.38555],[114.12063,22.38555],[114.12062,22.38554],[114.12062,22.38553],[114.12062,22.38552],[114.12062,22.38551],[114.12062,22.3855],[114.12063,22.38547],[114.12064,22.38546],[114.12065,22.38544],[114.12065,22.38544],[114.12065,22.38543],[114.12066,22.38543],[114.12066,22.38542],[114.12067,22.38541],[114.12067,22.38541],[114.12068,22.3854],[114.12069,22.38539],[114.12069,22.38539],[114.1207,22.38539],[114.1207,22.38538],[114.12071,22.38537],[114.12072,22.38537],[114.12074,22.38535],[114.12075,22.38534],[114.12075,22.38533],[114.12075,22.38533],[114.12076,22.38533],[114.12076,22.38532],[114.12077,22.38531],[114.12078,22.38531],[114.12079,22.3853],[114.12079,22.38529],[114.1208,22.38529],[114.1208,22.38528],[114.12082,22.38526],[114.12083,22.38525],[114.12084,22.38523],[114.12085,22.38522],[114.12086,22.38521],[114.12086,22.3852],[114.12086,22.3852],[114.12087,22.38518],[114.12087,22.38518],[114.12087,22.38518],[114.12087,22.38517],[114.12087,22.38517],[114.12088,22.38516],[114.12088,22.38515],[114.12088,22.38515],[114.12088,22.38513],[114.12088,22.38511],[114.12088,22.3851],[114.12088,22.38509],[114.12088,22.38509],[114.12088,22.38508],[114.12088,22.38505],[114.12088,22.38505],[114.12088,22.38504],[114.12087,22.38501],[114.12086,22.38497],[114.12085,22.38496],[114.12085,22.38495],[114.12083,22.38491],[114.12083,22.38489],[114.12082,22.38487],[114.12081,22.38486],[114.12081,22.38485],[114.12081,22.38484],[114.12081,22.38483],[114.1208,22.38481],[114.1208,22.38481],[114.1208,22.3848],[114.1208,22.38479],[114.1208,22.38476],[114.1208,22.38475],[114.1208,22.38474],[114.12081,22.38474],[114.12081,22.38473],[114.12081,22.38472],[114.12081,22.38471],[114.12082,22.38469],[114.12082,22.38468],[114.12083,22.38468],[114.12083,22.38467],[114.12084,22.38465],[114.12085,22.38463],[114.12085,22.38462],[114.12086,22.38459],[114.12086,22.38457],[114.12087,22.38457],[114.12087,22.38456],[114.12087,22.38455],[114.12088,22.38452],[114.12088,22.3845],[114.12088,22.38446],[114.12087,22.38444],[114.12087,22.38444],[114.12087,22.38443],[114.12087,22.38442],[114.12087,22.38442],[114.12087,22.38441],[114.12087,22.38441],[114.12087,22.3844],[114.12086,22.38439],[114.12086,22.38439],[114.12086,22.38438],[114.12086,22.38437],[114.12084,22.38433],[114.12084,22.38431],[114.12084,22.38431],[114.12084,22.3843],[114.12083,22.3843],[114.12083,22.38429],[114.12083,22.38428],[114.12081,22.38425],[114.1208,22.38424],[114.12079,22.38422],[114.12078,22.38421],[114.12077,22.3842],[114.12077,22.38419],[114.12076,22.38419],[114.12076,22.38418],[114.12076,22.38418],[114.12075,22.38417],[114.12074,22.38416],[114.12074,22.38416],[114.12072,22.38414],[114.12072,22.38414],[114.12072,22.38413],[114.12071,22.38413],[114.12071,22.38412],[114.1207,22.38412],[114.1207,22.38411],[114.12069,22.3841],[114.12068,22.38409],[114.12068,22.38408],[114.12068,22.38407],[114.12067,22.38406],[114.12066,22.38404],[114.12066,22.38402],[114.12066,22.38402],[114.12066,22.38401],[114.12066,22.38399],[114.12066,22.38398],[114.12066,22.38389],[114.12066,22.38387],[114.12066,22.38383],[114.12066,22.38381],[114.12067,22.38377],[114.12067,22.38376],[114.12067,22.38376],[114.12067,22.38374],[114.12067,22.38372],[114.12067,22.38372],[114.12066,22.38371],[114.12066,22.38371],[114.12066,22.3837],[114.12066,22.38369],[114.12066,22.38368],[114.12066,22.38368],[114.12065,22.38367],[114.12065,22.38367],[114.12065,22.38365],[114.12064,22.38363],[114.12062,22.38361],[114.12062,22.3836],[114.12062,22.3836],[114.12061,22.38359],[114.12061,22.38359],[114.12059,22.38357],[114.12059,22.38357],[114.12058,22.38356],[114.12058,22.38355],[114.12057,22.38355],[114.12055,22.38352],[114.12054,22.38351],[114.12054,22.38351],[114.12054,22.38351],[114.12053,22.3835],[114.12052,22.38349],[114.12052,22.38349],[114.12052,22.38349],[114.12052,22.38348],[114.12051,22.38348],[114.12051,22.38347],[114.12051,22.38347],[114.1205,22.38346],[114.1205,22.38346],[114.12048,22.38343],[114.12048,22.38342],[114.12048,22.38341],[114.12048,22.3834],[114.12047,22.3834],[114.12047,22.38339],[114.12047,22.38338],[114.12047,22.38337],[114.12047,22.38334],[114.12047,22.38329],[114.12048,22.38324],[114.12048,22.38321],[114.12048,22.38316],[114.12048,22.38313],[114.12048,22.38313],[114.12049,22.38312],[114.12049,22.38311],[114.12049,22.38306],[114.1205,22.383],[114.1205,22.383],[114.12051,22.38299],[114.12051,22.38299],[114.12051,22.38298],[114.12051,22.38297],[114.12051,22.38297],[114.12052,22.38295],[114.12052,22.38293],[114.12052,22.38293],[114.12053,22.38291],[114.12053,22.3829],[114.12053,22.3829],[114.12054,22.38288],[114.12054,22.38288],[114.12055,22.38287],[114.12055,22.38287],[114.12056,22.38284],[114.12058,22.38281],[114.12058,22.38281],[114.1206,22.38277],[114.12061,22.38275],[114.12062,22.38274],[114.12063,22.38273],[114.12064,22.38271],[114.12066,22.38268],[114.12067,22.38267],[114.12068,22.38265],[114.12069,22.38264],[114.1207,22.38262],[114.12071,22.38261],[114.12071,22.38261],[114.12071,22.3826],[114.12074,22.38257],[114.12074,22.38256],[114.12074,22.38256],[114.12075,22.38255],[114.12075,22.38255],[114.12076,22.38253],[114.12076,22.38253],[114.12076,22.38252],[114.12076,22.38252],[114.12077,22.38252],[114.12078,22.38249],[114.12078,22.38249],[114.12078,22.38248],[114.12079,22.38246],[114.12079,22.38245],[114.12079,22.38244],[114.12079,22.38244],[114.12079,22.38243],[114.12079,22.38243],[114.1208,22.38241],[114.1208,22.3824],[114.12079,22.38239],[114.12079,22.38239],[114.12079,22.38237],[114.12079,22.38237],[114.12079,22.38236],[114.12079,22.38235],[114.12079,22.38234],[114.12079,22.38234],[114.12079,22.38233],[114.12078,22.38233],[114.12078,22.38232],[114.12078,22.38231],[114.12077,22.3823],[114.12077,22.38228],[114.12076,22.38227],[114.12076,22.38227],[114.12075,22.38226],[114.12075,22.38225],[114.12075,22.38225],[114.12074,22.38224],[114.12074,22.38224],[114.12072,22.38221],[114.12068,22.38215],[114.12065,22.38212],[114.12062,22.38209],[114.1206,22.38206],[114.12043,22.38189],[114.12038,22.38185],[114.12032,22.38181],[114.12028,22.38179],[114.12023,22.38177],[114.12021,22.38176],[114.12018,22.38176],[114.12012,22.38176],[114.12009,22.38176],[114.12005,22.38177],[114.12001,22.38178],[114.11999,22.38179],[114.11998,22.38179],[114.11989,22.38183],[114.11978,22.38187],[114.11978,22.38187],[114.11978,22.38188],[114.11977,22.38188],[114.11972,22.3819],[114.11968,22.38191],[114.11964,22.38192],[114.11959,22.38193],[114.11952,22.38193],[114.11945,22.38192],[114.11941,22.38192],[114.11923,22.38189],[114.11906,22.38186],[114.11901,22.38185],[114.11898,22.38185],[114.11896,22.38186],[114.11888,22.38187],[114.11884,22.38187],[114.1188,22.38186],[114.11875,22.38185],[114.11874,22.38185],[114.11871,22.38183],[114.11865,22.38179],[114.11854,22.38172],[114.11849,22.38169],[114.11847,22.38167],[114.11846,22.38166],[114.11844,22.38163],[114.11843,22.3816],[114.11843,22.38154],[114.11842,22.38142],[114.11841,22.38136],[114.1184,22.38132],[114.11839,22.38129],[114.11838,22.38127],[114.11836,22.38124],[114.11833,22.38121],[114.1183,22.38119],[114.11829,22.38119],[114.11825,22.38117],[114.11822,22.38116],[114.1182,22.38116],[114.11814,22.38116],[114.1181,22.38117],[114.11802,22.38118],[114.11788,22.3812],[114.11783,22.38121],[114.1178,22.38121],[114.11776,22.3812],[114.11772,22.38119],[114.11769,22.38118],[114.11762,22.38114],[114.11758,22.38113],[114.11753,22.38111],[114.11751,22.3811],[114.11745,22.38109],[114.11741,22.38109],[114.11737,22.3811],[114.11733,22.38111],[114.11715,22.38117],[114.11708,22.3812],[114.11707,22.3812],[114.11703,22.38121],[114.11701,22.38121],[114.11699,22.38121],[114.11696,22.3812],[114.11693,22.38119],[114.1169,22.38117],[114.11688,22.38115],[114.11684,22.38112],[114.11681,22.3811],[114.1167,22.38097],[114.11664,22.38091],[114.11661,22.38088],[114.11658,22.38085],[114.11654,22.38083],[114.11651,22.38082],[114.11646,22.3808],[114.11644,22.3808],[114.11641,22.3808],[114.11637,22.38079],[114.11631,22.3808],[114.11618,22.38082],[114.11608,22.38083],[114.11601,22.38085],[114.11582,22.38087],[114.11579,22.38088],[114.11576,22.38088],[114.11574,22.38087],[114.11572,22.38087],[114.1157,22.38086],[114.11568,22.38085],[114.11566,22.38084],[114.11563,22.38082],[114.11561,22.3808],[114.11558,22.38077],[114.11554,22.38073],[114.11552,22.3807],[114.11549,22.38068],[114.11546,22.38065],[114.11541,22.38061],[114.11539,22.38059],[114.11536,22.38058],[114.11533,22.38056],[114.1153,22.38055],[114.11527,22.38054],[114.11524,22.38054],[114.1152,22.38054],[114.11517,22.38054],[114.11514,22.38054],[114.11511,22.38055],[114.11508,22.38055],[114.11507,22.38055],[114.11505,22.38055],[114.11503,22.38055],[114.115,22.38055],[114.11497,22.38056],[114.11495,22.38057],[114.11493,22.38058],[114.11493,22.38059],[114.11492,22.38061],[114.11492,22.38062],[114.11491,22.38065],[114.11491,22.38067],[114.1149,22.3807],[114.11489,22.38072],[114.11488,22.38075],[114.11487,22.38077],[114.11486,22.38079],[114.11484,22.38082],[114.11483,22.38083],[114.11482,22.38084],[114.1148,22.38086],[114.11477,22.38087],[114.11473,22.38088],[114.11469,22.3809],[114.11466,22.38091],[114.11463,22.38093],[114.11461,22.38095],[114.11458,22.38097],[114.11458,22.38098],[114.11456,22.381],[114.11454,22.38103],[114.11453,22.38105],[114.11453,22.38108],[114.11452,22.38111],[114.11452,22.38114],[114.11452,22.38116],[114.11452,22.38118],[114.11452,22.38118],[114.11452,22.38119],[114.1146,22.38154],[114.11461,22.38159],[114.11463,22.38163],[114.11465,22.38166],[114.11466,22.38169],[114.115,22.38217],[114.11502,22.3822],[114.11503,22.38222],[114.11504,22.38224],[114.11505,22.38226],[114.11506,22.38227],[114.11507,22.3823],[114.11507,22.38231],[114.11508,22.38233],[114.11508,22.38235],[114.11508,22.38237],[114.11507,22.38238],[114.11507,22.3824],[114.11507,22.38241],[114.11506,22.38242],[114.11505,22.38244],[114.11505,22.38245],[114.11504,22.38247],[114.11502,22.38248],[114.11501,22.3825],[114.11499,22.38251],[114.11497,22.38253],[114.11483,22.38262],[114.11476,22.38263],[114.11466,22.38266],[114.11461,22.38268],[114.11459,22.38267],[114.11456,22.38267],[114.11453,22.38266],[114.1145,22.38266],[114.11448,22.38266],[114.11445,22.38266],[114.11442,22.38266],[114.11439,22.38266],[114.11437,22.38266],[114.11436,22.38266],[114.11434,22.38267],[114.11433,22.38267],[114.11431,22.38268],[114.11429,22.38268],[114.11428,22.38269],[114.11427,22.38269],[114.11425,22.3827],[114.11424,22.38271],[114.11423,22.38272],[114.11421,22.38273],[114.1142,22.38274],[114.11419,22.38275],[114.11418,22.38276],[114.11417,22.38278],[114.11399,22.38299],[114.11396,22.38302],[114.11394,22.38303],[114.1139,22.38307],[114.11386,22.3831],[114.1138,22.38312],[114.11373,22.38316],[114.11368,22.3832],[114.11366,22.38321],[114.11364,22.38321],[114.11362,22.38322],[114.11361,22.38322],[114.11356,22.38324],[114.11351,22.38325],[114.11347,22.38325],[114.11341,22.38327],[114.11338,22.38328],[114.11336,22.38329],[114.11334,22.38329],[114.11333,22.3833],[114.11332,22.3833],[114.1133,22.38331],[114.11329,22.38332],[114.11328,22.38333],[114.11327,22.38334],[114.11326,22.38335],[114.11324,22.38336],[114.11323,22.38338],[114.11322,22.38339],[114.11321,22.38341],[114.1132,22.38343],[114.11319,22.38345],[114.11319,22.38347],[114.11318,22.38348],[114.11318,22.38351],[114.11317,22.38354],[114.11316,22.38356],[114.11315,22.38359],[114.11314,22.3836],[114.11313,22.38361],[114.11312,22.38362],[114.11311,22.38363],[114.1131,22.38364],[114.11309,22.38364],[114.11308,22.38365],[114.11306,22.38366],[114.11305,22.38367],[114.11298,22.3837],[114.11295,22.38371],[114.11288,22.38374],[114.11287,22.38375],[114.11285,22.38377],[114.11284,22.38378],[114.11283,22.38379],[114.11282,22.38381],[114.11281,22.38382],[114.1128,22.38384],[114.11279,22.38385],[114.11278,22.38388],[114.11278,22.3839],[114.11277,22.38392],[114.11277,22.38394],[114.11277,22.38396],[114.11277,22.38399],[114.11277,22.38401],[114.11278,22.38403],[114.11278,22.38404],[114.11278,22.38405],[114.11279,22.38406],[114.11279,22.38408],[114.11281,22.3841],[114.11282,22.38412],[114.11283,22.38414],[114.11284,22.38415],[114.11284,22.38417],[114.11285,22.38418],[114.11286,22.3842],[114.11286,22.38421],[114.11287,22.38422],[114.11287,22.38424],[114.11287,22.38425],[114.11287,22.38427],[114.11288,22.38428],[114.11288,22.38429],[114.11287,22.38431],[114.11287,22.38432],[114.11286,22.38434],[114.11285,22.38436],[114.11284,22.38437],[114.11283,22.38439],[114.11263,22.3846],[114.11262,22.38461],[114.11261,22.38462],[114.11259,22.38463],[114.11258,22.38464],[114.11256,22.38465],[114.11254,22.38466],[114.11253,22.38466],[114.11251,22.38467],[114.11248,22.38467],[114.11246,22.38468],[114.11245,22.38469],[114.11243,22.3847],[114.11241,22.38471],[114.1124,22.38472],[114.11239,22.38474],[114.11238,22.38475],[114.11237,22.38476],[114.11235,22.38478],[114.11235,22.38479],[114.11234,22.3848],[114.11233,22.38482],[114.11223,22.385],[114.11223,22.38501],[114.11222,22.38502],[114.11221,22.38504],[114.1122,22.38505],[114.11218,22.38507],[114.11216,22.38509],[114.11214,22.3851],[114.11212,22.38512],[114.1121,22.38513],[114.11209,22.38514],[114.11208,22.38514],[114.11206,22.38515],[114.11205,22.38515],[114.11203,22.38515],[114.11202,22.38515],[114.11201,22.38515],[114.11199,22.38515],[114.11197,22.38515],[114.11195,22.38514],[114.11192,22.38513],[114.11191,22.38512],[114.11189,22.38512],[114.11188,22.38511],[114.11187,22.3851],[114.11186,22.38509],[114.11184,22.38508],[114.11182,22.38507],[114.1118,22.38505],[114.11178,22.38503],[114.11176,22.38502],[114.1117,22.38499],[114.11165,22.38496],[114.11163,22.38496],[114.11161,22.38495],[114.11159,22.38495],[114.11157,22.38494],[114.11156,22.38494],[114.11154,22.38494],[114.11152,22.38494],[114.11151,22.38494],[114.11149,22.38494],[114.11147,22.38495],[114.11145,22.38495],[114.11143,22.38496],[114.11139,22.38497],[114.11136,22.38498],[114.11134,22.38499],[114.11132,22.38501],[114.1113,22.38502],[114.11128,22.38503],[114.11118,22.38511],[114.11116,22.38512],[114.11116,22.38513],[114.11115,22.38514],[114.11113,22.38515],[114.11069,22.38549],[114.11063,22.38554],[114.1106,22.38556],[114.11053,22.38562],[114.11047,22.38567],[114.11038,22.38574],[114.11032,22.38582],[114.11025,22.38586],[114.1102,22.38591],[114.1102,22.38592],[114.11019,22.38598],[114.11014,22.38604],[114.11013,22.38605],[114.11012,22.38606],[114.1101,22.38608],[114.11009,22.38609],[114.11007,22.3861],[114.11005,22.38611],[114.11004,22.38612],[114.11,22.38613],[114.10992,22.38614],[114.10991,22.38614],[114.1099,22.38614],[114.10988,22.38614],[114.10986,22.38613],[114.10985,22.38613],[114.10972,22.38608],[114.1097,22.38608],[114.10968,22.38607],[114.10965,22.38607],[114.10963,22.38606],[114.10961,22.38606],[114.10959,22.38606],[114.10956,22.38606],[114.10954,22.38606],[114.10951,22.38607],[114.10949,22.38607],[114.10947,22.38608],[114.10945,22.38609],[114.10943,22.3861],[114.10941,22.38612],[114.10939,22.38613],[114.10937,22.38614],[114.10907,22.38641],[114.10906,22.38642],[114.10905,22.38642],[114.10904,22.38643],[114.10903,22.38644],[114.10901,22.38645],[114.109,22.38645],[114.10899,22.38646],[114.10898,22.38646],[114.10894,22.38647],[114.10891,22.38648],[114.10873,22.3865],[114.1086,22.38651],[114.10842,22.38654],[114.1084,22.38655],[114.10838,22.38655],[114.10837,22.38655],[114.10835,22.38656],[114.10833,22.38656],[114.10832,22.38657],[114.1083,22.38658],[114.10829,22.38658],[114.10827,22.38659],[114.10826,22.3866],[114.10825,22.38661],[114.10824,22.38661],[114.10822,22.38663],[114.10821,22.38663],[114.1082,22.38665],[114.10819,22.38666],[114.10818,22.38667],[114.10818,22.38668],[114.10817,22.3867],[114.10816,22.38671],[114.10816,22.38673],[114.10815,22.38674],[114.10815,22.38676],[114.10815,22.38678],[114.10814,22.38681],[114.10814,22.38684],[114.10814,22.38688],[114.10815,22.38692],[114.10815,22.38695],[114.10816,22.38698],[114.10816,22.38701],[114.10816,22.38705],[114.10816,22.38706],[114.10815,22.38707],[114.10815,22.38708],[114.10815,22.3871],[114.10814,22.38711],[114.10813,22.38712],[114.10813,22.38713],[114.10812,22.38714],[114.10811,22.38715],[114.10809,22.38716],[114.10808,22.38718],[114.10807,22.38718],[114.10805,22.38719],[114.10803,22.3872],[114.10801,22.3872],[114.108,22.3872],[114.10798,22.38721],[114.10797,22.38721],[114.10796,22.38721],[114.10794,22.38721],[114.10793,22.38721],[114.10792,22.38721],[114.10789,22.38721],[114.10786,22.38721],[114.10783,22.3872],[114.10781,22.3872],[114.10779,22.38721],[114.10776,22.38721],[114.10774,22.38721],[114.10771,22.38721],[114.10769,22.38722],[114.10767,22.38722],[114.10765,22.38723],[114.10761,22.38722],[114.10751,22.38726]],[[114.08911,22.36729],[114.08911,22.36728],[114.08911,22.36728],[114.08911,22.36729]]]]},"properties":{"M_NM_Eng":"Metro","SR_Eng":"Metro","PDD_Cat_En":"New Town","PDD_Eng":"Tsuen Wan","M_NM_Tc":"都會區","SR_Tc":"都會區","PDD_Cat_Tc":"新市鎮","PDD_Tc":"荃灣","M_NM_Sc":"都会区","SR_Sc_1":"都会区","PDD_Cat_Sc":"新市镇","PDD_Sc":"荃湾","Y2019_Popu":293700,"Y2019_Empl":165000,"Y2026_Popu":279450,"Y2026_Empl":166100,"Y2031_Popu":249400,"Y2031_Empl":160650}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[113.89811,22.30236],[113.89801,22.30226],[113.89809,22.30198],[113.8981,22.30178],[113.89797,22.30137],[113.89769,22.301],[113.89747,22.3007],[113.89669,22.29968],[113.89613,22.29897],[113.89561,22.29829],[113.8942,22.29654],[113.89406,22.29631],[113.89388,22.29561],[113.89392,22.29521],[113.89403,22.29483],[113.89421,22.2945],[113.89453,22.29416],[113.89487,22.29392],[113.89529,22.29373],[113.89556,22.29367],[113.89572,22.29366],[113.89607,22.29374],[113.89592,22.29374],[113.89574,22.29374],[113.89555,22.29376],[113.8954,22.29379],[113.89527,22.29383],[113.89512,22.2939],[113.89494,22.29398],[113.89485,22.29403],[113.89472,22.29412],[113.89454,22.29427],[113.89436,22.29445],[113.89425,22.29462],[113.89419,22.29471],[113.89414,22.2948],[113.89408,22.29493],[113.89408,22.29494],[113.89404,22.29508],[113.894,22.2952],[113.89399,22.29528],[113.89399,22.29532],[113.89396,22.29547],[113.89396,22.29558],[113.89399,22.2957],[113.894,22.29587],[113.89404,22.29603],[113.89407,22.29616],[113.89414,22.29627],[113.89419,22.29635],[113.89425,22.29645],[113.8943,22.29654],[113.8944,22.29665],[113.89452,22.2968],[113.89464,22.29697],[113.89475,22.29711],[113.8949,22.29729],[113.89504,22.29746],[113.89517,22.29764],[113.89532,22.29782],[113.89549,22.29804],[113.89558,22.29814],[113.89577,22.29838],[113.89592,22.29859],[113.8961,22.2988],[113.89629,22.29905],[113.89656,22.29941],[113.89668,22.29956],[113.89687,22.29978],[113.89698,22.29994],[113.8971,22.30009],[113.89722,22.30024],[113.89735,22.3004],[113.89745,22.30054],[113.89758,22.30069],[113.89758,22.3007],[113.89765,22.30079],[113.89768,22.30084],[113.89769,22.30085],[113.89772,22.3009],[113.89775,22.30095],[113.8978,22.301],[113.89784,22.30105],[113.89788,22.3011],[113.89792,22.30116],[113.89797,22.30121],[113.89801,22.30127],[113.89804,22.30134],[113.89808,22.3014],[113.89809,22.30142],[113.89809,22.30142],[113.89811,22.30147],[113.89813,22.30155],[113.89815,22.30161],[113.89817,22.30168],[113.89817,22.30175],[113.89818,22.30182],[113.89818,22.3019],[113.89817,22.30197],[113.89816,22.30203],[113.89815,22.3021],[113.89814,22.30215],[113.89811,22.30221],[113.8981,22.30225],[113.89811,22.30228],[113.89813,22.3023],[113.89811,22.30236]]],[[[113.89701,22.30424],[113.89736,22.30436],[113.89715,22.30429],[113.89705,22.30426],[113.89705,22.30426],[113.89701,22.30424]]],[[[113.89811,22.30236],[113.89769,22.3035],[113.89767,22.30353],[113.89766,22.30356],[113.89763,22.30365],[113.89748,22.30404],[113.89736,22.30436],[113.89769,22.30349],[113.89811,22.30236]]],[[[113.89701,22.30424],[113.89695,22.30439],[113.89679,22.30482],[113.89673,22.30501],[113.89668,22.30513],[113.89676,22.3049],[113.89701,22.30424]]],[[[113.89683,22.30518],[113.89683,22.30518],[113.89683,22.30518],[113.89683,22.30518]]],[[[113.93404,22.32392],[113.9339,22.32395],[113.93373,22.32396],[113.93359,22.32394],[113.93338,22.32389],[113.91632,22.31839],[113.91556,22.31813],[113.91552,22.31824],[113.9153,22.31817],[113.91533,22.31808],[113.91415,22.31768],[113.89767,22.31238],[113.89484,22.31145],[113.89476,22.31143],[113.89476,22.31143],[113.89438,22.31132],[113.89438,22.31132],[113.89404,22.31121],[113.89403,22.31121],[113.89399,22.31121],[113.89399,22.31121],[113.89341,22.31102],[113.89341,22.31102],[113.89329,22.31096],[113.89329,22.31096],[113.89319,22.31091],[113.89319,22.31091],[113.8931,22.31084],[113.8931,22.31084],[113.89303,22.31079],[113.89303,22.31079],[113.89286,22.31063],[113.89286,22.31063],[113.89274,22.3105],[113.89274,22.3105],[113.89263,22.31035],[113.89263,22.31035],[113.89255,22.3102],[113.89255,22.3102],[113.8925,22.31007],[113.8925,22.31007],[113.89247,22.30999],[113.89247,22.30999],[113.89246,22.30987],[113.89246,22.30987],[113.89243,22.30968],[113.89243,22.30968],[113.89243,22.30949],[113.89243,22.30949],[113.89246,22.30924],[113.89246,22.30924],[113.89249,22.30915],[113.89252,22.30909],[113.89252,22.30909],[113.89264,22.30881],[113.89264,22.30881],[113.8927,22.30872],[113.8927,22.30872],[113.89282,22.30856],[113.89282,22.30856],[113.89298,22.30843],[113.89298,22.30843],[113.89311,22.30834],[113.89311,22.30834],[113.89336,22.30819],[113.89337,22.30819],[113.89357,22.30811],[113.89357,22.30811],[113.89399,22.30799],[113.89399,22.30799],[113.8942,22.30794],[113.8942,22.30794],[113.89481,22.30779],[113.89481,22.30779],[113.89503,22.30775],[113.89503,22.30775],[113.89527,22.3077],[113.89527,22.3077],[113.89552,22.30765],[113.89552,22.30765],[113.89561,22.30762],[113.89561,22.30762],[113.89571,22.30758],[113.89571,22.30758],[113.89582,22.30752],[113.89582,22.30752],[113.89593,22.30745],[113.89593,22.30745],[113.89601,22.30739],[113.89601,22.30739],[113.89606,22.30735],[113.89606,22.30735],[113.89611,22.30729],[113.89611,22.30729],[113.89616,22.30721],[113.89616,22.30721],[113.8962,22.3071],[113.8962,22.3071],[113.89626,22.30695],[113.89626,22.30695],[113.89636,22.30671],[113.89636,22.30671],[113.89642,22.30657],[113.89642,22.30657],[113.89648,22.30637],[113.89648,22.30637],[113.89657,22.30617],[113.89657,22.30617],[113.89665,22.30594],[113.89665,22.30594],[113.89671,22.30582],[113.89671,22.30582],[113.89677,22.30562],[113.89677,22.30562],[113.89684,22.30545],[113.89684,22.30545],[113.89687,22.30534],[113.89687,22.30534],[113.89687,22.3053],[113.89687,22.3053],[113.89686,22.30524],[113.89686,22.30524],[113.89686,22.30524],[113.8969,22.30525],[113.89693,22.30527],[113.89694,22.3053],[113.89694,22.30535],[113.89694,22.30539],[113.89692,22.30544],[113.89689,22.3055],[113.89686,22.30556],[113.89684,22.30563],[113.89682,22.3057],[113.89665,22.30612],[113.89662,22.30619],[113.89659,22.30628],[113.89656,22.30637],[113.89653,22.30645],[113.8965,22.30653],[113.89647,22.30663],[113.89644,22.30673],[113.8964,22.30682],[113.89636,22.30692],[113.89633,22.30701],[113.8963,22.30709],[113.89629,22.30711],[113.89625,22.30719],[113.89621,22.30729],[113.89615,22.30737],[113.89609,22.30744],[113.89602,22.3075],[113.89595,22.30756],[113.89585,22.3076],[113.89577,22.30764],[113.89568,22.30769],[113.8956,22.3077],[113.8955,22.30772],[113.89538,22.30775],[113.89527,22.30777],[113.89516,22.3078],[113.89506,22.30783],[113.89494,22.30787],[113.89485,22.3079],[113.89474,22.30791],[113.89463,22.30793],[113.89453,22.30796],[113.89443,22.30799],[113.89432,22.30801],[113.89421,22.30804],[113.8941,22.30807],[113.89401,22.3081],[113.894,22.3081],[113.89392,22.30813],[113.89391,22.30814],[113.89381,22.30816],[113.89371,22.30818],[113.89371,22.30818],[113.89361,22.30822],[113.89351,22.30825],[113.89343,22.30828],[113.89342,22.30828],[113.89334,22.30832],[113.89325,22.30837],[113.89317,22.30842],[113.89317,22.30842],[113.89309,22.30847],[113.89301,22.30853],[113.89294,22.3086],[113.89289,22.30866],[113.89288,22.30866],[113.89283,22.30874],[113.89278,22.30881],[113.89273,22.3089],[113.89268,22.30898],[113.89264,22.30907],[113.89264,22.30908],[113.8926,22.30917],[113.8926,22.30918],[113.89257,22.30927],[113.89255,22.30937],[113.89254,22.30948],[113.89254,22.30958],[113.89254,22.30967],[113.89254,22.30971],[113.89255,22.30976],[113.89256,22.30986],[113.89259,22.30996],[113.89261,22.31005],[113.89264,22.31014],[113.89267,22.31022],[113.89271,22.3103],[113.89275,22.31038],[113.89276,22.31038],[113.8928,22.31044],[113.89285,22.3105],[113.8929,22.31057],[113.89296,22.31063],[113.89304,22.3107],[113.89311,22.31077],[113.8932,22.31082],[113.89327,22.31088],[113.89329,22.31088],[113.89335,22.31092],[113.89344,22.31096],[113.89354,22.31099],[113.89363,22.31101],[113.89373,22.31104],[113.89381,22.31107],[113.89382,22.31107],[113.89392,22.3111],[113.89403,22.31113],[113.89413,22.31117],[113.89424,22.3112],[113.89434,22.31123],[113.89439,22.31125],[113.89446,22.31127],[113.89455,22.3113],[113.89465,22.31133],[113.89475,22.31136],[113.89484,22.31139],[113.89493,22.31143],[113.89501,22.31145],[113.8951,22.31148],[113.89518,22.3115],[113.89529,22.31153],[113.89531,22.31153],[113.89538,22.31156],[113.89547,22.31159],[113.89556,22.31162],[113.89566,22.31165],[113.89574,22.31168],[113.89582,22.31171],[113.89591,22.31174],[113.89601,22.31177],[113.8961,22.3118],[113.8962,22.31183],[113.89629,22.31186],[113.89639,22.31189],[113.89646,22.31191],[113.89655,22.31194],[113.89664,22.31197],[113.89673,22.312],[113.89683,22.31204],[113.89692,22.31207],[113.89701,22.31209],[113.8971,22.31211],[113.89723,22.31217],[113.89724,22.31217],[113.89729,22.31219],[113.89736,22.31221],[113.89744,22.31223],[113.89751,22.31226],[113.89759,22.31228],[113.89766,22.31231],[113.89767,22.31231],[113.89774,22.31233],[113.89782,22.31236],[113.8979,22.31239],[113.89798,22.31241],[113.89805,22.31244],[113.89813,22.31246],[113.89817,22.31247],[113.89824,22.31249],[113.89832,22.31252],[113.89841,22.31254],[113.8985,22.31258],[113.89859,22.31261],[113.89869,22.31263],[113.89878,22.31267],[113.89886,22.3127],[113.89895,22.31273],[113.89904,22.31276],[113.89913,22.31279],[113.89923,22.31282],[113.89933,22.31285],[113.89943,22.31288],[113.89952,22.31291],[113.89962,22.31294],[113.89972,22.31297],[113.89981,22.31301],[113.89992,22.31304],[113.90001,22.31307],[113.9001,22.3131],[113.90018,22.31312],[113.90026,22.31314],[113.90036,22.31317],[113.90045,22.3132],[113.90054,22.31323],[113.90062,22.31326],[113.90072,22.31329],[113.9008,22.31332],[113.9009,22.31335],[113.90096,22.31337],[113.90127,22.31347],[113.90165,22.31359],[113.90175,22.31363],[113.90186,22.31366],[113.90196,22.3137],[113.90207,22.31374],[113.90218,22.31377],[113.90229,22.3138],[113.90239,22.31383],[113.9025,22.31386],[113.9026,22.31389],[113.9027,22.31392],[113.9028,22.31396],[113.90289,22.31399],[113.90299,22.31403],[113.90309,22.31406],[113.90319,22.31409],[113.90329,22.31412],[113.90337,22.31415],[113.90347,22.31417],[113.90357,22.31421],[113.90367,22.31424],[113.90378,22.31427],[113.90388,22.31431],[113.90398,22.31434],[113.90447,22.31451],[113.90448,22.31451],[113.90451,22.31452],[113.90456,22.31454],[113.90461,22.31455],[113.90467,22.31457],[113.90471,22.31459],[113.90477,22.31461],[113.90483,22.31462],[113.90488,22.31464],[113.90493,22.31465],[113.90494,22.31465],[113.90498,22.31467],[113.90503,22.31468],[113.90508,22.3147],[113.90514,22.31472],[113.90519,22.31473],[113.90525,22.31475],[113.9053,22.31477],[113.90536,22.31478],[113.90542,22.31481],[113.90547,22.31483],[113.90553,22.31484],[113.90559,22.31486],[113.90565,22.31489],[113.90572,22.3149],[113.90577,22.31492],[113.90584,22.31494],[113.90591,22.31496],[113.90597,22.31498],[113.90603,22.31501],[113.9061,22.31503],[113.90616,22.31505],[113.90623,22.31507],[113.9063,22.31509],[113.90639,22.31512],[113.90645,22.31514],[113.90653,22.31516],[113.9066,22.31519],[113.90668,22.31521],[113.90674,22.31523],[113.90681,22.31525],[113.90687,22.31527],[113.90695,22.31529],[113.90702,22.31532],[113.90708,22.31534],[113.90714,22.31537],[113.90721,22.31539],[113.90728,22.31541],[113.90735,22.31543],[113.90743,22.31545],[113.9075,22.31548],[113.90756,22.3155],[113.90763,22.31552],[113.90771,22.31555],[113.90779,22.31557],[113.90786,22.3156],[113.90794,22.31562],[113.90801,22.31564],[113.90809,22.31567],[113.90816,22.31569],[113.90823,22.3157],[113.9083,22.31573],[113.90838,22.31576],[113.90846,22.31578],[113.90854,22.31581],[113.90863,22.31584],[113.90872,22.31587],[113.90881,22.31589],[113.90888,22.31593],[113.90897,22.31596],[113.90906,22.31599],[113.90915,22.31602],[113.90923,22.31604],[113.90936,22.31608],[113.90936,22.31608],[113.90939,22.3161],[113.90944,22.31611],[113.9095,22.31613],[113.90956,22.31615],[113.90962,22.31616],[113.90968,22.31618],[113.90973,22.3162],[113.90979,22.31621],[113.90985,22.31624],[113.90991,22.31625],[113.90997,22.31627],[113.91004,22.31629],[113.91009,22.31631],[113.91015,22.31632],[113.91021,22.31634],[113.91027,22.31636],[113.91033,22.31638],[113.91038,22.3164],[113.91044,22.31642],[113.9105,22.31644],[113.91055,22.31647],[113.91061,22.31648],[113.91067,22.3165],[113.91072,22.31652],[113.91078,22.31655],[113.91084,22.31656],[113.9109,22.31658],[113.91096,22.3166],[113.91102,22.31662],[113.91108,22.31664],[113.91114,22.31665],[113.9112,22.31667],[113.91126,22.3167],[113.91131,22.31672],[113.91138,22.31674],[113.91145,22.31676],[113.9115,22.31678],[113.91155,22.31679],[113.91161,22.31681],[113.91167,22.31683],[113.91173,22.31685],[113.9118,22.31687],[113.91186,22.31689],[113.91192,22.31691],[113.91199,22.31693],[113.91207,22.31696],[113.91214,22.31698],[113.91215,22.31698],[113.91222,22.317],[113.91229,22.31702],[113.91236,22.31704],[113.91243,22.31706],[113.91249,22.31708],[113.91256,22.31711],[113.91264,22.31713],[113.9127,22.31715],[113.91277,22.31717],[113.91283,22.31719],[113.91291,22.31721],[113.91298,22.31723],[113.91304,22.31726],[113.91312,22.31728],[113.91319,22.31731],[113.91326,22.31733],[113.91332,22.31736],[113.91338,22.31738],[113.91343,22.31739],[113.91347,22.3174],[113.91354,22.31742],[113.91361,22.31744],[113.91367,22.31746],[113.91374,22.31748],[113.91382,22.31751],[113.91388,22.31753],[113.91394,22.31755],[113.91401,22.31757],[113.91402,22.31757],[113.91405,22.31759],[113.9141,22.3176],[113.91416,22.31761],[113.91422,22.31763],[113.91427,22.31765],[113.91433,22.31767],[113.91439,22.31769],[113.91444,22.3177],[113.91448,22.31771],[113.9145,22.31772],[113.91459,22.31775],[113.91467,22.31778],[113.91468,22.31778],[113.91471,22.31779],[113.91476,22.3178],[113.9148,22.31782],[113.91485,22.31784],[113.91491,22.31786],[113.91497,22.31788],[113.91503,22.3179],[113.9151,22.31791],[113.91517,22.31793],[113.91521,22.31795],[113.91524,22.31796],[113.9157,22.31811],[113.91571,22.31812],[113.91579,22.31814],[113.91586,22.31817],[113.91593,22.31819],[113.916,22.31821],[113.91607,22.31824],[113.91615,22.31827],[113.91622,22.31829],[113.9163,22.31831],[113.91638,22.31834],[113.91645,22.31835],[113.91653,22.31838],[113.91661,22.3184],[113.91669,22.31843],[113.91677,22.31846],[113.91685,22.31848],[113.91693,22.31851],[113.91701,22.31853],[113.9171,22.31856],[113.91717,22.31858],[113.91726,22.31861],[113.91733,22.31864],[113.91741,22.31866],[113.91748,22.31869],[113.91756,22.31871],[113.91763,22.31873],[113.91771,22.31876],[113.91777,22.31878],[113.91784,22.3188],[113.91791,22.31883],[113.91798,22.31885],[113.91804,22.31887],[113.91812,22.3189],[113.91819,22.31892],[113.91826,22.31894],[113.91834,22.31897],[113.91842,22.31899],[113.9185,22.31901],[113.91856,22.31903],[113.91856,22.31904],[113.9186,22.31905],[113.91866,22.31907],[113.91872,22.31909],[113.91879,22.31911],[113.91887,22.31913],[113.91893,22.31916],[113.919,22.31918],[113.91907,22.3192],[113.91915,22.31922],[113.91921,22.31925],[113.91928,22.31927],[113.91934,22.31929],[113.91941,22.31932],[113.91948,22.31934],[113.91949,22.31934],[113.91956,22.31936],[113.91962,22.31938],[113.91969,22.3194],[113.91976,22.31943],[113.91984,22.31945],[113.91992,22.31948],[113.92,22.3195],[113.92007,22.31953],[113.92016,22.31955],[113.92023,22.31957],[113.92031,22.3196],[113.92038,22.31963],[113.92047,22.31965],[113.92054,22.31968],[113.92063,22.3197],[113.92071,22.31973],[113.92079,22.31976],[113.92087,22.31979],[113.92094,22.31982],[113.92103,22.31984],[113.92112,22.31986],[113.9212,22.31989],[113.92128,22.31992],[113.92138,22.31994],[113.92147,22.31997],[113.92155,22.32],[113.92164,22.32003],[113.92172,22.32006],[113.9218,22.32009],[113.9219,22.32011],[113.922,22.32015],[113.92208,22.32017],[113.92218,22.3202],[113.92226,22.32023],[113.92235,22.32026],[113.92246,22.3203],[113.92257,22.32033],[113.92267,22.32035],[113.92276,22.32039],[113.92285,22.32042],[113.92296,22.32045],[113.92306,22.32048],[113.92316,22.32051],[113.92326,22.32055],[113.92336,22.32058],[113.92345,22.32061],[113.92355,22.32064],[113.92364,22.32067],[113.92374,22.3207],[113.92384,22.32073],[113.9239,22.32075],[113.92415,22.32083],[113.92428,22.32087],[113.92434,22.3209],[113.92442,22.32092],[113.92449,22.32095],[113.92458,22.32098],[113.92466,22.321],[113.92475,22.32103],[113.92484,22.32106],[113.92492,22.32109],[113.92501,22.32112],[113.92509,22.32115],[113.92516,22.32117],[113.92521,22.32119],[113.92526,22.3212],[113.92532,22.32122],[113.92539,22.32124],[113.92546,22.32127],[113.92553,22.32129],[113.9256,22.3213],[113.92567,22.32132],[113.92573,22.32134],[113.92579,22.32136],[113.92584,22.32138],[113.92589,22.3214],[113.92595,22.32141],[113.92602,22.32144],[113.92609,22.32147],[113.92618,22.32149],[113.92626,22.32152],[113.92634,22.32155],[113.92641,22.32157],[113.92649,22.3216],[113.92656,22.32162],[113.92664,22.32165],[113.92671,22.32167],[113.92676,22.32169],[113.92677,22.32169],[113.92681,22.3217],[113.92687,22.32173],[113.92693,22.32175],[113.92701,22.32177],[113.92709,22.3218],[113.92717,22.32182],[113.92725,22.32184],[113.92733,22.32187],[113.9274,22.32189],[113.92747,22.32192],[113.92754,22.32194],[113.92762,22.32196],[113.9277,22.32199],[113.92779,22.32201],[113.92787,22.32204],[113.92794,22.32206],[113.92802,22.32209],[113.9281,22.32211],[113.92817,22.32214],[113.92824,22.32216],[113.9283,22.32217],[113.92836,22.32219],[113.92839,22.3222],[113.92839,22.3222],[113.92849,22.32223],[113.92864,22.32228],[113.92882,22.32233],[113.92896,22.32238],[113.9291,22.32243],[113.92913,22.32244],[113.92926,22.32248],[113.92937,22.32252],[113.92951,22.32256],[113.92963,22.3226],[113.92975,22.32264],[113.92985,22.32267],[113.92998,22.32271],[113.93011,22.32275],[113.93023,22.32279],[113.93036,22.32283],[113.93049,22.32288],[113.9306,22.32291],[113.93074,22.32296],[113.93087,22.323],[113.931,22.32304],[113.93111,22.32308],[113.93124,22.32311],[113.93138,22.32316],[113.9315,22.3232],[113.93161,22.32324],[113.93173,22.32328],[113.93185,22.32332],[113.93198,22.32336],[113.93212,22.3234],[113.93227,22.32345],[113.93238,22.32349],[113.93251,22.32353],[113.93262,22.32357],[113.93275,22.32361],[113.93285,22.32365],[113.93296,22.32368],[113.93306,22.3237],[113.93315,22.32373],[113.93324,22.32376],[113.93335,22.32379],[113.93344,22.32382],[113.93352,22.32385],[113.93361,22.32387],[113.93367,22.32387],[113.93375,22.32388],[113.93384,22.32388],[113.93391,22.32387],[113.93398,22.32386],[113.93404,22.32384],[113.93406,22.32384],[113.93413,22.32381],[113.9342,22.32378],[113.93426,22.32373],[113.93434,22.3237],[113.93439,22.32366],[113.93444,22.32361],[113.93448,22.32356],[113.93452,22.32351],[113.93456,22.32346],[113.93459,22.32339],[113.93467,22.32343],[113.93466,22.32345],[113.93463,22.32352],[113.93454,22.32362],[113.93438,22.32377],[113.93425,22.32385],[113.93404,22.32392]]],[[[113.89065,22.34061],[113.89066,22.34063],[113.89067,22.34064],[113.89066,22.34068],[113.89065,22.34072],[113.89066,22.34075],[113.89065,22.34077],[113.89064,22.34077],[113.89062,22.34073],[113.8906,22.34072],[113.89059,22.34072],[113.89057,22.34071],[113.89056,22.3407],[113.89057,22.34068],[113.89059,22.34067],[113.89061,22.34067],[113.89062,22.34065],[113.89063,22.34064],[113.89062,22.34062],[113.89062,22.3406],[113.89063,22.3406],[113.89065,22.34061]]],[[[113.89018,22.34112],[113.89017,22.34119],[113.89014,22.34122],[113.89012,22.34122],[113.8901,22.34119],[113.89008,22.34114],[113.89006,22.34111],[113.89003,22.34108],[113.89001,22.34108],[113.89,22.3411],[113.89002,22.34113],[113.89001,22.34116],[113.88995,22.34121],[113.88992,22.34118],[113.88988,22.34119],[113.88985,22.34117],[113.88984,22.34112],[113.88983,22.34108],[113.88983,22.34103],[113.88984,22.341],[113.88988,22.34099],[113.88991,22.34101],[113.88995,22.341],[113.88997,22.34101],[113.89,22.34102],[113.89002,22.34103],[113.89003,22.34102],[113.89002,22.341],[113.89008,22.34102],[113.89014,22.34104],[113.89017,22.34107],[113.89018,22.34112]]],[[[113.89106,22.34129],[113.89107,22.3413],[113.89109,22.34132],[113.89109,22.34133],[113.89104,22.34139],[113.89103,22.3414],[113.89099,22.34138],[113.89098,22.34137],[113.89098,22.34135],[113.89099,22.34132],[113.891,22.34129],[113.89102,22.34128],[113.89106,22.34129]]],[[[113.89005,22.3414],[113.89004,22.34141],[113.89003,22.34143],[113.89003,22.34145],[113.89002,22.34146],[113.89001,22.34147],[113.88997,22.34147],[113.88995,22.34146],[113.88995,22.34144],[113.88995,22.34143],[113.88994,22.34141],[113.88991,22.34138],[113.88992,22.34135],[113.88994,22.34135],[113.88998,22.34138],[113.89,22.34139],[113.89001,22.34138],[113.89002,22.34137],[113.89003,22.34136],[113.89005,22.34137],[113.89006,22.34138],[113.89005,22.3414]]],[[[113.89105,22.34146],[113.89109,22.34147],[113.8911,22.34149],[113.8911,22.34152],[113.89109,22.34154],[113.89103,22.34155],[113.891,22.34157],[113.89098,22.34157],[113.89098,22.34155],[113.89098,22.34154],[113.891,22.3415],[113.89099,22.34149],[113.89098,22.34148],[113.891,22.34147],[113.89101,22.34146],[113.89105,22.34146]]],[[[113.89012,22.3416],[113.89012,22.34163],[113.8901,22.34164],[113.89009,22.34164],[113.89006,22.34162],[113.89004,22.3416],[113.89004,22.34157],[113.89005,22.34151],[113.89011,22.3415],[113.89013,22.34152],[113.89016,22.34155],[113.89019,22.34157],[113.89018,22.34159],[113.89015,22.34159],[113.89013,22.34158],[113.89012,22.3416]]],[[[113.89108,22.34106],[113.89111,22.34111],[113.89112,22.34116],[113.89111,22.3412],[113.89109,22.34121],[113.89104,22.34122],[113.89102,22.34124],[113.89098,22.34128],[113.89098,22.34133],[113.89097,22.34135],[113.89098,22.34145],[113.89095,22.34155],[113.89095,22.34155],[113.89093,22.34161],[113.89093,22.34162],[113.89085,22.34166],[113.89084,22.34166],[113.89073,22.34166],[113.89073,22.34166],[113.89065,22.34166],[113.89065,22.34166],[113.89046,22.34162],[113.89046,22.34162],[113.89035,22.34158],[113.89034,22.34157],[113.89029,22.34152],[113.89029,22.34152],[113.89023,22.34148],[113.89023,22.34148],[113.89018,22.34135],[113.89018,22.34135],[113.89015,22.34131],[113.89015,22.3413],[113.89016,22.34126],[113.89016,22.34125],[113.89019,22.34119],[113.89019,22.34119],[113.89022,22.3411],[113.89022,22.3411],[113.89022,22.34104],[113.89022,22.34104],[113.8902,22.34097],[113.8902,22.34097],[113.89019,22.34091],[113.89019,22.34091],[113.89021,22.34087],[113.89021,22.34087],[113.89029,22.34082],[113.89029,22.34082],[113.89035,22.34081],[113.89036,22.34081],[113.89041,22.34084],[113.89041,22.34084],[113.89046,22.34089],[113.89047,22.34089],[113.89053,22.34092],[113.89054,22.34092],[113.89059,22.34093],[113.89059,22.34093],[113.89067,22.34093],[113.89068,22.34093],[113.89073,22.34094],[113.89073,22.34094],[113.89078,22.34097],[113.89078,22.34097],[113.89081,22.34097],[113.89081,22.34097],[113.89088,22.34097],[113.89094,22.34101],[113.89097,22.34104],[113.89099,22.34105],[113.891,22.34105],[113.89101,22.34104],[113.89104,22.34103],[113.89107,22.34105],[113.89108,22.34106]]],[[[113.89108,22.34257],[113.89108,22.34258],[113.89108,22.34258],[113.89105,22.34258],[113.89103,22.34258],[113.89102,22.34258],[113.891,22.34257],[113.89098,22.34257],[113.89097,22.34257],[113.89095,22.34257],[113.89093,22.34257],[113.89091,22.34255],[113.89091,22.34254],[113.89091,22.34253],[113.89091,22.34252],[113.89091,22.34251],[113.89092,22.34251],[113.89094,22.34251],[113.89095,22.3425],[113.89097,22.3425],[113.89099,22.3425],[113.891,22.34252],[113.89102,22.34251],[113.89102,22.3425],[113.89103,22.34248],[113.89103,22.34246],[113.89104,22.34245],[113.89106,22.34245],[113.89107,22.34246],[113.89108,22.34247],[113.89109,22.34249],[113.89109,22.34251],[113.89108,22.34251],[113.89108,22.34251],[113.89107,22.34252],[113.89107,22.34253],[113.89106,22.34254],[113.89106,22.34255],[113.89107,22.34256],[113.89108,22.34257],[113.89108,22.34257]]],[[[113.89091,22.34313],[113.89091,22.34314],[113.89092,22.34316],[113.89093,22.34317],[113.89094,22.34319],[113.89096,22.3432],[113.89096,22.34321],[113.89097,22.34323],[113.89096,22.34325],[113.89095,22.34326],[113.89096,22.34328],[113.89097,22.34329],[113.89098,22.34331],[113.89097,22.34332],[113.89096,22.34333],[113.89096,22.34334],[113.89095,22.34336],[113.89094,22.34338],[113.89095,22.34339],[113.89096,22.3434],[113.89096,22.34342],[113.89095,22.34343],[113.89092,22.34346],[113.89091,22.34345],[113.8909,22.34344],[113.89089,22.34342],[113.89087,22.3434],[113.89087,22.34339],[113.89086,22.34337],[113.89086,22.34335],[113.89086,22.34333],[113.89087,22.34332],[113.89087,22.3433],[113.89087,22.34328],[113.89087,22.34326],[113.89087,22.34325],[113.89087,22.34323],[113.89087,22.34321],[113.89087,22.34319],[113.89086,22.34318],[113.89085,22.34316],[113.89086,22.34314],[113.89087,22.34313],[113.89088,22.34312],[113.8909,22.34311],[113.89091,22.34313]]],[[[113.89157,22.34616],[113.89156,22.34618],[113.89154,22.3462],[113.89152,22.34621],[113.8915,22.3462],[113.89149,22.34619],[113.89147,22.34616],[113.89149,22.34613],[113.8915,22.34611],[113.89154,22.34611],[113.89157,22.34609],[113.89159,22.34608],[113.89161,22.34609],[113.89162,22.34609],[113.89164,22.34611],[113.89164,22.34613],[113.89163,22.34614],[113.89162,22.34616],[113.89161,22.34617],[113.89159,22.34616],[113.89157,22.34616]]],[[[113.8891,22.34653],[113.88904,22.34653],[113.88904,22.34653],[113.88879,22.34658],[113.88847,22.34667],[113.88834,22.34672],[113.88811,22.34684],[113.8881,22.34683],[113.88825,22.3467],[113.88827,22.34666],[113.88835,22.34659],[113.88837,22.34653],[113.8885,22.34639],[113.8885,22.34639],[113.88858,22.34629],[113.88865,22.34622],[113.8887,22.34616],[113.88875,22.34609],[113.88877,22.34602],[113.88875,22.34599],[113.88875,22.34595],[113.8888,22.34587],[113.8888,22.34587],[113.88883,22.34583],[113.88883,22.34582],[113.8889,22.34568],[113.8889,22.34568],[113.88891,22.34564],[113.88895,22.34559],[113.88895,22.34559],[113.88896,22.34551],[113.88899,22.34543],[113.88901,22.34538],[113.88901,22.34532],[113.88902,22.34529],[113.88902,22.34529],[113.88903,22.34525],[113.88905,22.34522],[113.88902,22.34517],[113.88902,22.34515],[113.88904,22.34512],[113.88908,22.34512],[113.88908,22.34512],[113.88908,22.34511],[113.8891,22.34511],[113.88911,22.34509],[113.88911,22.34509],[113.88912,22.34509],[113.88915,22.34501],[113.88915,22.34501],[113.8892,22.34491],[113.8892,22.34491],[113.88926,22.34482],[113.88926,22.34482],[113.88929,22.34477],[113.88929,22.34476],[113.8893,22.34472],[113.8893,22.34472],[113.88933,22.34463],[113.88933,22.34463],[113.88933,22.34459],[113.88933,22.34459],[113.88933,22.34459],[113.88932,22.34457],[113.88932,22.34457],[113.88929,22.34454],[113.88928,22.34454],[113.88928,22.34453],[113.88928,22.34453],[113.88928,22.3445],[113.88928,22.3445],[113.88929,22.34449],[113.88929,22.34449],[113.88931,22.34446],[113.88931,22.34445],[113.88931,22.34445],[113.88939,22.3444],[113.88939,22.3444],[113.88944,22.34435],[113.88944,22.34435],[113.88946,22.34431],[113.88946,22.34431],[113.88946,22.34431],[113.88948,22.34425],[113.88948,22.34425],[113.88948,22.34419],[113.88948,22.34419],[113.88948,22.34419],[113.88946,22.34416],[113.88946,22.34416],[113.88944,22.3441],[113.88944,22.3441],[113.88944,22.3441],[113.88944,22.34405],[113.88944,22.34405],[113.88945,22.34397],[113.88945,22.34397],[113.88945,22.34384],[113.88945,22.34382],[113.88941,22.34376],[113.88941,22.34376],[113.88939,22.34373],[113.88939,22.34372],[113.88939,22.34372],[113.88938,22.34368],[113.88938,22.34368],[113.88937,22.34364],[113.88937,22.34364],[113.88938,22.34361],[113.88938,22.34361],[113.8894,22.34356],[113.8894,22.34356],[113.88944,22.34348],[113.88944,22.34348],[113.88953,22.34337],[113.88953,22.34337],[113.88956,22.34333],[113.88957,22.34333],[113.88957,22.34333],[113.88964,22.34327],[113.88964,22.34327],[113.88976,22.34318],[113.88976,22.34318],[113.88979,22.34315],[113.88979,22.34315],[113.88984,22.34308],[113.88984,22.34308],[113.88989,22.34299],[113.88989,22.34299],[113.88996,22.34288],[113.88996,22.34287],[113.88999,22.34278],[113.88999,22.34278],[113.89001,22.34265],[113.89001,22.34265],[113.89006,22.34252],[113.89006,22.34252],[113.89006,22.34252],[113.89015,22.34244],[113.89015,22.34244],[113.89022,22.34238],[113.89022,22.34238],[113.89029,22.34234],[113.89029,22.34234],[113.89029,22.34234],[113.89034,22.34233],[113.89035,22.34233],[113.89035,22.34233],[113.89041,22.34234],[113.89042,22.34234],[113.89042,22.34234],[113.89045,22.34236],[113.89046,22.34236],[113.89046,22.34236],[113.8905,22.34243],[113.8905,22.34243],[113.89056,22.3425],[113.89056,22.3425],[113.89065,22.34262],[113.89063,22.34275],[113.89063,22.34275],[113.89063,22.34275],[113.89064,22.34278],[113.89064,22.34278],[113.89064,22.34278],[113.89066,22.3428],[113.89066,22.3428],[113.8907,22.34284],[113.8907,22.34285],[113.8907,22.34285],[113.89071,22.34286],[113.89071,22.34287],[113.89071,22.34287],[113.89071,22.34288],[113.89071,22.34288],[113.89071,22.34288],[113.89071,22.34288],[113.89071,22.34289],[113.8907,22.34289],[113.89069,22.34289],[113.89069,22.34289],[113.89067,22.3429],[113.89067,22.3429],[113.89067,22.3429],[113.89066,22.34291],[113.89066,22.34291],[113.89066,22.34291],[113.89066,22.34291],[113.89066,22.34292],[113.89066,22.34292],[113.89066,22.34293],[113.89068,22.34297],[113.89068,22.34297],[113.89069,22.34301],[113.89069,22.34302],[113.89069,22.34302],[113.89069,22.34304],[113.89069,22.34305],[113.89068,22.34307],[113.89068,22.34307],[113.89067,22.3431],[113.89067,22.3431],[113.89067,22.3431],[113.89068,22.34314],[113.89068,22.34314],[113.89068,22.34314],[113.89072,22.34319],[113.89072,22.34319],[113.89075,22.34322],[113.89075,22.34322],[113.89077,22.34325],[113.89077,22.34325],[113.89079,22.34326],[113.89079,22.34327],[113.89079,22.34327],[113.89079,22.34327],[113.89079,22.34328],[113.89079,22.34328],[113.89079,22.34328],[113.89079,22.34329],[113.89078,22.34329],[113.89078,22.34329],[113.89077,22.3433],[113.89077,22.34331],[113.89077,22.34331],[113.89077,22.34331],[113.89077,22.34331],[113.89077,22.34332],[113.89077,22.34332],[113.89077,22.34335],[113.89077,22.34335],[113.89077,22.34336],[113.89077,22.34336],[113.89076,22.34336],[113.89076,22.34337],[113.89076,22.34337],[113.89075,22.34338],[113.89074,22.34338],[113.89073,22.34339],[113.89073,22.34339],[113.89071,22.3434],[113.89071,22.3434],[113.89071,22.3434],[113.89071,22.3434],[113.89071,22.34342],[113.89071,22.34342],[113.8907,22.34342],[113.8907,22.34343],[113.8907,22.34343],[113.89069,22.34343],[113.89069,22.34343],[113.89068,22.34343],[113.89067,22.34343],[113.89067,22.34344],[113.89066,22.34344],[113.89066,22.34344],[113.89065,22.34346],[113.89065,22.34346],[113.89057,22.34364],[113.89053,22.34389],[113.89053,22.34404],[113.89054,22.34423],[113.89057,22.34433],[113.89057,22.34434],[113.8906,22.34448],[113.89065,22.34461],[113.89074,22.34475],[113.8911,22.34495],[113.89129,22.3451],[113.89129,22.34511],[113.8913,22.34517],[113.89125,22.34529],[113.89132,22.3454],[113.89145,22.34552],[113.89152,22.34547],[113.89254,22.34574],[113.89257,22.34569],[113.89265,22.34574],[113.89252,22.34593],[113.89244,22.34588],[113.89245,22.34586],[113.89178,22.34567],[113.8918,22.34577],[113.89178,22.34581],[113.89175,22.34582],[113.89171,22.34581],[113.89165,22.34582],[113.89163,22.34582],[113.89158,22.34589],[113.89157,22.34594],[113.8916,22.34603],[113.89142,22.34616],[113.89136,22.34625],[113.89122,22.34633],[113.89114,22.34627],[113.89113,22.34627],[113.8911,22.34628],[113.8911,22.34628],[113.8911,22.34628],[113.89107,22.3463],[113.89106,22.3463],[113.89106,22.3463],[113.89102,22.34635],[113.89102,22.34635],[113.89096,22.34647],[113.89093,22.34655],[113.89093,22.34655],[113.89095,22.34659],[113.89095,22.34659],[113.89099,22.34662],[113.89101,22.34664],[113.89103,22.34666],[113.89103,22.34666],[113.89104,22.34667],[113.89103,22.34668],[113.89101,22.3467],[113.891,22.3467],[113.891,22.3467],[113.89096,22.34671],[113.89093,22.34671],[113.89088,22.34674],[113.8908,22.34675],[113.8908,22.34675],[113.89076,22.34674],[113.89073,22.34673],[113.8907,22.34671],[113.89057,22.34658],[113.89057,22.34658],[113.89054,22.34656],[113.89051,22.34654],[113.89051,22.34654],[113.89049,22.34654],[113.89048,22.34654],[113.89045,22.34651],[113.89044,22.34649],[113.89034,22.3465],[113.89027,22.34652],[113.89015,22.34653],[113.89009,22.34654],[113.89004,22.34655],[113.88988,22.34657],[113.88975,22.34656],[113.88971,22.34657],[113.88965,22.34658],[113.88959,22.34658],[113.88953,22.34659],[113.88947,22.34657],[113.88942,22.34657],[113.88938,22.34657],[113.8892,22.34653],[113.88917,22.34653],[113.88917,22.34653],[113.8891,22.34653],[113.8891,22.34653]]],[[[113.88575,22.34709],[113.88577,22.3471],[113.88577,22.34711],[113.88575,22.34712],[113.88574,22.34713],[113.88577,22.34716],[113.88578,22.34717],[113.88576,22.34719],[113.88575,22.3472],[113.88573,22.34719],[113.88572,22.34718],[113.88571,22.34716],[113.8857,22.34715],[113.88568,22.34714],[113.88567,22.34713],[113.88567,22.34711],[113.88568,22.3471],[113.8857,22.34708],[113.88572,22.34708],[113.88575,22.34709]]],[[[113.88497,22.34815],[113.88498,22.34817],[113.88499,22.34818],[113.88501,22.34821],[113.88501,22.34823],[113.885,22.34825],[113.88499,22.34825],[113.88497,22.34825],[113.88494,22.34822],[113.88492,22.34819],[113.88492,22.34817],[113.88493,22.34815],[113.88495,22.34815],[113.88497,22.34815]]],[[[113.88517,22.34815],[113.88525,22.34819],[113.88526,22.34821],[113.88527,22.34823],[113.88529,22.34825],[113.88534,22.3483],[113.88534,22.34832],[113.88534,22.34834],[113.88532,22.34836],[113.8853,22.34837],[113.88529,22.34838],[113.88527,22.34838],[113.88523,22.34837],[113.88519,22.34834],[113.88509,22.34826],[113.88508,22.34825],[113.88508,22.34823],[113.88508,22.34819],[113.88508,22.34817],[113.88511,22.34815],[113.88513,22.34815],[113.88517,22.34815]]],[[[113.88677,22.34863],[113.88677,22.34866],[113.88667,22.34862],[113.88656,22.34861],[113.88643,22.34859],[113.8863,22.34855],[113.88616,22.34849],[113.886,22.34844],[113.88593,22.34842],[113.88594,22.3484],[113.88605,22.34839],[113.88611,22.34837],[113.88618,22.34835],[113.88623,22.3483],[113.8863,22.34821],[113.88634,22.34813],[113.88637,22.34806],[113.88639,22.34796],[113.88639,22.34788],[113.88634,22.34774],[113.8863,22.34767],[113.8863,22.34763],[113.88631,22.34757],[113.88628,22.34752],[113.88628,22.34746],[113.88624,22.34741],[113.8863,22.34729],[113.8863,22.34729],[113.88632,22.34722],[113.88637,22.34718],[113.88637,22.34713],[113.88639,22.34711],[113.88644,22.34709],[113.88646,22.34707],[113.8865,22.34705],[113.8865,22.34704],[113.88652,22.34705],[113.88657,22.34707],[113.8866,22.34708],[113.88659,22.34711],[113.88657,22.34714],[113.88663,22.34716],[113.88667,22.34717],[113.8867,22.34718],[113.88669,22.34723],[113.8867,22.34727],[113.88673,22.3473],[113.88679,22.34733],[113.88683,22.34735],[113.88688,22.3474],[113.88695,22.34745],[113.887,22.34745],[113.88706,22.34744],[113.88707,22.3474],[113.88706,22.34734],[113.88706,22.34733],[113.88709,22.34734],[113.88712,22.34736],[113.88715,22.34737],[113.88717,22.34741],[113.8872,22.34744],[113.88721,22.34747],[113.88729,22.3475],[113.88735,22.34748],[113.88741,22.34745],[113.88745,22.3474],[113.88751,22.34736],[113.88755,22.34732],[113.88757,22.34733],[113.88742,22.34755],[113.88733,22.34772],[113.88727,22.34785],[113.88712,22.34812],[113.88712,22.34812],[113.88695,22.34838],[113.88691,22.34848],[113.88688,22.34853],[113.88686,22.34854],[113.88684,22.34857],[113.88684,22.3486],[113.88684,22.34862],[113.8868,22.34861],[113.88678,22.34861],[113.88677,22.34863]]],[[[113.88556,22.3488],[113.88554,22.3488],[113.88553,22.34878],[113.88549,22.34877],[113.88547,22.34878],[113.88546,22.34879],[113.8854,22.3488],[113.88538,22.34879],[113.88537,22.34878],[113.88537,22.34877],[113.8854,22.34875],[113.8854,22.34873],[113.88539,22.34873],[113.88537,22.34872],[113.88535,22.34871],[113.88534,22.34869],[113.88532,22.34869],[113.88531,22.34868],[113.8853,22.34865],[113.88531,22.34863],[113.88532,22.34862],[113.88534,22.34861],[113.88536,22.34859],[113.88536,22.34858],[113.88536,22.34857],[113.88536,22.34857],[113.88536,22.34851],[113.88537,22.3485],[113.88539,22.34849],[113.8854,22.34848],[113.8854,22.34845],[113.8854,22.34844],[113.8854,22.34841],[113.8854,22.34839],[113.8854,22.34837],[113.88541,22.34836],[113.88542,22.34835],[113.88544,22.34835],[113.88545,22.34835],[113.88546,22.34835],[113.88547,22.34837],[113.88547,22.34839],[113.88549,22.34844],[113.8855,22.34844],[113.88551,22.34845],[113.88552,22.34844],[113.88553,22.34844],[113.88555,22.34843],[113.88556,22.34842],[113.88557,22.34841],[113.88559,22.34842],[113.8856,22.34843],[113.8856,22.34843],[113.88561,22.34845],[113.88563,22.34846],[113.88565,22.34849],[113.88565,22.34849],[113.88569,22.34857],[113.88569,22.34859],[113.88568,22.34868],[113.88569,22.34871],[113.8857,22.34873],[113.88571,22.34875],[113.8857,22.34877],[113.88569,22.34878],[113.88568,22.34877],[113.88568,22.34875],[113.88567,22.34874],[113.88567,22.34873],[113.88565,22.34874],[113.88564,22.34877],[113.88564,22.34877],[113.88563,22.34878],[113.88561,22.34879],[113.88559,22.34879],[113.88556,22.3488]]],[[[113.88914,22.3519],[113.88922,22.35191],[113.88922,22.35192],[113.88921,22.35193],[113.8892,22.35193],[113.88919,22.35195],[113.8892,22.35196],[113.88924,22.35201],[113.88923,22.35202],[113.88921,22.35202],[113.8892,22.35204],[113.88923,22.35206],[113.88922,22.35208],[113.8892,22.35208],[113.88914,22.35209],[113.88912,22.35208],[113.8891,22.35206],[113.88909,22.35204],[113.88909,22.35202],[113.88909,22.35199],[113.88906,22.35195],[113.88906,22.35192],[113.88909,22.3519],[113.88913,22.3519],[113.88914,22.3519]]],[[[113.89007,22.35232],[113.89001,22.35252],[113.88991,22.3525],[113.88998,22.35229],[113.89007,22.35232]]],[[[113.88602,22.35263],[113.88601,22.35263],[113.886,22.35266],[113.88599,22.35268],[113.886,22.35269],[113.886,22.3527],[113.88599,22.35271],[113.88597,22.35272],[113.88595,22.35272],[113.88593,22.35271],[113.88593,22.3527],[113.88593,22.35268],[113.88593,22.35264],[113.88594,22.35262],[113.88595,22.3526],[113.88596,22.35259],[113.88596,22.3526],[113.88597,22.35261],[113.88597,22.35262],[113.88598,22.35262],[113.88601,22.35262],[113.88602,22.35263]]],[[[113.88615,22.35267],[113.88617,22.35269],[113.88618,22.35271],[113.88618,22.35272],[113.88617,22.35273],[113.88613,22.35273],[113.88611,22.35272],[113.8861,22.35271],[113.8861,22.35268],[113.88611,22.35267],[113.88612,22.35266],[113.88615,22.35267]]],[[[113.88577,22.35259],[113.88577,22.3526],[113.88577,22.35262],[113.88577,22.35263],[113.88578,22.35264],[113.88579,22.35265],[113.88579,22.35269],[113.88579,22.35269],[113.88577,22.3527],[113.88576,22.35272],[113.88575,22.35275],[113.88573,22.35275],[113.88567,22.35273],[113.88566,22.35272],[113.88565,22.3527],[113.88566,22.35268],[113.88567,22.35267],[113.88569,22.35264],[113.8857,22.35263],[113.88572,22.35259],[113.88574,22.35258],[113.88577,22.35259]]],[[[113.88919,22.35279],[113.88914,22.35297],[113.88891,22.35291],[113.88897,22.35273],[113.88919,22.35279]]],[[[113.88952,22.35288],[113.88947,22.35304],[113.88931,22.353],[113.88936,22.35284],[113.88952,22.35288]]],[[[113.88815,22.35344],[113.88802,22.35346],[113.88792,22.35355],[113.88783,22.35359],[113.88775,22.3536],[113.8876,22.3536],[113.88753,22.35358],[113.88736,22.35356],[113.88722,22.3535],[113.88714,22.35349],[113.88707,22.35343],[113.88703,22.35343],[113.88699,22.35346],[113.88696,22.35347],[113.88688,22.35346],[113.88668,22.35335],[113.88658,22.35322],[113.88662,22.35312],[113.88657,22.35291],[113.88643,22.35272],[113.88632,22.3527],[113.88582,22.35239],[113.88568,22.35218],[113.88572,22.35173],[113.88583,22.35149],[113.88596,22.35128],[113.88617,22.35116],[113.88621,22.35117],[113.88624,22.3512],[113.88628,22.35118],[113.88642,22.35111],[113.88651,22.35104],[113.8869,22.3511],[113.88702,22.35116],[113.88721,22.35136],[113.88743,22.35148],[113.88766,22.35179],[113.88797,22.35202],[113.88804,22.35212],[113.88812,22.35211],[113.88815,22.35219],[113.88816,22.35226],[113.8882,22.35229],[113.88827,22.35233],[113.88834,22.35239],[113.88838,22.35249],[113.88846,22.35261],[113.88844,22.35264],[113.88843,22.35265],[113.88844,22.35269],[113.88845,22.3527],[113.88846,22.35272],[113.88848,22.35273],[113.88849,22.35274],[113.88852,22.35279],[113.88851,22.3528],[113.8885,22.35281],[113.8885,22.35285],[113.88851,22.35286],[113.88852,22.35286],[113.88854,22.35286],[113.88855,22.35287],[113.88856,22.3529],[113.88855,22.35293],[113.88852,22.35294],[113.88851,22.35295],[113.88852,22.35301],[113.88853,22.35303],[113.8885,22.35313],[113.88844,22.3532],[113.88843,22.35323],[113.88836,22.35327],[113.88822,22.35341],[113.88815,22.35344]]],[[[113.88971,22.35349],[113.88964,22.3537],[113.88941,22.35364],[113.88947,22.35343],[113.88971,22.35349]]],[[[113.88784,22.35374],[113.88787,22.35376],[113.88789,22.35376],[113.88793,22.35379],[113.88794,22.35381],[113.88793,22.35383],[113.88784,22.35389],[113.88782,22.3539],[113.8878,22.35387],[113.88779,22.35386],[113.88779,22.35382],[113.88778,22.35379],[113.88778,22.35377],[113.88779,22.35374],[113.8878,22.35373],[113.88781,22.35373],[113.88784,22.35374]]],[[[113.87459,22.35653],[113.87451,22.35648],[113.87449,22.35651],[113.87446,22.3565],[113.87443,22.35638],[113.87444,22.35634],[113.87445,22.35631],[113.87452,22.35626],[113.87456,22.35609],[113.87462,22.35598],[113.87469,22.35595],[113.87477,22.35596],[113.87492,22.35605],[113.87493,22.35608],[113.87486,22.35608],[113.87485,22.35614],[113.87485,22.35626],[113.87487,22.3563],[113.87493,22.35631],[113.87492,22.35625],[113.87497,22.35621],[113.875,22.35625],[113.87498,22.35632],[113.87502,22.35634],[113.87495,22.35644],[113.87488,22.35652],[113.87481,22.3565],[113.87474,22.35643],[113.87469,22.35643],[113.87462,22.35647],[113.87459,22.35653]]],[[[113.87421,22.35687],[113.87421,22.35689],[113.8742,22.3569],[113.87418,22.35688],[113.87419,22.35677],[113.87425,22.35661],[113.87431,22.35661],[113.87434,22.35664],[113.8744,22.35666],[113.87441,22.35669],[113.87442,22.35675],[113.87442,22.35682],[113.87437,22.35683],[113.87435,22.35685],[113.8743,22.35687],[113.87426,22.35686],[113.87421,22.35687]]],[[[113.87427,22.35706],[113.87424,22.3571],[113.87422,22.3571],[113.87423,22.35707],[113.8742,22.35706],[113.87422,22.35705],[113.87424,22.35704],[113.87427,22.35706]]],[[[113.88189,22.37519],[113.88186,22.37519],[113.88179,22.37516],[113.88174,22.37517],[113.88171,22.37515],[113.88169,22.37512],[113.88169,22.37509],[113.88173,22.37507],[113.88176,22.37502],[113.88182,22.37499],[113.88186,22.375],[113.88193,22.37504],[113.88198,22.37511],[113.88198,22.37514],[113.88194,22.37516],[113.88189,22.37519]]],[[[113.87839,22.38182],[113.87837,22.38186],[113.87814,22.38192],[113.87814,22.38198],[113.87811,22.38199],[113.87807,22.38204],[113.87795,22.3821],[113.87781,22.38204],[113.8777,22.38194],[113.87764,22.38185],[113.87769,22.3818],[113.87749,22.3817],[113.87743,22.38161],[113.87744,22.38155],[113.87738,22.38143],[113.87736,22.38123],[113.87733,22.38062],[113.87727,22.38043],[113.87728,22.38029],[113.87728,22.38019],[113.87729,22.38002],[113.87737,22.37995],[113.8774,22.37983],[113.87749,22.37981],[113.8775,22.37976],[113.87769,22.37982],[113.87783,22.37979],[113.878,22.37971],[113.87811,22.37961],[113.87859,22.37949],[113.87872,22.37937],[113.87882,22.37932],[113.87913,22.37945],[113.87928,22.3793],[113.87936,22.37929],[113.87949,22.37921],[113.87957,22.37919],[113.87969,22.3791],[113.87981,22.37909],[113.87999,22.37915],[113.88021,22.37913],[113.88028,22.37906],[113.88028,22.37893],[113.88035,22.37886],[113.88046,22.37883],[113.88083,22.37871],[113.8811,22.37854],[113.88116,22.37839],[113.8813,22.37824],[113.8815,22.37817],[113.8821,22.37754],[113.88238,22.37711],[113.88246,22.37662],[113.88241,22.37653],[113.88237,22.37656],[113.88232,22.37653],[113.88233,22.37649],[113.88237,22.37645],[113.88242,22.37649],[113.88245,22.37643],[113.88248,22.37632],[113.88248,22.37631],[113.88245,22.3763],[113.88244,22.37627],[113.88248,22.37626],[113.88248,22.37614],[113.88261,22.37583],[113.88255,22.3755],[113.8824,22.37513],[113.88242,22.37504],[113.88252,22.37477],[113.8825,22.37445],[113.88231,22.3743],[113.88196,22.37417],[113.88165,22.37398],[113.8815,22.37381],[113.88136,22.37377],[113.88136,22.37359],[113.88142,22.37331],[113.88141,22.37318],[113.88152,22.37299],[113.88151,22.37277],[113.88146,22.37256],[113.88129,22.37249],[113.88126,22.37236],[113.88098,22.37225],[113.88094,22.37216],[113.88084,22.37212],[113.88102,22.37193],[113.88103,22.37176],[113.88101,22.3717],[113.88101,22.37165],[113.88094,22.37156],[113.88104,22.37146],[113.88104,22.37133],[113.88084,22.3711],[113.88074,22.37108],[113.8807,22.37095],[113.88061,22.37091],[113.88052,22.37078],[113.88057,22.3707],[113.88072,22.3706],[113.88078,22.3705],[113.88094,22.37045],[113.88111,22.37044],[113.8812,22.37031],[113.88139,22.37031],[113.88151,22.37026],[113.88159,22.37017],[113.88162,22.37024],[113.88181,22.37022],[113.8819,22.37016],[113.88219,22.37017],[113.88241,22.3702],[113.88257,22.37031],[113.88268,22.3703],[113.88285,22.37043],[113.88301,22.37072],[113.88314,22.37073],[113.88333,22.37088],[113.88343,22.37106],[113.88346,22.3714],[113.88341,22.37162],[113.88329,22.37183],[113.88329,22.37192],[113.88318,22.372],[113.88314,22.37225],[113.8833,22.37239],[113.88343,22.37244],[113.88344,22.37251],[113.88376,22.37255],[113.88375,22.37258],[113.88367,22.37259],[113.88361,22.37264],[113.8836,22.37272],[113.88372,22.3729],[113.8843,22.37324],[113.88432,22.3733],[113.88449,22.37337],[113.88447,22.37344],[113.88455,22.37353],[113.88461,22.37371],[113.8844,22.3738],[113.88403,22.37372],[113.884,22.37377],[113.88395,22.37378],[113.88393,22.37375],[113.88396,22.37371],[113.88381,22.37367],[113.88374,22.37372],[113.88363,22.37365],[113.88354,22.37365],[113.88346,22.37377],[113.88349,22.37392],[113.88344,22.37403],[113.88326,22.37412],[113.88311,22.37432],[113.88306,22.37434],[113.88303,22.37446],[113.88296,22.37457],[113.88294,22.3748],[113.88297,22.37506],[113.88304,22.37526],[113.8831,22.37538],[113.88322,22.3754],[113.88334,22.37545],[113.88338,22.37552],[113.8835,22.37559],[113.88349,22.37563],[113.88362,22.37577],[113.88389,22.37591],[113.88395,22.37599],[113.88407,22.376],[113.88407,22.37606],[113.88421,22.3761],[113.88424,22.37614],[113.88429,22.37623],[113.88427,22.37625],[113.88424,22.37625],[113.88423,22.37632],[113.88425,22.37642],[113.8843,22.37641],[113.88437,22.37636],[113.88446,22.3763],[113.88446,22.37625],[113.88456,22.37624],[113.88456,22.37642],[113.88446,22.37642],[113.88446,22.3764],[113.8844,22.37645],[113.88434,22.3765],[113.88424,22.37654],[113.88415,22.37657],[113.88403,22.37662],[113.88399,22.37671],[113.88394,22.37677],[113.88386,22.37683],[113.88375,22.37694],[113.88373,22.37697],[113.8837,22.3771],[113.88373,22.37711],[113.88373,22.37729],[113.88397,22.37764],[113.88412,22.37769],[113.8842,22.37776],[113.88442,22.37792],[113.88455,22.3779],[113.88462,22.37793],[113.88461,22.37807],[113.88466,22.37815],[113.88477,22.37829],[113.88489,22.37846],[113.88505,22.37889],[113.8851,22.37895],[113.88513,22.3791],[113.88519,22.37911],[113.88519,22.37915],[113.885,22.37948],[113.88501,22.37958],[113.88495,22.37966],[113.88496,22.37972],[113.88492,22.37982],[113.88481,22.37988],[113.88475,22.38009],[113.88458,22.3801],[113.88404,22.38035],[113.88395,22.38028],[113.88383,22.38027],[113.88372,22.38035],[113.88365,22.38029],[113.88346,22.3803],[113.88325,22.38019],[113.88308,22.38024],[113.88284,22.38044],[113.88287,22.38051],[113.88285,22.38054],[113.88268,22.38054],[113.88262,22.38069],[113.88256,22.38074],[113.88251,22.3807],[113.88242,22.38071],[113.88233,22.38074],[113.88232,22.38079],[113.88209,22.38078],[113.88193,22.38072],[113.88177,22.3807],[113.88158,22.38063],[113.88147,22.38055],[113.88138,22.38056],[113.88128,22.38047],[113.88117,22.38048],[113.88117,22.38036],[113.88112,22.38032],[113.88087,22.38031],[113.88072,22.38042],[113.88066,22.38055],[113.88071,22.38064],[113.88067,22.38072],[113.88044,22.38076],[113.88047,22.38082],[113.88044,22.38094],[113.88031,22.38099],[113.8803,22.38112],[113.88021,22.3812],[113.8802,22.38134],[113.88009,22.3816],[113.87985,22.38187],[113.87945,22.38187],[113.87923,22.38196],[113.87919,22.38194],[113.87913,22.38184],[113.87887,22.38186],[113.87884,22.38181],[113.87862,22.3818],[113.87839,22.38182]]],[[[113.92043,22.38278],[113.92043,22.38282],[113.92043,22.38286],[113.92043,22.38291],[113.92042,22.38296],[113.92043,22.38279],[113.92042,22.38278],[113.92043,22.38278]]],[[[113.9204,22.3831],[113.92042,22.38317],[113.92043,22.38325],[113.92044,22.38331],[113.92044,22.38334],[113.92044,22.38337],[113.92044,22.38337],[113.92041,22.38314],[113.92038,22.38304],[113.9204,22.3831]]],[[[113.92046,22.38356],[113.92048,22.3836],[113.92049,22.38363],[113.92048,22.38366],[113.92047,22.38367],[113.92046,22.38355],[113.92046,22.38356]]],[[[113.92049,22.38374],[113.92049,22.38376],[113.92048,22.38374],[113.92049,22.38374]]],[[[113.92078,22.38421],[113.92076,22.38421],[113.92073,22.38422],[113.9207,22.38425],[113.92069,22.38428],[113.92069,22.38426],[113.92066,22.38408],[113.92059,22.38402],[113.92056,22.38393],[113.92056,22.38393],[113.92058,22.38396],[113.92058,22.38398],[113.92059,22.384],[113.92062,22.38404],[113.92064,22.38406],[113.92067,22.38408],[113.9207,22.38408],[113.92072,22.38408],[113.92076,22.38408],[113.92078,22.38421]]],[[[113.92083,22.3847],[113.92083,22.38474],[113.92083,22.38479],[113.92082,22.38482],[113.92083,22.38465],[113.92083,22.3847]]],[[[113.92091,22.38496],[113.92088,22.38491],[113.92089,22.38492],[113.9209,22.38494],[113.92091,22.38496]]],[[[113.92091,22.38496],[113.92091,22.38497],[113.92091,22.38498],[113.92091,22.38496]]],[[[113.92097,22.38515],[113.92096,22.38519],[113.92097,22.38514],[113.92097,22.38515]]],[[[113.92096,22.38536],[113.92096,22.38537],[113.92096,22.38537],[113.92096,22.38533],[113.92096,22.38536]]],[[[113.92091,22.38612],[113.92094,22.38578],[113.92094,22.38581],[113.92094,22.38589],[113.92093,22.38592],[113.92093,22.38595],[113.92093,22.38601],[113.92092,22.38608],[113.92091,22.38612]]],[[[113.92091,22.38612],[113.9209,22.3862],[113.9209,22.38623],[113.92091,22.38612]]],[[[113.92089,22.38634],[113.92089,22.38644],[113.92088,22.38648],[113.92089,22.38632],[113.92089,22.38634]]],[[[113.92086,22.38669],[113.92085,22.38674],[113.92087,22.38662],[113.92086,22.38669]]],[[[113.9208,22.38698],[113.9208,22.38703],[113.92081,22.38695],[113.9208,22.38698]]],[[[113.92069,22.38739],[113.92077,22.38709],[113.92075,22.38716],[113.92073,22.38724],[113.92072,22.3873],[113.92069,22.38739]]],[[[113.92069,22.38739],[113.92069,22.3874],[113.92069,22.38743],[113.92069,22.38746],[113.92068,22.38754],[113.92069,22.38739]]],[[[113.92063,22.38769],[113.9206,22.38776],[113.9206,22.38776],[113.92065,22.38761],[113.92063,22.38769]]],[[[113.92059,22.3878],[113.92059,22.3878],[113.92059,22.38779],[113.92059,22.3878]]],[[[113.92058,22.38782],[113.92058,22.38782],[113.92058,22.38782],[113.92058,22.38782]]],[[[113.92058,22.38783],[113.92058,22.38784],[113.92058,22.38783],[113.92058,22.38783]]],[[[113.92045,22.38818],[113.92044,22.38822],[113.92043,22.38823],[113.9204,22.38831],[113.9204,22.38832],[113.92039,22.38833],[113.92047,22.38813],[113.92045,22.38818]]],[[[113.92037,22.38838],[113.92036,22.3884],[113.92036,22.3884],[113.92035,22.38843],[113.92034,22.38844],[113.92034,22.38845],[113.92033,22.38847],[113.92031,22.38851],[113.92038,22.38835],[113.92037,22.38838]]],[[[113.91747,22.39109],[113.9175,22.39113],[113.91749,22.39113],[113.91748,22.39113],[113.91748,22.39113],[113.91746,22.39111],[113.91745,22.3911],[113.91744,22.39109],[113.91744,22.39109],[113.91743,22.39108],[113.91747,22.39109]]],[[[113.91772,22.39119],[113.91768,22.39118],[113.91764,22.39117],[113.91763,22.39117],[113.91772,22.39119]]],[[[113.91762,22.39117],[113.91761,22.39118],[113.91761,22.39118],[113.91761,22.39119],[113.9176,22.39119],[113.91759,22.39119],[113.91758,22.39118],[113.91758,22.39118],[113.91762,22.39117],[113.91762,22.39117]]],[[[113.91753,22.39119],[113.91753,22.39119],[113.91752,22.39117],[113.91752,22.39117],[113.91752,22.39116],[113.91753,22.39119]]],[[[113.9175,22.39121],[113.9174,22.3912],[113.91738,22.39113],[113.91738,22.39113],[113.91739,22.39114],[113.91739,22.39114],[113.9174,22.39114],[113.91741,22.39115],[113.91741,22.39116],[113.91741,22.39117],[113.91741,22.39118],[113.91741,22.39118],[113.91742,22.39119],[113.91742,22.39119],[113.91743,22.3912],[113.91744,22.3912],[113.91745,22.3912],[113.91746,22.39121],[113.91748,22.39121],[113.91748,22.39121],[113.9175,22.39121]]],[[[113.92009,22.38898],[113.92008,22.389],[113.92008,22.38901],[113.92006,22.38904],[113.92004,22.38908],[113.92003,22.38908],[113.92003,22.38909],[113.92002,22.38911],[113.92001,22.38913],[113.92001,22.38914],[113.92,22.38915],[113.91999,22.38916],[113.91998,22.38919],[113.91997,22.38921],[113.91996,22.38922],[113.91995,22.38923],[113.91995,22.38924],[113.91994,22.38926],[113.91993,22.38929],[113.91991,22.38931],[113.91991,22.38932],[113.9199,22.38933],[113.9199,22.38934],[113.91988,22.38937],[113.91988,22.38938],[113.91986,22.3894],[113.91986,22.38941],[113.91985,22.38943],[113.91983,22.38945],[113.91982,22.38947],[113.9198,22.3895],[113.9198,22.38951],[113.91979,22.38952],[113.91978,22.38954],[113.91977,22.38954],[113.91977,22.38955],[113.91976,22.38956],[113.91975,22.38958],[113.91974,22.3896],[113.91973,22.38961],[113.91971,22.38965],[113.9197,22.38966],[113.91968,22.38968],[113.91968,22.38969],[113.91967,22.38971],[113.91966,22.38972],[113.91965,22.38973],[113.91965,22.38974],[113.91964,22.38975],[113.91964,22.38976],[113.91963,22.38976],[113.91962,22.38977],[113.91961,22.38979],[113.91958,22.38984],[113.91957,22.38985],[113.91957,22.38986],[113.91955,22.38988],[113.91953,22.38991],[113.91953,22.38991],[113.91952,22.38992],[113.9195,22.38995],[113.91948,22.38997],[113.91947,22.38999],[113.91947,22.38999],[113.91946,22.39],[113.91943,22.39003],[113.91942,22.39005],[113.91941,22.39006],[113.91939,22.39007],[113.91936,22.39009],[113.91935,22.39009],[113.91935,22.39009],[113.91933,22.39012],[113.91932,22.39013],[113.91931,22.39015],[113.91929,22.39017],[113.91928,22.39019],[113.91927,22.39019],[113.91927,22.3902],[113.91926,22.39021],[113.91925,22.39023],[113.91923,22.39025],[113.91922,22.39026],[113.9192,22.39028],[113.91919,22.3903],[113.91918,22.39031],[113.91917,22.39032],[113.91916,22.39033],[113.91914,22.39036],[113.91912,22.39037],[113.9191,22.3904],[113.91908,22.39042],[113.91905,22.39046],[113.91903,22.39048],[113.91901,22.3905],[113.919,22.39051],[113.91899,22.39052],[113.91899,22.39053],[113.91897,22.39054],[113.91896,22.39056],[113.91894,22.39058],[113.9189,22.39061],[113.91889,22.39063],[113.91887,22.39065],[113.91886,22.39066],[113.91884,22.39068],[113.91882,22.39071],[113.9188,22.39073],[113.91877,22.39078],[113.91874,22.39081],[113.91871,22.39083],[113.91866,22.39089],[113.91864,22.39091],[113.91863,22.39093],[113.91862,22.39093],[113.91862,22.39094],[113.91861,22.39094],[113.9186,22.39095],[113.91859,22.39096],[113.91858,22.39097],[113.91856,22.39098],[113.91854,22.39099],[113.91852,22.39101],[113.9185,22.39103],[113.91848,22.39104],[113.91848,22.39105],[113.91846,22.39106],[113.91843,22.39109],[113.91842,22.3911],[113.91841,22.39111],[113.91839,22.39113],[113.91837,22.39116],[113.91837,22.39116],[113.91836,22.39117],[113.91834,22.39118],[113.91834,22.39119],[113.9183,22.39122],[113.9183,22.39122],[113.91842,22.3911],[113.91857,22.39094],[113.9187,22.3908],[113.91882,22.39064],[113.91904,22.39033],[113.91928,22.39001],[113.91939,22.38987],[113.91965,22.38955],[113.91986,22.38928],[113.92011,22.38894],[113.92009,22.38898]]],[[[113.91772,22.39119],[113.91778,22.39122],[113.91778,22.39122],[113.91772,22.3912],[113.91772,22.39119]]],[[[113.91795,22.39129],[113.91784,22.39125],[113.91784,22.39124],[113.91795,22.39129]]],[[[113.9175,22.39121],[113.91748,22.39122],[113.91748,22.39122],[113.91748,22.39123],[113.91748,22.39123],[113.91748,22.39124],[113.91748,22.39125],[113.91747,22.39125],[113.91745,22.39125],[113.91745,22.39125],[113.91744,22.39126],[113.91744,22.39126],[113.91743,22.39127],[113.91742,22.39128],[113.91742,22.39128],[113.91738,22.39129],[113.91736,22.3913],[113.91736,22.3913],[113.9175,22.39121]]],[[[113.91795,22.39129],[113.91796,22.39132],[113.91794,22.39131],[113.91795,22.39129]]],[[[113.91797,22.39135],[113.91796,22.39134],[113.91796,22.39134],[113.91796,22.39132],[113.91797,22.39135]]],[[[113.918,22.39139],[113.91799,22.39139],[113.91799,22.39138],[113.918,22.39139]]],[[[113.91729,22.39143],[113.91733,22.39135],[113.91733,22.39136],[113.91733,22.39137],[113.91732,22.39138],[113.91732,22.39139],[113.91731,22.39141],[113.9173,22.39142],[113.9173,22.39142],[113.91729,22.39143]]],[[[113.91729,22.39143],[113.91727,22.39144],[113.91726,22.39144],[113.91725,22.39144],[113.91725,22.39144],[113.91724,22.39144],[113.91724,22.39143],[113.91724,22.39143],[113.91724,22.39142],[113.91729,22.39143]]],[[[113.91854,22.39132],[113.91851,22.39131],[113.91849,22.39132],[113.91839,22.39139],[113.91834,22.39142],[113.91823,22.39145],[113.91819,22.39137],[113.9182,22.39136],[113.91821,22.39137],[113.91822,22.39137],[113.91823,22.39137],[113.91824,22.39137],[113.91827,22.39137],[113.9183,22.39137],[113.91832,22.39137],[113.91833,22.39137],[113.91835,22.39137],[113.91837,22.39137],[113.91839,22.39136],[113.9184,22.39135],[113.91841,22.39135],[113.91842,22.39134],[113.91844,22.39133],[113.91845,22.39133],[113.91847,22.39131],[113.91848,22.3913],[113.91849,22.3913],[113.91849,22.3913],[113.9185,22.3913],[113.91851,22.3913],[113.91852,22.3913],[113.91853,22.39131],[113.91854,22.39132]]],[[[113.9172,22.39146],[113.9172,22.39147],[113.91719,22.39149],[113.9172,22.39145],[113.9172,22.39146]]],[[[113.91728,22.39152],[113.91725,22.39152],[113.91725,22.39152],[113.91726,22.39152],[113.91726,22.39152],[113.91727,22.39152],[113.91728,22.39152]]],[[[113.91816,22.39153],[113.91816,22.39152],[113.91815,22.39151],[113.91815,22.3915],[113.91815,22.39149],[113.91816,22.39153]]],[[[113.91854,22.39132],[113.91856,22.39133],[113.91857,22.39133],[113.91857,22.39134],[113.9186,22.39134],[113.91861,22.39134],[113.91862,22.39135],[113.91864,22.39135],[113.91865,22.39141],[113.91864,22.39141],[113.91863,22.39141],[113.91861,22.39142],[113.9186,22.39142],[113.91858,22.39144],[113.91857,22.39145],[113.91857,22.39146],[113.91857,22.39146],[113.91855,22.39149],[113.91854,22.3915],[113.91854,22.3915],[113.91852,22.39152],[113.91852,22.39152],[113.91852,22.39152],[113.9185,22.39152],[113.91849,22.39151],[113.91848,22.39151],[113.91847,22.39152],[113.91846,22.39151],[113.91846,22.39151],[113.91845,22.3915],[113.91844,22.3915],[113.91844,22.39151],[113.91843,22.39151],[113.91843,22.39151],[113.91843,22.3915],[113.91842,22.3915],[113.91842,22.3915],[113.91841,22.3915],[113.9184,22.39151],[113.9184,22.39152],[113.9184,22.39153],[113.91839,22.39153],[113.91838,22.39154],[113.91838,22.39154],[113.91837,22.39153],[113.91837,22.39152],[113.91837,22.39152],[113.91837,22.39151],[113.91836,22.39151],[113.91835,22.3915],[113.91835,22.3915],[113.91834,22.3915],[113.91833,22.39151],[113.91833,22.39151],[113.91832,22.39151],[113.91831,22.39151],[113.91831,22.39152],[113.91829,22.39154],[113.91829,22.39155],[113.91828,22.39155],[113.91827,22.39155],[113.91854,22.39132]]],[[[113.91816,22.39153],[113.9182,22.39156],[113.91819,22.39156],[113.91818,22.39155],[113.91817,22.39154],[113.91816,22.39153]]],[[[113.91827,22.39155],[113.91826,22.39156],[113.91824,22.39156],[113.91823,22.39157],[113.91822,22.39157],[113.91821,22.39157],[113.9182,22.39156],[113.91827,22.39155]]],[[[113.91728,22.39152],[113.91728,22.39153],[113.91727,22.39155],[113.91727,22.39155],[113.91727,22.39156],[113.91725,22.3916],[113.91725,22.39161],[113.91728,22.39152]]],[[[113.91725,22.39161],[113.91724,22.39162],[113.91723,22.39163],[113.91723,22.39163],[113.91722,22.39164],[113.91721,22.39164],[113.9172,22.39164],[113.91718,22.39165],[113.91717,22.39165],[113.91717,22.39166],[113.91716,22.39166],[113.91715,22.39167],[113.91714,22.39167],[113.91713,22.39167],[113.91712,22.39167],[113.91712,22.39167],[113.91725,22.39161]]],[[[113.91696,22.39175],[113.91706,22.3917],[113.91704,22.39171],[113.91704,22.39172],[113.91703,22.39173],[113.91701,22.39174],[113.917,22.39175],[113.91699,22.39175],[113.91699,22.39175],[113.91698,22.39175],[113.91697,22.39175],[113.91696,22.39175]]],[[[113.91696,22.39175],[113.91695,22.39176],[113.91695,22.39177],[113.91695,22.39179],[113.91695,22.3918],[113.91692,22.39181],[113.91691,22.39183],[113.91696,22.39175]]],[[[113.91682,22.39195],[113.91681,22.39188],[113.91682,22.39189],[113.91683,22.39189],[113.91683,22.3919],[113.91683,22.39192],[113.91683,22.39193],[113.91683,22.39194],[113.91682,22.39195]]],[[[113.91682,22.39195],[113.91682,22.39196],[113.91681,22.39196],[113.91681,22.39197],[113.91679,22.39198],[113.91678,22.39199],[113.91676,22.392],[113.91675,22.392],[113.91682,22.39195]]],[[[113.91674,22.39204],[113.91674,22.39205],[113.91674,22.39205],[113.91674,22.39203],[113.91674,22.39204]]],[[[113.91667,22.39213],[113.91666,22.39213],[113.91666,22.39212],[113.91667,22.39213]]],[[[113.91667,22.39213],[113.91668,22.39211],[113.91668,22.39211],[113.91668,22.39212],[113.91668,22.39212],[113.91667,22.39213]]],[[[113.9166,22.39223],[113.91658,22.39222],[113.91658,22.39222],[113.91659,22.39222],[113.91659,22.39223],[113.9166,22.39223]]],[[[113.9166,22.39223],[113.91659,22.39224],[113.91659,22.39224],[113.9166,22.39223]]],[[[113.91652,22.39232],[113.9165,22.39232],[113.91653,22.39231],[113.91652,22.39232]]],[[[113.91647,22.39234],[113.91646,22.39235],[113.91645,22.39235],[113.91644,22.39234],[113.91643,22.39234],[113.91642,22.39234],[113.91641,22.39234],[113.91638,22.39234],[113.91649,22.39232],[113.91648,22.39232],[113.91648,22.39233],[113.91647,22.39234]]],[[[113.91566,22.39244],[113.91575,22.39239],[113.91573,22.39242],[113.91571,22.39242],[113.91571,22.39242],[113.9157,22.39243],[113.91571,22.39244],[113.9157,22.39245],[113.91568,22.39244],[113.91567,22.39245],[113.91566,22.39244]]],[[[113.91566,22.39244],[113.9156,22.39245],[113.9156,22.39246],[113.91557,22.39247],[113.91555,22.39247],[113.91554,22.39246],[113.91544,22.39247],[113.91545,22.39246],[113.91543,22.39245],[113.91544,22.39244],[113.91543,22.39243],[113.91543,22.39242],[113.91547,22.39246],[113.91566,22.39244]]],[[[113.91619,22.39249],[113.91621,22.39246],[113.9162,22.39247],[113.9162,22.39248],[113.91619,22.39249]]],[[[113.91619,22.39249],[113.91618,22.39249],[113.91617,22.39249],[113.91616,22.39249],[113.91615,22.39249],[113.91613,22.3925],[113.91612,22.39249],[113.91612,22.39249],[113.91612,22.39248],[113.91612,22.39247],[113.91619,22.39249]]],[[[113.91524,22.3925],[113.91542,22.39241],[113.91538,22.39245],[113.91535,22.39248],[113.91534,22.39247],[113.91531,22.3925],[113.91528,22.39248],[113.91526,22.39251],[113.91524,22.3925]]],[[[113.91597,22.3925],[113.91597,22.3925],[113.91596,22.39251],[113.91595,22.39251],[113.91594,22.39251],[113.91593,22.39251],[113.91592,22.39251],[113.91582,22.39247],[113.91582,22.39247],[113.91582,22.39246],[113.91577,22.39245],[113.91597,22.3925]]],[[[113.91602,22.39251],[113.91603,22.3925],[113.91603,22.3925],[113.91603,22.39251],[113.91602,22.39251]]],[[[113.91602,22.39251],[113.91601,22.39252],[113.916,22.39251],[113.91602,22.39251]]],[[[113.91524,22.3925],[113.91522,22.39252],[113.9152,22.39255],[113.91518,22.39254],[113.91514,22.3926],[113.91512,22.39259],[113.91511,22.3926],[113.91508,22.39259],[113.91507,22.3926],[113.91505,22.39259],[113.91524,22.3925]]],[[[113.91505,22.39264],[113.91505,22.39262],[113.91506,22.39262],[113.91505,22.39264]]],[[[113.91505,22.39264],[113.91507,22.39265],[113.9151,22.39267],[113.91505,22.39264]]],[[[113.91502,22.39273],[113.91502,22.39273],[113.91502,22.39273],[113.91502,22.39273],[113.91502,22.39273]]],[[[113.9151,22.39279],[113.91504,22.39276],[113.91506,22.39277],[113.91508,22.39278],[113.91509,22.39278],[113.9151,22.39279]]],[[[113.9151,22.39279],[113.9151,22.39279],[113.91511,22.3928],[113.91511,22.3928],[113.91511,22.3928],[113.91511,22.39281],[113.91511,22.39281],[113.91511,22.39283],[113.9151,22.39279]]],[[[113.91509,22.39294],[113.91511,22.39284],[113.91511,22.39285],[113.9151,22.39288],[113.9151,22.39292],[113.91509,22.39293],[113.91509,22.39294]]],[[[113.91509,22.39294],[113.91508,22.39294],[113.91507,22.39295],[113.91506,22.39295],[113.91505,22.39296],[113.91504,22.39296],[113.91504,22.39296],[113.91509,22.39294]]],[[[113.91502,22.39297],[113.91502,22.39297],[113.91502,22.39297],[113.91502,22.39297]]],[[[113.91506,22.39303],[113.91504,22.393],[113.91504,22.393],[113.91505,22.39301],[113.91506,22.39302],[113.91506,22.39302],[113.91506,22.39303],[113.91506,22.39303]]],[[[113.91506,22.39303],[113.91505,22.39303],[113.91504,22.39303],[113.91503,22.39304],[113.91503,22.39304],[113.91502,22.39304],[113.91501,22.39304],[113.91499,22.39305],[113.91498,22.39305],[113.91494,22.39305],[113.91494,22.39305],[113.91493,22.39305],[113.91492,22.39305],[113.91492,22.39305],[113.91492,22.39305],[113.91506,22.39303]]],[[[113.9149,22.39308],[113.9149,22.39308],[113.9149,22.39308],[113.9149,22.39308],[113.9149,22.39308]]],[[[113.91499,22.39314],[113.91499,22.39316],[113.91499,22.39317],[113.91499,22.39319],[113.91499,22.39319],[113.91499,22.3932],[113.91499,22.39321],[113.91498,22.39325],[113.91497,22.39326],[113.91497,22.39327],[113.91497,22.39331],[113.91497,22.39333],[113.91497,22.39335],[113.91496,22.39337],[113.91496,22.39338],[113.91496,22.3934],[113.91495,22.39343],[113.91495,22.39346],[113.91493,22.39349],[113.91493,22.39351],[113.91492,22.39355],[113.91499,22.39313],[113.91499,22.39314]]],[[[113.91493,22.3938],[113.91493,22.3937],[113.91493,22.3937],[113.91493,22.39373],[113.91494,22.39376],[113.91494,22.39377],[113.91494,22.39379],[113.91493,22.3938]]],[[[113.9148,22.39405],[113.91478,22.39405],[113.91477,22.39405],[113.91476,22.39404],[113.9148,22.39405]]],[[[113.91493,22.3938],[113.91493,22.39381],[113.91493,22.39382],[113.91492,22.39384],[113.91491,22.39387],[113.9149,22.39389],[113.91488,22.39392],[113.91487,22.39393],[113.91487,22.39394],[113.91486,22.39395],[113.91485,22.39398],[113.91482,22.39402],[113.9148,22.39405],[113.91493,22.3938]]],[[[113.91479,22.3941],[113.91478,22.39413],[113.91478,22.39415],[113.91477,22.39417],[113.91477,22.3942],[113.91476,22.39422],[113.91476,22.39423],[113.91474,22.39426],[113.91473,22.39428],[113.91472,22.39432],[113.91471,22.39435],[113.91471,22.39436],[113.91471,22.39436],[113.9147,22.39437],[113.91468,22.3944],[113.91465,22.39443],[113.91465,22.39444],[113.91479,22.39409],[113.9147,22.39409],[113.9147,22.39408],[113.9147,22.39408],[113.91471,22.39408],[113.91472,22.39409],[113.91473,22.39409],[113.91473,22.39409],[113.91475,22.39409],[113.91476,22.39409],[113.91476,22.39409],[113.91478,22.39408],[113.91479,22.39408],[113.91479,22.39408],[113.91479,22.3941]]],[[[113.91465,22.39479],[113.91465,22.39472],[113.91465,22.39473],[113.91465,22.39475],[113.91465,22.39476],[113.91465,22.39477],[113.91465,22.39478],[113.91465,22.39479]]],[[[113.91465,22.39479],[113.91464,22.39482],[113.91461,22.39487],[113.9146,22.3949],[113.91459,22.39491],[113.91458,22.39493],[113.91457,22.39494],[113.91456,22.39496],[113.91455,22.39497],[113.91454,22.395],[113.91453,22.39502],[113.91452,22.39503],[113.91451,22.39504],[113.9145,22.39507],[113.91447,22.39511],[113.91444,22.39513],[113.91442,22.39518],[113.9144,22.3952],[113.91438,22.39522],[113.91438,22.39523],[113.91465,22.39479]]],[[[113.9141,22.39547],[113.9141,22.39548],[113.9141,22.39548],[113.9141,22.39547],[113.9141,22.39547]]],[[[113.91418,22.39547],[113.91418,22.39548],[113.91418,22.39548],[113.91417,22.39548],[113.91417,22.39547],[113.91418,22.39547]]],[[[113.9141,22.39552],[113.91411,22.39552],[113.91411,22.39553],[113.91411,22.39553],[113.91411,22.39553],[113.9141,22.39551],[113.9141,22.39552]]],[[[113.91419,22.39554],[113.91418,22.39553],[113.91418,22.39551],[113.91418,22.3955],[113.91419,22.39554]]],[[[113.91394,22.39561],[113.91393,22.39561],[113.91393,22.39561],[113.91394,22.39561]]],[[[113.91411,22.39563],[113.91411,22.39563],[113.9141,22.39564],[113.9141,22.39564],[113.91409,22.39564],[113.91408,22.39564],[113.91411,22.39562],[113.91411,22.39563]]],[[[113.91394,22.39561],[113.91399,22.39564],[113.91399,22.39564],[113.91398,22.39565],[113.91396,22.39564],[113.91394,22.39561]]],[[[113.91387,22.39565],[113.91387,22.39565],[113.91387,22.39565],[113.91387,22.39565]]],[[[113.91404,22.39566],[113.91404,22.39566],[113.91403,22.39566],[113.91402,22.39566],[113.91402,22.39566],[113.91404,22.39566]]],[[[113.91388,22.39568],[113.91388,22.39568],[113.91389,22.39569],[113.91389,22.3957],[113.9139,22.39571],[113.9139,22.39571],[113.9139,22.39572],[113.9139,22.39573],[113.9139,22.39574],[113.91389,22.39574],[113.9139,22.39575],[113.91389,22.39578],[113.91389,22.39579],[113.91387,22.3958],[113.91387,22.39567],[113.91388,22.39568]]],[[[113.91386,22.39581],[113.91385,22.39581],[113.91384,22.39581],[113.91383,22.3958],[113.91382,22.39581],[113.91382,22.39581],[113.91381,22.3958],[113.91381,22.3958],[113.91381,22.39579],[113.91382,22.39578],[113.91382,22.39578],[113.91387,22.3958],[113.91386,22.39581]]],[[[113.91382,22.39587],[113.91376,22.39582],[113.91376,22.39579],[113.91376,22.39579],[113.91377,22.39579],[113.91376,22.39582],[113.91376,22.39582],[113.91377,22.39583],[113.91377,22.39583],[113.91378,22.39583],[113.91379,22.39584],[113.9138,22.39584],[113.91381,22.39584],[113.91381,22.39585],[113.91382,22.39585],[113.91382,22.39586],[113.91382,22.39587]]],[[[113.9135,22.39589],[113.9135,22.39589],[113.91349,22.39589],[113.91347,22.39589],[113.9135,22.39589]]],[[[113.91346,22.39589],[113.91345,22.39589],[113.91346,22.39589],[113.91346,22.39589]]],[[[113.91369,22.39593],[113.91369,22.39593],[113.91369,22.39593],[113.91369,22.39593],[113.91369,22.39593]]],[[[113.91382,22.39587],[113.91382,22.39588],[113.91381,22.39589],[113.9138,22.39591],[113.91378,22.39594],[113.91382,22.39587]]],[[[113.9135,22.39596],[113.91353,22.39596],[113.9135,22.39596],[113.9135,22.39592],[113.9135,22.3959],[113.9135,22.39596]]],[[[113.91339,22.39596],[113.91339,22.39596],[113.91342,22.39596],[113.91339,22.39596]]],[[[113.9137,22.39597],[113.91367,22.39595],[113.91367,22.39595],[113.91367,22.39595],[113.91368,22.39596],[113.91369,22.39596],[113.9137,22.39597],[113.9137,22.39597]]],[[[113.91358,22.39598],[113.91356,22.39597],[113.91356,22.39597],[113.91356,22.39596],[113.91358,22.39598]]],[[[113.91375,22.39598],[113.91377,22.39595],[113.91376,22.39597],[113.91375,22.39598]]],[[[113.91375,22.39598],[113.91374,22.39598],[113.91373,22.39597],[113.91372,22.39596],[113.91372,22.39595],[113.91371,22.39594],[113.9137,22.39594],[113.91372,22.39595],[113.91375,22.39598]]],[[[113.91336,22.39598],[113.91336,22.39598],[113.91336,22.39599],[113.91336,22.39597],[113.91336,22.39598]]],[[[113.9137,22.39597],[113.9137,22.39598],[113.9137,22.396],[113.9137,22.39597]]],[[[113.91358,22.396],[113.91358,22.39599],[113.91358,22.39598],[113.91358,22.396]]],[[[113.91338,22.39601],[113.91337,22.396],[113.91338,22.396],[113.91338,22.39601]]],[[[113.91364,22.39602],[113.91363,22.39602],[113.91363,22.39601],[113.91363,22.39601],[113.91364,22.39602]]],[[[113.9137,22.396],[113.91369,22.396],[113.91368,22.39601],[113.91367,22.39601],[113.91364,22.39602],[113.91364,22.39602],[113.9137,22.396]]],[[[113.9134,22.39603],[113.91339,22.39603],[113.91338,22.39603],[113.91338,22.39603],[113.91338,22.39603],[113.9134,22.39602],[113.91338,22.39601],[113.91339,22.39602],[113.9134,22.39602],[113.9134,22.39602],[113.9134,22.39603]]],[[[113.91338,22.39604],[113.91337,22.39604],[113.91336,22.39605],[113.91336,22.39605],[113.91336,22.39605],[113.91338,22.39603],[113.91338,22.39604]]],[[[113.91338,22.3961],[113.91339,22.39611],[113.91338,22.39612],[113.91336,22.3961],[113.91338,22.3961]]],[[[113.91338,22.39612],[113.91338,22.39612],[113.91338,22.39612],[113.91338,22.39612]]],[[[113.91345,22.39618],[113.91345,22.3962],[113.91345,22.39621],[113.91345,22.39616],[113.91345,22.39618]]],[[[113.91345,22.39622],[113.91344,22.39622],[113.91343,22.39622],[113.91345,22.39622],[113.91345,22.39622]]],[[[113.91342,22.39625],[113.91341,22.39625],[113.91342,22.39625],[113.91342,22.39625],[113.91342,22.39625]]],[[[113.91344,22.39626],[113.91345,22.39626],[113.91344,22.39626],[113.91344,22.39626]]],[[[113.91347,22.39627],[113.91347,22.39627],[113.91346,22.39627],[113.91347,22.39627]]],[[[113.9135,22.39628],[113.9135,22.39627],[113.9135,22.39626],[113.9135,22.39626],[113.91349,22.39625],[113.91349,22.39625],[113.91348,22.39624],[113.91348,22.39624],[113.91348,22.39623],[113.91348,22.39622],[113.91348,22.39621],[113.91348,22.3962],[113.91349,22.3962],[113.9135,22.39618],[113.9135,22.39622],[113.91351,22.39622],[113.91351,22.39624],[113.91351,22.39625],[113.91353,22.39625],[113.91353,22.39626],[113.91351,22.39626],[113.9135,22.39628]]],[[[113.91372,22.39636],[113.91357,22.39622],[113.91355,22.39626],[113.91355,22.39624],[113.91355,22.39623],[113.91356,22.39622],[113.91357,22.39622],[113.91358,22.39622],[113.91359,22.39623],[113.9136,22.39624],[113.91361,22.39625],[113.91361,22.39626],[113.91362,22.39627],[113.91363,22.39628],[113.91365,22.3963],[113.91367,22.39631],[113.91368,22.39632],[113.91369,22.39633],[113.9137,22.39634],[113.9137,22.39634],[113.91371,22.39635],[113.91372,22.39636]]],[[[113.91372,22.39636],[113.91373,22.39638],[113.91373,22.39639],[113.91374,22.3964],[113.91375,22.39643],[113.91372,22.39636]]],[[[113.91376,22.39646],[113.91376,22.39646],[113.91376,22.39646],[113.91376,22.39646]]],[[[113.91379,22.39654],[113.91379,22.39651],[113.91377,22.39647],[113.91377,22.39647],[113.91379,22.3965],[113.91379,22.39651],[113.91379,22.39652],[113.91379,22.39652],[113.91379,22.39654]]],[[[113.91379,22.39654],[113.91379,22.39655],[113.91378,22.39656],[113.91378,22.39657],[113.91378,22.39657],[113.91379,22.39654]]],[[[113.91378,22.39657],[113.91377,22.39658],[113.91375,22.39656],[113.91375,22.39656],[113.91378,22.39657]]],[[[113.9137,22.39658],[113.91369,22.3966],[113.91369,22.3966],[113.91369,22.3966],[113.9137,22.39658],[113.9137,22.39658]]],[[[113.91369,22.39661],[113.91369,22.39661],[113.91369,22.3966],[113.91369,22.39661]]],[[[113.91388,22.39661],[113.91387,22.39662],[113.91387,22.39662],[113.91386,22.39661],[113.91387,22.3966],[113.91388,22.39661]]],[[[113.9137,22.39663],[113.91369,22.39663],[113.91369,22.39663],[113.9137,22.39663]]],[[[113.91378,22.39667],[113.91379,22.39668],[113.91379,22.39668],[113.91375,22.39666],[113.91376,22.39666],[113.91376,22.39666],[113.91377,22.39666],[113.91378,22.39667]]],[[[113.91397,22.39665],[113.91398,22.39667],[113.91398,22.39668],[113.91398,22.39668],[113.91399,22.39669],[113.91399,22.3967],[113.91399,22.39671],[113.914,22.39671],[113.914,22.39671],[113.914,22.39673],[113.914,22.39673],[113.914,22.39674],[113.91399,22.39674],[113.91399,22.39674],[113.91397,22.39664],[113.91397,22.39665]]],[[[113.91421,22.39675],[113.91415,22.39677],[113.91415,22.39677],[113.91416,22.39676],[113.91416,22.39676],[113.91416,22.39676],[113.91416,22.39676],[113.91417,22.39676],[113.9142,22.39676],[113.91421,22.39675]]],[[[113.91407,22.39678],[113.91407,22.39678],[113.91408,22.39679],[113.91408,22.39679],[113.91403,22.39679],[113.914,22.39677],[113.91401,22.39677],[113.91402,22.39677],[113.91404,22.39677],[113.91405,22.39677],[113.91406,22.39677],[113.91407,22.39678]]],[[[113.91421,22.39675],[113.91421,22.39675],[113.91422,22.39676],[113.91423,22.39676],[113.91426,22.39678],[113.91428,22.3968],[113.9143,22.39682],[113.91433,22.39684],[113.91433,22.39685],[113.91428,22.3968],[113.91421,22.39675]]],[[[113.91434,22.39685],[113.91436,22.39688],[113.91436,22.39689],[113.91437,22.39691],[113.91438,22.39691],[113.91433,22.39685],[113.91434,22.39685]]],[[[113.91474,22.39696],[113.91475,22.39696],[113.91473,22.39696],[113.91473,22.39696],[113.91474,22.39696]]],[[[113.91477,22.39697],[113.91478,22.39697],[113.91477,22.39696],[113.91477,22.39697]]],[[[113.91453,22.39697],[113.91454,22.39697],[113.91455,22.39697],[113.91456,22.39698],[113.91456,22.39698],[113.91453,22.39697]]],[[[113.91453,22.39697],[113.91449,22.39698],[113.9145,22.39698],[113.91451,22.39697],[113.91451,22.39697],[113.91452,22.39697],[113.91453,22.39697]]],[[[113.91459,22.39698],[113.9146,22.39698],[113.9146,22.39696],[113.91461,22.39695],[113.91462,22.39694],[113.91463,22.39694],[113.91464,22.39694],[113.91464,22.39695],[113.91463,22.39694],[113.91459,22.39698]]],[[[113.91459,22.39699],[113.91459,22.39699],[113.91459,22.39699],[113.91459,22.39699]]],[[[113.91494,22.39703],[113.91485,22.397],[113.91487,22.397],[113.91488,22.39701],[113.91492,22.39702],[113.91493,22.39702],[113.91494,22.39703]]],[[[113.91494,22.39703],[113.91495,22.39704],[113.91495,22.39705],[113.91494,22.39703]]],[[[113.915,22.39704],[113.91498,22.39707],[113.91498,22.39706],[113.91498,22.39705],[113.91499,22.39704],[113.915,22.39704]]],[[[113.91503,22.39709],[113.915,22.39705],[113.915,22.39705],[113.91503,22.39708],[113.91503,22.39709]]],[[[113.91503,22.39709],[113.91503,22.3971],[113.91502,22.3971],[113.91502,22.3971],[113.91503,22.39709]]],[[[113.915,22.39712],[113.915,22.39712],[113.91501,22.39712],[113.915,22.39712]]],[[[113.9151,22.39715],[113.9151,22.39715],[113.91511,22.39716],[113.91511,22.39718],[113.91511,22.39718],[113.91509,22.39715],[113.9151,22.39715]]],[[[113.91514,22.39723],[113.91513,22.39723],[113.91514,22.39723],[113.91514,22.39723]]],[[[113.91515,22.39731],[113.91515,22.39731],[113.91515,22.39731],[113.91515,22.39731]]],[[[113.91516,22.39731],[113.91516,22.39731],[113.91516,22.39731],[113.91516,22.39731],[113.91516,22.39731]]],[[[113.91523,22.39746],[113.91522,22.39749],[113.91523,22.39753],[113.91522,22.39749],[113.91523,22.39746],[113.91523,22.39746],[113.91523,22.39746]]],[[[113.91538,22.39777],[113.91532,22.39764],[113.91526,22.39757],[113.91526,22.39757],[113.91527,22.39758],[113.91527,22.39758],[113.91528,22.39759],[113.91529,22.3976],[113.91531,22.39763],[113.91533,22.39766],[113.91534,22.39767],[113.91536,22.39771],[113.91536,22.39772],[113.91537,22.39775],[113.91538,22.39777]]],[[[113.91538,22.39777],[113.91538,22.3978],[113.91538,22.39782],[113.91539,22.39782],[113.91538,22.39784],[113.91538,22.39788],[113.91538,22.39777]]],[[[113.91539,22.39802],[113.91539,22.39804],[113.91539,22.39806],[113.91539,22.39811],[113.91539,22.39812],[113.91538,22.39814],[113.91537,22.39818],[113.91536,22.39823],[113.91536,22.39824],[113.91536,22.39824],[113.91539,22.398],[113.91539,22.39802]]],[[[113.91533,22.3984],[113.91533,22.39842],[113.91533,22.39843],[113.91533,22.39846],[113.91533,22.39848],[113.91532,22.3985],[113.91532,22.39852],[113.91531,22.39853],[113.91531,22.39855],[113.9153,22.39857],[113.91533,22.39839],[113.91533,22.3984]]],[[[113.9153,22.39861],[113.9153,22.39862],[113.91529,22.39865],[113.91529,22.39867],[113.91528,22.3987],[113.9153,22.3986],[113.9153,22.39861]]],[[[113.91527,22.39879],[113.91528,22.39872],[113.91528,22.39872],[113.91528,22.39873],[113.91528,22.39875],[113.91527,22.39877],[113.91527,22.39878],[113.91527,22.39879]]],[[[113.91527,22.39879],[113.91526,22.39883],[113.91525,22.39884],[113.91527,22.39879]]],[[[113.9152,22.39899],[113.91519,22.39902],[113.91519,22.39903],[113.91519,22.39903],[113.91521,22.39898],[113.9152,22.39899]]],[[[113.91511,22.39914],[113.91511,22.39914],[113.91511,22.39913],[113.91511,22.39914]]],[[[113.91509,22.39934],[113.91508,22.39931],[113.91509,22.39932],[113.91509,22.39933],[113.91509,22.39934],[113.91509,22.39934]]],[[[113.91509,22.39934],[113.91509,22.39935],[113.91509,22.3994],[113.91508,22.39944],[113.91508,22.39945],[113.91508,22.39946],[113.91508,22.39947],[113.91508,22.39948],[113.91507,22.39951],[113.91507,22.39954],[113.91507,22.39957],[113.91507,22.39957],[113.91507,22.39958],[113.91507,22.39959],[113.91507,22.3996],[113.91507,22.39962],[113.91507,22.39961],[113.915,22.39962],[113.91509,22.39934]]],[[[113.91513,22.39976],[113.91513,22.39978],[113.91514,22.39979],[113.91511,22.39978],[113.9151,22.39976],[113.91512,22.39974],[113.91513,22.39976]]],[[[113.91505,22.39981],[113.91506,22.39984],[113.91514,22.39987],[113.91516,22.39987],[113.91515,22.39996],[113.91514,22.40007],[113.91507,22.40007],[113.91506,22.40006],[113.91506,22.40003],[113.91504,22.39998],[113.91502,22.39994],[113.91502,22.39993],[113.91502,22.39992],[113.91504,22.39988],[113.91505,22.39984],[113.91505,22.39983],[113.91505,22.39982],[113.91504,22.39981],[113.91503,22.39981],[113.91502,22.3998],[113.915,22.3998],[113.91499,22.39981],[113.91498,22.39981],[113.91497,22.3998],[113.91497,22.39979],[113.91496,22.39979],[113.91495,22.39979],[113.91495,22.3998],[113.91495,22.39981],[113.91494,22.39982],[113.91494,22.39982],[113.91494,22.39983],[113.91495,22.39983],[113.91494,22.39984],[113.91491,22.39988],[113.91485,22.39997],[113.91483,22.40001],[113.91489,22.39988],[113.91493,22.39976],[113.91498,22.3997],[113.91504,22.39964],[113.91507,22.39964],[113.9151,22.39966],[113.91509,22.39971],[113.91506,22.39976],[113.91505,22.39981]]],[[[113.91479,22.40017],[113.91477,22.40023],[113.91474,22.40031],[113.91473,22.40036],[113.9147,22.40044],[113.91468,22.40048],[113.9148,22.40009],[113.91479,22.40017]]],[[[113.91455,22.4008],[113.91451,22.40088],[113.91447,22.40095],[113.91445,22.40098],[113.91444,22.401],[113.91458,22.40073],[113.91455,22.4008]]],[[[113.91443,22.40103],[113.91443,22.40104],[113.91439,22.40113],[113.91437,22.40115],[113.91443,22.40103],[113.91443,22.40103]]],[[[113.91401,22.40167],[113.91423,22.40136],[113.91419,22.40141],[113.91418,22.40144],[113.91412,22.40153],[113.91408,22.40158],[113.91405,22.40163],[113.91401,22.40167]]],[[[113.91401,22.40167],[113.91397,22.40173],[113.91391,22.40181],[113.91386,22.40188],[113.91381,22.40193],[113.91375,22.402],[113.91371,22.40203],[113.91401,22.40167]]],[[[113.91326,22.40246],[113.91325,22.40247],[113.91328,22.40243],[113.91326,22.40246]]],[[[113.91118,22.40268],[113.91126,22.4026],[113.91126,22.4026],[113.91118,22.40268]]],[[[113.91304,22.40279],[113.91301,22.40282],[113.91295,22.40288],[113.91308,22.40272],[113.91304,22.40279]]],[[[113.91286,22.40302],[113.91289,22.40298],[113.91288,22.40299],[113.91286,22.40302]]],[[[113.91286,22.40302],[113.91283,22.40306],[113.91279,22.40309],[113.91271,22.40317],[113.91267,22.40319],[113.9126,22.40324],[113.91286,22.40302]]],[[[113.91233,22.40347],[113.91231,22.40347],[113.91223,22.40339],[113.91205,22.40323],[113.91197,22.40315],[113.91187,22.40307],[113.91169,22.4029],[113.91233,22.40347]]],[[[113.91233,22.40347],[113.9126,22.40324],[113.91257,22.40328],[113.9125,22.40335],[113.91246,22.40339],[113.91241,22.40343],[113.91237,22.40346],[113.91233,22.40347]]],[[[113.90759,22.40375],[113.90761,22.40374],[113.9076,22.40375],[113.9076,22.40375],[113.90759,22.40375],[113.90759,22.40375]]],[[[113.90758,22.40375],[113.90758,22.40376],[113.90756,22.40376],[113.90759,22.40375],[113.90758,22.40375]]],[[[113.90754,22.40377],[113.90753,22.40377],[113.90755,22.40376],[113.90755,22.40377],[113.90754,22.40377],[113.90754,22.40377],[113.90754,22.40377]]],[[[113.90806,22.40378],[113.90806,22.40378],[113.90806,22.40377],[113.90806,22.40378]]],[[[113.9075,22.40378],[113.90752,22.40378],[113.90752,22.40378],[113.90752,22.40378],[113.90751,22.40378],[113.9075,22.40378],[113.9075,22.40378]]],[[[113.90808,22.40379],[113.90807,22.40379],[113.90807,22.40379],[113.90808,22.40379]]],[[[113.90781,22.40381],[113.90781,22.40381],[113.90781,22.40381],[113.90781,22.40381]]],[[[113.90781,22.40381],[113.90785,22.4038],[113.90785,22.4038],[113.90785,22.40381],[113.90782,22.40381],[113.90781,22.40381]]],[[[113.90811,22.40382],[113.9081,22.40381],[113.90809,22.40381],[113.90809,22.4038],[113.90811,22.40382]]],[[[113.90799,22.4038],[113.90799,22.40381],[113.90798,22.40381],[113.90798,22.40382],[113.90797,22.40382],[113.90796,22.40383],[113.90796,22.40383],[113.90796,22.40383],[113.90795,22.40383],[113.90795,22.40382],[113.90794,22.4038],[113.90793,22.4038],[113.90792,22.4038],[113.90792,22.40379],[113.90791,22.40379],[113.9079,22.40378],[113.90803,22.40378],[113.90803,22.40378],[113.90803,22.40378],[113.90802,22.40378],[113.90801,22.40379],[113.90802,22.40379],[113.90801,22.4038],[113.90801,22.40379],[113.908,22.4038],[113.908,22.4038],[113.908,22.4038],[113.90799,22.4038],[113.90799,22.4038]]],[[[113.90735,22.40383],[113.90735,22.40383],[113.90734,22.40384],[113.90733,22.40384],[113.90732,22.40384],[113.90735,22.40383]]],[[[113.9075,22.40378],[113.9075,22.40379],[113.90748,22.40379],[113.90748,22.4038],[113.90747,22.4038],[113.90747,22.40381],[113.90747,22.40381],[113.90748,22.40381],[113.90748,22.40382],[113.90748,22.40382],[113.90748,22.40382],[113.90748,22.40382],[113.90747,22.40383],[113.90747,22.40383],[113.90746,22.40384],[113.90746,22.40384],[113.90745,22.40384],[113.90744,22.40384],[113.90743,22.40384],[113.90743,22.40384],[113.90743,22.40384],[113.90743,22.40383],[113.90742,22.40383],[113.90741,22.40383],[113.90741,22.40383],[113.90741,22.40383],[113.9074,22.40383],[113.90739,22.40383],[113.90738,22.40383],[113.90737,22.40383],[113.90735,22.40383],[113.9075,22.40378]]],[[[113.90731,22.40385],[113.90731,22.40385],[113.9073,22.40385],[113.9073,22.40385],[113.90731,22.40385],[113.90731,22.40385]]],[[[113.90773,22.40384],[113.90774,22.40384],[113.90773,22.40384],[113.90773,22.40385],[113.90771,22.40386],[113.90769,22.40386],[113.90768,22.40385],[113.90769,22.40385],[113.90769,22.40384],[113.90768,22.40384],[113.90768,22.40383],[113.90768,22.40383],[113.9077,22.40383],[113.90771,22.40383],[113.90772,22.40383],[113.90772,22.40382],[113.90772,22.40382],[113.90772,22.40381],[113.90771,22.40381],[113.90771,22.4038],[113.90772,22.4038],[113.90773,22.4038],[113.90773,22.4038],[113.90773,22.40379],[113.90773,22.40379],[113.90773,22.40378],[113.90775,22.40379],[113.90775,22.40379],[113.90775,22.4038],[113.90775,22.4038],[113.90775,22.40381],[113.90774,22.40381],[113.90774,22.40381],[113.90773,22.40382],[113.90774,22.40382],[113.90774,22.40383],[113.90773,22.40383],[113.90773,22.40384]]],[[[113.90724,22.40387],[113.90723,22.40388],[113.90723,22.40388],[113.90722,22.40388],[113.9072,22.40389],[113.9072,22.4039],[113.90719,22.4039],[113.90718,22.4039],[113.90718,22.4039],[113.90718,22.40389],[113.90717,22.40389],[113.90724,22.40387],[113.90724,22.40387]]],[[[113.90812,22.40396],[113.90812,22.40396],[113.90812,22.40395],[113.90811,22.40396],[113.90811,22.40396],[113.90811,22.40394],[113.9081,22.40394],[113.9081,22.40393],[113.9081,22.40393],[113.90811,22.40392],[113.90811,22.40391],[113.90811,22.40391],[113.90811,22.4039],[113.90811,22.4039],[113.90812,22.4039],[113.90812,22.40396]]],[[[113.9071,22.40396],[113.90713,22.40391],[113.90713,22.40391],[113.90713,22.40392],[113.90712,22.40392],[113.90713,22.40393],[113.90712,22.40393],[113.90712,22.40394],[113.90711,22.40394],[113.90711,22.40395],[113.90711,22.40395],[113.90711,22.40395],[113.9071,22.40396]]],[[[113.9071,22.40396],[113.90709,22.40396],[113.90709,22.40396],[113.9071,22.40396]]],[[[113.90701,22.404],[113.90701,22.404],[113.90701,22.40401],[113.90701,22.40401],[113.90701,22.40401],[113.907,22.40403],[113.90699,22.40404],[113.90698,22.40405],[113.90698,22.40404],[113.90697,22.40403],[113.90697,22.40403],[113.90698,22.40403],[113.90698,22.40402],[113.90698,22.40402],[113.90697,22.40402],[113.90697,22.40402],[113.90697,22.40401],[113.907,22.40397],[113.907,22.40397],[113.907,22.40398],[113.907,22.40399],[113.907,22.40399],[113.90701,22.40399],[113.90701,22.40399],[113.90701,22.404]]],[[[113.90812,22.40405],[113.90812,22.40404],[113.90812,22.40403],[113.90812,22.40403],[113.90812,22.40405]]],[[[113.90812,22.40405],[113.90814,22.40406],[113.90814,22.40406],[113.90814,22.40406],[113.90813,22.40406],[113.90812,22.40405]]],[[[113.90823,22.40405],[113.90828,22.40407],[113.90828,22.40407],[113.90828,22.40407],[113.90826,22.40406],[113.90826,22.40406],[113.90825,22.40406],[113.90824,22.40405],[113.90823,22.40405]]],[[[113.90823,22.40405],[113.90823,22.40405],[113.90823,22.40406],[113.90823,22.40406],[113.90822,22.40406],[113.90821,22.40407],[113.9082,22.40407],[113.90823,22.40405]]],[[[113.90818,22.40409],[113.90817,22.40408],[113.90817,22.40408],[113.90818,22.40409]]],[[[113.90818,22.40409],[113.90818,22.40408],[113.90818,22.40408],[113.90818,22.40409]]],[[[113.90837,22.40415],[113.90836,22.40413],[113.90837,22.40412],[113.90837,22.40411],[113.90837,22.4041],[113.90837,22.40415]]],[[[113.90678,22.40415],[113.90677,22.40415],[113.90676,22.40415],[113.90675,22.40415],[113.90674,22.40414],[113.90686,22.40411],[113.90685,22.40405],[113.90685,22.40405],[113.90687,22.40405],[113.90687,22.40405],[113.90689,22.40405],[113.9069,22.40405],[113.9069,22.40406],[113.90691,22.40406],[113.90691,22.40406],[113.90691,22.40407],[113.90691,22.40408],[113.9069,22.40408],[113.9069,22.40409],[113.90689,22.40409],[113.90688,22.40409],[113.90688,22.4041],[113.90687,22.4041],[113.90686,22.40411],[113.90685,22.40411],[113.90685,22.40412],[113.90685,22.40413],[113.90684,22.40413],[113.90684,22.40414],[113.90684,22.40414],[113.90683,22.40415],[113.90682,22.40415],[113.90682,22.40414],[113.90681,22.40415],[113.90679,22.40415],[113.90679,22.40415],[113.90678,22.40415]]],[[[113.90837,22.40416],[113.90837,22.40416],[113.90837,22.40416],[113.90837,22.40416]]],[[[113.91118,22.40268],[113.91014,22.40367],[113.91013,22.40367],[113.91013,22.40367],[113.91008,22.40372],[113.90962,22.40416],[113.90965,22.40411],[113.90959,22.40404],[113.90971,22.40392],[113.90982,22.40389],[113.90986,22.40393],[113.91003,22.40375],[113.90995,22.40369],[113.91003,22.40362],[113.91011,22.40367],[113.91014,22.40365],[113.91018,22.40356],[113.9102,22.40352],[113.9103,22.40342],[113.91043,22.40332],[113.91052,22.4033],[113.91118,22.40268]]],[[[113.90847,22.40425],[113.90846,22.40426],[113.90846,22.40426],[113.90846,22.40425],[113.90845,22.40425],[113.90844,22.40425],[113.90847,22.40425]]],[[[113.90856,22.40427],[113.90856,22.40427],[113.90856,22.40427],[113.90856,22.40427]]],[[[113.90855,22.40426],[113.90855,22.40427],[113.90854,22.40426],[113.90855,22.40426]]],[[[113.90657,22.40428],[113.90656,22.40428],[113.90654,22.40428],[113.90653,22.40428],[113.90652,22.40428],[113.90652,22.40428],[113.90651,22.40428],[113.9065,22.40428],[113.90649,22.40428],[113.90649,22.40427],[113.90649,22.40427],[113.90648,22.40426],[113.90648,22.40426],[113.90647,22.40426],[113.90646,22.40426],[113.90645,22.40426],[113.90644,22.40426],[113.90643,22.40426],[113.90643,22.40426],[113.90662,22.40421],[113.90671,22.40416],[113.90671,22.40417],[113.9067,22.40417],[113.90669,22.40417],[113.90669,22.40418],[113.90668,22.40418],[113.90667,22.40419],[113.90666,22.40419],[113.90666,22.40419],[113.90666,22.4042],[113.90665,22.4042],[113.90664,22.4042],[113.90663,22.4042],[113.90662,22.40421],[113.90662,22.40422],[113.90662,22.40422],[113.90663,22.40422],[113.90662,22.40423],[113.90662,22.40423],[113.90661,22.40424],[113.9066,22.40425],[113.90659,22.40426],[113.90659,22.40427],[113.90659,22.40427],[113.90656,22.40427],[113.90657,22.40428]]],[[[113.90863,22.4043],[113.90862,22.40429],[113.9086,22.40427],[113.90863,22.4043]]],[[[113.90644,22.40429],[113.90644,22.4043],[113.90643,22.4043],[113.90642,22.4043],[113.90641,22.4043],[113.9064,22.4043],[113.90638,22.4043],[113.90638,22.4043],[113.90638,22.40429],[113.90637,22.40429],[113.90637,22.40429],[113.90636,22.40429],[113.90634,22.40429],[113.90634,22.40429],[113.90643,22.40426],[113.90642,22.40426],[113.90642,22.40427],[113.90642,22.40427],[113.90642,22.40428],[113.90643,22.40428],[113.90643,22.40428],[113.90643,22.40429],[113.90644,22.40429]]],[[[113.90608,22.40431],[113.90608,22.40431],[113.90609,22.4043],[113.90608,22.40431]]],[[[113.90615,22.40431],[113.90614,22.40431],[113.90614,22.40431],[113.90614,22.40431],[113.90615,22.40431]]],[[[113.90621,22.40432],[113.9062,22.40432],[113.9062,22.40432],[113.90621,22.40432]]],[[[113.90865,22.40433],[113.90865,22.40432],[113.90865,22.40432],[113.90865,22.40433]]],[[[113.90574,22.40433],[113.90573,22.40433],[113.90573,22.40433],[113.90573,22.40432],[113.90572,22.40432],[113.90571,22.40432],[113.90572,22.40431],[113.90572,22.40431],[113.90572,22.40431],[113.90574,22.40433]]],[[[113.90567,22.40433],[113.90566,22.40433],[113.90567,22.40433],[113.90567,22.40433]]],[[[113.90865,22.40434],[113.90865,22.40435],[113.90864,22.40434],[113.90864,22.40434],[113.90865,22.40434]]],[[[113.9057,22.40434],[113.9057,22.40434],[113.9057,22.40434],[113.9057,22.40434],[113.9057,22.40434]]],[[[113.90607,22.40434],[113.90606,22.40435],[113.90606,22.40435],[113.90606,22.40435],[113.90606,22.40435],[113.90605,22.40436],[113.90605,22.40436],[113.90606,22.40433],[113.90606,22.40433],[113.90607,22.40434]]],[[[113.90577,22.40436],[113.90576,22.40436],[113.90576,22.40436],[113.90577,22.40436]]],[[[113.90578,22.40438],[113.90578,22.40438],[113.90578,22.40438],[113.90578,22.40438],[113.90578,22.40438]]],[[[113.90602,22.40438],[113.90601,22.40438],[113.90601,22.40438],[113.90604,22.40437],[113.90602,22.40438]]],[[[113.90572,22.40436],[113.90572,22.40437],[113.90572,22.40437],[113.90573,22.40438],[113.90573,22.40438],[113.90572,22.40439],[113.90572,22.40439],[113.90571,22.40435],[113.90572,22.40436]]],[[[113.90865,22.40441],[113.90865,22.40442],[113.90864,22.40442],[113.90864,22.4044],[113.90864,22.40439],[113.90869,22.40441],[113.90869,22.40441],[113.90868,22.40441],[113.90868,22.40441],[113.90866,22.40441],[113.90866,22.40441],[113.90865,22.40441]]],[[[113.90572,22.40441],[113.90572,22.40442],[113.90572,22.40442],[113.90572,22.40441],[113.90572,22.40441]]],[[[113.90589,22.40443],[113.90586,22.40444],[113.90586,22.40444],[113.90599,22.40439],[113.90598,22.40439],[113.90597,22.40439],[113.90596,22.4044],[113.90596,22.40441],[113.90594,22.40442],[113.90593,22.40442],[113.90591,22.40442],[113.9059,22.40443],[113.9059,22.40442],[113.90589,22.40443]]],[[[113.90572,22.40445],[113.90572,22.40443],[113.90573,22.40443],[113.90573,22.40444],[113.90572,22.40445]]],[[[113.90577,22.40445],[113.90577,22.40445],[113.90577,22.40444],[113.90577,22.40444],[113.90577,22.40445]]],[[[113.90577,22.40445],[113.90583,22.40445],[113.90583,22.40445],[113.90582,22.40445],[113.9058,22.40446],[113.9058,22.40446],[113.90579,22.40446],[113.90578,22.40445],[113.90577,22.40445]]],[[[113.90572,22.40445],[113.90572,22.40445],[113.90571,22.40445],[113.9057,22.40445],[113.9057,22.40446],[113.90569,22.40446],[113.90569,22.40446],[113.90569,22.40447],[113.90568,22.40447],[113.90568,22.40447],[113.90567,22.40447],[113.90567,22.40447],[113.90566,22.40447],[113.90566,22.40447],[113.90565,22.40447],[113.90564,22.40447],[113.90564,22.40446],[113.90562,22.40444],[113.90562,22.40444],[113.90572,22.40445]]],[[[113.905,22.40449],[113.90499,22.40449],[113.905,22.40449],[113.905,22.40449]]],[[[113.90531,22.40449],[113.9053,22.4045],[113.9053,22.40449],[113.90531,22.40449]]],[[[113.90546,22.4045],[113.90546,22.4045],[113.90545,22.40449],[113.90545,22.40449],[113.90543,22.40449],[113.90543,22.40448],[113.90543,22.40448],[113.90544,22.40448],[113.90544,22.40447],[113.90544,22.40446],[113.90544,22.40445],[113.90545,22.40445],[113.90545,22.40444],[113.90545,22.40444],[113.90545,22.40444],[113.90545,22.40443],[113.9056,22.40444],[113.9056,22.40444],[113.9056,22.40445],[113.90559,22.40446],[113.90559,22.40446],[113.90558,22.40446],[113.90558,22.40446],[113.90557,22.40446],[113.90557,22.40445],[113.90557,22.40445],[113.90556,22.40445],[113.90555,22.40445],[113.90555,22.40444],[113.90554,22.40444],[113.90553,22.40445],[113.90552,22.40445],[113.90551,22.40445],[113.9055,22.40445],[113.90548,22.40446],[113.90547,22.40446],[113.90547,22.40447],[113.90549,22.40447],[113.90549,22.40448],[113.90548,22.40448],[113.90548,22.40448],[113.90548,22.40448],[113.90549,22.40448],[113.90549,22.40448],[113.90549,22.40449],[113.90549,22.40449],[113.90549,22.40449],[113.90548,22.40449],[113.90547,22.40449],[113.90546,22.4045]]],[[[113.90505,22.4045],[113.90505,22.4045],[113.90504,22.4045],[113.90505,22.4045]]],[[[113.90526,22.4045],[113.90523,22.4045],[113.90527,22.4045],[113.90526,22.4045]]],[[[113.90508,22.40451],[113.90507,22.4045],[113.90507,22.4045],[113.90508,22.40451]]],[[[113.90512,22.40452],[113.90511,22.40452],[113.9051,22.40451],[113.9051,22.40451],[113.90509,22.40451],[113.90509,22.40451],[113.90509,22.40451],[113.90512,22.40452]]],[[[113.90512,22.40452],[113.90514,22.40451],[113.90514,22.40452],[113.90514,22.40451],[113.90512,22.40452]]],[[[113.90521,22.40451],[113.9052,22.40451],[113.9052,22.40452],[113.90519,22.40452],[113.90519,22.40452],[113.90519,22.40451],[113.90518,22.40451],[113.90521,22.40451],[113.90521,22.40451]]],[[[113.90499,22.40454],[113.90499,22.40454],[113.90497,22.40452],[113.90498,22.40452],[113.90498,22.40452],[113.90497,22.40453],[113.90498,22.40453],[113.90498,22.40453],[113.90499,22.40453],[113.90499,22.40453],[113.905,22.40454],[113.905,22.40454],[113.90499,22.40454],[113.90499,22.40454]]],[[[113.90918,22.40454],[113.90918,22.40454],[113.90917,22.40454],[113.90916,22.40455],[113.90914,22.40455],[113.90913,22.40455],[113.90912,22.40456],[113.90911,22.40456],[113.90909,22.40457],[113.90908,22.40457],[113.90907,22.40456],[113.90906,22.40456],[113.90906,22.40456],[113.90906,22.40455],[113.90906,22.40454],[113.90906,22.40454],[113.90906,22.40454],[113.90907,22.40453],[113.90908,22.40453],[113.90908,22.40452],[113.90907,22.40451],[113.90907,22.40451],[113.90908,22.40451],[113.90907,22.4045],[113.90907,22.4045],[113.90907,22.4045],[113.90907,22.40449],[113.90908,22.40449],[113.90908,22.40448],[113.90907,22.40448],[113.90907,22.40447],[113.90908,22.40447],[113.90908,22.40446],[113.90907,22.40446],[113.90907,22.40445],[113.90907,22.40445],[113.90908,22.40445],[113.90907,22.40445],[113.90907,22.40444],[113.90906,22.40444],[113.90906,22.40444],[113.90905,22.40443],[113.90905,22.40443],[113.90904,22.40443],[113.90903,22.40444],[113.90902,22.40444],[113.90901,22.40444],[113.909,22.40445],[113.90899,22.40445],[113.90898,22.40445],[113.90897,22.40445],[113.90897,22.40445],[113.90896,22.40445],[113.90896,22.40446],[113.90895,22.40446],[113.90893,22.40446],[113.90892,22.40446],[113.90892,22.40447],[113.90891,22.40447],[113.90891,22.40447],[113.90892,22.40448],[113.90892,22.40449],[113.90893,22.40449],[113.90893,22.40449],[113.90893,22.4045],[113.90893,22.4045],[113.90892,22.4045],[113.90892,22.40451],[113.90892,22.40452],[113.90893,22.40452],[113.90893,22.40452],[113.90893,22.40452],[113.90892,22.40453],[113.90892,22.40454],[113.90891,22.40454],[113.90891,22.40454],[113.90891,22.40454],[113.9089,22.40454],[113.90889,22.40454],[113.90888,22.40455],[113.90888,22.40455],[113.90887,22.40456],[113.90887,22.40455],[113.90885,22.40455],[113.90885,22.40455],[113.90884,22.40455],[113.90883,22.40455],[113.90883,22.40455],[113.90883,22.40454],[113.90882,22.40453],[113.90882,22.40452],[113.90882,22.40451],[113.90882,22.40451],[113.90882,22.4045],[113.90882,22.40449],[113.90881,22.40448],[113.90881,22.40448],[113.90881,22.40447],[113.9088,22.40447],[113.90879,22.40446],[113.90878,22.40445],[113.90877,22.40445],[113.90877,22.40445],[113.90876,22.40445],[113.90875,22.40444],[113.90874,22.40443],[113.90873,22.40443],[113.90873,22.40443],[113.90873,22.40443],[113.90872,22.40441],[113.90872,22.40441],[113.90876,22.40442],[113.90881,22.40439],[113.90885,22.40439],[113.90898,22.40439],[113.90921,22.40438],[113.90946,22.40431],[113.90953,22.40425],[113.90928,22.4045],[113.90926,22.40449],[113.90924,22.40449],[113.90923,22.40449],[113.90922,22.40449],[113.90922,22.4045],[113.90921,22.4045],[113.9092,22.40451],[113.9092,22.40452],[113.9092,22.40453],[113.90919,22.40453],[113.90918,22.40454]]],[[[113.90531,22.40449],[113.90542,22.40443],[113.90542,22.40444],[113.90543,22.40444],[113.90542,22.40444],[113.90542,22.40444],[113.90542,22.40444],[113.90542,22.40444],[113.90541,22.40445],[113.90542,22.40445],[113.90541,22.40445],[113.9054,22.40446],[113.9054,22.40447],[113.90539,22.40447],[113.90539,22.40447],[113.9054,22.40447],[113.90538,22.40448],[113.90539,22.40449],[113.90539,22.4045],[113.90539,22.4045],[113.90539,22.4045],[113.90539,22.40451],[113.90539,22.40451],[113.9054,22.40451],[113.9054,22.40451],[113.9054,22.40452],[113.90541,22.40452],[113.90542,22.40452],[113.90542,22.40452],[113.90542,22.40452],[113.90542,22.40453],[113.90542,22.40453],[113.90542,22.40454],[113.90541,22.40454],[113.9054,22.40455],[113.90539,22.40455],[113.90538,22.40455],[113.90538,22.40456],[113.90537,22.40457],[113.90537,22.40457],[113.90536,22.40455],[113.90535,22.40455],[113.90535,22.40455],[113.90535,22.40455],[113.90534,22.40454],[113.90535,22.40454],[113.90535,22.40454],[113.90536,22.40454],[113.90537,22.40454],[113.90537,22.40454],[113.90537,22.40453],[113.90537,22.40453],[113.90536,22.40452],[113.90535,22.40452],[113.90535,22.40452],[113.90535,22.40452],[113.90534,22.40451],[113.90534,22.40451],[113.90533,22.40451],[113.90533,22.40451],[113.90531,22.4045],[113.90531,22.40449]]],[[[113.905,22.40456],[113.905,22.40456],[113.90501,22.40457],[113.90501,22.40458],[113.90501,22.40458],[113.90499,22.40455],[113.905,22.40455],[113.905,22.40455],[113.905,22.40456]]],[[[113.90492,22.40466],[113.90492,22.40466],[113.90491,22.40466],[113.90489,22.40466],[113.90489,22.40466],[113.90489,22.40465],[113.90488,22.40465],[113.90488,22.40465],[113.90492,22.40466]]],[[[113.90476,22.40467],[113.90475,22.40468],[113.9048,22.40463],[113.9048,22.40463],[113.9048,22.40464],[113.9048,22.40464],[113.90479,22.40465],[113.90479,22.40465],[113.90479,22.40466],[113.90478,22.40466],[113.90478,22.40467],[113.90478,22.40467],[113.90477,22.40467],[113.90476,22.40467]]],[[[113.90472,22.4047],[113.90473,22.4047],[113.90473,22.4047],[113.90472,22.4047]]],[[[113.90472,22.4047],[113.90471,22.40471],[113.90471,22.40471],[113.90472,22.4047]]],[[[113.90456,22.40473],[113.90456,22.40473],[113.90457,22.40473],[113.90456,22.40473]]],[[[113.90435,22.40483],[113.90435,22.40483],[113.90432,22.40484],[113.90432,22.40484],[113.90432,22.40483],[113.90431,22.40483],[113.9043,22.40483],[113.90429,22.40483],[113.90427,22.40484],[113.90427,22.40483],[113.90428,22.40483],[113.90428,22.40482],[113.90428,22.40482],[113.90427,22.40482],[113.90426,22.40483],[113.90425,22.40483],[113.90425,22.40482],[113.90424,22.40482],[113.90424,22.40482],[113.90443,22.40475],[113.90443,22.40477],[113.90442,22.40477],[113.90439,22.40478],[113.90438,22.40478],[113.90437,22.40479],[113.90438,22.40479],[113.90438,22.4048],[113.90436,22.4048],[113.90434,22.40481],[113.90433,22.40481],[113.90433,22.40482],[113.90433,22.40482],[113.90434,22.40482],[113.90434,22.40482],[113.90435,22.40483]]],[[[113.904,22.40489],[113.90399,22.4049],[113.904,22.40489],[113.904,22.40489]]],[[[113.90407,22.40489],[113.90404,22.4049],[113.90403,22.40489],[113.90404,22.40489],[113.90404,22.40488],[113.90419,22.40483],[113.90421,22.40483],[113.9042,22.40483],[113.90419,22.40483],[113.90419,22.40485],[113.90418,22.40485],[113.90418,22.40485],[113.90416,22.40486],[113.90416,22.40487],[113.90416,22.40487],[113.90417,22.40487],[113.90415,22.40488],[113.90413,22.40489],[113.90412,22.40489],[113.90412,22.40488],[113.90411,22.40488],[113.90411,22.40489],[113.9041,22.40489],[113.90409,22.40489],[113.90409,22.40489],[113.90408,22.40488],[113.90407,22.40489]]],[[[113.90394,22.40491],[113.90396,22.40491],[113.90395,22.40491],[113.90394,22.40491]]],[[[113.90394,22.40491],[113.90394,22.40492],[113.90395,22.40492],[113.90395,22.40492],[113.90394,22.40493],[113.90393,22.40493],[113.90394,22.40491]]],[[[113.90393,22.40494],[113.90394,22.40495],[113.90394,22.40495],[113.90393,22.40495],[113.90392,22.40495],[113.90393,22.40494],[113.90393,22.40494]]],[[[113.90393,22.40501],[113.90391,22.40502],[113.9039,22.40502],[113.9039,22.40502],[113.90392,22.40496],[113.90392,22.40496],[113.90393,22.40496],[113.90393,22.40497],[113.90392,22.40497],[113.90392,22.40498],[113.90393,22.40498],[113.90393,22.40499],[113.90392,22.40499],[113.90391,22.405],[113.90391,22.405],[113.90392,22.405],[113.90393,22.40501]]],[[[113.90391,22.40504],[113.9039,22.40504],[113.90389,22.40505],[113.9039,22.40503],[113.9039,22.40503],[113.9039,22.40503],[113.90391,22.40503],[113.90391,22.40503],[113.90391,22.40504]]],[[[113.90387,22.40508],[113.90386,22.40508],[113.90386,22.40508],[113.90386,22.40508],[113.90388,22.40507],[113.90387,22.40508]]],[[[113.90379,22.40511],[113.90376,22.40512],[113.90375,22.40513],[113.90375,22.40512],[113.90378,22.40511],[113.90379,22.40511]]],[[[113.90344,22.40516],[113.90342,22.40516],[113.90342,22.40516],[113.90342,22.40515],[113.90344,22.40516]]],[[[113.90338,22.40516],[113.90336,22.40517],[113.90338,22.40516],[113.90338,22.40516]]],[[[113.90347,22.40517],[113.90347,22.40517],[113.90347,22.40517],[113.90347,22.40517]]],[[[113.90351,22.40518],[113.90351,22.40518],[113.90351,22.40518],[113.90351,22.40518]]],[[[113.90354,22.40519],[113.90353,22.40519],[113.90352,22.40519],[113.90352,22.40519],[113.90354,22.40519]]],[[[113.9036,22.40519],[113.90359,22.40519],[113.90359,22.40519],[113.90357,22.4052],[113.9036,22.40519],[113.9036,22.40519]]],[[[113.90333,22.40518],[113.90332,22.40518],[113.90331,22.40518],[113.90331,22.40519],[113.90331,22.40519],[113.90331,22.40519],[113.90329,22.4052],[113.90327,22.4052],[113.90326,22.40521],[113.90325,22.40521],[113.90325,22.4052],[113.90325,22.4052],[113.90334,22.40517],[113.90333,22.40518]]],[[[113.90315,22.40522],[113.90316,22.40522],[113.90315,22.40522],[113.90315,22.40522]]],[[[113.90315,22.40522],[113.90315,22.40523],[113.90315,22.40524],[113.90314,22.40524],[113.90314,22.40524],[113.90315,22.40522]]],[[[113.90311,22.40527],[113.90311,22.40527],[113.90313,22.40527],[113.90311,22.40527]]],[[[113.90286,22.40529],[113.90285,22.4053],[113.90284,22.4053],[113.90284,22.40529],[113.90283,22.40529],[113.90282,22.40529],[113.90282,22.40528],[113.90286,22.40529]]],[[[113.90266,22.40533],[113.90265,22.40533],[113.90265,22.40533],[113.90266,22.40533]]],[[[113.90266,22.40533],[113.90275,22.4053],[113.90276,22.40531],[113.90275,22.40531],[113.90273,22.40532],[113.90273,22.40532],[113.90271,22.40532],[113.9027,22.40532],[113.9027,22.40533],[113.90267,22.40533],[113.90266,22.40533]]],[[[113.90295,22.40533],[113.90292,22.40533],[113.90291,22.40532],[113.90291,22.40532],[113.90289,22.40532],[113.90289,22.40532],[113.90289,22.40532],[113.90288,22.40532],[113.90286,22.40532],[113.90286,22.40532],[113.90286,22.40531],[113.90286,22.40531],[113.90288,22.4053],[113.90295,22.40533]]],[[[113.90295,22.40533],[113.90296,22.40533],[113.90296,22.40533],[113.90296,22.40533],[113.90295,22.40533],[113.90295,22.40533]]],[[[113.90249,22.40534],[113.90247,22.40535],[113.90246,22.40535],[113.90245,22.40535],[113.9025,22.40532],[113.90249,22.40534]]],[[[113.90244,22.40536],[113.90244,22.40536],[113.90244,22.40537],[113.90242,22.40537],[113.9024,22.40537],[113.90244,22.40535],[113.90244,22.40536]]],[[[113.90239,22.40538],[113.90238,22.40538],[113.90237,22.40539],[113.90239,22.40538],[113.90239,22.40538]]],[[[113.90236,22.4054],[113.90236,22.4054],[113.90236,22.4054],[113.90236,22.4054]]],[[[113.90213,22.40548],[113.90216,22.40549],[113.90215,22.40549],[113.90215,22.40549],[113.90215,22.40549],[113.90214,22.40548],[113.90213,22.40548]]],[[[113.90218,22.40549],[113.90217,22.4055],[113.90217,22.40549],[113.90216,22.40549],[113.90218,22.40549]]],[[[113.90221,22.4055],[113.9022,22.4055],[113.90219,22.40551],[113.90218,22.4055],[113.90219,22.40549],[113.90221,22.4055]]],[[[113.90229,22.40548],[113.90228,22.40549],[113.90227,22.4055],[113.90227,22.4055],[113.90226,22.40551],[113.90225,22.40551],[113.90234,22.40542],[113.90234,22.40543],[113.90234,22.40544],[113.90232,22.40546],[113.90231,22.40546],[113.90231,22.40547],[113.90231,22.40547],[113.90231,22.40547],[113.9023,22.40548],[113.9023,22.40548],[113.90229,22.40548]]],[[[113.90205,22.40548],[113.90205,22.40549],[113.90204,22.40549],[113.90201,22.40551],[113.902,22.40551],[113.90205,22.40548]]],[[[113.90223,22.40551],[113.90222,22.40552],[113.90222,22.40552],[113.90221,22.40551],[113.90222,22.4055],[113.90222,22.4055],[113.90223,22.40551]]],[[[113.90213,22.40548],[113.90213,22.40548],[113.90212,22.40549],[113.90212,22.40549],[113.90211,22.4055],[113.90212,22.4055],[113.90212,22.40551],[113.90212,22.40551],[113.90211,22.40552],[113.90211,22.40552],[113.9021,22.40552],[113.9021,22.40552],[113.90209,22.40551],[113.90208,22.40552],[113.90208,22.40551],[113.90208,22.4055],[113.90208,22.4055],[113.90207,22.40549],[113.90207,22.40549],[113.90205,22.40548],[113.90213,22.40548]]],[[[113.90203,22.40553],[113.90202,22.40552],[113.90202,22.40552],[113.90203,22.40553]]],[[[113.90204,22.40553],[113.90205,22.40554],[113.90204,22.40553],[113.90204,22.40553],[113.90204,22.40553]]],[[[113.90201,22.40559],[113.90201,22.40559],[113.90201,22.40559],[113.90201,22.40559]]],[[[113.9019,22.40561],[113.90199,22.40561],[113.90199,22.40561],[113.90197,22.40562],[113.90195,22.40564],[113.90194,22.40565],[113.90194,22.40564],[113.90194,22.40564],[113.90194,22.40563],[113.90195,22.40563],[113.90195,22.40562],[113.90195,22.40562],[113.90194,22.40562],[113.90194,22.40562],[113.90193,22.40563],[113.90192,22.40564],[113.90191,22.40564],[113.90191,22.40564],[113.9019,22.40563],[113.90191,22.40562],[113.90191,22.40562],[113.9019,22.40561]]],[[[113.9019,22.40561],[113.90188,22.40563],[113.90188,22.40563],[113.90186,22.40565],[113.90187,22.40565],[113.90187,22.40566],[113.90187,22.40566],[113.90187,22.40566],[113.90186,22.40567],[113.90185,22.40568],[113.90184,22.40569],[113.90184,22.40569],[113.90184,22.40568],[113.90184,22.40567],[113.90184,22.40567],[113.90184,22.40566],[113.90183,22.40566],[113.90183,22.40566],[113.90182,22.40566],[113.9019,22.40561]]],[[[113.90159,22.40573],[113.90159,22.40574],[113.90158,22.40573],[113.90158,22.40573],[113.90159,22.40573]]],[[[113.90161,22.40574],[113.90161,22.40574],[113.9016,22.40574],[113.90161,22.40574]]],[[[113.90173,22.40575],[113.90172,22.40576],[113.90172,22.40576],[113.90171,22.40577],[113.90177,22.40571],[113.90177,22.40571],[113.90178,22.4057],[113.90178,22.40571],[113.90178,22.40571],[113.90177,22.40572],[113.90176,22.40573],[113.90176,22.40574],[113.90175,22.40575],[113.90174,22.40576],[113.90173,22.40575],[113.90173,22.40575]]],[[[113.9015,22.40586],[113.90148,22.40588],[113.90148,22.40586],[113.90148,22.40585],[113.90148,22.40586],[113.90148,22.40587],[113.90147,22.40587],[113.90146,22.40587],[113.90146,22.40587],[113.90145,22.40586],[113.90145,22.40586],[113.90151,22.40578],[113.90152,22.40579],[113.90151,22.40579],[113.90151,22.4058],[113.90149,22.40581],[113.9015,22.40582],[113.9015,22.40582],[113.90151,22.40581],[113.90152,22.40581],[113.90152,22.40581],[113.90151,22.40582],[113.9015,22.40583],[113.9015,22.40584],[113.9015,22.40585],[113.9015,22.40585],[113.90151,22.40584],[113.90151,22.40585],[113.9015,22.40586]]],[[[113.90145,22.40588],[113.90144,22.40588],[113.90144,22.40587],[113.90145,22.40588]]],[[[113.90143,22.4059],[113.90143,22.4059],[113.90142,22.40591],[113.90143,22.4059],[113.90143,22.4059]]],[[[113.97418,22.41904],[113.97396,22.41911],[113.97384,22.41921],[113.97235,22.41871],[113.97159,22.4186],[113.97075,22.41837],[113.96972,22.41798],[113.96873,22.41762],[113.96802,22.41735],[113.96697,22.4169],[113.96632,22.4158],[113.96319,22.4105],[113.96297,22.41049],[113.96213,22.41042],[113.96154,22.41035],[113.96124,22.41032],[113.96057,22.41023],[113.96011,22.4103],[113.95995,22.41033],[113.95976,22.4104],[113.95947,22.41052],[113.95906,22.41076],[113.95895,22.41085],[113.95855,22.41116],[113.95807,22.41148],[113.95741,22.41161],[113.95687,22.41161],[113.956,22.41092],[113.95497,22.41017],[113.95413,22.40943],[113.95385,22.40918],[113.95383,22.40915],[113.95372,22.40901],[113.95371,22.40879],[113.95396,22.40781],[113.95394,22.40773],[113.95386,22.40731],[113.95363,22.40673],[113.95321,22.40629],[113.95277,22.40604],[113.95251,22.4059],[113.95208,22.40555],[113.95191,22.40541],[113.95155,22.405],[113.9512,22.40445],[113.9511,22.40431],[113.95101,22.40413],[113.95087,22.40386],[113.95054,22.40317],[113.95049,22.40305],[113.95045,22.40283],[113.95038,22.40245],[113.95033,22.40207],[113.9503,22.40181],[113.95039,22.4014],[113.95042,22.40129],[113.95045,22.40124],[113.95075,22.40078],[113.9511,22.40052],[113.95151,22.40039],[113.95175,22.40031],[113.95222,22.40006],[113.9527,22.39961],[113.95283,22.39932],[113.95299,22.39899],[113.95344,22.39765],[113.95382,22.39603],[113.95386,22.39575],[113.95396,22.39505],[113.954,22.3944],[113.95403,22.39405],[113.95399,22.39318],[113.95367,22.39277],[113.95183,22.38857],[113.94903,22.38214],[113.94859,22.38115],[113.9454,22.37875],[113.94444,22.37803],[113.93978,22.37451],[113.93404,22.37548],[113.93341,22.37559],[113.93251,22.37574],[113.93096,22.37666],[113.93086,22.37672],[113.93029,22.37708],[113.92761,22.37872],[113.92616,22.38509],[113.9209,22.38282],[113.9204,22.38261],[113.92041,22.38263],[113.92042,22.3827],[113.92042,22.38272],[113.92042,22.38273],[113.92042,22.38273],[113.92037,22.38247],[113.92037,22.38232],[113.9202,22.38205],[113.92011,22.38182],[113.92008,22.38168],[113.9201,22.38145],[113.92018,22.3811],[113.92008,22.38098],[113.91991,22.38057],[113.9197,22.3801],[113.9195,22.37972],[113.91918,22.3793],[113.91893,22.37901],[113.91879,22.3789],[113.91839,22.37866],[113.91822,22.37861],[113.91816,22.37862],[113.91811,22.37868],[113.91804,22.37871],[113.91798,22.37875],[113.91796,22.37878],[113.91804,22.37883],[113.918,22.37893],[113.9175,22.37931],[113.91746,22.3793],[113.91745,22.37922],[113.91721,22.37909],[113.91723,22.37921],[113.91719,22.37921],[113.91716,22.37917],[113.91712,22.37907],[113.91703,22.37908],[113.9168,22.37904],[113.91683,22.3789],[113.91683,22.37886],[113.91678,22.37882],[113.9167,22.37885],[113.91669,22.37891],[113.91666,22.37893],[113.91663,22.37892],[113.91662,22.3789],[113.91665,22.37887],[113.91701,22.37862],[113.91695,22.37854],[113.91689,22.37862],[113.91669,22.37877],[113.91667,22.37875],[113.91664,22.37865],[113.91667,22.37838],[113.91666,22.37835],[113.91661,22.37829],[113.91657,22.37826],[113.91652,22.37819],[113.91583,22.37739],[113.91574,22.37746],[113.91514,22.37675],[113.91429,22.37576],[113.91442,22.37566],[113.91447,22.37567],[113.9146,22.37582],[113.91474,22.37578],[113.91474,22.37577],[113.91478,22.37574],[113.91481,22.37572],[113.91481,22.37569],[113.91482,22.37562],[113.91483,22.37559],[113.91485,22.37552],[113.91488,22.37547],[113.9149,22.37541],[113.91493,22.37536],[113.91497,22.37531],[113.915,22.37526],[113.91504,22.37521],[113.91508,22.37517],[113.91646,22.37394],[113.91632,22.37383],[113.91626,22.37389],[113.91616,22.3738],[113.91638,22.3736],[113.91648,22.37369],[113.91641,22.37375],[113.91646,22.37381],[113.91643,22.37384],[113.91651,22.37389],[113.91679,22.37363],[113.91525,22.3728],[113.91501,22.37301],[113.91496,22.37296],[113.91513,22.37281],[113.91503,22.37271],[113.91884,22.3693],[113.919,22.36946],[113.91549,22.3726],[113.91552,22.37263],[113.91547,22.37267],[113.91551,22.37271],[113.91696,22.37349],[113.91742,22.37308],[113.91738,22.37303],[113.91734,22.37298],[113.91708,22.37273],[113.91752,22.37233],[113.91778,22.37259],[113.91782,22.37255],[113.91788,22.37262],[113.91799,22.37252],[113.91802,22.37254],[113.91856,22.37206],[113.91899,22.37168],[113.9194,22.37132],[113.91956,22.37118],[113.9198,22.37099],[113.91996,22.37087],[113.92021,22.3707],[113.92091,22.37027],[113.92086,22.37021],[113.92301,22.36889],[113.92275,22.36866],[113.92064,22.36962],[113.92056,22.36946],[113.92291,22.36839],[113.92299,22.36854],[113.9233,22.36881],[113.92335,22.36878],[113.92327,22.36871],[113.92337,22.36863],[113.92307,22.36828],[113.92466,22.36711],[113.92475,22.36721],[113.92349,22.36814],[113.92348,22.36831],[113.9236,22.36846],[113.9288,22.36465],[113.9293,22.36428],[113.9307,22.36342],[113.93278,22.36209],[113.93363,22.36155],[113.93363,22.36147],[113.93718,22.35925],[113.93729,22.35924],[113.9374,22.35924],[113.93749,22.35927],[113.93759,22.35933],[113.93765,22.35939],[113.93769,22.35945],[113.93771,22.35953],[113.93772,22.35962],[113.9377,22.35975],[113.93762,22.35987],[113.93753,22.35995],[113.93506,22.36151],[113.93713,22.3661],[113.93847,22.36557],[113.93753,22.36349],[113.94022,22.36244],[113.94115,22.36452],[113.9425,22.364],[113.94156,22.36192],[113.94425,22.36087],[113.94519,22.36295],[113.94653,22.36243],[113.94559,22.36035],[113.94738,22.35965],[113.94832,22.36173],[113.94826,22.36182],[113.94829,22.3619],[113.94636,22.36479],[113.94635,22.36492],[113.94667,22.36492],[113.94901,22.36626],[113.94936,22.36652],[113.95033,22.36739],[113.9503,22.36742],[113.95033,22.36746],[113.95052,22.36756],[113.95075,22.36781],[113.95125,22.36822],[113.95131,22.36828],[113.95144,22.36844],[113.95147,22.3686],[113.9513,22.36904],[113.95128,22.36935],[113.95135,22.3697],[113.95147,22.36992],[113.95161,22.36994],[113.9517,22.36998],[113.95181,22.37003],[113.95193,22.3701],[113.95203,22.37016],[113.95228,22.37033],[113.95232,22.37037],[113.95254,22.37041],[113.95297,22.37052],[113.95344,22.37074],[113.95368,22.37091],[113.95393,22.37117],[113.95432,22.37174],[113.95545,22.37237],[113.95567,22.37248],[113.95583,22.37255],[113.95608,22.37266],[113.95629,22.37273],[113.95648,22.37279],[113.95695,22.3729],[113.95704,22.37292],[113.95775,22.37308],[113.95883,22.37328],[113.95917,22.37327],[113.95931,22.37326],[113.95957,22.37322],[113.95978,22.37318],[113.95997,22.3731],[113.96006,22.37304],[113.96013,22.37299],[113.96019,22.37293],[113.96022,22.37288],[113.96024,22.37283],[113.96026,22.37277],[113.96026,22.37271],[113.96024,22.37266],[113.96016,22.37273],[113.95999,22.37269],[113.96,22.37265],[113.96007,22.37264],[113.96011,22.37258],[113.96017,22.37257],[113.96012,22.37253],[113.96017,22.37248],[113.96017,22.37245],[113.96032,22.3724],[113.96047,22.37241],[113.9606,22.3725],[113.96063,22.37241],[113.96063,22.37241],[113.9606,22.37248],[113.96063,22.37241],[113.96063,22.37241],[113.96064,22.37239],[113.9606,22.37235],[113.96061,22.37235],[113.96061,22.37235],[113.9606,22.37235],[113.9606,22.37235],[113.96071,22.37228],[113.96075,22.3723],[113.96075,22.3724],[113.96069,22.37241],[113.96068,22.37247],[113.96077,22.37251],[113.96081,22.37258],[113.96125,22.37275],[113.96292,22.37278],[113.96405,22.37268],[113.96505,22.37247],[113.96599,22.37222],[113.96593,22.37203],[113.96595,22.37197],[113.96565,22.37098],[113.96566,22.37096],[113.96569,22.37096],[113.96571,22.37097],[113.96582,22.37131],[113.96589,22.37133],[113.96594,22.37132],[113.96591,22.37118],[113.96591,22.37117],[113.96595,22.37116],[113.96596,22.37117],[113.96619,22.37192],[113.96623,22.37195],[113.96626,22.37205],[113.96633,22.3721],[113.96634,22.37213],[113.96912,22.3714],[113.96921,22.37138],[113.97006,22.37116],[113.97015,22.37114],[113.97037,22.37107],[113.97088,22.37096],[113.97144,22.37086],[113.97193,22.37081],[113.97259,22.37077],[113.97305,22.37077],[113.97345,22.37078],[113.97383,22.37081],[113.97397,22.37082],[113.97405,22.37084],[113.97408,22.37085],[113.97409,22.37086],[113.97409,22.37088],[113.9741,22.3709],[113.97409,22.37092],[113.97408,22.37093],[113.97406,22.37094],[113.97402,22.37094],[113.97371,22.37091],[113.97327,22.37089],[113.97295,22.3709],[113.9727,22.37094],[113.97255,22.37101],[113.97244,22.37108],[113.97232,22.3712],[113.97221,22.37135],[113.97189,22.37191],[113.97187,22.37192],[113.97183,22.37192],[113.97145,22.3726],[113.97037,22.37453],[113.96976,22.37559],[113.96922,22.37662],[113.96906,22.3769],[113.96872,22.37752],[113.96833,22.37823],[113.9681,22.37862],[113.96893,22.37911],[113.96918,22.37869],[113.96922,22.37862],[113.96931,22.37857],[113.96945,22.37856],[113.97036,22.37896],[113.97102,22.37925],[113.97206,22.37971],[113.97654,22.38163],[113.97775,22.3798],[113.97764,22.37962],[113.97584,22.37667],[113.97563,22.37633],[113.97642,22.37506],[113.97678,22.37449],[113.97691,22.37432],[113.97707,22.37417],[113.97724,22.37408],[113.97736,22.37405],[113.97753,22.37402],[113.97772,22.37403],[113.97788,22.37407],[113.97804,22.37413],[113.97822,22.37426],[113.97834,22.37439],[113.97834,22.37442],[113.97827,22.37447],[113.97807,22.37459],[113.97796,22.3746],[113.97779,22.37455],[113.97742,22.37437],[113.97732,22.37436],[113.97718,22.37442],[113.97702,22.37453],[113.97693,22.37462],[113.9759,22.37624],[113.97588,22.37631],[113.97589,22.37641],[113.97597,22.37655],[113.97784,22.37961],[113.97789,22.37959],[113.97793,22.37958],[113.97803,22.37954],[113.97808,22.37952],[113.97812,22.37952],[113.97815,22.37954],[113.97814,22.37958],[113.9781,22.37961],[113.97804,22.37963],[113.9781,22.37966],[113.9781,22.37965],[113.97814,22.37967],[113.97813,22.3797],[113.97818,22.37973],[113.97817,22.37976],[113.9783,22.37981],[113.9783,22.3798],[113.97837,22.37983],[113.97837,22.37984],[113.97841,22.37985],[113.97842,22.37984],[113.97846,22.37986],[113.9785,22.37982],[113.97855,22.37984],[113.97851,22.37989],[113.97855,22.37991],[113.97857,22.37991],[113.97859,22.37991],[113.97859,22.37986],[113.97859,22.37975],[113.97864,22.37975],[113.97864,22.37983],[113.97869,22.37982],[113.97872,22.37981],[113.97876,22.37982],[113.97883,22.37976],[113.97892,22.37967],[113.97899,22.37962],[113.97902,22.37962],[113.97903,22.37965],[113.97916,22.37957],[113.9798,22.37936],[113.9799,22.37934],[113.98008,22.37923],[113.9803,22.37902],[113.98038,22.3789],[113.98062,22.37863],[113.98082,22.37825],[113.98068,22.37822],[113.98064,22.37806],[113.9807,22.37799],[113.98084,22.37802],[113.98089,22.37788],[113.98079,22.37758],[113.98068,22.37745],[113.98054,22.37755],[113.98043,22.37746],[113.98042,22.37742],[113.98044,22.37741],[113.98027,22.37728],[113.98021,22.37727],[113.9802,22.37723],[113.98023,22.37721],[113.97988,22.37714],[113.97987,22.37713],[113.97985,22.37712],[113.97985,22.37711],[113.97984,22.3771],[113.97982,22.37709],[113.97981,22.37714],[113.97976,22.37713],[113.97979,22.37701],[113.97984,22.37703],[113.97983,22.37707],[113.97984,22.37708],[113.97985,22.37707],[113.97987,22.37706],[113.97988,22.37706],[113.97991,22.37706],[113.9803,22.37714],[113.98037,22.37693],[113.98035,22.37689],[113.98034,22.37685],[113.98034,22.37683],[113.98035,22.37681],[113.98039,22.37679],[113.98046,22.37677],[113.98053,22.37674],[113.98062,22.37668],[113.98068,22.37663],[113.98069,22.37662],[113.98071,22.37661],[113.98073,22.37661],[113.98074,22.37661],[113.98094,22.37665],[113.98096,22.37665],[113.98098,22.37665],[113.981,22.37666],[113.98102,22.37667],[113.98103,22.37668],[113.98103,22.37669],[113.98103,22.37671],[113.98103,22.37672],[113.98098,22.37676],[113.98099,22.37677],[113.981,22.3768],[113.98106,22.37679],[113.98112,22.37677],[113.98121,22.37674],[113.98133,22.37669],[113.98145,22.37663],[113.98155,22.37657],[113.98169,22.37647],[113.98176,22.37641],[113.98183,22.37636],[113.98186,22.37632],[113.98184,22.37627],[113.98178,22.3762],[113.98186,22.37617],[113.98209,22.37599],[113.98224,22.37595],[113.98252,22.37594],[113.98271,22.37597],[113.98272,22.376],[113.98275,22.37599],[113.98277,22.37598],[113.98304,22.37592],[113.98325,22.37585],[113.98345,22.37576],[113.98383,22.37554],[113.98396,22.37547],[113.9841,22.37534],[113.9841,22.37529],[113.98418,22.37525],[113.98443,22.3751],[113.98451,22.37501],[113.98455,22.37501],[113.98457,22.37503],[113.9853,22.3746],[113.98566,22.37439],[113.98589,22.37422],[113.98621,22.37396],[113.98685,22.37339],[113.98723,22.37301],[113.98746,22.37273],[113.98825,22.37166],[113.98879,22.3709],[113.98907,22.37044],[113.98923,22.37013],[113.98929,22.36999],[113.98943,22.36975],[113.98955,22.36938],[113.98953,22.36906],[113.9895,22.36905],[113.98949,22.36903],[113.98946,22.36872],[113.98944,22.36861],[113.9894,22.36845],[113.98949,22.36844],[113.98941,22.36818],[113.98922,22.36774],[113.98913,22.36778],[113.98894,22.36786],[113.98887,22.36788],[113.98885,22.36788],[113.98884,22.36789],[113.98882,22.36788],[113.9888,22.36787],[113.98877,22.36785],[113.98876,22.36784],[113.98875,22.36782],[113.98874,22.36781],[113.98873,22.36779],[113.98873,22.36778],[113.98874,22.36776],[113.98875,22.36773],[113.98876,22.36771],[113.98888,22.36762],[113.98889,22.3676],[113.9889,22.36759],[113.9889,22.36759],[113.9889,22.36758],[113.9889,22.36757],[113.98889,22.36756],[113.98887,22.36753],[113.98884,22.3675],[113.98881,22.36747],[113.98879,22.36745],[113.98877,22.3674],[113.98876,22.36737],[113.98875,22.36733],[113.98874,22.36727],[113.98879,22.36712],[113.98892,22.36699],[113.98902,22.36696],[113.98916,22.36696],[113.9893,22.36702],[113.98938,22.3671],[113.98943,22.36721],[113.98944,22.36729],[113.98942,22.3674],[113.98937,22.36751],[113.98947,22.3677],[113.99036,22.36737],[113.99047,22.36737],[113.99054,22.36743],[113.99054,22.36751],[113.99047,22.36759],[113.98964,22.3679],[113.9896,22.36794],[113.98967,22.3682],[113.98973,22.36845],[113.98977,22.36875],[113.98978,22.36904],[113.98971,22.36966],[113.98953,22.37035],[113.98954,22.3707],[113.98977,22.37109],[113.98997,22.37127],[113.99171,22.3723],[113.99367,22.36945],[113.99471,22.37007],[113.99493,22.36976],[113.99257,22.36846],[113.99208,22.36813],[113.9918,22.36788],[113.9917,22.36772],[113.99167,22.36761],[113.99165,22.36745],[113.99167,22.36731],[113.99177,22.36706],[113.99228,22.36623],[113.99074,22.36546],[113.99066,22.36547],[113.99062,22.36553],[113.99033,22.36572],[113.99033,22.36588],[113.99014,22.36599],[113.99008,22.36593],[113.99004,22.36602],[113.99001,22.36603],[113.98969,22.36637],[113.98962,22.36638],[113.98956,22.36634],[113.98957,22.36624],[113.98972,22.36583],[113.98959,22.36572],[113.98951,22.36572],[113.98931,22.36558],[113.989,22.36557],[113.98847,22.36529],[113.98809,22.36529],[113.98794,22.36522],[113.98793,22.365],[113.9879,22.36495],[113.98789,22.36482],[113.98791,22.36477],[113.98809,22.3647],[113.98818,22.36469],[113.98843,22.36472],[113.98861,22.36472],[113.98867,22.3647],[113.98873,22.36471],[113.98885,22.36471],[113.98892,22.36475],[113.98903,22.36476],[113.98907,22.36477],[113.98951,22.36474],[113.98959,22.36467],[113.98965,22.3647],[113.98977,22.36467],[113.98981,22.36466],[113.98983,22.36465],[113.98984,22.36466],[113.99058,22.36473],[113.99078,22.36525],[113.99073,22.36534],[113.99232,22.36612],[113.99241,22.36606],[113.99239,22.366],[113.9925,22.36579],[113.99249,22.3657],[113.99266,22.36573],[113.99271,22.36549],[113.99298,22.36526],[113.99318,22.36516],[113.99341,22.36509],[113.9935,22.36507],[113.99357,22.36511],[113.99364,22.3651],[113.9937,22.36512],[113.99375,22.36516],[113.99378,22.36519],[113.9938,22.36522],[113.99381,22.36522],[113.99381,22.36524],[113.99388,22.36525],[113.99404,22.36524],[113.99419,22.36522],[113.99431,22.36516],[113.99436,22.36512],[113.99439,22.36511],[113.99436,22.36509],[113.99437,22.36505],[113.99436,22.365],[113.99453,22.36492],[113.99456,22.36494],[113.99453,22.36498],[113.99454,22.36502],[113.99454,22.36506],[113.99461,22.36503],[113.99478,22.36508],[113.9948,22.36505],[113.99494,22.36507],[113.99494,22.36512],[113.99501,22.36511],[113.99514,22.3651],[113.9952,22.36511],[113.99521,22.36507],[113.99522,22.36507],[113.99533,22.36508],[113.99532,22.36514],[113.99533,22.36514],[113.99533,22.36518],[113.99562,22.36545],[113.99573,22.3655],[113.99577,22.36559],[113.99591,22.36563],[113.99583,22.3657],[113.99584,22.36577],[113.99592,22.36586],[113.99623,22.36607],[113.99628,22.36601],[113.99595,22.36581],[113.99589,22.36577],[113.99588,22.36572],[113.99604,22.36563],[113.99626,22.36557],[113.99683,22.36533],[113.99696,22.36526],[113.99711,22.36517],[113.99719,22.36509],[113.99722,22.36505],[113.99724,22.365],[113.99723,22.36495],[113.99717,22.36491],[113.99716,22.36494],[113.99709,22.36494],[113.99708,22.36486],[113.99704,22.36483],[113.99708,22.36481],[113.99712,22.36467],[113.9972,22.36463],[113.99725,22.36465],[113.9973,22.36469],[113.99731,22.36469],[113.99729,22.36474],[113.9973,22.36474],[113.99734,22.36472],[113.99737,22.36468],[113.99745,22.36457],[113.99746,22.36454],[113.99744,22.36454],[113.99744,22.36454],[113.9974,22.36451],[113.9974,22.36451],[113.9974,22.36449],[113.99741,22.36448],[113.99745,22.36448],[113.99746,22.36444],[113.99741,22.36439],[113.99742,22.36432],[113.9975,22.36428],[113.99747,22.36425],[113.99752,22.36424],[113.99748,22.36416],[113.99752,22.36411],[113.99755,22.36409],[113.99755,22.36397],[113.99757,22.36393],[113.9976,22.36391],[113.99764,22.3639],[113.99768,22.3639],[113.99771,22.36392],[113.99775,22.36393],[113.99777,22.36395],[113.9978,22.364],[113.99789,22.36394],[113.99779,22.36381],[113.99779,22.36367],[113.99762,22.36349],[113.99761,22.36344],[113.99782,22.36327],[113.99794,22.36285],[113.99805,22.36261],[113.99815,22.3626],[113.99814,22.36236],[113.99817,22.36222],[113.99832,22.36209],[113.99878,22.36209],[113.99887,22.3621],[113.99888,22.36209],[113.99885,22.36189],[113.99876,22.36186],[113.99876,22.36182],[113.99848,22.36182],[113.99848,22.36185],[113.99841,22.36185],[113.99841,22.36176],[113.99877,22.36177],[113.99879,22.3618],[113.9991,22.3618],[113.9991,22.3619],[113.99925,22.3619],[113.99925,22.3618],[114.00147,22.3618],[114.00147,22.3621],[114.00188,22.36209],[114.00202,22.3621],[114.00214,22.36212],[114.00223,22.36217],[114.00226,22.36213],[114.00227,22.3614],[114.0023,22.3614],[114.0023,22.36214],[114.00225,22.36219],[114.00228,22.36225],[114.00228,22.36255],[114.00226,22.36271],[114.00228,22.36279],[114.00234,22.36284],[114.00245,22.36285],[114.00247,22.36284],[114.00249,22.36268],[114.00252,22.36269],[114.00251,22.36281],[114.00253,22.36284],[114.00267,22.3628],[114.00275,22.36281],[114.00301,22.36277],[114.00319,22.36269],[114.00336,22.36265],[114.00338,22.36267],[114.00339,22.36272],[114.00354,22.36284],[114.00361,22.36271],[114.00393,22.36293],[114.00399,22.36296],[114.00387,22.36313],[114.00399,22.3632],[114.00404,22.36323],[114.00408,22.36319],[114.00413,22.3632],[114.00418,22.36312],[114.0042,22.36313],[114.00415,22.3632],[114.0042,22.36318],[114.00427,22.36322],[114.00428,22.3632],[114.00432,22.36322],[114.00431,22.36326],[114.00436,22.36327],[114.00437,22.36325],[114.00448,22.36328],[114.00452,22.36326],[114.00454,22.36327],[114.00457,22.36324],[114.0046,22.36326],[114.00457,22.36329],[114.00457,22.36332],[114.00461,22.36333],[114.00459,22.36336],[114.00463,22.36344],[114.00477,22.36344],[114.0048,22.36341],[114.00498,22.36355],[114.00499,22.36364],[114.00502,22.3637],[114.00502,22.36372],[114.005,22.36374],[114.00501,22.3638],[114.00503,22.36382],[114.00513,22.36388],[114.00511,22.36391],[114.00509,22.3639],[114.00508,22.36391],[114.00507,22.36392],[114.00508,22.36399],[114.0051,22.36401],[114.00516,22.36403],[114.00523,22.36409],[114.00532,22.36413],[114.00536,22.36413],[114.00543,22.36412],[114.00548,22.36413],[114.0055,22.36413],[114.00552,22.36411],[114.00548,22.36406],[114.00553,22.36403],[114.00562,22.36408],[114.00562,22.36409],[114.00561,22.36411],[114.00556,22.36412],[114.00555,22.36414],[114.00557,22.36416],[114.00565,22.36417],[114.00585,22.36417],[114.00593,22.36417],[114.00603,22.36425],[114.00605,22.36425],[114.00611,22.3643],[114.0061,22.36432],[114.00615,22.36435],[114.00619,22.36433],[114.00625,22.36428],[114.00634,22.36424],[114.00637,22.36423],[114.00646,22.36424],[114.00647,22.36425],[114.00653,22.36428],[114.00655,22.3643],[114.00655,22.36431],[114.00661,22.36435],[114.0068,22.36444],[114.00692,22.36449],[114.00709,22.36449],[114.00716,22.36435],[114.00714,22.36432],[114.00715,22.36428],[114.00719,22.36425],[114.00725,22.36425],[114.00729,22.36428],[114.0073,22.36433],[114.00727,22.36437],[114.00723,22.36438],[114.00711,22.36463],[114.00721,22.36474],[114.00723,22.36478],[114.00723,22.36483],[114.00727,22.36487],[114.00727,22.36491],[114.00722,22.36496],[114.0074,22.36504],[114.00761,22.36509],[114.00801,22.36511],[114.00815,22.36506],[114.00819,22.36509],[114.00829,22.36511],[114.00855,22.36526],[114.00859,22.36526],[114.00877,22.36527],[114.00873,22.36524],[114.00872,22.36519],[114.00876,22.36516],[114.00885,22.36523],[114.00889,22.36529],[114.00889,22.36532],[114.00884,22.36531],[114.00888,22.36535],[114.00893,22.36536],[114.00904,22.36536],[114.00916,22.36534],[114.00938,22.36527],[114.00961,22.36518],[114.00988,22.36506],[114.01002,22.36499],[114.01006,22.36496],[114.01011,22.36493],[114.01045,22.36469],[114.01066,22.36449],[114.01087,22.36426],[114.01088,22.36418],[114.01085,22.36412],[114.01068,22.36398],[114.01062,22.3639],[114.01058,22.36377],[114.01058,22.36376],[114.01069,22.36373],[114.01074,22.36374],[114.01077,22.36372],[114.01078,22.36369],[114.01077,22.36367],[114.01073,22.36365],[114.01068,22.36363],[114.01062,22.36361],[114.01048,22.36353],[114.01045,22.36349],[114.01047,22.36346],[114.01052,22.36343],[114.01053,22.36338],[114.01049,22.3633],[114.01038,22.36319],[114.01037,22.36314],[114.01038,22.36308],[114.01033,22.36305],[114.01035,22.363],[114.0104,22.36299],[114.01041,22.36287],[114.0104,22.36281],[114.01033,22.36277],[114.0103,22.36274],[114.0103,22.36268],[114.01043,22.36249],[114.01076,22.3625],[114.01078,22.36252],[114.01087,22.36253],[114.01103,22.36253],[114.01106,22.36252],[114.01106,22.36251],[114.01103,22.36198],[114.01104,22.36197],[114.01104,22.36195],[114.01106,22.36194],[114.01108,22.36193],[114.01109,22.36193],[114.01108,22.3618],[114.01148,22.36178],[114.0115,22.36197],[114.01153,22.36195],[114.01161,22.36216],[114.01173,22.36225],[114.01171,22.36229],[114.01172,22.36231],[114.01181,22.36232],[114.01209,22.3622],[114.0121,22.36223],[114.01295,22.3619],[114.013,22.36202],[114.01215,22.36234],[114.01215,22.36232],[114.01203,22.36237],[114.01204,22.3624],[114.01204,22.3624],[114.01204,22.36241],[114.01203,22.36242],[114.01197,22.36244],[114.01216,22.36287],[114.01234,22.3628],[114.01235,22.36283],[114.01218,22.3629],[114.0122,22.36295],[114.01238,22.36288],[114.01249,22.36312],[114.01257,22.36314],[114.01263,22.36319],[114.01267,22.36323],[114.01275,22.36321],[114.01295,22.36323],[114.01323,22.36325],[114.01352,22.36316],[114.01372,22.36313],[114.01401,22.36314],[114.01411,22.36317],[114.01417,22.36318],[114.01434,22.36324],[114.0144,22.36322],[114.01455,22.36313],[114.01523,22.36244],[114.01592,22.36167],[114.016,22.36158],[114.01604,22.36153],[114.01611,22.36146],[114.01611,22.36146],[114.01617,22.3614],[114.01636,22.36118],[114.01639,22.36115],[114.01644,22.36114],[114.01649,22.36114],[114.01653,22.36114],[114.01707,22.36052],[114.01706,22.3605],[114.01705,22.36047],[114.01705,22.36045],[114.01715,22.36029],[114.01756,22.35981],[114.01813,22.35907],[114.01815,22.35901],[114.01815,22.35894],[114.01814,22.35887],[114.01811,22.3588],[114.01807,22.35874],[114.018,22.35868],[114.01794,22.35863],[114.0178,22.35852],[114.01774,22.35846],[114.0182,22.35796],[114.01829,22.35784],[114.01841,22.35767],[114.01853,22.35745],[114.01858,22.35739],[114.01876,22.35726],[114.01897,22.35713],[114.01931,22.35694],[114.02,22.35665],[114.02059,22.35644],[114.02119,22.3562],[114.02144,22.35612],[114.0222,22.35597],[114.02326,22.35573],[114.02372,22.3556],[114.02424,22.35543],[114.02447,22.35533],[114.02502,22.35535],[114.02552,22.35528],[114.02605,22.35518],[114.02639,22.35523],[114.02683,22.35526],[114.02688,22.35523],[114.02707,22.35525],[114.02865,22.3554],[114.02865,22.3558],[114.02865,22.35595],[114.02865,22.35595],[114.02865,22.35613],[114.02865,22.35629],[114.02865,22.3588],[114.0301,22.35829],[114.03025,22.35924],[114.0305,22.35991],[114.03079,22.36066],[114.03136,22.36144],[114.03195,22.36186],[114.03241,22.36214],[114.03258,22.36214],[114.03258,22.36214],[114.0326,22.36214],[114.03261,22.36215],[114.03262,22.36215],[114.03264,22.36216],[114.03266,22.36217],[114.03267,22.36218],[114.03268,22.36219],[114.03272,22.36221],[114.03273,22.36221],[114.03273,22.36221],[114.03275,22.36221],[114.03277,22.36221],[114.03278,22.36221],[114.0328,22.3622],[114.03281,22.3622],[114.03284,22.36219],[114.03285,22.36219],[114.03287,22.36219],[114.03288,22.36219],[114.03288,22.36219],[114.0329,22.36219],[114.03291,22.36219],[114.03292,22.36219],[114.03294,22.36219],[114.03295,22.36219],[114.03297,22.3622],[114.03299,22.3622],[114.033,22.36221],[114.033,22.36221],[114.03301,22.36223],[114.03302,22.36223],[114.03303,22.36224],[114.03303,22.36224],[114.03305,22.36225],[114.03309,22.36226],[114.03314,22.36227],[114.03315,22.36228],[114.03316,22.36228],[114.03317,22.36228],[114.03318,22.36229],[114.03318,22.36229],[114.03319,22.3623],[114.0332,22.3623],[114.03322,22.36232],[114.03323,22.36232],[114.03325,22.36234],[114.03326,22.36235],[114.03327,22.36235],[114.03327,22.36236],[114.03329,22.36237],[114.0333,22.36238],[114.03331,22.36238],[114.03333,22.36238],[114.03334,22.36239],[114.03336,22.3624],[114.03337,22.36241],[114.03339,22.36241],[114.0334,22.36241],[114.03341,22.36241],[114.03343,22.3624],[114.03345,22.3624],[114.03346,22.3624],[114.03348,22.36241],[114.03351,22.36242],[114.03354,22.36242],[114.03355,22.36242],[114.03356,22.36242],[114.03358,22.36241],[114.03359,22.36241],[114.03361,22.36242],[114.03363,22.36242],[114.03364,22.36243],[114.03366,22.36243],[114.03368,22.36244],[114.03371,22.36246],[114.03372,22.36246],[114.03375,22.36248],[114.03376,22.36249],[114.03379,22.36251],[114.03381,22.36252],[114.03383,22.36253],[114.03384,22.36254],[114.03388,22.36257],[114.0339,22.36258],[114.03392,22.36259],[114.03393,22.3626],[114.03394,22.36262],[114.03395,22.36263],[114.03397,22.36265],[114.03397,22.36265],[114.03399,22.36267],[114.03399,22.36268],[114.034,22.36269],[114.034,22.3627],[114.03401,22.36271],[114.03403,22.36273],[114.03404,22.36274],[114.03405,22.36275],[114.03405,22.36276],[114.03406,22.36277],[114.03406,22.36278],[114.03407,22.36282],[114.03411,22.3629],[114.03412,22.36293],[114.03413,22.36294],[114.03414,22.36297],[114.03414,22.36299],[114.03415,22.363],[114.03416,22.36301],[114.03416,22.36302],[114.03418,22.36303],[114.03419,22.36304],[114.0342,22.36304],[114.0342,22.36305],[114.0342,22.36307],[114.03422,22.3631],[114.03423,22.3631],[114.03423,22.36311],[114.03424,22.36313],[114.03424,22.36314],[114.03425,22.36315],[114.03426,22.36317],[114.03427,22.36318],[114.03427,22.36319],[114.03427,22.3632],[114.03427,22.36321],[114.03428,22.36322],[114.03428,22.36324],[114.03428,22.36325],[114.03429,22.36326],[114.0343,22.36326],[114.03431,22.36327],[114.0343,22.36328],[114.03431,22.36329],[114.03431,22.3633],[114.03431,22.3633],[114.03432,22.36331],[114.03434,22.36333],[114.03435,22.36333],[114.03438,22.36335],[114.0344,22.36336],[114.0344,22.36337],[114.03442,22.36338],[114.03442,22.36339],[114.03442,22.36339],[114.03443,22.3634],[114.03443,22.36342],[114.03444,22.36342],[114.03445,22.36343],[114.03445,22.36344],[114.03446,22.36344],[114.03447,22.36345],[114.03447,22.36346],[114.03448,22.36347],[114.03448,22.36348],[114.03447,22.3635],[114.03447,22.36351],[114.03447,22.36352],[114.03447,22.36355],[114.03447,22.36357],[114.03447,22.36358],[114.03448,22.36359],[114.03448,22.36361],[114.03448,22.36361],[114.03449,22.36362],[114.03451,22.36364],[114.03452,22.36365],[114.03455,22.36368],[114.03456,22.3637],[114.03457,22.36371],[114.03458,22.36372],[114.03458,22.36372],[114.0346,22.36374],[114.03461,22.36376],[114.03464,22.36379],[114.03465,22.3638],[114.03465,22.36381],[114.03466,22.36381],[114.03468,22.36383],[114.03471,22.36385],[114.03473,22.36386],[114.03474,22.36386],[114.03474,22.36387],[114.03476,22.36388],[114.03477,22.36388],[114.03477,22.36388],[114.03478,22.36389],[114.03482,22.36392],[114.03484,22.36393],[114.03486,22.36394],[114.03486,22.36395],[114.03488,22.36397],[114.03489,22.36398],[114.0349,22.36399],[114.03491,22.364],[114.03491,22.36401],[114.03493,22.36403],[114.03493,22.36404],[114.03494,22.36406],[114.03495,22.36406],[114.03495,22.36407],[114.03496,22.36407],[114.03499,22.36409],[114.03501,22.3641],[114.03502,22.36411],[114.03502,22.36411],[114.03504,22.36412],[114.03505,22.36413],[114.03506,22.36413],[114.03507,22.36415],[114.03507,22.36415],[114.03508,22.36416],[114.03508,22.36417],[114.03508,22.36418],[114.03507,22.36419],[114.03505,22.3642],[114.03505,22.3642],[114.03504,22.36421],[114.03504,22.36422],[114.03504,22.36426],[114.03503,22.36428],[114.03503,22.36429],[114.03503,22.3643],[114.03504,22.36434],[114.03505,22.36435],[114.03505,22.36437],[114.03505,22.36437],[114.03505,22.36438],[114.03505,22.36439],[114.03504,22.3644],[114.03504,22.3644],[114.03503,22.3644],[114.03503,22.36441],[114.03502,22.36442],[114.03502,22.36443],[114.03502,22.36444],[114.03502,22.36444],[114.03503,22.36446],[114.03503,22.36447],[114.03503,22.36449],[114.03503,22.3645],[114.03503,22.36452],[114.03503,22.36452],[114.03503,22.36454],[114.03504,22.36456],[114.03504,22.36457],[114.03504,22.36458],[114.03503,22.36458],[114.03502,22.36459],[114.03501,22.3646],[114.03501,22.3646],[114.03499,22.36462],[114.03498,22.36464],[114.03497,22.36466],[114.03496,22.36467],[114.03496,22.36467],[114.03491,22.36505],[114.03491,22.36549],[114.03509,22.36593],[114.03548,22.36627],[114.03602,22.36656],[114.03721,22.36683],[114.03795,22.36698],[114.03901,22.36749],[114.03962,22.36782],[114.03998,22.36824],[114.04029,22.3688],[114.04034,22.36949],[114.03993,22.37013],[114.03945,22.37041],[114.03869,22.3705],[114.03765,22.37055],[114.03682,22.37077],[114.03626,22.37114],[114.03599,22.37163],[114.03588,22.37213],[114.03595,22.37266],[114.0363,22.37339],[114.0362,22.37363],[114.03587,22.37386],[114.03528,22.37393],[114.03484,22.37395],[114.03453,22.37409],[114.03376,22.37448],[114.03345,22.37466],[114.03322,22.37501],[114.03288,22.37565],[114.03292,22.37641],[114.03309,22.37724],[114.03341,22.37774],[114.03391,22.37806],[114.03428,22.37807],[114.03472,22.37785],[114.03526,22.37727],[114.03575,22.37706],[114.03613,22.37719],[114.03634,22.37745],[114.03646,22.37797],[114.03659,22.37937],[114.03674,22.38007],[114.03703,22.38059],[114.03739,22.38083],[114.03811,22.38097],[114.03885,22.38083],[114.04015,22.3803],[114.04097,22.37994],[114.04218,22.37969],[114.04288,22.37961],[114.04319,22.37956],[114.04395,22.37944],[114.04517,22.37919],[114.04629,22.37898],[114.04709,22.37893],[114.04783,22.37896],[114.04868,22.37918],[114.04935,22.37948],[114.04955,22.37967],[114.04984,22.37994],[114.04989,22.38034],[114.04989,22.38034],[114.04981,22.38051],[114.04981,22.38052],[114.04968,22.38078],[114.04945,22.3811],[114.04901,22.38171],[114.04891,22.38217],[114.04889,22.38228],[114.04888,22.38235],[114.04888,22.38235],[114.04887,22.38249],[114.04886,22.38283],[114.04915,22.38329],[114.05018,22.38465],[114.05079,22.38536],[114.05105,22.38588],[114.0512,22.38621],[114.0512,22.38621],[114.05125,22.38632],[114.05122,22.38634],[114.0512,22.38635],[114.05111,22.38638],[114.05111,22.38638],[114.05109,22.38639],[114.05106,22.38642],[114.05104,22.38644],[114.05103,22.38645],[114.05102,22.38646],[114.05097,22.38654],[114.05095,22.38656],[114.0509,22.38667],[114.05088,22.3867],[114.05086,22.38673],[114.05086,22.38675],[114.05087,22.38679],[114.05087,22.38682],[114.05087,22.38682],[114.05087,22.38682],[114.05086,22.38683],[114.05086,22.38683],[114.05086,22.38683],[114.05085,22.38684],[114.05083,22.38684],[114.05082,22.38684],[114.05081,22.38685],[114.05072,22.387],[114.0507,22.38703],[114.0507,22.38706],[114.0507,22.38711],[114.0507,22.38711],[114.05069,22.3872],[114.05069,22.38722],[114.05069,22.38726],[114.05069,22.38731],[114.05069,22.38733],[114.05067,22.38737],[114.05066,22.3874],[114.05066,22.3874],[114.05066,22.38741],[114.05065,22.38742],[114.05063,22.38744],[114.05061,22.38745],[114.0506,22.38747],[114.0506,22.38749],[114.05059,22.38752],[114.05058,22.38755],[114.05058,22.38756],[114.05058,22.38757],[114.05058,22.38764],[114.05058,22.38765],[114.05058,22.38766],[114.05058,22.3877],[114.05059,22.38772],[114.05059,22.38773],[114.05059,22.38775],[114.05059,22.38775],[114.05058,22.38778],[114.05056,22.38782],[114.05056,22.38782],[114.05055,22.38783],[114.05053,22.38784],[114.05052,22.38785],[114.05049,22.38792],[114.05047,22.38795],[114.05046,22.38797],[114.05042,22.38802],[114.05039,22.38806],[114.05038,22.38809],[114.05037,22.3881],[114.05037,22.38811],[114.05037,22.38813],[114.05037,22.38819],[114.05036,22.38822],[114.05037,22.38823],[114.05038,22.38825],[114.05041,22.3883],[114.05042,22.38835],[114.05043,22.38841],[114.05046,22.38848],[114.05047,22.38849],[114.05048,22.38853],[114.05048,22.38853],[114.05049,22.38855],[114.05054,22.38859],[114.05057,22.38861],[114.05059,22.38862],[114.05064,22.38865],[114.05069,22.38869],[114.05069,22.38869],[114.0507,22.3887],[114.05078,22.38875],[114.05084,22.38879],[114.05087,22.38882],[114.05088,22.38883],[114.05089,22.38884],[114.05089,22.38884],[114.0509,22.38886],[114.0509,22.38886],[114.0509,22.38888],[114.0509,22.38892],[114.0509,22.38893],[114.05089,22.38895],[114.05088,22.38899],[114.05087,22.38901],[114.05085,22.38905],[114.05084,22.38907],[114.05081,22.38912],[114.05079,22.38913],[114.05077,22.38917],[114.05073,22.38923],[114.05072,22.38927],[114.05072,22.38928],[114.05071,22.38928],[114.0507,22.38932],[114.0507,22.38932],[114.0507,22.38934],[114.0507,22.38934],[114.0507,22.38935],[114.05069,22.38937],[114.05068,22.38937],[114.05067,22.38939],[114.05066,22.38942],[114.05065,22.38943],[114.05063,22.38949],[114.05063,22.38951],[114.05063,22.38952],[114.05064,22.38956],[114.05065,22.38959],[114.05065,22.3896],[114.05067,22.38964],[114.05068,22.38965],[114.05068,22.38965],[114.05069,22.38966],[114.05071,22.38968],[114.05071,22.38968],[114.05071,22.3897],[114.05071,22.38972],[114.05071,22.38974],[114.05071,22.38977],[114.0507,22.3898],[114.0507,22.38981],[114.0507,22.38982],[114.0507,22.38982],[114.05069,22.38985],[114.05069,22.38989],[114.05073,22.38996],[114.05074,22.38997],[114.05081,22.39003],[114.05083,22.39005],[114.05084,22.39006],[114.05084,22.39007],[114.05087,22.39012],[114.05131,22.39077],[114.05148,22.39102],[114.05213,22.3919],[114.0529,22.39292],[114.05408,22.39452],[114.05437,22.39486],[114.05437,22.39486],[114.05466,22.39519],[114.05544,22.39585],[114.05561,22.3959],[114.05589,22.39599],[114.05595,22.396],[114.05599,22.39601],[114.05672,22.3959],[114.05713,22.3958],[114.05729,22.39581],[114.05738,22.39587],[114.05742,22.39591],[114.05774,22.3963],[114.05811,22.39668],[114.05811,22.39668],[114.0582,22.39676],[114.05846,22.39699],[114.05881,22.39727],[114.05848,22.39777],[114.05835,22.39803],[114.05823,22.39826],[114.05816,22.39857],[114.05811,22.39877],[114.05805,22.39913],[114.05801,22.3993],[114.05802,22.39957],[114.05802,22.39958],[114.05803,22.39982],[114.05813,22.40031],[114.05814,22.40042],[114.05816,22.40067],[114.05816,22.40067],[114.05806,22.4009],[114.05794,22.401],[114.05782,22.4011],[114.0572,22.40141],[114.05686,22.40164],[114.05677,22.4017],[114.05677,22.4017],[114.05641,22.40197],[114.05607,22.40236],[114.05581,22.40265],[114.05558,22.40288],[114.05541,22.40304],[114.05527,22.40313],[114.0551,22.40324],[114.0548,22.40325],[114.05461,22.40314],[114.05459,22.40312],[114.05459,22.40312],[114.05426,22.40268],[114.05411,22.40243],[114.05395,22.40216],[114.05379,22.40207],[114.0536,22.40197],[114.05342,22.40196],[114.05328,22.40195],[114.05291,22.40203],[114.05267,22.40209],[114.05236,22.40227],[114.05205,22.40244],[114.05171,22.4029],[114.0514,22.40351],[114.05126,22.40402],[114.05125,22.40422],[114.05122,22.40458],[114.04207,22.40458],[114.02964,22.40458],[114.01362,22.40458],[114.01217,22.40457],[114.01217,22.4085],[114.01216,22.40851],[114.01208,22.40861],[114.01202,22.40867],[114.01195,22.40882],[114.01191,22.40892],[114.01187,22.40901],[114.01175,22.40903],[114.01164,22.40902],[114.01153,22.40899],[114.01131,22.4089],[114.0112,22.40885],[114.01109,22.40883],[114.01046,22.40866],[114.01027,22.40865],[114.01021,22.40866],[114.01016,22.4087],[114.01014,22.40876],[114.01022,22.40899],[114.01028,22.40906],[114.01035,22.40912],[114.01037,22.40918],[114.01062,22.41018],[114.01063,22.41029],[114.01061,22.41036],[114.01055,22.41039],[114.01041,22.41045],[114.01036,22.41048],[114.01033,22.41053],[114.01033,22.41057],[114.01031,22.4108],[114.0103,22.41086],[114.01026,22.4109],[114.01017,22.41099],[114.01013,22.41101],[114.01012,22.41106],[114.01008,22.41135],[114.01011,22.41142],[114.01015,22.41147],[114.01021,22.41149],[114.01042,22.41141],[114.01049,22.41139],[114.01056,22.41136],[114.01061,22.41138],[114.01092,22.41157],[114.01098,22.41162],[114.01102,22.41167],[114.01104,22.41171],[114.011,22.41178],[114.01092,22.41183],[114.01075,22.41193],[114.01065,22.412],[114.01057,22.41207],[114.01052,22.41223],[114.0105,22.41237],[114.0105,22.41259],[114.01053,22.41273],[114.01056,22.41283],[114.01058,22.4129],[114.01061,22.413],[114.01066,22.41307],[114.01075,22.41315],[114.01081,22.41325],[114.01085,22.41339],[114.01089,22.41352],[114.01087,22.41358],[114.0108,22.41371],[114.01072,22.41389],[114.01067,22.41403],[114.0106,22.41418],[114.01056,22.41431],[114.01045,22.41444],[114.01034,22.4146],[114.01022,22.41474],[114.01012,22.41484],[114.01002,22.41495],[114.00993,22.41503],[114.00983,22.41511],[114.00972,22.41517],[114.00961,22.41523],[114.00948,22.41527],[114.00934,22.41532],[114.00919,22.41533],[114.00909,22.41532],[114.00897,22.41529],[114.0088,22.41521],[114.00868,22.41514],[114.00844,22.41497],[114.00823,22.41481],[114.00807,22.41473],[114.00781,22.41461],[114.00757,22.41452],[114.00728,22.41446],[114.00672,22.41446],[114.00671,22.41427],[114.00661,22.4142],[114.00657,22.41418],[114.00654,22.41417],[114.00653,22.41416],[114.00651,22.41416],[114.00647,22.41415],[114.00643,22.41414],[114.00636,22.41413],[114.00633,22.41413],[114.0063,22.41413],[114.00626,22.41413],[114.00623,22.41413],[114.00622,22.41413],[114.00617,22.41415],[114.00613,22.41416],[114.00609,22.41417],[114.00605,22.4142],[114.00601,22.41422],[114.00597,22.41424],[114.00594,22.41426],[114.0059,22.41429],[114.00586,22.41432],[114.0058,22.41437],[114.00577,22.41441],[114.00569,22.41449],[114.00567,22.41453],[114.00565,22.41456],[114.00563,22.41459],[114.00561,22.41462],[114.00559,22.41465],[114.00557,22.41467],[114.00554,22.4147],[114.00551,22.41473],[114.00548,22.41475],[114.00545,22.41477],[114.00543,22.41478],[114.00511,22.41368],[114.00493,22.41288],[114.00481,22.4123],[114.00489,22.41182],[114.00517,22.41105],[114.00539,22.4104],[114.00541,22.40995],[114.0053,22.40928],[114.00529,22.40922],[114.00522,22.40875],[114.00533,22.40809],[114.00573,22.40723],[114.00627,22.4063],[114.00674,22.40566],[114.00688,22.40546],[114.00757,22.40483],[114.0084,22.40421],[114.00869,22.4039],[114.00879,22.40354],[114.0088,22.40309],[114.00872,22.40269],[114.00861,22.4022],[114.0085,22.40158],[114.0085,22.40092],[114.00853,22.40038],[114.00869,22.3996],[114.00891,22.39878],[114.00897,22.39812],[114.009,22.39749],[114.00897,22.39708],[114.00884,22.39658],[114.00833,22.3954],[114.00798,22.39488],[114.00759,22.39423],[114.00699,22.3935],[114.00676,22.39322],[114.00637,22.39276],[114.00524,22.39152],[114.00473,22.39096],[114.00401,22.39046],[114.00357,22.3903],[114.00317,22.39024],[114.00267,22.39029],[114.00188,22.39041],[114.00127,22.39043],[114.00068,22.39023],[113.99998,22.38979],[113.99946,22.39014],[113.99916,22.39043],[113.99873,22.39097],[113.99847,22.39159],[113.99814,22.39203],[113.99765,22.3923],[113.99724,22.39252],[113.99692,22.39311],[113.99648,22.39352],[113.99627,22.39392],[113.99625,22.39431],[113.99629,22.39505],[113.99632,22.39589],[113.99623,22.39652],[113.99613,22.39694],[113.99588,22.39737],[113.99588,22.39777],[113.996,22.39806],[113.99645,22.39836],[113.99657,22.39868],[113.99661,22.39927],[113.99668,22.39963],[113.99695,22.39996],[113.99702,22.40042],[113.99695,22.40071],[113.99657,22.40107],[113.99594,22.40156],[113.99557,22.40196],[113.99528,22.4028],[113.99515,22.40389],[113.99501,22.40651],[113.99485,22.40921],[113.99484,22.40942],[113.99481,22.41006],[113.99473,22.41091],[113.99472,22.41137],[113.99457,22.41136],[113.99311,22.41141],[113.9921,22.41146],[113.99166,22.41149],[113.99067,22.41153],[113.98967,22.41156],[113.98914,22.41156],[113.98849,22.4122],[113.9879,22.41269],[113.98781,22.41275],[113.98701,22.41367],[113.98692,22.41376],[113.98682,22.41377],[113.98678,22.41379],[113.98675,22.41383],[113.98671,22.41398],[113.9863,22.41438],[113.98462,22.41485],[113.9836,22.41516],[113.98346,22.41518],[113.98327,22.41523],[113.98307,22.4153],[113.98287,22.41536],[113.9827,22.41541],[113.98252,22.4155],[113.98241,22.41555],[113.9823,22.41563],[113.9822,22.41568],[113.98219,22.41569],[113.98213,22.41575],[113.98212,22.41576],[113.9821,22.41577],[113.98209,22.41579],[113.98208,22.4158],[113.98207,22.41582],[113.98205,22.41583],[113.98204,22.41584],[113.98203,22.41586],[113.98202,22.41587],[113.98201,22.41589],[113.98199,22.4159],[113.98198,22.41592],[113.98197,22.41593],[113.98196,22.41594],[113.98195,22.41596],[113.98194,22.41597],[113.98193,22.41599],[113.98192,22.416],[113.98191,22.41602],[113.9819,22.41603],[113.98188,22.41605],[113.98187,22.41607],[113.98186,22.41608],[113.98185,22.4161],[113.98184,22.41611],[113.98183,22.41613],[113.98182,22.41614],[113.98182,22.41616],[113.98181,22.41617],[113.9818,22.41619],[113.98179,22.41621],[113.98178,22.41622],[113.98177,22.41624],[113.98176,22.41625],[113.98175,22.41627],[113.98216,22.41646],[113.98247,22.41702],[113.98216,22.41732],[113.98235,22.41779],[113.98214,22.41789],[113.98205,22.41796],[113.98196,22.41779],[113.98195,22.41777],[113.9819,22.4177],[113.98186,22.41761],[113.98177,22.41745],[113.9817,22.41732],[113.98166,22.41726],[113.98163,22.41719],[113.98162,22.41718],[113.98158,22.41711],[113.98155,22.41705],[113.98152,22.41698],[113.98148,22.41689],[113.98147,22.41685],[113.98147,22.41685],[113.98145,22.41678],[113.98144,22.41675],[113.98134,22.4168],[113.98126,22.41685],[113.98118,22.41689],[113.98115,22.41691],[113.98114,22.41691],[113.98111,22.41693],[113.98108,22.41694],[113.98103,22.41696],[113.98103,22.41695],[113.98102,22.41692],[113.98101,22.41691],[113.981,22.41688],[113.98089,22.41666],[113.98085,22.41658],[113.98081,22.41651],[113.98076,22.41641],[113.9805,22.41591],[113.98041,22.41573],[113.9804,22.41573],[113.98034,22.41576],[113.98033,22.41577],[113.98031,22.41578],[113.98013,22.41587],[113.98006,22.41591],[113.98006,22.41591],[113.97974,22.41592],[113.97954,22.41604],[113.9791,22.41638],[113.97886,22.41658],[113.97873,22.41661],[113.97857,22.41662],[113.97838,22.41671],[113.97825,22.41673],[113.97821,22.4169],[113.97796,22.41705],[113.97761,22.41732],[113.97742,22.41718],[113.97721,22.41725],[113.97665,22.41763],[113.97626,22.41798],[113.97614,22.41807],[113.97565,22.41847],[113.97502,22.41904],[113.97484,22.4192],[113.97464,22.41915],[113.97424,22.41901],[113.97418,22.41904]]]]},"properties":{"M_NM_Eng":"Non-Metro","SR_Eng":"NWNT","PDD_Cat_En":"New Town","PDD_Eng":"Tuen Mun","M_NM_Tc":"非都會區","SR_Tc":"新界西北","PDD_Cat_Tc":"新市鎮","PDD_Tc":"屯門","M_NM_Sc":"非都会区","SR_Sc_1":"新界西北","PDD_Cat_Sc":"新市镇","PDD_Sc":"屯门","Y2019_Popu":476500,"Y2019_Empl":130800,"Y2026_Popu":538900,"Y2026_Empl":140200,"Y2031_Popu":606850,"Y2031_Empl":150750}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[114.19479,22.27963],[114.19465,22.27972],[114.19389,22.27975],[114.19387,22.27973],[114.19382,22.27971],[114.19368,22.27967],[114.19363,22.27971],[114.19362,22.27971],[114.19359,22.27977],[114.19352,22.27988],[114.19348,22.27998],[114.19341,22.2801],[114.19338,22.28013],[114.19338,22.28014],[114.19335,22.28018],[114.19329,22.28027],[114.19311,22.28054],[114.19307,22.2806],[114.19294,22.28078],[114.19291,22.28083],[114.19289,22.28087],[114.19287,22.28091],[114.19287,22.28093],[114.19286,22.28096],[114.19285,22.28101],[114.19285,22.28102],[114.19284,22.28105],[114.19284,22.28108],[114.19284,22.28109],[114.19283,22.28112],[114.19283,22.28114],[114.19283,22.28115],[114.19283,22.28115],[114.19283,22.28116],[114.19283,22.28116],[114.19283,22.28116],[114.19283,22.28117],[114.19283,22.28117],[114.19283,22.28118],[114.19283,22.28119],[114.19283,22.2812],[114.19283,22.28121],[114.19283,22.28122],[114.19283,22.28123],[114.19283,22.28123],[114.19283,22.28126],[114.19284,22.28129],[114.19284,22.2813],[114.19284,22.28133],[114.19284,22.28135],[114.19285,22.28137],[114.19285,22.28138],[114.19285,22.28138],[114.19285,22.28138],[114.19285,22.28139],[114.19285,22.28141],[114.19285,22.28145],[114.19285,22.28145],[114.19285,22.28146],[114.19285,22.28152],[114.19284,22.28175],[114.19284,22.28186],[114.19284,22.2819],[114.19284,22.28195],[114.19284,22.28199],[114.19285,22.28204],[114.19295,22.28238],[114.19303,22.28267],[114.19308,22.28285],[114.19314,22.28313],[114.19239,22.28306],[114.19219,22.28265],[114.1921,22.28249],[114.19204,22.28241],[114.19198,22.28234],[114.19192,22.28228],[114.19182,22.2822],[114.19128,22.28184],[114.19125,22.28201],[114.19124,22.28231],[114.19121,22.28267],[114.1912,22.28297],[114.19119,22.28312],[114.19116,22.28379],[114.19114,22.28413],[114.19114,22.28415],[114.19113,22.28425],[114.19111,22.28443],[114.1911,22.2845],[114.19109,22.28457],[114.19105,22.28471],[114.19105,22.28471],[114.19105,22.28472],[114.19103,22.28477],[114.19101,22.28484],[114.19099,22.28491],[114.19097,22.28497],[114.19091,22.2851],[114.19084,22.28522],[114.19072,22.28542],[114.1907,22.28544],[114.19064,22.2854],[114.19064,22.28542],[114.19063,22.28544],[114.19061,22.28548],[114.19059,22.28552],[114.19051,22.28562],[114.19045,22.28569],[114.1904,22.28573],[114.19033,22.2858],[114.19024,22.28587],[114.19019,22.2859],[114.18987,22.28617],[114.18985,22.28618],[114.18984,22.28619],[114.18983,22.28619],[114.18982,22.2862],[114.18981,22.28621],[114.18979,22.28622],[114.18978,22.28624],[114.18976,22.28625],[114.18974,22.28627],[114.18973,22.28629],[114.18972,22.28629],[114.18971,22.2863],[114.1897,22.28631],[114.18969,22.28633],[114.18968,22.28634],[114.18967,22.28635],[114.18966,22.28636],[114.18965,22.28637],[114.18965,22.28639],[114.18964,22.2864],[114.18963,22.28641],[114.18963,22.28642],[114.18962,22.28643],[114.18962,22.28644],[114.18961,22.28645],[114.18958,22.28653],[114.18956,22.28655],[114.18954,22.28657],[114.18949,22.2866],[114.18947,22.28662],[114.18945,22.28665],[114.18943,22.28666],[114.18942,22.28667],[114.18938,22.2867],[114.18934,22.28675],[114.18933,22.28675],[114.18928,22.2868],[114.18921,22.28686],[114.1892,22.28686],[114.18918,22.28683],[114.18918,22.28683],[114.18918,22.28684],[114.18917,22.28684],[114.18917,22.28684],[114.18916,22.28684],[114.18896,22.28698],[114.18889,22.28703],[114.18884,22.28706],[114.18883,22.28707],[114.18889,22.28703],[114.18883,22.28695],[114.1888,22.28691],[114.18883,22.28682],[114.1891,22.28605],[114.18915,22.28603],[114.18939,22.28593],[114.1898,22.28576],[114.18977,22.28554],[114.18995,22.28551],[114.18992,22.28519],[114.18987,22.28519],[114.18971,22.28522],[114.18969,22.28513],[114.18966,22.2851],[114.18935,22.28501],[114.18929,22.28498],[114.18902,22.28491],[114.18862,22.28481],[114.18647,22.28425],[114.18639,22.28421],[114.18617,22.28424],[114.18562,22.28405],[114.18491,22.28352],[114.18487,22.28328],[114.18353,22.28243],[114.18319,22.28231],[114.18307,22.28235],[114.18299,22.28253],[114.18323,22.28386],[114.18324,22.28393],[114.18335,22.28451],[114.18336,22.28454],[114.1833,22.28454],[114.1833,22.28467],[114.18303,22.28467],[114.18303,22.28461],[114.18292,22.28461],[114.18286,22.28484],[114.18331,22.28496],[114.18332,22.28496],[114.18332,22.28498],[114.18332,22.28499],[114.18331,22.28499],[114.18274,22.28484],[114.18241,22.28557],[114.1824,22.28558],[114.18238,22.28559],[114.18236,22.2856],[114.18234,22.28559],[114.18232,22.28558],[114.1823,22.28557],[114.18229,22.28555],[114.18229,22.28552],[114.18262,22.28481],[114.18232,22.28473],[114.1821,22.28474],[114.182,22.28464],[114.18198,22.28453],[114.18187,22.28447],[114.18184,22.28446],[114.18143,22.28456],[114.18143,22.28453],[114.18179,22.28444],[114.18178,22.28439],[114.18184,22.28434],[114.18181,22.28423],[114.18184,22.28401],[114.18178,22.284],[114.18178,22.28385],[114.18185,22.28384],[114.18188,22.28321],[114.1809,22.28273],[114.18023,22.2825],[114.17993,22.28327],[114.18094,22.28405],[114.18097,22.28408],[114.18099,22.28411],[114.181,22.28414],[114.181,22.28417],[114.18099,22.28421],[114.18097,22.28425],[114.18095,22.28428],[114.18092,22.28429],[114.1809,22.28431],[114.18086,22.28432],[114.18082,22.28432],[114.18079,22.28431],[114.18076,22.2843],[114.1807,22.28426],[114.18058,22.28416],[114.17908,22.28299],[114.17855,22.28281],[114.17715,22.28234],[114.17622,22.28202],[114.17587,22.282],[114.17587,22.28201],[114.17578,22.28217],[114.17574,22.28264],[114.17574,22.28264],[114.17573,22.28265],[114.17572,22.28266],[114.17571,22.28266],[114.1757,22.28267],[114.17554,22.28265],[114.17553,22.28265],[114.17552,22.28265],[114.17551,22.28264],[114.17551,22.28263],[114.17551,22.28262],[114.17554,22.28216],[114.17548,22.28199],[114.17548,22.28197],[114.17503,22.28194],[114.17502,22.28196],[114.17497,22.28205],[114.17467,22.28202],[114.17464,22.28193],[114.17464,22.28191],[114.17442,22.28189],[114.17441,22.2819],[114.1744,22.28191],[114.17439,22.28193],[114.17438,22.28196],[114.17437,22.28199],[114.17434,22.28257],[114.17437,22.28257],[114.17438,22.28257],[114.17438,22.28258],[114.17439,22.28258],[114.17439,22.28259],[114.17437,22.28296],[114.1744,22.28296],[114.17435,22.2837],[114.17437,22.28378],[114.17442,22.28377],[114.17441,22.28374],[114.17446,22.28373],[114.17448,22.28379],[114.17442,22.2838],[114.17442,22.28379],[114.17438,22.2838],[114.17441,22.28394],[114.17446,22.28392],[114.17446,22.28391],[114.17451,22.2839],[114.17453,22.28396],[114.17448,22.28398],[114.17447,22.28395],[114.17442,22.28396],[114.17452,22.28428],[114.17452,22.28431],[114.17451,22.28433],[114.1745,22.28434],[114.17449,22.28435],[114.17463,22.28439],[114.17444,22.28507],[114.17443,22.28509],[114.17442,22.28511],[114.17441,22.28513],[114.1744,22.28514],[114.17437,22.28516],[114.17435,22.28517],[114.17432,22.28518],[114.17429,22.28518],[114.17427,22.28518],[114.17425,22.28518],[114.17422,22.28517],[114.1742,22.28515],[114.17418,22.28513],[114.17416,22.28511],[114.17415,22.28508],[114.17415,22.28506],[114.17415,22.28503],[114.17415,22.28502],[114.17424,22.28469],[114.17361,22.28469],[114.17356,22.28471],[114.17353,22.28473],[114.17348,22.28475],[114.17342,22.28478],[114.17334,22.2848],[114.17326,22.28482],[114.17314,22.28485],[114.17304,22.28486],[114.17292,22.28486],[114.17284,22.28485],[114.17278,22.28484],[114.1727,22.28483],[114.17264,22.28482],[114.17256,22.28479],[114.17248,22.28477],[114.17241,22.28473],[114.17232,22.28468],[114.17223,22.28463],[114.17222,22.28462],[114.17202,22.28445],[114.17201,22.28443],[114.17201,22.28442],[114.172,22.2844],[114.172,22.28438],[114.172,22.28437],[114.172,22.28436],[114.17201,22.28434],[114.17202,22.28433],[114.17204,22.28431],[114.17205,22.28431],[114.17206,22.2843],[114.17184,22.28363],[114.17142,22.28257],[114.1714,22.28249],[114.1714,22.28244],[114.17139,22.28238],[114.1714,22.28237],[114.1714,22.28236],[114.17141,22.28235],[114.17142,22.28235],[114.17143,22.28235],[114.1714,22.28229],[114.17135,22.28214],[114.17133,22.28207],[114.17131,22.28196],[114.1713,22.28185],[114.1713,22.28181],[114.1713,22.28181],[114.1713,22.2818],[114.1713,22.2818],[114.1713,22.2818],[114.1713,22.2818],[114.1713,22.28179],[114.1713,22.28179],[114.1713,22.28179],[114.1713,22.28178],[114.1713,22.28178],[114.1713,22.28178],[114.1713,22.28177],[114.1713,22.28177],[114.1713,22.28177],[114.1713,22.28176],[114.1713,22.28176],[114.1713,22.28176],[114.1713,22.28175],[114.1713,22.28174],[114.1713,22.28174],[114.1713,22.28174],[114.1713,22.28173],[114.1713,22.28173],[114.1713,22.28173],[114.1713,22.28173],[114.17131,22.28172],[114.17131,22.28172],[114.17131,22.28172],[114.17131,22.28171],[114.17131,22.28171],[114.17131,22.28171],[114.17131,22.2817],[114.17131,22.2817],[114.17131,22.2817],[114.17131,22.2817],[114.17131,22.28169],[114.17131,22.28169],[114.17131,22.28169],[114.17131,22.28168],[114.1713,22.28166],[114.17127,22.28165],[114.17124,22.28157],[114.17118,22.28147],[114.17108,22.28138],[114.17101,22.28135],[114.17091,22.28129],[114.17083,22.28121],[114.17077,22.28112],[114.17072,22.28102],[114.1707,22.28094],[114.17067,22.2807],[114.17053,22.28076],[114.17044,22.28081],[114.17033,22.28084],[114.17024,22.28086],[114.17016,22.28087],[114.17007,22.28087],[114.16996,22.28087],[114.16943,22.28082],[114.16914,22.2808],[114.16912,22.2808],[114.16913,22.28078],[114.16889,22.28076],[114.16869,22.28075],[114.16868,22.28075],[114.16867,22.28075],[114.16865,22.28074],[114.16864,22.28074],[114.16863,22.28074],[114.16861,22.28074],[114.16858,22.28073],[114.16857,22.28073],[114.16856,22.28073],[114.16855,22.28072],[114.16855,22.28072],[114.16854,22.28072],[114.16853,22.28072],[114.16852,22.28071],[114.16851,22.28071],[114.1685,22.28071],[114.1685,22.28071],[114.16849,22.2807],[114.16848,22.2807],[114.16847,22.2807],[114.16846,22.28069],[114.16846,22.28069],[114.16845,22.28069],[114.16844,22.28068],[114.16843,22.28068],[114.16842,22.28068],[114.16842,22.28067],[114.16841,22.28067],[114.1684,22.28066],[114.16839,22.28066],[114.16839,22.28065],[114.16838,22.28065],[114.16837,22.28065],[114.16837,22.28064],[114.16836,22.28064],[114.16835,22.28063],[114.16835,22.28063],[114.16834,22.28062],[114.16833,22.28062],[114.16833,22.28062],[114.16832,22.28061],[114.16832,22.28061],[114.16831,22.2806],[114.16831,22.28059],[114.1683,22.28059],[114.16829,22.28058],[114.16829,22.28058],[114.16828,22.28057],[114.16827,22.28057],[114.16827,22.28056],[114.16826,22.28055],[114.16826,22.28055],[114.16825,22.28054],[114.16825,22.28054],[114.16824,22.28053],[114.16824,22.28052],[114.16823,22.28052],[114.16823,22.28051],[114.16822,22.2805],[114.16822,22.2805],[114.16821,22.28049],[114.16821,22.28048],[114.1682,22.28048],[114.1682,22.28047],[114.16819,22.28046],[114.16819,22.28045],[114.16819,22.28045],[114.16818,22.28044],[114.16818,22.28043],[114.16817,22.28043],[114.16817,22.28042],[114.16817,22.28041],[114.16816,22.2804],[114.16816,22.2804],[114.16816,22.28039],[114.16816,22.28038],[114.16815,22.28037],[114.16815,22.28036],[114.16815,22.28036],[114.16814,22.28034],[114.16813,22.28024],[114.16812,22.28021],[114.16811,22.2802],[114.1681,22.28015],[114.16808,22.28011],[114.16806,22.28009],[114.16805,22.28007],[114.16804,22.28006],[114.16803,22.28004],[114.16801,22.28002],[114.168,22.28],[114.16797,22.27998],[114.16795,22.27996],[114.16793,22.27995],[114.16791,22.27993],[114.16788,22.27992],[114.16786,22.27991],[114.16784,22.27989],[114.16781,22.27988],[114.16778,22.27987],[114.16776,22.27987],[114.16769,22.27985],[114.16769,22.27985],[114.16761,22.27983],[114.16757,22.27982],[114.1675,22.27981],[114.16726,22.27977],[114.16703,22.27973],[114.16696,22.27971],[114.16688,22.2797],[114.1668,22.27969],[114.16674,22.27968],[114.16668,22.27968],[114.16667,22.27968],[114.16657,22.27956],[114.16657,22.27955],[114.16657,22.27955],[114.16641,22.27936],[114.16685,22.27941],[114.16711,22.27943],[114.16734,22.27946],[114.1674,22.27947],[114.16744,22.27948],[114.16763,22.2795],[114.16779,22.27954],[114.16797,22.27958],[114.16812,22.27963],[114.16816,22.27964],[114.16816,22.27964],[114.16823,22.27965],[114.16916,22.27946],[114.16887,22.27884],[114.16865,22.27837],[114.1684,22.27782],[114.16838,22.27778],[114.16726,22.27787],[114.16806,22.27742],[114.16787,22.27716],[114.16785,22.27714],[114.16765,22.27698],[114.16755,22.27692],[114.16746,22.27689],[114.16741,22.27686],[114.16733,22.2768],[114.16723,22.27672],[114.16717,22.27667],[114.16713,22.27661],[114.16711,22.27655],[114.1671,22.27632],[114.16711,22.27615],[114.16716,22.27617],[114.16719,22.27619],[114.16726,22.2762],[114.1673,22.27619],[114.16734,22.27618],[114.16734,22.27617],[114.16735,22.27616],[114.16737,22.27615],[114.16737,22.27611],[114.16737,22.27602],[114.16737,22.27595],[114.16735,22.27589],[114.16707,22.27559],[114.16701,22.27553],[114.16712,22.2754],[114.16711,22.27539],[114.16709,22.27538],[114.16708,22.27537],[114.16707,22.27537],[114.16705,22.27537],[114.16703,22.27537],[114.16702,22.27537],[114.16699,22.27538],[114.16696,22.27539],[114.16691,22.27543],[114.16678,22.27551],[114.16674,22.27554],[114.1667,22.27556],[114.16669,22.27557],[114.16667,22.27557],[114.16662,22.27557],[114.16658,22.27556],[114.16655,22.27555],[114.16654,22.27554],[114.16644,22.27544],[114.1664,22.2754],[114.16632,22.2753],[114.16631,22.27529],[114.16629,22.27525],[114.16627,22.27521],[114.16627,22.27519],[114.16627,22.27512],[114.16627,22.27504],[114.16628,22.27502],[114.16631,22.27492],[114.16633,22.27487],[114.16635,22.27481],[114.16638,22.27473],[114.16639,22.27471],[114.16639,22.27469],[114.1664,22.27464],[114.1664,22.27461],[114.1664,22.27458],[114.16639,22.27448],[114.16639,22.27442],[114.16637,22.27434],[114.16633,22.27424],[114.16629,22.27416],[114.16625,22.27409],[114.16615,22.27399],[114.16611,22.27394],[114.16608,22.27387],[114.16606,22.2738],[114.16606,22.27373],[114.16607,22.27367],[114.1661,22.27361],[114.16613,22.27355],[114.16618,22.27347],[114.16619,22.27345],[114.16619,22.27343],[114.1662,22.27341],[114.1662,22.2734],[114.1662,22.27338],[114.16619,22.27329],[114.16617,22.27318],[114.16616,22.27311],[114.16613,22.27301],[114.16612,22.27299],[114.1661,22.27296],[114.16608,22.27293],[114.16605,22.27291],[114.16603,22.27288],[114.16601,22.27288],[114.16599,22.27286],[114.16596,22.27285],[114.16587,22.27284],[114.16571,22.27281],[114.16561,22.2728],[114.16559,22.2728],[114.16556,22.2728],[114.16555,22.2728],[114.16551,22.27281],[114.16548,22.27282],[114.16545,22.27284],[114.16544,22.27285],[114.16542,22.27286],[114.16543,22.27284],[114.16543,22.27281],[114.16545,22.27274],[114.16547,22.27266],[114.16565,22.27244],[114.16559,22.27087],[114.16572,22.271],[114.16575,22.27105],[114.16577,22.27107],[114.16556,22.26946],[114.16557,22.26936],[114.16557,22.26923],[114.16557,22.26917],[114.16561,22.26912],[114.16574,22.269],[114.1658,22.26896],[114.1659,22.26891],[114.16594,22.26889],[114.16598,22.26886],[114.16606,22.26879],[114.16613,22.26873],[114.16619,22.26872],[114.16624,22.26871],[114.16629,22.26871],[114.16643,22.26875],[114.16647,22.26875],[114.16647,22.26875],[114.16651,22.26873],[114.16671,22.26861],[114.16672,22.2686],[114.16673,22.26858],[114.16674,22.26848],[114.16677,22.26843],[114.16679,22.26842],[114.1668,22.26841],[114.16682,22.26841],[114.16689,22.2684],[114.16705,22.2684],[114.16707,22.2684],[114.1671,22.26839],[114.16716,22.26836],[114.16716,22.26835],[114.1672,22.26832],[114.1672,22.26829],[114.16721,22.26827],[114.16721,22.26827],[114.16719,22.26822],[114.1671,22.26807],[114.16708,22.26805],[114.16708,22.26804],[114.16706,22.268],[114.16705,22.26793],[114.16706,22.26788],[114.16707,22.26782],[114.16707,22.26778],[114.16707,22.26772],[114.16708,22.26769],[114.16631,22.26688],[114.1672,22.26616],[114.16717,22.26617],[114.16714,22.26618],[114.16711,22.26618],[114.16707,22.26617],[114.16705,22.26615],[114.16701,22.26606],[114.16703,22.2659],[114.16706,22.26574],[114.16708,22.26568],[114.1671,22.26561],[114.16711,22.26556],[114.16711,22.26552],[114.16704,22.26542],[114.167,22.26534],[114.16691,22.26525],[114.16691,22.26524],[114.16689,22.26521],[114.16686,22.26516],[114.16685,22.26515],[114.16682,22.26512],[114.16681,22.26512],[114.16678,22.26511],[114.16662,22.26511],[114.16659,22.2651],[114.16657,22.2651],[114.16655,22.26509],[114.16653,22.26508],[114.16631,22.26493],[114.16619,22.26485],[114.16611,22.26478],[114.16611,22.26478],[114.16607,22.26473],[114.16607,22.26472],[114.16605,22.26468],[114.16604,22.26465],[114.16604,22.26463],[114.16606,22.2646],[114.16611,22.26456],[114.16612,22.26455],[114.1662,22.2645],[114.16623,22.26447],[114.16625,22.2644],[114.16624,22.26438],[114.16623,22.26435],[114.16618,22.26431],[114.16616,22.2643],[114.16614,22.26429],[114.16607,22.26428],[114.16593,22.26427],[114.16592,22.26425],[114.16591,22.26424],[114.16591,22.26422],[114.16591,22.2642],[114.16592,22.26418],[114.16593,22.26415],[114.16595,22.2641],[114.16604,22.26399],[114.16607,22.26393],[114.16608,22.2639],[114.16607,22.26387],[114.16606,22.26387],[114.16604,22.26385],[114.16593,22.26381],[114.16586,22.26377],[114.16585,22.26374],[114.16585,22.26368],[114.16585,22.26365],[114.16584,22.26362],[114.16584,22.26361],[114.16575,22.26343],[114.16572,22.26341],[114.16569,22.2634],[114.16568,22.2634],[114.16567,22.2634],[114.16565,22.2634],[114.16556,22.26344],[114.16552,22.26344],[114.16549,22.26341],[114.16541,22.26331],[114.16536,22.26326],[114.16528,22.26321],[114.16526,22.2632],[114.16523,22.26317],[114.16521,22.26312],[114.16521,22.26306],[114.16525,22.26296],[114.1653,22.2628],[114.16529,22.26277],[114.16527,22.26276],[114.16521,22.26275],[114.16514,22.26274],[114.16513,22.26274],[114.16512,22.26273],[114.1651,22.26272],[114.1651,22.2627],[114.16512,22.2626],[114.16508,22.26251],[114.16512,22.26238],[114.16513,22.26236],[114.16513,22.26234],[114.16511,22.26226],[114.1651,22.26226],[114.16508,22.26224],[114.16503,22.2622],[114.16493,22.26216],[114.16488,22.26214],[114.16478,22.26215],[114.16478,22.26215],[114.16474,22.26214],[114.16473,22.26212],[114.16472,22.26211],[114.16472,22.26209],[114.16473,22.26206],[114.16474,22.26204],[114.16477,22.262],[114.1648,22.26188],[114.16482,22.26181],[114.16487,22.26173],[114.16488,22.26171],[114.16487,22.26167],[114.16485,22.26165],[114.16483,22.26164],[114.16479,22.26164],[114.16471,22.26165],[114.16466,22.26164],[114.16454,22.26161],[114.16453,22.26161],[114.16451,22.26159],[114.16455,22.26151],[114.1646,22.26147],[114.16466,22.26141],[114.16467,22.26137],[114.16468,22.26135],[114.16467,22.26132],[114.16466,22.26129],[114.16466,22.26129],[114.16463,22.26124],[114.16462,22.26124],[114.1646,22.26122],[114.16456,22.26119],[114.16446,22.26116],[114.16445,22.26115],[114.16445,22.26113],[114.16446,22.26108],[114.16446,22.26105],[114.16445,22.26102],[114.16436,22.26094],[114.16425,22.26084],[114.16421,22.26081],[114.16411,22.26076],[114.16409,22.26076],[114.16406,22.26075],[114.16405,22.26075],[114.16401,22.26076],[114.16391,22.26079],[114.16389,22.26078],[114.16387,22.26077],[114.16386,22.26075],[114.16386,22.26067],[114.16388,22.26052],[114.16387,22.26047],[114.16383,22.26043],[114.1638,22.26042],[114.16378,22.26041],[114.16364,22.26043],[114.16361,22.26043],[114.16359,22.26042],[114.16358,22.26041],[114.16358,22.2604],[114.16356,22.26038],[114.16355,22.26035],[114.16355,22.26032],[114.16362,22.26024],[114.16363,22.26021],[114.16363,22.26018],[114.16362,22.26009],[114.16359,22.26002],[114.16359,22.25998],[114.16358,22.25995],[114.1636,22.25983],[114.1636,22.25981],[114.16362,22.25974],[114.16362,22.25966],[114.16362,22.25963],[114.16362,22.25963],[114.16361,22.2596],[114.16357,22.25955],[114.16356,22.25955],[114.16347,22.25946],[114.16344,22.25942],[114.1634,22.25934],[114.16339,22.25923],[114.16338,22.2589],[114.16339,22.25891],[114.1638,22.25908],[114.16615,22.25811],[114.16789,22.25738],[114.1681,22.25735],[114.1685,22.25728],[114.16859,22.25727],[114.16862,22.25726],[114.16868,22.25724],[114.16879,22.25712],[114.16885,22.25707],[114.1689,22.25699],[114.16893,22.25693],[114.16899,22.25689],[114.16903,22.25686],[114.16908,22.25682],[114.1691,22.25681],[114.16914,22.2568],[114.16916,22.25679],[114.16919,22.25677],[114.16921,22.25677],[114.16926,22.25676],[114.16928,22.25676],[114.16929,22.25675],[114.16931,22.25675],[114.16935,22.25675],[114.16945,22.25674],[114.16947,22.25674],[114.16948,22.25674],[114.16949,22.25674],[114.16951,22.25675],[114.16952,22.25675],[114.16954,22.25675],[114.16954,22.25675],[114.16957,22.25675],[114.16959,22.25674],[114.1696,22.25674],[114.16962,22.25672],[114.16971,22.25658],[114.17017,22.25639],[114.17073,22.2561],[114.17079,22.25605],[114.17085,22.25585],[114.1709,22.25576],[114.17096,22.25568],[114.17106,22.25562],[114.17118,22.25554],[114.17135,22.25549],[114.1715,22.25547],[114.17179,22.25544],[114.17194,22.25544],[114.17208,22.25543],[114.17227,22.25546],[114.17238,22.25549],[114.17249,22.25554],[114.17256,22.25558],[114.17262,22.25563],[114.17267,22.25568],[114.17269,22.25569],[114.1727,22.2557],[114.17271,22.25571],[114.17274,22.25574],[114.17278,22.25577],[114.1728,22.25579],[114.17283,22.2558],[114.17285,22.25581],[114.17289,22.25581],[114.17292,22.2558],[114.17294,22.25579],[114.17296,22.25578],[114.17299,22.25575],[114.17316,22.25562],[114.17353,22.25533],[114.17389,22.25505],[114.17395,22.25501],[114.174,22.25499],[114.17403,22.25498],[114.17406,22.25498],[114.1741,22.25498],[114.17414,22.25498],[114.17418,22.25499],[114.17421,22.255],[114.17427,22.25504],[114.17431,22.25505],[114.17435,22.25505],[114.1744,22.25503],[114.17443,22.255],[114.17459,22.25481],[114.17463,22.25477],[114.17467,22.25474],[114.17469,22.25472],[114.17471,22.2547],[114.17474,22.25467],[114.17575,22.25421],[114.17579,22.2542],[114.17599,22.25411],[114.17603,22.25409],[114.17607,22.25408],[114.17609,22.25408],[114.17613,22.25407],[114.17617,22.25407],[114.1764,22.25407],[114.17643,22.25408],[114.17648,22.25408],[114.1765,22.25409],[114.1768,22.25421],[114.17684,22.25423],[114.17687,22.25425],[114.17689,22.25426],[114.17691,22.25429],[114.17693,22.25433],[114.177,22.25444],[114.17706,22.25454],[114.17711,22.25464],[114.17713,22.25466],[114.17715,22.25469],[114.17719,22.25471],[114.17725,22.25471],[114.17728,22.25471],[114.17735,22.25469],[114.17739,22.25469],[114.17742,22.2547],[114.17746,22.25471],[114.17748,22.25473],[114.17752,22.25476],[114.17756,22.25478],[114.17762,22.25481],[114.17767,22.25486],[114.17769,22.25489],[114.17774,22.25493],[114.17779,22.25496],[114.17784,22.25499],[114.1779,22.25504],[114.17794,22.25508],[114.17797,22.25515],[114.17797,22.25518],[114.17798,22.25522],[114.17798,22.25531],[114.17798,22.25544],[114.17798,22.2556],[114.17799,22.25564],[114.17801,22.25568],[114.17809,22.25575],[114.17811,22.25577],[114.17813,22.25581],[114.17814,22.25584],[114.17815,22.25587],[114.17815,22.25592],[114.17815,22.25595],[114.17815,22.25598],[114.17816,22.25602],[114.17818,22.25605],[114.1782,22.25608],[114.17822,22.2561],[114.17826,22.25613],[114.17829,22.25617],[114.17831,22.25621],[114.17833,22.25625],[114.17836,22.25631],[114.17836,22.25633],[114.17837,22.25637],[114.17837,22.25639],[114.17837,22.25643],[114.17836,22.25646],[114.17835,22.2565],[114.17831,22.25657],[114.17831,22.25659],[114.17833,22.25661],[114.17857,22.25686],[114.17861,22.25689],[114.17863,22.2569],[114.17866,22.2569],[114.17885,22.25683],[114.17889,22.25681],[114.17892,22.25678],[114.17894,22.25675],[114.17897,22.25672],[114.17899,22.2567],[114.17901,22.25668],[114.17904,22.25666],[114.17909,22.25663],[114.17914,22.25661],[114.17928,22.25658],[114.17931,22.25656],[114.17934,22.25655],[114.17939,22.25651],[114.17942,22.25646],[114.17945,22.25641],[114.17947,22.25636],[114.17949,22.25634],[114.17952,22.25633],[114.1796,22.25628],[114.17974,22.25623],[114.17976,22.25622],[114.17982,22.25622],[114.17982,22.25622],[114.17989,22.25621],[114.1799,22.25621],[114.17994,22.25618],[114.17996,22.25616],[114.18,22.25613],[114.18009,22.25606],[114.18021,22.25598],[114.18029,22.25594],[114.18037,22.25592],[114.18044,22.25592],[114.18049,22.25593],[114.18059,22.25593],[114.18062,22.25593],[114.18068,22.25592],[114.18073,22.25591],[114.18089,22.25586],[114.18098,22.25584],[114.18107,22.2558],[114.18116,22.25578],[114.18119,22.25578],[114.18124,22.25578],[114.18134,22.25579],[114.18141,22.2558],[114.18148,22.2558],[114.18174,22.25577],[114.18177,22.25577],[114.18184,22.25577],[114.18194,22.25577],[114.18201,22.25577],[114.1824,22.2558],[114.18245,22.2558],[114.18249,22.2558],[114.18265,22.25574],[114.18272,22.25573],[114.18281,22.2557],[114.18284,22.25569],[114.1829,22.25568],[114.18294,22.25568],[114.18299,22.25567],[114.18301,22.25566],[114.18302,22.25565],[114.18302,22.25563],[114.18304,22.25541],[114.18305,22.25536],[114.18306,22.25533],[114.18307,22.25529],[114.18309,22.25527],[114.18313,22.25525],[114.18316,22.25524],[114.18319,22.25523],[114.18325,22.2552],[114.18329,22.25518],[114.18333,22.25516],[114.18335,22.25514],[114.18338,22.25513],[114.18342,22.25513],[114.18345,22.25513],[114.18348,22.25514],[114.18352,22.25515],[114.18361,22.25522],[114.18364,22.25523],[114.18366,22.25523],[114.18369,22.25522],[114.18372,22.25522],[114.18374,22.25522],[114.18376,22.25522],[114.1838,22.25524],[114.18386,22.25526],[114.18397,22.25528],[114.18402,22.25529],[114.18406,22.2553],[114.18409,22.2553],[114.1841,22.2553],[114.18414,22.25527],[114.18417,22.25525],[114.18419,22.25525],[114.18423,22.25524],[114.18425,22.25524],[114.18429,22.25524],[114.18433,22.25524],[114.18438,22.25525],[114.18442,22.25523],[114.18444,22.25515],[114.18446,22.25512],[114.18447,22.2551],[114.1845,22.25507],[114.18453,22.25504],[114.18456,22.25503],[114.18459,22.25502],[114.18463,22.25501],[114.18466,22.25501],[114.1847,22.25501],[114.18473,22.25502],[114.18477,22.25504],[114.18478,22.25505],[114.18483,22.25509],[114.18487,22.25509],[114.18491,22.25508],[114.18494,22.25507],[114.18498,22.25505],[114.185,22.25502],[114.18502,22.25498],[114.18503,22.25492],[114.18504,22.25489],[114.18505,22.25486],[114.18507,22.25483],[114.18509,22.2548],[114.18512,22.25476],[114.18515,22.25472],[114.18518,22.25469],[114.18521,22.25466],[114.18525,22.25463],[114.18528,22.25461],[114.18532,22.2546],[114.18536,22.2546],[114.1854,22.2546],[114.18546,22.25459],[114.18551,22.25454],[114.18552,22.25453],[114.18553,22.25452],[114.18554,22.25452],[114.18705,22.25407],[114.18707,22.25406],[114.18708,22.25406],[114.18713,22.25405],[114.1872,22.25403],[114.18783,22.2543],[114.18815,22.25438],[114.18823,22.25443],[114.18827,22.25446],[114.18831,22.25451],[114.18835,22.25458],[114.18836,22.25466],[114.18837,22.25555],[114.18839,22.25561],[114.18858,22.25601],[114.18883,22.25649],[114.18885,22.25654],[114.18888,22.2566],[114.18888,22.2566],[114.18889,22.25663],[114.18891,22.25665],[114.18891,22.25667],[114.18891,22.25667],[114.18892,22.25668],[114.18894,22.25671],[114.18894,22.25672],[114.18895,22.25672],[114.18895,22.25673],[114.18895,22.25673],[114.18897,22.25676],[114.18898,22.25677],[114.18898,22.25677],[114.18899,22.25678],[114.189,22.25678],[114.18901,22.25679],[114.18901,22.2568],[114.18903,22.25681],[114.18905,22.25683],[114.18906,22.25684],[114.18908,22.25685],[114.18952,22.25716],[114.18957,22.25719],[114.18958,22.2572],[114.18959,22.25721],[114.18961,22.25722],[114.18962,22.25722],[114.18964,22.25723],[114.18965,22.25724],[114.18966,22.25724],[114.18967,22.25725],[114.18968,22.25725],[114.18968,22.25726],[114.18969,22.25726],[114.1897,22.25726],[114.18971,22.25727],[114.18972,22.25727],[114.18974,22.25728],[114.18975,22.25728],[114.18977,22.25728],[114.18978,22.25729],[114.18979,22.25729],[114.1895,22.25747],[114.1893,22.25785],[114.18887,22.25764],[114.18859,22.25797],[114.18859,22.25797],[114.18859,22.25797],[114.18859,22.25798],[114.18861,22.25801],[114.18862,22.25803],[114.18862,22.25804],[114.18862,22.25805],[114.18863,22.25806],[114.18863,22.25808],[114.18863,22.25809],[114.18863,22.2581],[114.18863,22.25811],[114.18863,22.25812],[114.18863,22.25814],[114.18862,22.25816],[114.18862,22.25817],[114.18862,22.25818],[114.18862,22.2582],[114.18863,22.25822],[114.18863,22.25823],[114.18864,22.25824],[114.18866,22.25828],[114.18867,22.25832],[114.18732,22.25942],[114.18836,22.25942],[114.18883,22.25942],[114.19224,22.25944],[114.19259,22.25888],[114.19262,22.25874],[114.19265,22.25846],[114.19265,22.25823],[114.19263,22.2579],[114.19261,22.25773],[114.19258,22.25764],[114.19252,22.25755],[114.19245,22.25748],[114.19244,22.25747],[114.19243,22.25744],[114.19241,22.25738],[114.19239,22.25735],[114.19251,22.25738],[114.19254,22.25739],[114.19262,22.25741],[114.19268,22.25741],[114.19274,22.25741],[114.19279,22.25739],[114.19284,22.25737],[114.19291,22.25731],[114.19299,22.25723],[114.19309,22.25716],[114.19313,22.25713],[114.19315,22.25711],[114.19319,22.2571],[114.19324,22.25709],[114.19328,22.2571],[114.19349,22.25711],[114.19362,22.25714],[114.19374,22.25714],[114.19438,22.25704],[114.19442,22.25705],[114.19509,22.25731],[114.19552,22.25742],[114.19554,22.25743],[114.19569,22.2575],[114.19576,22.25754],[114.19624,22.25796],[114.1963,22.25802],[114.19636,22.25806],[114.19646,22.2581],[114.19654,22.25812],[114.19665,22.25813],[114.19684,22.25813],[114.19694,22.25811],[114.19705,22.25808],[114.19707,22.25806],[114.19725,22.25792],[114.19732,22.25787],[114.19736,22.25785],[114.19739,22.25784],[114.19744,22.25784],[114.1975,22.25784],[114.19752,22.25784],[114.19756,22.25785],[114.19757,22.25786],[114.19758,22.25787],[114.19758,22.25787],[114.19759,22.25787],[114.19759,22.25787],[114.1976,22.25787],[114.1976,22.25787],[114.19761,22.25788],[114.19771,22.25795],[114.19772,22.25798],[114.19773,22.25799],[114.19774,22.25802],[114.19776,22.25808],[114.19777,22.25813],[114.19777,22.25813],[114.19777,22.25814],[114.19777,22.25818],[114.19776,22.2582],[114.19776,22.25821],[114.19775,22.25823],[114.19774,22.25825],[114.19773,22.25827],[114.1977,22.2583],[114.19768,22.25833],[114.19767,22.25833],[114.19762,22.25838],[114.19752,22.25844],[114.19738,22.25852],[114.1983,22.26633],[114.20314,22.26754],[114.2067,22.27003],[114.20737,22.27049],[114.2034,22.27673],[114.20339,22.27673],[114.20332,22.27684],[114.20329,22.2769],[114.20251,22.27733],[114.20229,22.27724],[114.20229,22.27724],[114.20228,22.27724],[114.20078,22.27442],[114.20055,22.27429],[114.19822,22.27295],[114.19822,22.27295],[114.1982,22.27297],[114.19818,22.27298],[114.19816,22.273],[114.19809,22.27304],[114.19798,22.27312],[114.19794,22.27314],[114.19787,22.27317],[114.19782,22.27319],[114.19773,22.27323],[114.19767,22.27328],[114.19763,22.27332],[114.1976,22.27338],[114.19756,22.27345],[114.19755,22.27348],[114.19753,22.27354],[114.1975,22.27358],[114.19747,22.27362],[114.1974,22.27367],[114.19738,22.2737],[114.19737,22.27372],[114.19736,22.27377],[114.19736,22.27385],[114.19735,22.27392],[114.19735,22.27397],[114.19734,22.274],[114.19731,22.27405],[114.19715,22.2742],[114.19714,22.27419],[114.19712,22.27418],[114.19711,22.27417],[114.19711,22.27417],[114.19709,22.27415],[114.19708,22.27413],[114.19703,22.27417],[114.19701,22.27416],[114.19694,22.27413],[114.19686,22.27412],[114.19679,22.27412],[114.19672,22.27413],[114.1967,22.27413],[114.19668,22.27414],[114.19664,22.27416],[114.19663,22.27418],[114.19659,22.27422],[114.19658,22.27424],[114.19657,22.27425],[114.19655,22.27427],[114.19654,22.27429],[114.19652,22.27432],[114.19651,22.27434],[114.1965,22.27436],[114.19645,22.27448],[114.19641,22.27457],[114.19638,22.27464],[114.1963,22.27482],[114.19626,22.27492],[114.19622,22.27498],[114.19619,22.27502],[114.19616,22.27507],[114.1961,22.27515],[114.19606,22.2752],[114.19604,22.27522],[114.19603,22.27524],[114.196,22.27527],[114.19595,22.27532],[114.19594,22.27534],[114.19591,22.27537],[114.1959,22.27538],[114.19589,22.27539],[114.19586,22.27543],[114.19581,22.27547],[114.1958,22.27548],[114.19578,22.27549],[114.19577,22.2755],[114.19575,22.27552],[114.19574,22.27553],[114.19572,22.27555],[114.19569,22.27557],[114.19568,22.27558],[114.19565,22.27561],[114.19561,22.27564],[114.19555,22.27568],[114.19553,22.27569],[114.19552,22.2757],[114.19543,22.27576],[114.19539,22.27578],[114.19535,22.2758],[114.1953,22.27583],[114.19527,22.27588],[114.19526,22.27591],[114.19526,22.27593],[114.19527,22.27599],[114.19527,22.276],[114.19528,22.27605],[114.19528,22.27609],[114.19528,22.27621],[114.19527,22.27626],[114.19606,22.2766],[114.19601,22.27675],[114.19601,22.27687],[114.19597,22.27692],[114.19591,22.277],[114.19584,22.27707],[114.19578,22.27713],[114.19573,22.27717],[114.19565,22.27723],[114.19555,22.27718],[114.19554,22.27722],[114.19552,22.27727],[114.1955,22.27731],[114.19547,22.27739],[114.19545,22.27745],[114.19541,22.27754],[114.19537,22.27761],[114.19532,22.27768],[114.19525,22.27778],[114.19521,22.27782],[114.19519,22.27786],[114.19501,22.27818],[114.19485,22.27822],[114.19483,22.27826],[114.19479,22.2783],[114.19474,22.27834],[114.19468,22.27838],[114.19463,22.27858],[114.19452,22.27864],[114.19447,22.27876],[114.19441,22.27882],[114.19432,22.27889],[114.19429,22.27892],[114.19427,22.27894],[114.19426,22.27898],[114.19426,22.27902],[114.19427,22.27907],[114.19429,22.2791],[114.19431,22.27913],[114.19435,22.27916],[114.19439,22.27917],[114.19443,22.27917],[114.19449,22.27918],[114.19458,22.2792],[114.19463,22.27921],[114.19466,22.27925],[114.19468,22.27927],[114.19469,22.2793],[114.19469,22.27933],[114.1948,22.27962],[114.19479,22.27963]]]},"properties":{"M_NM_Eng":"Metro","SR_Eng":"Metro","PDD_Cat_En":"Hong Kong Island","PDD_Eng":"Wan Chai","M_NM_Tc":"都會區","SR_Tc":"都會區","PDD_Cat_Tc":"香港島","PDD_Tc":"灣仔","M_NM_Sc":"都会区","SR_Sc_1":"都会区","PDD_Cat_Sc":"香港岛","PDD_Sc":"湾仔","Y2019_Popu":162350,"Y2019_Empl":298750,"Y2026_Popu":143800,"Y2026_Empl":294350,"Y2031_Popu":131850,"Y2031_Empl":287050}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[114.22246,22.35687],[114.22247,22.35691],[114.22248,22.35694],[114.22248,22.35697],[114.22247,22.35698],[114.22247,22.357],[114.22244,22.35703],[114.22239,22.3571],[114.22236,22.35713],[114.22234,22.35717],[114.2223,22.35725],[114.22228,22.35733],[114.22228,22.35734],[114.22228,22.35735],[114.22228,22.35745],[114.22229,22.35752],[114.22235,22.35769],[114.22238,22.35783],[114.22241,22.35794],[114.22241,22.35798],[114.2224,22.35811],[114.22241,22.35815],[114.22242,22.35821],[114.22242,22.35827],[114.22241,22.35828],[114.22234,22.35841],[114.21906,22.3582],[114.21853,22.35817],[114.21808,22.35817],[114.21808,22.35816],[114.2178,22.35813],[114.21764,22.35811],[114.21763,22.3581],[114.21754,22.35807],[114.21749,22.35803],[114.21747,22.35802],[114.21744,22.35799],[114.21744,22.35798],[114.2174,22.35793],[114.21738,22.35789],[114.21736,22.35783],[114.21726,22.35769],[114.21723,22.35764],[114.21722,22.35763],[114.21716,22.35756],[114.2171,22.35751],[114.21709,22.3575],[114.21692,22.35737],[114.21685,22.35734],[114.21679,22.35732],[114.21662,22.35725],[114.21651,22.35722],[114.21645,22.3572],[114.21611,22.35717],[114.2161,22.35717],[114.21597,22.35718],[114.21558,22.35719],[114.21555,22.35719],[114.21546,22.3572],[114.21527,22.35723],[114.21527,22.35723],[114.21518,22.35723],[114.21487,22.35727],[114.21464,22.3573],[114.21458,22.3573],[114.2145,22.35731],[114.21438,22.3573],[114.21435,22.35728],[114.21432,22.35725],[114.21431,22.35724],[114.21429,22.35721],[114.21428,22.35719],[114.21428,22.35718],[114.2143,22.35716],[114.21434,22.35711],[114.21445,22.35701],[114.21458,22.35697],[114.21458,22.35697],[114.21459,22.35696],[114.21466,22.35695],[114.21467,22.35695],[114.21466,22.35694],[114.21463,22.35692],[114.21462,22.35691],[114.21458,22.3569],[114.21433,22.35688],[114.21432,22.35688],[114.21426,22.35689],[114.2141,22.35697],[114.21399,22.35703],[114.21393,22.35704],[114.21391,22.35705],[114.21386,22.35704],[114.21383,22.35704],[114.21381,22.35703],[114.2138,22.35701],[114.21381,22.35698],[114.21382,22.35695],[114.21392,22.35684],[114.21394,22.3568],[114.21397,22.35661],[114.21402,22.35655],[114.21405,22.35647],[114.21409,22.3564],[114.21413,22.35632],[114.21415,22.35624],[114.21415,22.35618],[114.21415,22.35614],[114.21413,22.35608],[114.21413,22.35607],[114.21413,22.35605],[114.21417,22.35594],[114.2142,22.35587],[114.21417,22.3558],[114.21379,22.35581],[114.21357,22.3558],[114.21353,22.3558],[114.21351,22.35579],[114.21348,22.35579],[114.21335,22.35578],[114.21332,22.35578],[114.2132,22.35576],[114.21312,22.35574],[114.21307,22.35572],[114.2128,22.35567],[114.21273,22.35566],[114.21269,22.35566],[114.21261,22.35563],[114.21251,22.3556],[114.21207,22.35544],[114.21196,22.35539],[114.21188,22.35538],[114.21168,22.35538],[114.21155,22.35536],[114.21136,22.35531],[114.21117,22.35524],[114.21109,22.35521],[114.21102,22.3552],[114.21097,22.3552],[114.21089,22.35521],[114.21089,22.35521],[114.21088,22.35522],[114.21081,22.35525],[114.21066,22.35536],[114.21057,22.35539],[114.2105,22.3554],[114.21037,22.35538],[114.21027,22.35538],[114.21022,22.35539],[114.21015,22.3554],[114.21012,22.35541],[114.21007,22.35543],[114.20995,22.35549],[114.20989,22.35553],[114.20984,22.35557],[114.2098,22.35561],[114.20971,22.35574],[114.20968,22.35577],[114.20966,22.35578],[114.20962,22.35581],[114.2096,22.35582],[114.20954,22.35583],[114.20919,22.35591],[114.2091,22.35592],[114.20909,22.35591],[114.20905,22.35591],[114.20899,22.35588],[114.20895,22.35586],[114.20891,22.35583],[114.20887,22.3558],[114.20871,22.35565],[114.20865,22.3556],[114.20817,22.35521],[114.2081,22.35516],[114.20803,22.35513],[114.20798,22.3551],[114.20794,22.3551],[114.20791,22.35509],[114.20785,22.3551],[114.20782,22.3551],[114.20772,22.35509],[114.20768,22.35509],[114.20733,22.355],[114.20725,22.35497],[114.20719,22.35493],[114.20708,22.35483],[114.20691,22.35468],[114.20685,22.35465],[114.20678,22.35464],[114.20677,22.35464],[114.20675,22.35464],[114.20673,22.35464],[114.20672,22.35464],[114.20666,22.35466],[114.20664,22.35468],[114.20664,22.35468],[114.20656,22.35475],[114.20653,22.35477],[114.20642,22.35486],[114.20625,22.35492],[114.20516,22.35497],[114.20516,22.35496],[114.205,22.35497],[114.20494,22.35497],[114.20473,22.35497],[114.20455,22.35493],[114.20441,22.35485],[114.20428,22.35476],[114.20421,22.35471],[114.20407,22.3546],[114.20396,22.35452],[114.20379,22.3544],[114.20367,22.35435],[114.20359,22.35435],[114.20341,22.35441],[114.20334,22.35442],[114.20325,22.3544],[114.20311,22.35435],[114.20301,22.35434],[114.20284,22.35436],[114.20264,22.35438],[114.20248,22.35444],[114.20245,22.35448],[114.20235,22.35463],[114.20224,22.35469],[114.20212,22.35469],[114.20157,22.35453],[114.20155,22.35453],[114.20133,22.35446],[114.20123,22.35443],[114.20114,22.35445],[114.20093,22.35456],[114.20081,22.35465],[114.20071,22.35469],[114.20054,22.35467],[114.20042,22.35462],[114.20029,22.3546],[114.2002,22.35461],[114.20011,22.35465],[114.20006,22.35473],[114.20001,22.35483],[114.19996,22.35494],[114.19988,22.35512],[114.19987,22.35512],[114.19978,22.35525],[114.19969,22.35534],[114.19955,22.35542],[114.19939,22.35549],[114.19904,22.35556],[114.19896,22.35557],[114.19891,22.35556],[114.19891,22.35553],[114.19896,22.35551],[114.1992,22.3554],[114.19933,22.35529],[114.19937,22.35522],[114.19942,22.35516],[114.19943,22.35512],[114.19945,22.35506],[114.19937,22.35503],[114.19933,22.35505],[114.1993,22.35508],[114.19928,22.35512],[114.19923,22.35519],[114.19915,22.35528],[114.1991,22.35528],[114.19899,22.35522],[114.19899,22.35521],[114.19893,22.35512],[114.19879,22.35493],[114.19868,22.3548],[114.1986,22.35471],[114.19852,22.35465],[114.19841,22.35457],[114.19833,22.35451],[114.19828,22.35449],[114.19819,22.35443],[114.19816,22.35437],[114.19816,22.3543],[114.1982,22.35419],[114.1982,22.35412],[114.19819,22.35402],[114.19813,22.35394],[114.19809,22.35391],[114.19803,22.3539],[114.19795,22.35392],[114.19781,22.354],[114.19764,22.35409],[114.19754,22.35408],[114.19748,22.35412],[114.19745,22.35413],[114.19741,22.35411],[114.19741,22.35394],[114.19739,22.35377],[114.19729,22.35339],[114.19728,22.35329],[114.19728,22.35311],[114.19724,22.35299],[114.19707,22.3527],[114.197,22.3526],[114.19695,22.35252],[114.19685,22.3525],[114.19672,22.35248],[114.19662,22.35251],[114.19649,22.35257],[114.19644,22.35269],[114.19637,22.35277],[114.19628,22.35285],[114.19619,22.35287],[114.19601,22.35293],[114.19587,22.35297],[114.19566,22.353],[114.19553,22.353],[114.19542,22.353],[114.19524,22.35301],[114.19511,22.35303],[114.19491,22.35312],[114.19476,22.35328],[114.19464,22.35335],[114.19459,22.35339],[114.19453,22.3534],[114.19418,22.35338],[114.19411,22.35339],[114.19399,22.35349],[114.19387,22.35354],[114.1938,22.35361],[114.1937,22.35362],[114.19361,22.35364],[114.19349,22.35369],[114.19331,22.35374],[114.19312,22.3538],[114.19299,22.35381],[114.19294,22.35374],[114.19297,22.35364],[114.19299,22.35354],[114.19297,22.35344],[114.19291,22.35336],[114.19298,22.35312],[114.19295,22.35285],[114.19291,22.35276],[114.19282,22.35271],[114.19266,22.35266],[114.19252,22.35267],[114.19239,22.3527],[114.19218,22.35276],[114.19204,22.3528],[114.19193,22.35283],[114.19178,22.35285],[114.19142,22.35303],[114.19134,22.35304],[114.19125,22.35302],[114.19117,22.35301],[114.19102,22.35305],[114.19103,22.35299],[114.19125,22.35262],[114.1913,22.35243],[114.19131,22.35229],[114.19127,22.35218],[114.19129,22.35211],[114.19137,22.35203],[114.19144,22.35192],[114.1915,22.35181],[114.19154,22.35175],[114.1916,22.35165],[114.19158,22.35156],[114.19156,22.35148],[114.19151,22.35134],[114.19145,22.35124],[114.19156,22.3511],[114.19172,22.35085],[114.19176,22.35075],[114.19174,22.35064],[114.19166,22.35049],[114.19141,22.35019],[114.19139,22.35015],[114.19141,22.35008],[114.19152,22.34992],[114.19157,22.3498],[114.19156,22.34971],[114.19152,22.34966],[114.19143,22.34965],[114.1913,22.34969],[114.19099,22.34974],[114.19055,22.34974],[114.19006,22.34993],[114.18967,22.34989],[114.18956,22.34991],[114.18948,22.34992],[114.18948,22.34994],[114.18942,22.34996],[114.18939,22.34996],[114.18938,22.34997],[114.18933,22.34998],[114.18927,22.35002],[114.18925,22.35003],[114.18922,22.35004],[114.18921,22.35006],[114.18916,22.35009],[114.18912,22.35012],[114.18909,22.35015],[114.18908,22.35016],[114.18902,22.35019],[114.18899,22.35021],[114.18896,22.35022],[114.18895,22.35022],[114.18894,22.35023],[114.18889,22.35024],[114.18884,22.35026],[114.18883,22.35026],[114.18881,22.35026],[114.18876,22.35027],[114.18868,22.35027],[114.1886,22.35026],[114.18854,22.35024],[114.18852,22.35023],[114.18845,22.35021],[114.18839,22.35018],[114.18833,22.35016],[114.18817,22.35007],[114.18809,22.35003],[114.18806,22.35002],[114.18803,22.35001],[114.18792,22.35],[114.1879,22.34999],[114.18786,22.34999],[114.18779,22.35],[114.18776,22.35],[114.18761,22.35003],[114.18748,22.35006],[114.18746,22.35006],[114.18734,22.35011],[114.18718,22.35018],[114.18715,22.35019],[114.1871,22.35022],[114.18704,22.35024],[114.18702,22.35024],[114.18695,22.35025],[114.18691,22.35026],[114.18685,22.35026],[114.18675,22.35026],[114.1867,22.35026],[114.18666,22.35025],[114.18656,22.35023],[114.18653,22.35023],[114.18649,22.35022],[114.1864,22.35022],[114.18628,22.35023],[114.18622,22.35024],[114.186,22.35026],[114.18591,22.35027],[114.18581,22.35028],[114.18567,22.35028],[114.18555,22.35029],[114.18519,22.35028],[114.18518,22.35028],[114.18515,22.35028],[114.18513,22.35028],[114.18508,22.35026],[114.18506,22.35025],[114.18505,22.35025],[114.18502,22.35022],[114.18499,22.3502],[114.18499,22.35019],[114.18497,22.35014],[114.18497,22.35009],[114.18497,22.35007],[114.18499,22.35004],[114.185,22.34999],[114.185,22.34997],[114.18501,22.34993],[114.18501,22.34992],[114.18501,22.34991],[114.18497,22.34981],[114.18493,22.34975],[114.1849,22.3497],[114.1849,22.3497],[114.18489,22.34969],[114.18487,22.34969],[114.18485,22.34968],[114.18484,22.34967],[114.18481,22.34968],[114.18478,22.34968],[114.18477,22.34968],[114.18475,22.34969],[114.18474,22.34971],[114.18472,22.34972],[114.18471,22.34973],[114.18468,22.34978],[114.18466,22.34981],[114.18463,22.34985],[114.18462,22.34987],[114.18451,22.34997],[114.18445,22.35003],[114.1844,22.35006],[114.18434,22.35009],[114.1843,22.3501],[114.18428,22.3501],[114.18424,22.3501],[114.18417,22.35009],[114.18411,22.3501],[114.18409,22.35011],[114.18402,22.35015],[114.18396,22.35016],[114.18395,22.35016],[114.18385,22.35017],[114.18368,22.35017],[114.18365,22.35017],[114.1836,22.35016],[114.18354,22.35015],[114.18349,22.35015],[114.18342,22.35015],[114.18337,22.35016],[114.18327,22.35018],[114.18323,22.35018],[114.18322,22.35018],[114.18319,22.35018],[114.18252,22.35],[114.18222,22.34992],[114.1822,22.34991],[114.18214,22.34987],[114.18209,22.34981],[114.18202,22.34974],[114.18193,22.34967],[114.18186,22.34963],[114.18184,22.34962],[114.18179,22.34961],[114.18173,22.3496],[114.18169,22.3496],[114.18165,22.34958],[114.18164,22.34958],[114.18161,22.34955],[114.1816,22.34953],[114.18159,22.34951],[114.18159,22.34951],[114.18158,22.34947],[114.18158,22.34943],[114.18158,22.34941],[114.18157,22.34939],[114.18156,22.34938],[114.18155,22.34937],[114.18153,22.34936],[114.1815,22.34936],[114.18142,22.34935],[114.18141,22.34935],[114.18139,22.34934],[114.18135,22.34932],[114.18134,22.34931],[114.18133,22.3493],[114.1813,22.34927],[114.18129,22.34926],[114.18126,22.34924],[114.18123,22.34923],[114.18122,22.34923],[114.18118,22.34923],[114.18115,22.34923],[114.18078,22.34927],[114.18072,22.34926],[114.18071,22.34926],[114.18069,22.34926],[114.18066,22.34925],[114.18063,22.34923],[114.1806,22.34921],[114.18054,22.34917],[114.18053,22.34915],[114.18051,22.34912],[114.1805,22.34906],[114.1805,22.34905],[114.18046,22.349],[114.18043,22.34897],[114.18042,22.34895],[114.18041,22.34894],[114.18039,22.34893],[114.18033,22.3489],[114.18031,22.34889],[114.18028,22.34888],[114.18021,22.34888],[114.18013,22.34889],[114.18009,22.3489],[114.17994,22.34895],[114.17981,22.34898],[114.17978,22.34899],[114.17969,22.349],[114.17965,22.349],[114.17962,22.34901],[114.17959,22.34903],[114.17957,22.34904],[114.17948,22.34909],[114.17946,22.3491],[114.17945,22.3491],[114.17942,22.34911],[114.17939,22.34912],[114.17938,22.34912],[114.17935,22.34911],[114.17933,22.3491],[114.17936,22.34907],[114.17942,22.34899],[114.18069,22.34739],[114.18072,22.34736],[114.18116,22.34681],[114.18128,22.34666],[114.18133,22.34659],[114.18138,22.34653],[114.18138,22.34652],[114.18142,22.34647],[114.18144,22.34644],[114.18145,22.34643],[114.18145,22.34643],[114.18146,22.34642],[114.18146,22.34642],[114.18147,22.34638],[114.18147,22.34636],[114.18148,22.34634],[114.18149,22.34633],[114.1815,22.34622],[114.1815,22.34621],[114.1815,22.34619],[114.18151,22.34618],[114.18151,22.34611],[114.1815,22.34606],[114.1815,22.346],[114.18148,22.34592],[114.18147,22.34583],[114.18146,22.34571],[114.18145,22.34559],[114.18145,22.34546],[114.18146,22.34539],[114.18146,22.3453],[114.18149,22.34519],[114.18151,22.34504],[114.18155,22.34486],[114.18161,22.34452],[114.18167,22.34429],[114.18169,22.3442],[114.1817,22.34416],[114.1817,22.34414],[114.1817,22.34414],[114.1817,22.34413],[114.18178,22.34414],[114.18186,22.34416],[114.18189,22.34416],[114.18194,22.34416],[114.18215,22.34417],[114.18221,22.34417],[114.18226,22.34416],[114.18231,22.34416],[114.18247,22.34414],[114.18255,22.34412],[114.18258,22.34411],[114.18263,22.34409],[114.1827,22.34407],[114.1828,22.34401],[114.18287,22.34397],[114.18292,22.34394],[114.18299,22.34388],[114.18311,22.3438],[114.18321,22.34372],[114.18335,22.34363],[114.18346,22.34356],[114.1836,22.34347],[114.18376,22.34339],[114.18383,22.34335],[114.18395,22.3433],[114.18405,22.34325],[114.1841,22.34323],[114.18445,22.3431],[114.18444,22.34308],[114.18443,22.34306],[114.18442,22.34305],[114.1844,22.34302],[114.1844,22.34302],[114.18438,22.34299],[114.18436,22.34295],[114.18434,22.34292],[114.18433,22.34289],[114.18431,22.34286],[114.18429,22.34282],[114.18428,22.34279],[114.18427,22.34278],[114.18426,22.34276],[114.18425,22.34273],[114.18425,22.34272],[114.18424,22.34269],[114.18423,22.34269],[114.18422,22.34266],[114.18421,22.34264],[114.18421,22.34262],[114.18421,22.34262],[114.1842,22.34259],[114.18419,22.34257],[114.18419,22.34255],[114.18418,22.34252],[114.18417,22.3425],[114.18417,22.34248],[114.18416,22.34247],[114.18416,22.34245],[114.18409,22.34218],[114.18401,22.34184],[114.18398,22.34172],[114.18397,22.34169],[114.18374,22.3407],[114.18373,22.34069],[114.18372,22.34065],[114.18371,22.34062],[114.1837,22.34059],[114.18368,22.34055],[114.18367,22.34052],[114.18366,22.34048],[114.18364,22.34045],[114.18363,22.34042],[114.18361,22.34038],[114.1836,22.34035],[114.18358,22.34032],[114.18357,22.34028],[114.18355,22.34025],[114.18354,22.34022],[114.18352,22.34018],[114.1835,22.34015],[114.18348,22.34012],[114.18347,22.34009],[114.18345,22.34006],[114.18343,22.34002],[114.18341,22.33999],[114.18339,22.33996],[114.18337,22.33993],[114.18335,22.3399],[114.18333,22.33987],[114.18331,22.33984],[114.18328,22.33981],[114.18326,22.33978],[114.18324,22.33975],[114.18322,22.33972],[114.18319,22.33969],[114.18316,22.33967],[114.18319,22.33964],[114.1833,22.33957],[114.18333,22.33957],[114.18335,22.33958],[114.18337,22.33958],[114.18339,22.33959],[114.18341,22.33959],[114.18342,22.33959],[114.18342,22.33959],[114.18344,22.3396],[114.18346,22.3396],[114.18346,22.3396],[114.18348,22.3396],[114.1835,22.33961],[114.18352,22.33961],[114.18354,22.33961],[114.18354,22.33961],[114.18356,22.33961],[114.18357,22.33961],[114.18358,22.33961],[114.18358,22.33961],[114.18359,22.33961],[114.18365,22.33961],[114.18366,22.33961],[114.18367,22.33961],[114.18369,22.33961],[114.18371,22.33961],[114.18372,22.33961],[114.18373,22.33961],[114.18374,22.33961],[114.18375,22.33961],[114.18377,22.33961],[114.18377,22.33961],[114.18379,22.33961],[114.18381,22.33961],[114.18383,22.33961],[114.18383,22.33961],[114.18384,22.3396],[114.18385,22.3396],[114.18385,22.3396],[114.18387,22.3396],[114.18388,22.3396],[114.18388,22.3396],[114.18389,22.3396],[114.1839,22.3396],[114.18391,22.33959],[114.18392,22.33959],[114.18394,22.33959],[114.18395,22.33959],[114.18396,22.33959],[114.18398,22.33958],[114.18398,22.33958],[114.18398,22.33958],[114.184,22.33958],[114.184,22.33958],[114.18401,22.33957],[114.18402,22.33957],[114.18403,22.33957],[114.18403,22.33957],[114.18404,22.33956],[114.18405,22.33956],[114.18407,22.33955],[114.18409,22.33954],[114.18411,22.33954],[114.18412,22.33953],[114.18413,22.33952],[114.18414,22.33952],[114.18415,22.33952],[114.18416,22.33951],[114.18417,22.33951],[114.18418,22.3395],[114.18419,22.3395],[114.18421,22.33949],[114.18423,22.33948],[114.18424,22.33947],[114.18424,22.33947],[114.18426,22.33946],[114.18428,22.33945],[114.18429,22.33944],[114.18431,22.33943],[114.18432,22.33943],[114.18433,22.33942],[114.18434,22.33941],[114.18435,22.33941],[114.18436,22.3394],[114.18437,22.3394],[114.18438,22.33939],[114.18439,22.33938],[114.18441,22.33937],[114.18442,22.33936],[114.18443,22.33936],[114.18444,22.33935],[114.18445,22.33935],[114.18446,22.33934],[114.18446,22.33934],[114.18447,22.33933],[114.18474,22.33911],[114.18567,22.33832],[114.1861,22.33796],[114.1861,22.33785],[114.18625,22.33773],[114.18613,22.3377],[114.18612,22.33758],[114.18612,22.33754],[114.18613,22.3375],[114.18613,22.3374],[114.18614,22.3373],[114.18611,22.33727],[114.18606,22.33713],[114.18602,22.33708],[114.18601,22.33692],[114.18603,22.33688],[114.18602,22.33685],[114.18605,22.33674],[114.186,22.33676],[114.18605,22.33651],[114.18609,22.33648],[114.18609,22.33632],[114.18598,22.33619],[114.18587,22.33598],[114.18599,22.33594],[114.18613,22.33592],[114.18621,22.33593],[114.18633,22.33593],[114.18628,22.33554],[114.18653,22.33538],[114.18652,22.33519],[114.18665,22.33508],[114.18666,22.33482],[114.18671,22.3348],[114.18671,22.33478],[114.18671,22.33478],[114.18671,22.33476],[114.18745,22.33472],[114.18745,22.33461],[114.18744,22.33461],[114.18742,22.33422],[114.18739,22.33373],[114.18737,22.33355],[114.18736,22.33344],[114.18735,22.33336],[114.18733,22.33327],[114.18728,22.33304],[114.18726,22.33295],[114.1872,22.33275],[114.18718,22.33267],[114.18718,22.33262],[114.18717,22.33256],[114.18716,22.33251],[114.18716,22.33248],[114.18716,22.33247],[114.18789,22.33239],[114.1883,22.33235],[114.18855,22.33232],[114.18859,22.33232],[114.18863,22.33232],[114.18867,22.33232],[114.18871,22.33232],[114.18874,22.33232],[114.18878,22.33233],[114.18883,22.33234],[114.18959,22.33255],[114.18963,22.33257],[114.18965,22.33258],[114.18968,22.33259],[114.18971,22.3326],[114.18973,22.33262],[114.18976,22.33263],[114.18978,22.33264],[114.18981,22.33266],[114.18983,22.33267],[114.18986,22.33268],[114.18988,22.3327],[114.18991,22.33271],[114.18993,22.33273],[114.18996,22.33275],[114.18998,22.33276],[114.19,22.33278],[114.19056,22.33322],[114.19058,22.33325],[114.1906,22.33327],[114.19062,22.33329],[114.19064,22.33331],[114.19066,22.33333],[114.19069,22.33336],[114.19071,22.33339],[114.19072,22.33341],[114.19073,22.33342],[114.19087,22.33331],[114.19098,22.33323],[114.19102,22.3332],[114.1911,22.33311],[114.1912,22.33295],[114.1914,22.33256],[114.19147,22.33241],[114.19153,22.33227],[114.19162,22.3321],[114.19166,22.33203],[114.1917,22.33197],[114.19176,22.3319],[114.19197,22.33172],[114.19251,22.33131],[114.1922,22.33095],[114.1921,22.33086],[114.19206,22.33082],[114.19199,22.33077],[114.19181,22.33067],[114.19176,22.33064],[114.1917,22.33061],[114.19164,22.33058],[114.19156,22.33053],[114.19189,22.3305],[114.19202,22.3305],[114.19219,22.33049],[114.19231,22.33049],[114.1925,22.33048],[114.19255,22.33048],[114.19275,22.33047],[114.19276,22.33047],[114.19331,22.33044],[114.19329,22.32956],[114.19378,22.33004],[114.19408,22.33033],[114.19413,22.33038],[114.19415,22.3304],[114.19418,22.33042],[114.19422,22.33046],[114.19438,22.33062],[114.19459,22.33083],[114.19559,22.3318],[114.19611,22.33231],[114.19627,22.33246],[114.19627,22.33246],[114.19669,22.33204],[114.19676,22.33208],[114.19681,22.33212],[114.19694,22.33222],[114.19701,22.33229],[114.19707,22.33237],[114.1972,22.33257],[114.19731,22.33277],[114.19742,22.33294],[114.19752,22.33305],[114.19777,22.33331],[114.19791,22.33344],[114.19809,22.33358],[114.19832,22.33373],[114.19832,22.33374],[114.19834,22.33375],[114.19837,22.33376],[114.1984,22.33377],[114.19843,22.33378],[114.19845,22.33379],[114.19848,22.3338],[114.19851,22.33381],[114.19854,22.33382],[114.20003,22.33436],[114.20129,22.33483],[114.2016,22.33495],[114.20162,22.33495],[114.20167,22.33499],[114.20217,22.3352],[114.20237,22.33526],[114.20257,22.33531],[114.20278,22.33535],[114.20297,22.33537],[114.20315,22.33538],[114.20339,22.33536],[114.20355,22.33534],[114.20363,22.33533],[114.20367,22.33532],[114.20377,22.3353],[114.20393,22.33525],[114.20396,22.33524],[114.20399,22.33523],[114.20413,22.33519],[114.20422,22.33517],[114.2044,22.33508],[114.20448,22.33504],[114.20468,22.33494],[114.20493,22.33476],[114.20507,22.33467],[114.20525,22.33453],[114.20732,22.33288],[114.20771,22.33259],[114.20764,22.33274],[114.20761,22.33292],[114.20761,22.33308],[114.20764,22.33324],[114.20775,22.33344],[114.20793,22.33369],[114.20795,22.33371],[114.20797,22.33373],[114.20799,22.33376],[114.2081,22.33383],[114.20831,22.33392],[114.20844,22.33395],[114.2091,22.3341],[114.20999,22.33427],[114.21001,22.33428],[114.21072,22.33441],[114.21097,22.33441],[114.21123,22.33439],[114.2115,22.33431],[114.21169,22.33423],[114.21177,22.33419],[114.21202,22.33402],[114.21204,22.33401],[114.21205,22.334],[114.2122,22.33385],[114.21227,22.33376],[114.2123,22.33372],[114.2123,22.33372],[114.21247,22.33349],[114.21273,22.33315],[114.21292,22.33292],[114.21296,22.33287],[114.21306,22.33277],[114.21318,22.33265],[114.2132,22.33264],[114.2134,22.33249],[114.2135,22.33244],[114.21355,22.33241],[114.21371,22.33236],[114.21376,22.33235],[114.21379,22.33235],[114.21382,22.33234],[114.21385,22.33234],[114.21388,22.33233],[114.2139,22.33232],[114.21393,22.33232],[114.21396,22.33231],[114.21399,22.33231],[114.21402,22.33231],[114.21405,22.3323],[114.21408,22.3323],[114.21411,22.3323],[114.21413,22.33229],[114.21416,22.33229],[114.21419,22.33229],[114.21422,22.33229],[114.21425,22.33229],[114.21431,22.33229],[114.21434,22.33229],[114.21437,22.33229],[114.2144,22.33229],[114.21443,22.33229],[114.21445,22.3323],[114.21448,22.3323],[114.21451,22.3323],[114.21454,22.3323],[114.21457,22.33231],[114.2146,22.33231],[114.21463,22.33232],[114.21466,22.33232],[114.21469,22.33233],[114.21471,22.33233],[114.21476,22.33234],[114.21812,22.333],[114.21835,22.33304],[114.21821,22.33364],[114.21818,22.33382],[114.2185,22.33374],[114.21873,22.33371],[114.21879,22.33371],[114.22065,22.33384],[114.22086,22.33385],[114.2214,22.33389],[114.22157,22.33391],[114.2216,22.33392],[114.22163,22.33392],[114.22166,22.33392],[114.22168,22.33393],[114.22174,22.33394],[114.22177,22.33394],[114.22182,22.33395],[114.22372,22.33448],[114.22387,22.33451],[114.22403,22.33452],[114.22403,22.33452],[114.22112,22.35318],[114.22123,22.35325],[114.22126,22.35328],[114.22128,22.3533],[114.22129,22.35331],[114.22132,22.35334],[114.22134,22.35339],[114.22137,22.35344],[114.22146,22.35409],[114.22146,22.35409],[114.22146,22.3541],[114.22145,22.35416],[114.22144,22.35418],[114.22144,22.35418],[114.22143,22.3542],[114.22134,22.35431],[114.22129,22.35439],[114.22129,22.3544],[114.22127,22.35449],[114.22127,22.35452],[114.22128,22.35454],[114.22129,22.35458],[114.22138,22.35473],[114.22141,22.35478],[114.22144,22.35485],[114.22146,22.35487],[114.22148,22.3549],[114.22149,22.35491],[114.22151,22.35494],[114.22161,22.35501],[114.22167,22.35504],[114.22175,22.35509],[114.22178,22.35512],[114.22182,22.35518],[114.22182,22.35521],[114.22182,22.35523],[114.22183,22.35524],[114.22183,22.35524],[114.22182,22.35525],[114.22181,22.3553],[114.22177,22.35538],[114.22175,22.35542],[114.22175,22.35544],[114.22174,22.35547],[114.22176,22.35557],[114.22177,22.3556],[114.22184,22.3557],[114.22186,22.35574],[114.22186,22.35577],[114.22187,22.35579],[114.22187,22.35579],[114.22187,22.35579],[114.22186,22.35583],[114.22186,22.35585],[114.22185,22.35587],[114.22183,22.3559],[114.22179,22.35594],[114.22173,22.356],[114.22169,22.35606],[114.22168,22.35607],[114.22168,22.35607],[114.22167,22.35608],[114.22165,22.35612],[114.22164,22.35618],[114.22164,22.35623],[114.22169,22.35645],[114.22171,22.35654],[114.22176,22.35658],[114.22178,22.35659],[114.2218,22.3566],[114.2218,22.3566],[114.2221,22.35672],[114.22226,22.35677],[114.22239,22.35683],[114.22243,22.35686],[114.22243,22.35686],[114.22246,22.35687]]]},"properties":{"M_NM_Eng":"Metro","SR_Eng":"Metro","PDD_Cat_En":"Kowloon","PDD_Eng":"Wong Tai Sin","M_NM_Tc":"都會區","SR_Tc":"都會區","PDD_Cat_Tc":"九龍","PDD_Tc":"黃大仙","M_NM_Sc":"都会区","SR_Sc_1":"都会区","PDD_Cat_Sc":"九龙","PDD_Sc":"黄大仙","Y2019_Popu":420150,"Y2019_Empl":103000,"Y2026_Popu":422850,"Y2026_Empl":104150,"Y2031_Popu":416050,"Y2031_Empl":100100}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[114.15663,22.29861],[114.15649,22.29862],[114.15604,22.29861],[114.15663,22.29861]]],[[[114.16482,22.29871],[114.16482,22.29871],[114.16482,22.29871],[114.16481,22.29871],[114.16481,22.29871],[114.16482,22.29871],[114.16482,22.29871],[114.16482,22.29871]]],[[[114.16477,22.29875],[114.16477,22.29876],[114.16477,22.29876],[114.16477,22.29876],[114.16477,22.29876],[114.16477,22.29876],[114.16477,22.29875],[114.16477,22.29875]]],[[[114.16476,22.29878],[114.16476,22.29878],[114.16475,22.29879],[114.16476,22.29878],[114.16476,22.29878],[114.16476,22.29878]]],[[[114.16478,22.29889],[114.16479,22.29889],[114.16478,22.29889],[114.16478,22.29889],[114.16478,22.29889]]],[[[114.1648,22.2989],[114.1648,22.2989],[114.1648,22.29891],[114.1648,22.2989],[114.1648,22.2989],[114.1648,22.2989]]],[[[114.15663,22.29861],[114.15797,22.2986],[114.15804,22.29862],[114.15808,22.29866],[114.15828,22.29901],[114.15834,22.29905],[114.15856,22.29934],[114.15877,22.29952],[114.15882,22.29955],[114.15898,22.29968],[114.15902,22.29969],[114.15904,22.29971],[114.15905,22.29973],[114.15903,22.29979],[114.15903,22.29979],[114.15972,22.30004],[114.15972,22.30004],[114.15972,22.30004],[114.15904,22.29979],[114.16022,22.30021],[114.16155,22.30037],[114.16156,22.30036],[114.16157,22.30034],[114.16159,22.30034],[114.16166,22.30034],[114.16208,22.3004],[114.16291,22.30049],[114.16317,22.30052],[114.16317,22.30057],[114.16317,22.30057],[114.16317,22.30052],[114.16395,22.30061],[114.16397,22.30064],[114.16398,22.30066],[114.16501,22.30078],[114.16575,22.30087],[114.16578,22.30085],[114.16583,22.30085],[114.16623,22.30093],[114.16577,22.30064],[114.16582,22.30056],[114.16624,22.30083],[114.16627,22.30084],[114.16633,22.30086],[114.16665,22.30088],[114.16699,22.30091],[114.167,22.30091],[114.167,22.30091],[114.167,22.3009],[114.16702,22.3009],[114.16704,22.30088],[114.16708,22.30048],[114.16704,22.30047],[114.1671,22.29991],[114.16701,22.29989],[114.16703,22.29979],[114.16703,22.29979],[114.16703,22.29979],[114.16668,22.29972],[114.16667,22.29971],[114.16666,22.2997],[114.16666,22.29968],[114.16667,22.29967],[114.16668,22.29966],[114.1667,22.29966],[114.16682,22.29968],[114.16682,22.29968],[114.16705,22.29973],[114.16708,22.29959],[114.16708,22.29959],[114.16708,22.29959],[114.16686,22.29955],[114.1669,22.29937],[114.16688,22.29934],[114.1669,22.29937],[114.16688,22.29934],[114.16669,22.2993],[114.16643,22.29925],[114.16643,22.29923],[114.16554,22.29906],[114.16483,22.29892],[114.16481,22.29891],[114.16481,22.29891],[114.16479,22.2989],[114.16479,22.2989],[114.16478,22.29889],[114.16477,22.29887],[114.16477,22.29887],[114.16476,22.29886],[114.16476,22.29884],[114.16476,22.29885],[114.16476,22.29885],[114.16475,22.29884],[114.16475,22.29881],[114.16475,22.29881],[114.16475,22.29881],[114.16475,22.29881],[114.16475,22.29881],[114.16475,22.29882],[114.16475,22.29882],[114.16475,22.29882],[114.16475,22.29881],[114.16475,22.29879],[114.16476,22.29878],[114.16476,22.29878],[114.16477,22.29875],[114.16479,22.29873],[114.1648,22.29872],[114.16481,22.29872],[114.16485,22.2987],[114.16485,22.2987],[114.16484,22.2987],[114.16484,22.2987],[114.16485,22.2987],[114.16485,22.2987],[114.16485,22.2987],[114.16485,22.2987],[114.16485,22.2987],[114.16488,22.2987],[114.1649,22.2987],[114.16508,22.29874],[114.16543,22.29881],[114.16568,22.29886],[114.167,22.29911],[114.16712,22.29914],[114.16713,22.29913],[114.16714,22.29912],[114.16714,22.29913],[114.16731,22.29916],[114.16732,22.29918],[114.16739,22.2992],[114.16739,22.2992],[114.16739,22.2992],[114.16758,22.29839],[114.16757,22.29838],[114.1655,22.29798],[114.16555,22.29775],[114.16763,22.29816],[114.16775,22.29761],[114.16743,22.29756],[114.16748,22.29735],[114.16611,22.29708],[114.1661,22.29707],[114.16609,22.29707],[114.16608,22.29705],[114.16607,22.29705],[114.16607,22.29703],[114.16609,22.29697],[114.16609,22.29696],[114.1661,22.29695],[114.16611,22.29695],[114.16612,22.29694],[114.16614,22.29694],[114.16617,22.29695],[114.16697,22.29711],[114.16783,22.29727],[114.16815,22.29583],[114.16814,22.29582],[114.16812,22.29584],[114.1681,22.29587],[114.16805,22.29589],[114.16802,22.2959],[114.16798,22.2959],[114.16794,22.2959],[114.16791,22.29589],[114.16788,22.29587],[114.16785,22.29584],[114.16783,22.29581],[114.16782,22.29578],[114.16781,22.29574],[114.16782,22.2957],[114.16783,22.29567],[114.16785,22.29564],[114.16787,22.29562],[114.16789,22.2956],[114.16793,22.29558],[114.16797,22.29557],[114.16801,22.29557],[114.16803,22.29558],[114.16804,22.29557],[114.16462,22.2949],[114.16461,22.2949],[114.1646,22.29489],[114.16459,22.29489],[114.16459,22.29488],[114.16459,22.29487],[114.16459,22.29486],[114.16473,22.29424],[114.16473,22.29424],[114.16474,22.29423],[114.16474,22.29423],[114.16474,22.29423],[114.16475,22.29423],[114.16475,22.29422],[114.16476,22.29422],[114.16476,22.29422],[114.16835,22.29493],[114.16851,22.29425],[114.1683,22.29409],[114.16824,22.29396],[114.16805,22.29374],[114.16805,22.29374],[114.16802,22.2937],[114.16801,22.2937],[114.1679,22.29357],[114.16789,22.29356],[114.16789,22.29354],[114.16789,22.29351],[114.1679,22.29348],[114.16791,22.29347],[114.16793,22.29346],[114.16795,22.29345],[114.16797,22.29345],[114.16799,22.29345],[114.16801,22.29346],[114.16803,22.29347],[114.16805,22.2935],[114.16814,22.29361],[114.16813,22.29362],[114.16817,22.29365],[114.16817,22.29365],[114.16837,22.29388],[114.16844,22.29392],[114.16868,22.29365],[114.16872,22.2936],[114.16875,22.29357],[114.16877,22.29355],[114.16875,22.29347],[114.16856,22.29324],[114.16857,22.29324],[114.16853,22.2932],[114.16853,22.2932],[114.16841,22.29307],[114.1684,22.29305],[114.1684,22.29302],[114.1684,22.29299],[114.16842,22.29298],[114.16844,22.29296],[114.16846,22.29295],[114.16849,22.29295],[114.16852,22.29296],[114.16854,22.29298],[114.16865,22.29311],[114.16864,22.29312],[114.16868,22.29316],[114.16868,22.29315],[114.16887,22.29338],[114.16896,22.29342],[114.16906,22.29343],[114.16916,22.29355],[114.16918,22.29354],[114.16922,22.29352],[114.16927,22.29351],[114.16932,22.2935],[114.16935,22.2935],[114.16951,22.29296],[114.16957,22.29292],[114.17086,22.29302],[114.17093,22.29302],[114.17102,22.29312],[114.17181,22.29318],[114.17181,22.29316],[114.17207,22.29318],[114.17207,22.2932],[114.17278,22.29325],[114.17316,22.29295],[114.17319,22.29293],[114.17321,22.29292],[114.17324,22.29291],[114.17326,22.2929],[114.17329,22.2929],[114.17331,22.2929],[114.17333,22.2929],[114.17379,22.29294],[114.1747,22.293],[114.17472,22.293],[114.17475,22.29301],[114.17476,22.29301],[114.17479,22.29302],[114.17481,22.29303],[114.17482,22.29303],[114.17483,22.29304],[114.17484,22.29304],[114.17486,22.29305],[114.17486,22.29305],[114.17487,22.29306],[114.17589,22.29417],[114.17598,22.29427],[114.17601,22.29431],[114.17605,22.29435],[114.17608,22.29439],[114.17612,22.29445],[114.17615,22.29449],[114.17617,22.29454],[114.17621,22.29461],[114.17623,22.29465],[114.17625,22.29469],[114.17651,22.29537],[114.17653,22.29544],[114.17655,22.29549],[114.17657,22.29553],[114.17658,22.29555],[114.1766,22.29558],[114.17661,22.29559],[114.17663,22.29562],[114.17706,22.29612],[114.17734,22.29635],[114.17768,22.29664],[114.17828,22.29714],[114.17842,22.29726],[114.17966,22.29828],[114.18034,22.29885],[114.18035,22.29884],[114.18048,22.29896],[114.18048,22.29896],[114.18054,22.29902],[114.18055,22.29902],[114.18056,22.29902],[114.18015,22.29935],[114.18017,22.29939],[114.18021,22.29946],[114.18028,22.29971],[114.18029,22.29994],[114.18027,22.30009],[114.18017,22.30052],[114.18014,22.30066],[114.18013,22.3007],[114.18011,22.30078],[114.1801,22.30082],[114.18006,22.30094],[114.18005,22.30098],[114.18004,22.30101],[114.18003,22.30102],[114.18003,22.30103],[114.18002,22.30106],[114.18001,22.30108],[114.17999,22.30111],[114.17999,22.30112],[114.17998,22.30113],[114.17997,22.30116],[114.17996,22.30118],[114.17995,22.30121],[114.17994,22.30123],[114.17992,22.30126],[114.17992,22.30127],[114.17991,22.30128],[114.1799,22.30131],[114.17989,22.30133],[114.17987,22.30135],[114.17987,22.30136],[114.17986,22.30138],[114.17985,22.30139],[114.17985,22.3014],[114.17983,22.30143],[114.17982,22.30145],[114.17982,22.30145],[114.17981,22.30147],[114.1798,22.30148],[114.17979,22.3015],[114.17978,22.30151],[114.17978,22.30152],[114.17977,22.30153],[114.17976,22.30154],[114.17975,22.30156],[114.17974,22.30158],[114.17974,22.30159],[114.17974,22.3016],[114.17973,22.30162],[114.17973,22.30163],[114.17973,22.30164],[114.17972,22.30165],[114.17972,22.30166],[114.17971,22.30167],[114.17971,22.30168],[114.17971,22.3017],[114.1797,22.30171],[114.1797,22.30171],[114.1797,22.30172],[114.1797,22.30173],[114.1797,22.30174],[114.17969,22.30176],[114.17969,22.30178],[114.17968,22.30179],[114.17968,22.30179],[114.17968,22.30181],[114.17968,22.30183],[114.17967,22.30185],[114.17967,22.30186],[114.17967,22.30189],[114.17967,22.3019],[114.17967,22.30191],[114.17966,22.30192],[114.17966,22.30195],[114.17966,22.30195],[114.17966,22.30197],[114.17966,22.30199],[114.17966,22.302],[114.17966,22.30201],[114.17966,22.30203],[114.17966,22.30203],[114.17966,22.30204],[114.17965,22.30206],[114.17965,22.30206],[114.17965,22.30208],[114.17965,22.30208],[114.17966,22.3021],[114.17966,22.30212],[114.17966,22.30213],[114.17966,22.30213],[114.17966,22.30215],[114.17966,22.30215],[114.17966,22.30216],[114.17966,22.30217],[114.17954,22.30218],[114.17947,22.30218],[114.17942,22.30219],[114.17937,22.30219],[114.17932,22.3022],[114.17927,22.3022],[114.17922,22.30221],[114.17917,22.30222],[114.17912,22.30223],[114.17907,22.30224],[114.17902,22.30225],[114.17898,22.30226],[114.17893,22.30227],[114.17888,22.30228],[114.17883,22.3023],[114.17878,22.30231],[114.17873,22.30233],[114.17869,22.30234],[114.17864,22.30236],[114.17859,22.30238],[114.17855,22.3024],[114.1785,22.30241],[114.17846,22.30243],[114.17841,22.30246],[114.17837,22.30248],[114.17832,22.3025],[114.17826,22.30252],[114.17825,22.30252],[114.17812,22.30257],[114.17712,22.30296],[114.17712,22.30297],[114.17713,22.30299],[114.17714,22.303],[114.17715,22.30302],[114.17716,22.30303],[114.17717,22.30305],[114.17718,22.30306],[114.17719,22.30308],[114.1772,22.3031],[114.17721,22.3031],[114.17721,22.30311],[114.17722,22.30313],[114.17724,22.30314],[114.17725,22.30316],[114.17726,22.30317],[114.17727,22.30319],[114.17728,22.3032],[114.17729,22.30322],[114.1773,22.30323],[114.17731,22.30325],[114.17779,22.30369],[114.1778,22.3037],[114.17782,22.30372],[114.17785,22.30374],[114.17786,22.30375],[114.17787,22.30376],[114.17789,22.30378],[114.1779,22.30379],[114.17792,22.3038],[114.17793,22.30382],[114.17794,22.30383],[114.17795,22.30384],[114.17796,22.30386],[114.17798,22.30387],[114.17799,22.30389],[114.178,22.3039],[114.17801,22.30392],[114.17802,22.30393],[114.17803,22.30395],[114.17804,22.30396],[114.17805,22.30398],[114.17806,22.304],[114.17807,22.30401],[114.17808,22.30403],[114.17808,22.30404],[114.17809,22.30406],[114.1781,22.30408],[114.17811,22.30409],[114.17811,22.30411],[114.17812,22.30413],[114.17813,22.30415],[114.17813,22.30416],[114.17814,22.30418],[114.17814,22.3042],[114.17815,22.30421],[114.17815,22.30423],[114.17816,22.30425],[114.17858,22.30578],[114.17858,22.30579],[114.17858,22.30579],[114.1786,22.30587],[114.17874,22.30636],[114.179,22.30733],[114.17913,22.3078],[114.17913,22.30781],[114.17914,22.30783],[114.17914,22.30784],[114.17914,22.30785],[114.17914,22.30785],[114.17914,22.30787],[114.17914,22.30788],[114.17915,22.3079],[114.17915,22.30793],[114.17915,22.30794],[114.17915,22.30796],[114.17915,22.30797],[114.17915,22.30798],[114.17915,22.30799],[114.17916,22.30801],[114.17916,22.30803],[114.17916,22.30803],[114.17916,22.30805],[114.17916,22.30806],[114.17916,22.30808],[114.17916,22.30808],[114.17916,22.3081],[114.17916,22.30812],[114.17916,22.30814],[114.17916,22.30814],[114.17916,22.30814],[114.17916,22.30815],[114.17916,22.30817],[114.17916,22.30819],[114.17916,22.30821],[114.17915,22.30823],[114.17915,22.30825],[114.17915,22.30828],[114.17915,22.3083],[114.17915,22.30832],[114.17914,22.30833],[114.17914,22.30835],[114.17914,22.30837],[114.17914,22.30839],[114.17913,22.30841],[114.17913,22.30842],[114.17913,22.30844],[114.17912,22.30846],[114.17912,22.30848],[114.17911,22.3085],[114.17911,22.30851],[114.1791,22.30853],[114.1791,22.30855],[114.1791,22.30857],[114.17909,22.30858],[114.17908,22.3086],[114.17908,22.30862],[114.17907,22.30863],[114.17907,22.30865],[114.17906,22.30867],[114.17906,22.30869],[114.17905,22.3087],[114.17904,22.30872],[114.17904,22.30874],[114.17903,22.30875],[114.17902,22.30877],[114.17901,22.30879],[114.17901,22.3088],[114.179,22.30882],[114.17899,22.30884],[114.17898,22.30885],[114.17898,22.30887],[114.17898,22.30889],[114.17894,22.30897],[114.17892,22.30903],[114.17889,22.30908],[114.17886,22.30914],[114.17883,22.3092],[114.1788,22.30925],[114.17877,22.30931],[114.17876,22.30932],[114.17874,22.30937],[114.17871,22.30942],[114.17867,22.30948],[114.17864,22.30953],[114.17861,22.30959],[114.17857,22.30964],[114.17854,22.3097],[114.1785,22.30975],[114.17847,22.30981],[114.17843,22.30986],[114.1784,22.30991],[114.17836,22.30997],[114.17832,22.31002],[114.17829,22.31006],[114.17816,22.31026],[114.17815,22.31028],[114.17806,22.31042],[114.17769,22.311],[114.17767,22.31103],[114.17766,22.31104],[114.17765,22.31105],[114.17764,22.31107],[114.17763,22.31108],[114.17762,22.3111],[114.1776,22.31111],[114.17759,22.31113],[114.17753,22.31124],[114.17708,22.3118],[114.17703,22.31187],[114.1768,22.31219],[114.17671,22.31232],[114.17655,22.31254],[114.17621,22.31297],[114.17612,22.31292],[114.17609,22.31297],[114.17607,22.313],[114.17607,22.31301],[114.17605,22.31304],[114.17568,22.31366],[114.17538,22.3143],[114.17538,22.3143],[114.17541,22.3143],[114.17551,22.31431],[114.17545,22.31451],[114.17548,22.31452],[114.17534,22.31483],[114.17534,22.31483],[114.17533,22.31483],[114.17528,22.31484],[114.17524,22.31487],[114.1751,22.31505],[114.17514,22.31517],[114.17488,22.31575],[114.17484,22.31574],[114.17446,22.31669],[114.17443,22.31676],[114.1744,22.31682],[114.1744,22.31683],[114.17439,22.31687],[114.17432,22.31705],[114.17432,22.31705],[114.17432,22.31704],[114.17432,22.31704],[114.17403,22.31664],[114.1739,22.31647],[114.17353,22.31595],[114.17351,22.31595],[114.17313,22.31588],[114.17274,22.31582],[114.17217,22.31571],[114.17186,22.31566],[114.17133,22.31557],[114.17076,22.31547],[114.17058,22.31543],[114.17014,22.31536],[114.16952,22.31525],[114.1689,22.31514],[114.16876,22.31585],[114.16865,22.31636],[114.16822,22.31629],[114.16775,22.3162],[114.16726,22.31612],[114.16699,22.31607],[114.1666,22.316],[114.16649,22.31657],[114.16649,22.31657],[114.16648,22.31663],[114.16643,22.31694],[114.16629,22.31778],[114.16624,22.31814],[114.16613,22.31877],[114.16607,22.31876],[114.16551,22.31874],[114.16375,22.31867],[114.16335,22.31865],[114.16335,22.31865],[114.16324,22.31865],[114.16195,22.31819],[114.16169,22.31809],[114.16126,22.31794],[114.16106,22.31788],[114.16049,22.3177],[114.16047,22.31769],[114.16019,22.31838],[114.16006,22.31866],[114.16005,22.31868],[114.15987,22.31862],[114.15969,22.31856],[114.1597,22.31853],[114.16011,22.31754],[114.15965,22.31738],[114.15957,22.31737],[114.15952,22.31736],[114.15869,22.31736],[114.15859,22.31736],[114.15819,22.31736],[114.15797,22.31736],[114.15788,22.31736],[114.15679,22.31734],[114.1568,22.31683],[114.15938,22.31683],[114.15992,22.31553],[114.15992,22.30791],[114.15992,22.30768],[114.15992,22.30768],[114.15992,22.30731],[114.15992,22.30703],[114.15948,22.30644],[114.15944,22.30639],[114.15776,22.30415],[114.15763,22.30398],[114.15763,22.30398],[114.15755,22.30387],[114.1572,22.3034],[114.15577,22.30339],[114.15505,22.3034],[114.15504,22.3034],[114.15504,22.3034],[114.15504,22.3034],[114.15504,22.30349],[114.15504,22.30371],[114.15505,22.30397],[114.15505,22.30397],[114.15505,22.304],[114.15505,22.30402],[114.15505,22.30404],[114.15505,22.30407],[114.15503,22.30415],[114.15503,22.30421],[114.15502,22.30422],[114.15502,22.30423],[114.15501,22.30428],[114.155,22.30432],[114.15495,22.30441],[114.15491,22.30449],[114.15491,22.30449],[114.15488,22.30454],[114.15486,22.30456],[114.15485,22.30456],[114.15483,22.30458],[114.15482,22.3046],[114.15479,22.30462],[114.15478,22.30463],[114.15472,22.30467],[114.15468,22.3047],[114.15465,22.30471],[114.15461,22.30474],[114.15457,22.30476],[114.15454,22.30477],[114.15453,22.30478],[114.15448,22.3048],[114.15443,22.30482],[114.15439,22.30482],[114.15436,22.30482],[114.15433,22.30483],[114.1543,22.30484],[114.15426,22.30485],[114.15425,22.30485],[114.15424,22.30485],[114.15423,22.30485],[114.15422,22.30485],[114.15422,22.30485],[114.15421,22.30485],[114.1542,22.30485],[114.15419,22.30485],[114.15419,22.30484],[114.15417,22.30483],[114.15415,22.30482],[114.15414,22.30481],[114.15414,22.3048],[114.15414,22.3048],[114.15413,22.30478],[114.15413,22.30477],[114.15413,22.30476],[114.15413,22.30475],[114.15414,22.30474],[114.15414,22.30472],[114.15414,22.30472],[114.15416,22.3047],[114.15416,22.30469],[114.15417,22.30468],[114.15418,22.30468],[114.1542,22.30466],[114.1542,22.30466],[114.15425,22.30466],[114.15426,22.30466],[114.15427,22.30466],[114.15427,22.30466],[114.1543,22.30466],[114.15433,22.30465],[114.15434,22.30465],[114.15434,22.30465],[114.15436,22.30465],[114.15438,22.30464],[114.1544,22.30464],[114.15441,22.30464],[114.15445,22.30463],[114.1545,22.30461],[114.15454,22.3046],[114.15457,22.30458],[114.15457,22.30458],[114.1546,22.30456],[114.15462,22.30455],[114.15463,22.30454],[114.15465,22.30453],[114.15468,22.30451],[114.15469,22.3045],[114.1547,22.30448],[114.15471,22.30447],[114.15473,22.30445],[114.15475,22.30442],[114.15477,22.3044],[114.15478,22.3044],[114.15478,22.3044],[114.15478,22.3044],[114.15479,22.30437],[114.1548,22.30437],[114.1548,22.30437],[114.1548,22.30435],[114.15481,22.30433],[114.15481,22.30433],[114.15481,22.30432],[114.15484,22.30424],[114.15484,22.30424],[114.15484,22.30423],[114.15485,22.3042],[114.15485,22.30418],[114.15486,22.30415],[114.15486,22.30415],[114.15486,22.30414],[114.15487,22.30412],[114.15487,22.3041],[114.15487,22.30408],[114.15487,22.30406],[114.15487,22.30405],[114.15487,22.30403],[114.15487,22.3036],[114.15487,22.3036],[114.15487,22.30359],[114.15487,22.30358],[114.15487,22.30358],[114.15487,22.30357],[114.15488,22.30356],[114.15488,22.30353],[114.15487,22.30347],[114.15487,22.3034],[114.15487,22.3034],[114.15487,22.3034],[114.15484,22.30331],[114.15483,22.30327],[114.15483,22.30322],[114.15483,22.30318],[114.15485,22.30309],[114.15485,22.30304],[114.15485,22.303],[114.15485,22.30289],[114.15484,22.30286],[114.15483,22.30283],[114.15481,22.30281],[114.15477,22.30277],[114.15469,22.30268],[114.15463,22.3026],[114.15458,22.30253],[114.1545,22.30241],[114.1544,22.30223],[114.15439,22.30219],[114.15436,22.30212],[114.15435,22.30208],[114.15435,22.30205],[114.15431,22.30187],[114.1543,22.30176],[114.15429,22.30128],[114.15429,22.30124],[114.15429,22.30111],[114.1543,22.30106],[114.1543,22.30099],[114.1543,22.30094],[114.1543,22.29954],[114.15452,22.29925],[114.15489,22.29888],[114.15533,22.29861],[114.15603,22.29861],[114.15649,22.29862],[114.15663,22.29861]],[[114.16022,22.30022],[114.15983,22.30008],[114.16022,22.30022],[114.16031,22.30023],[114.16022,22.30022]],[[114.16114,22.30033],[114.16058,22.30026],[114.16051,22.30025],[114.16058,22.30026],[114.16114,22.30033],[114.16123,22.30034],[114.16114,22.30033]],[[114.16475,22.29882],[114.16475,22.29882],[114.16475,22.29883],[114.16475,22.29883],[114.16475,22.29883],[114.16475,22.29883],[114.16475,22.29883],[114.16475,22.29884],[114.16475,22.29884],[114.16475,22.29884],[114.16476,22.29884],[114.16475,22.29882],[114.16475,22.29882]],[[114.17323,22.29373],[114.17322,22.29378],[114.17337,22.29379],[114.17339,22.29354],[114.17342,22.2932],[114.17464,22.29329],[114.17465,22.29311],[114.17332,22.29302],[114.1733,22.29302],[114.17329,22.29302],[114.17328,22.29302],[114.17327,22.29302],[114.17327,22.29302],[114.17326,22.29303],[114.17325,22.29303],[114.17325,22.29304],[114.17286,22.29334],[114.17323,22.29373]],[[114.17471,22.29329],[114.17468,22.29371],[114.17479,22.29372],[114.17498,22.29373],[114.17502,22.29374],[114.17535,22.29376],[114.17478,22.29314],[114.17477,22.29313],[114.17477,22.29313],[114.17477,22.29313],[114.17476,22.29312],[114.17475,22.29312],[114.17475,22.29312],[114.17474,22.29312],[114.17473,22.29312],[114.17473,22.29312],[114.17471,22.29329]]]]},"properties":{"M_NM_Eng":"Metro","SR_Eng":"Metro","PDD_Cat_En":"Kowloon","PDD_Eng":"Yau Ma Tei","M_NM_Tc":"都會區","SR_Tc":"都會區","PDD_Cat_Tc":"九龍","PDD_Tc":"油麻地","M_NM_Sc":"都会区","SR_Sc_1":"都会区","PDD_Cat_Sc":"九龙","PDD_Sc":"油麻地","Y2019_Popu":171000,"Y2019_Empl":286000,"Y2026_Popu":153650,"Y2026_Empl":312150,"Y2031_Popu":135750,"Y2031_Empl":320200}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[114.02932,22.47813],[114.02926,22.47813],[114.02864,22.47916],[114.02835,22.47949],[114.02785,22.47993],[114.02773,22.47997],[114.02762,22.47999],[114.02751,22.47998],[114.02744,22.47994],[114.02718,22.47974],[114.02692,22.47948],[114.02647,22.479],[114.02625,22.47873],[114.02622,22.47847],[114.02615,22.47826],[114.02607,22.47805],[114.02575,22.4776],[114.02564,22.47749],[114.0255,22.47739],[114.02531,22.47763],[114.02519,22.47776],[114.02514,22.47794],[114.02495,22.4786],[114.02484,22.47919],[114.02481,22.47933],[114.0247,22.47944],[114.02456,22.47951],[114.02435,22.4795],[114.0239,22.47937],[114.02223,22.47887],[114.02136,22.47861],[114.02094,22.47846],[114.02047,22.47835],[114.02024,22.47845],[114.02009,22.47827],[114.01999,22.4782],[114.01989,22.47818],[114.01959,22.47824],[114.01947,22.47815],[114.01907,22.47801],[114.01882,22.47784],[114.01835,22.47764],[114.01826,22.47764],[114.018,22.47748],[114.01783,22.47742],[114.01777,22.47734],[114.01777,22.47714],[114.01769,22.47707],[114.01759,22.47706],[114.01728,22.47687],[114.01688,22.47659],[114.01654,22.47618],[114.01647,22.47575],[114.01635,22.47561],[114.01615,22.47556],[114.01606,22.47533],[114.01579,22.47502],[114.01406,22.47321],[114.01405,22.47318],[114.01375,22.47298],[114.0137,22.47299],[114.01328,22.47284],[114.01311,22.47284],[114.013,22.47288],[114.01282,22.4731],[114.01243,22.47379],[114.01228,22.47398],[114.01187,22.47434],[114.0116,22.47448],[114.01155,22.47449],[114.01152,22.47452],[114.01147,22.47454],[114.01147,22.47454],[114.01147,22.47455],[114.01132,22.47473],[114.01112,22.47496],[114.01094,22.47518],[114.0104,22.4748],[114.01032,22.47475],[114.01025,22.47471],[114.01016,22.47464],[114.01015,22.47463],[114.00999,22.47452],[114.00983,22.47441],[114.00966,22.47429],[114.00951,22.47419],[114.00882,22.47371],[114.00867,22.47362],[114.00862,22.47359],[114.00874,22.47344],[114.00951,22.47247],[114.0097,22.4722],[114.01013,22.4718],[114.01065,22.47117],[114.01025,22.47082],[114.01057,22.47045],[114.01087,22.47008],[114.01121,22.4697],[114.01159,22.46926],[114.01225,22.46847],[114.01257,22.4681],[114.01277,22.46788],[114.01278,22.46785],[114.01291,22.46766],[114.01304,22.46737],[114.01359,22.46635],[114.0128,22.46604],[114.012,22.46578],[114.01034,22.46525],[114.01017,22.46519],[114.01003,22.46512],[114.00999,22.46509],[114.00996,22.46504],[114.00994,22.465],[114.00993,22.46493],[114.00994,22.46484],[114.00993,22.46478],[114.00987,22.46467],[114.00984,22.46463],[114.00979,22.46458],[114.00968,22.4645],[114.00964,22.46448],[114.00959,22.46443],[114.00941,22.46433],[114.00932,22.46428],[114.00918,22.46419],[114.00905,22.46413],[114.00889,22.46405],[114.00879,22.464],[114.00872,22.46396],[114.00869,22.46395],[114.00862,22.46391],[114.00858,22.46387],[114.00856,22.46383],[114.00855,22.4638],[114.00854,22.46378],[114.00855,22.46374],[114.00855,22.4637],[114.00857,22.46367],[114.0086,22.46363],[114.0093,22.46275],[114.00938,22.46266],[114.00944,22.46259],[114.00973,22.46221],[114.00954,22.46176],[114.0093,22.46123],[114.00922,22.46103],[114.00907,22.46062],[114.00893,22.46013],[114.00891,22.45995],[114.00888,22.4596],[114.00888,22.45952],[114.00889,22.45916],[114.0089,22.45878],[114.00891,22.45845],[114.00891,22.45843],[114.00891,22.45841],[114.00894,22.45801],[114.00896,22.45754],[114.00899,22.45693],[114.00899,22.45685],[114.00904,22.45623],[114.00907,22.45568],[114.00907,22.45565],[114.00908,22.45521],[114.00908,22.45493],[114.00907,22.45469],[114.00906,22.4544],[114.00906,22.45409],[114.00907,22.45374],[114.00908,22.4534],[114.00908,22.45326],[114.00908,22.45281],[114.00907,22.45148],[114.00909,22.45137],[114.0091,22.45132],[114.00911,22.45125],[114.00913,22.45119],[114.00915,22.45111],[114.00916,22.45105],[114.0092,22.4509],[114.00924,22.4508],[114.00928,22.45068],[114.0093,22.45063],[114.00932,22.45058],[114.00936,22.45047],[114.00939,22.45041],[114.00941,22.45035],[114.00947,22.45023],[114.0095,22.45016],[114.00957,22.45003],[114.00965,22.4499],[114.00971,22.4498],[114.00976,22.44972],[114.00986,22.44957],[114.00993,22.44947],[114.01001,22.44937],[114.01008,22.44929],[114.01015,22.4492],[114.0102,22.44915],[114.01021,22.44913],[114.01032,22.44901],[114.01044,22.4489],[114.01055,22.44879],[114.01069,22.44867],[114.01077,22.4486],[114.01101,22.44841],[114.01152,22.44798],[114.01176,22.44778],[114.01182,22.44774],[114.01189,22.44769],[114.01196,22.44764],[114.01204,22.4476],[114.01216,22.44753],[114.0123,22.44746],[114.01245,22.44739],[114.0126,22.44733],[114.01269,22.4473],[114.01282,22.44726],[114.01287,22.44724],[114.01292,22.44723],[114.01302,22.44721],[114.01307,22.4472],[114.01316,22.44718],[114.01335,22.44715],[114.0134,22.44714],[114.01354,22.44712],[114.01385,22.4471],[114.01398,22.4471],[114.01401,22.44684],[114.01401,22.44674],[114.01402,22.44657],[114.01401,22.44647],[114.014,22.44643],[114.01398,22.44638],[114.01391,22.44628],[114.0139,22.44624],[114.01389,22.44621],[114.01344,22.44626],[114.01321,22.44624],[114.0132,22.44624],[114.01315,22.44623],[114.0131,22.44623],[114.01308,22.44623],[114.01302,22.44622],[114.013,22.44622],[114.01299,22.44619],[114.01298,22.44616],[114.01297,22.44612],[114.01296,22.44608],[114.01294,22.44603],[114.01294,22.44601],[114.01298,22.446],[114.01302,22.446],[114.01308,22.44599],[114.01317,22.44596],[114.01315,22.44586],[114.01309,22.44574],[114.01308,22.44564],[114.01304,22.44563],[114.01298,22.44564],[114.01298,22.44543],[114.01288,22.44539],[114.01285,22.44538],[114.01282,22.44538],[114.01279,22.44537],[114.01275,22.44536],[114.0127,22.44535],[114.01267,22.44534],[114.01266,22.44534],[114.01265,22.44534],[114.01264,22.44534],[114.01263,22.44535],[114.01261,22.44535],[114.01256,22.44538],[114.01255,22.44532],[114.01253,22.445],[114.01248,22.44474],[114.01272,22.44463],[114.01266,22.44447],[114.01263,22.44439],[114.01263,22.44438],[114.01263,22.44438],[114.01263,22.44437],[114.01262,22.44436],[114.01262,22.44435],[114.01261,22.44435],[114.01261,22.44434],[114.01261,22.44434],[114.01261,22.44434],[114.01261,22.44434],[114.01261,22.44433],[114.0126,22.44433],[114.0126,22.44433],[114.01259,22.44433],[114.01259,22.44433],[114.01259,22.44433],[114.01259,22.44433],[114.01258,22.44432],[114.01258,22.44432],[114.01257,22.44432],[114.01257,22.44432],[114.01256,22.44431],[114.01256,22.44431],[114.01256,22.44431],[114.01255,22.44431],[114.01255,22.44431],[114.01255,22.44431],[114.01255,22.44431],[114.01254,22.44431],[114.01254,22.44431],[114.01253,22.44431],[114.01253,22.44431],[114.01253,22.4443],[114.01252,22.4443],[114.01251,22.44429],[114.01251,22.44429],[114.01251,22.44429],[114.0125,22.4443],[114.0125,22.4443],[114.0125,22.4443],[114.0125,22.44429],[114.01249,22.44429],[114.01249,22.44429],[114.01249,22.44428],[114.01249,22.44428],[114.01248,22.44428],[114.01248,22.44428],[114.01248,22.44428],[114.01248,22.44428],[114.01247,22.44427],[114.01247,22.44427],[114.01247,22.44427],[114.01247,22.44427],[114.01246,22.44427],[114.01246,22.44427],[114.01246,22.44427],[114.01246,22.44426],[114.01246,22.44426],[114.01245,22.44426],[114.01245,22.44426],[114.01245,22.44426],[114.01245,22.44425],[114.01244,22.44425],[114.01244,22.44425],[114.01244,22.44425],[114.01244,22.44425],[114.01244,22.44425],[114.01243,22.44424],[114.01243,22.44424],[114.01243,22.44424],[114.01243,22.44424],[114.01243,22.44424],[114.01242,22.44423],[114.01242,22.44423],[114.01242,22.44423],[114.01242,22.44423],[114.01242,22.44423],[114.01241,22.44422],[114.01241,22.44422],[114.01241,22.44422],[114.01241,22.44422],[114.01241,22.44422],[114.0124,22.44421],[114.0124,22.44421],[114.0124,22.44421],[114.0124,22.44421],[114.0124,22.4442],[114.0124,22.4442],[114.01239,22.4442],[114.01239,22.4442],[114.01239,22.4442],[114.01239,22.44419],[114.01239,22.44419],[114.01239,22.44419],[114.01238,22.44419],[114.01238,22.44418],[114.01238,22.44418],[114.01238,22.44418],[114.01238,22.44418],[114.01238,22.44418],[114.01238,22.44417],[114.01237,22.44417],[114.01237,22.44417],[114.01237,22.44417],[114.01237,22.44416],[114.01237,22.44416],[114.01237,22.44416],[114.01237,22.44416],[114.01237,22.44415],[114.01236,22.44415],[114.01236,22.44415],[114.01236,22.44415],[114.01236,22.44414],[114.01236,22.44414],[114.01235,22.44414],[114.01235,22.44413],[114.01235,22.44413],[114.01235,22.44413],[114.01235,22.44412],[114.01235,22.44411],[114.01235,22.44411],[114.01235,22.4441],[114.01234,22.4441],[114.01234,22.4441],[114.01233,22.4441],[114.01233,22.4441],[114.01233,22.44409],[114.01233,22.44409],[114.01233,22.44409],[114.01233,22.44409],[114.01233,22.44408],[114.01233,22.44408],[114.01233,22.44408],[114.01232,22.44408],[114.01232,22.44407],[114.01232,22.44407],[114.01232,22.44407],[114.01232,22.44407],[114.01232,22.44406],[114.01232,22.44406],[114.01232,22.44406],[114.01232,22.44406],[114.01232,22.44405],[114.01231,22.44405],[114.01231,22.44405],[114.01231,22.44405],[114.01231,22.44404],[114.01231,22.44404],[114.01231,22.44404],[114.01231,22.44404],[114.01231,22.44403],[114.01231,22.44403],[114.01231,22.44403],[114.01231,22.44403],[114.01231,22.44402],[114.0123,22.44402],[114.0123,22.44402],[114.0123,22.44402],[114.0123,22.44401],[114.0123,22.44401],[114.0123,22.44401],[114.0123,22.444],[114.0123,22.444],[114.0123,22.444],[114.0123,22.444],[114.0123,22.44399],[114.0123,22.44399],[114.0123,22.44399],[114.0123,22.44399],[114.01229,22.44398],[114.01229,22.44398],[114.01229,22.44398],[114.01229,22.44398],[114.01229,22.44397],[114.01229,22.44397],[114.01229,22.44397],[114.01229,22.44397],[114.01229,22.44396],[114.01229,22.44396],[114.01229,22.44396],[114.01229,22.44395],[114.01229,22.44395],[114.01229,22.44395],[114.01229,22.44395],[114.01229,22.44394],[114.01229,22.44394],[114.01229,22.44394],[114.01228,22.44393],[114.01228,22.44393],[114.01228,22.44393],[114.01228,22.44392],[114.01228,22.44392],[114.01228,22.44392],[114.01228,22.44392],[114.01228,22.44391],[114.01228,22.44391],[114.01228,22.44391],[114.01228,22.44391],[114.01228,22.4439],[114.01228,22.4439],[114.01228,22.4439],[114.01228,22.44389],[114.01228,22.44389],[114.01228,22.44389],[114.01228,22.44388],[114.01228,22.44388],[114.01228,22.44388],[114.01228,22.44388],[114.01228,22.44387],[114.01228,22.44387],[114.01228,22.44387],[114.01228,22.44387],[114.01228,22.44386],[114.01228,22.44386],[114.01228,22.44386],[114.01228,22.44385],[114.01228,22.44385],[114.01228,22.44385],[114.01228,22.44384],[114.01228,22.44384],[114.01228,22.44384],[114.01228,22.44384],[114.01228,22.44383],[114.01228,22.44383],[114.01228,22.44383],[114.01228,22.44382],[114.01228,22.44382],[114.01228,22.44382],[114.01199,22.44382],[114.01195,22.4438],[114.01191,22.44381],[114.01191,22.44381],[114.01182,22.4436],[114.01188,22.44358],[114.0123,22.44354],[114.0124,22.44359],[114.01244,22.4436],[114.01247,22.4436],[114.0125,22.4436],[114.01254,22.44361],[114.01257,22.44361],[114.01258,22.44362],[114.01259,22.44362],[114.0126,22.44362],[114.01261,22.44362],[114.01261,22.44363],[114.01262,22.44364],[114.01262,22.44365],[114.01263,22.44371],[114.01264,22.44375],[114.01266,22.44383],[114.01269,22.44395],[114.01271,22.44402],[114.01272,22.44404],[114.01271,22.44408],[114.01271,22.44408],[114.01285,22.44405],[114.01314,22.44405],[114.01319,22.44404],[114.01319,22.44404],[114.01317,22.44395],[114.0132,22.44393],[114.01325,22.4439],[114.01329,22.44387],[114.01332,22.44383],[114.01335,22.44378],[114.01339,22.4437],[114.01344,22.44366],[114.01365,22.44356],[114.01376,22.44331],[114.01396,22.44337],[114.01413,22.44342],[114.01524,22.44366],[114.01583,22.44376],[114.0164,22.44385],[114.01725,22.44394],[114.0173,22.44395],[114.0173,22.44395],[114.01728,22.44385],[114.01645,22.44067],[114.01595,22.43897],[114.01593,22.4389],[114.01592,22.43888],[114.01574,22.43826],[114.01573,22.43824],[114.01571,22.43819],[114.01558,22.43774],[114.01553,22.43755],[114.01546,22.43733],[114.01546,22.43732],[114.01547,22.43732],[114.01547,22.43732],[114.01551,22.43732],[114.01553,22.43732],[114.01555,22.43732],[114.0156,22.43732],[114.0156,22.43732],[114.01566,22.43731],[114.01571,22.43731],[114.01577,22.43729],[114.01581,22.43728],[114.01583,22.43728],[114.01593,22.43726],[114.01602,22.43724],[114.01611,22.43721],[114.01619,22.43719],[114.01626,22.43716],[114.01634,22.43713],[114.01638,22.43711],[114.01641,22.4371],[114.01648,22.43707],[114.01655,22.43703],[114.01672,22.43695],[114.01699,22.43683],[114.01707,22.43681],[114.01742,22.43666],[114.01779,22.43649],[114.01782,22.43647],[114.01789,22.43644],[114.01815,22.43632],[114.01838,22.43622],[114.01844,22.43619],[114.01857,22.43613],[114.0187,22.43607],[114.01871,22.43607],[114.01872,22.43607],[114.01872,22.43606],[114.01873,22.43606],[114.01873,22.43606],[114.01874,22.43606],[114.01875,22.43605],[114.01875,22.43605],[114.01876,22.43605],[114.01876,22.43605],[114.01877,22.43605],[114.01877,22.43604],[114.01878,22.43604],[114.01878,22.43604],[114.01879,22.43604],[114.0188,22.43603],[114.01881,22.43603],[114.01882,22.43603],[114.01882,22.43602],[114.01883,22.43602],[114.01883,22.43602],[114.01884,22.43602],[114.01885,22.43601],[114.01886,22.43601],[114.01887,22.43601],[114.01887,22.436],[114.01888,22.436],[114.01888,22.436],[114.01889,22.436],[114.01889,22.436],[114.0189,22.43599],[114.0189,22.43599],[114.01891,22.43599],[114.01891,22.43599],[114.01892,22.43599],[114.01892,22.43598],[114.01893,22.43598],[114.01894,22.43598],[114.01894,22.43598],[114.01895,22.43598],[114.01895,22.43597],[114.01896,22.43597],[114.01897,22.43597],[114.01897,22.43596],[114.01898,22.43596],[114.01899,22.43596],[114.01899,22.43596],[114.019,22.43596],[114.019,22.43595],[114.01901,22.43595],[114.01901,22.43595],[114.01902,22.43595],[114.01902,22.43595],[114.01903,22.43594],[114.01903,22.43594],[114.01904,22.43594],[114.01905,22.43594],[114.01906,22.43593],[114.01906,22.43593],[114.01907,22.43593],[114.01907,22.43593],[114.01908,22.43592],[114.01909,22.43592],[114.01909,22.43592],[114.01913,22.43591],[114.01914,22.43591],[114.01914,22.4359],[114.01915,22.4359],[114.01915,22.4359],[114.01916,22.4359],[114.01916,22.4359],[114.01917,22.43589],[114.01918,22.43589],[114.01918,22.43589],[114.01919,22.43589],[114.01919,22.43589],[114.0192,22.43588],[114.0192,22.43588],[114.01921,22.43588],[114.01921,22.43588],[114.01922,22.43588],[114.01922,22.43588],[114.01923,22.43587],[114.01924,22.43587],[114.01924,22.43587],[114.01925,22.43587],[114.01925,22.43587],[114.01926,22.43586],[114.01926,22.43586],[114.01927,22.43586],[114.01928,22.43586],[114.01929,22.43585],[114.01929,22.43585],[114.0193,22.43585],[114.0193,22.43585],[114.01931,22.43585],[114.01931,22.43585],[114.01932,22.43584],[114.01932,22.43584],[114.01933,22.43584],[114.01934,22.43584],[114.01934,22.43584],[114.01935,22.43584],[114.01935,22.43583],[114.01936,22.43583],[114.01937,22.43583],[114.01937,22.43583],[114.01938,22.43582],[114.01939,22.43582],[114.01939,22.43582],[114.0194,22.43582],[114.0194,22.43582],[114.01941,22.43582],[114.01941,22.43581],[114.01942,22.43581],[114.01942,22.43581],[114.01943,22.43581],[114.01944,22.43581],[114.01944,22.43581],[114.01945,22.4358],[114.01945,22.4358],[114.01946,22.4358],[114.01946,22.4358],[114.01947,22.4358],[114.01947,22.4358],[114.01948,22.4358],[114.01949,22.43579],[114.01949,22.43579],[114.0195,22.43579],[114.0195,22.43579],[114.01951,22.43579],[114.01951,22.43579],[114.01952,22.43578],[114.01953,22.43578],[114.01953,22.43578],[114.01954,22.43578],[114.01954,22.43578],[114.01955,22.43578],[114.01955,22.43577],[114.01956,22.43577],[114.01956,22.43577],[114.01957,22.43577],[114.01958,22.43577],[114.01958,22.43577],[114.01958,22.43577],[114.01959,22.43577],[114.01959,22.43576],[114.0196,22.43576],[114.01961,22.43576],[114.01961,22.43576],[114.01962,22.43576],[114.01963,22.43575],[114.01963,22.43575],[114.01964,22.43575],[114.01964,22.43575],[114.01965,22.43575],[114.01965,22.43575],[114.01966,22.43575],[114.01967,22.43574],[114.01968,22.43574],[114.01968,22.43574],[114.01969,22.43574],[114.01969,22.43574],[114.0197,22.43573],[114.01972,22.43573],[114.01972,22.43573],[114.01973,22.43573],[114.01973,22.43573],[114.01974,22.43572],[114.01974,22.43572],[114.01975,22.43572],[114.01976,22.43572],[114.01977,22.43572],[114.01978,22.43571],[114.01978,22.43571],[114.01979,22.43571],[114.0198,22.43571],[114.01981,22.4357],[114.01982,22.4357],[114.01982,22.4357],[114.01983,22.4357],[114.01984,22.4357],[114.01984,22.4357],[114.01985,22.4357],[114.01986,22.43569],[114.01986,22.43569],[114.01987,22.43569],[114.01988,22.43569],[114.01988,22.43569],[114.01989,22.43569],[114.01989,22.43569],[114.0199,22.43568],[114.0199,22.43568],[114.01991,22.43568],[114.01991,22.43568],[114.01993,22.43568],[114.01993,22.43568],[114.01994,22.43568],[114.01994,22.43567],[114.01995,22.43567],[114.01996,22.43567],[114.01997,22.43567],[114.01997,22.43567],[114.01998,22.43567],[114.01998,22.43567],[114.01999,22.43566],[114.01999,22.43566],[114.02,22.43566],[114.02001,22.43566],[114.02001,22.43566],[114.02002,22.43566],[114.02002,22.43566],[114.02003,22.43566],[114.02003,22.43565],[114.02004,22.43565],[114.02005,22.43565],[114.02006,22.43565],[114.02006,22.43565],[114.02007,22.43565],[114.02007,22.43565],[114.02008,22.43564],[114.02009,22.43564],[114.02009,22.43564],[114.0201,22.43564],[114.0201,22.43564],[114.02011,22.43564],[114.02012,22.43564],[114.02012,22.43564],[114.02013,22.43563],[114.02014,22.43563],[114.02021,22.43562],[114.02128,22.43541],[114.02134,22.4354],[114.02141,22.43538],[114.0216,22.43535],[114.02205,22.43527],[114.02225,22.43523],[114.02253,22.43518],[114.02321,22.43506],[114.02354,22.435],[114.02415,22.4349],[114.02477,22.43479],[114.02479,22.43479],[114.0248,22.43478],[114.02486,22.43477],[114.0249,22.43477],[114.02543,22.43467],[114.0265,22.43449],[114.02689,22.43442],[114.02767,22.43428],[114.02856,22.43413],[114.02861,22.43412],[114.02864,22.43412],[114.02943,22.43399],[114.02943,22.43399],[114.02944,22.43399],[114.02945,22.43398],[114.02945,22.43398],[114.02946,22.43398],[114.02946,22.43398],[114.02946,22.43398],[114.02947,22.43398],[114.02948,22.43398],[114.02948,22.43398],[114.02949,22.43398],[114.02949,22.43398],[114.0295,22.43398],[114.02951,22.43397],[114.02952,22.43397],[114.02952,22.43397],[114.02953,22.43397],[114.02954,22.43397],[114.02955,22.43397],[114.02955,22.43397],[114.02956,22.43397],[114.02957,22.43397],[114.02957,22.43396],[114.02958,22.43396],[114.02959,22.43396],[114.0296,22.43396],[114.02961,22.43396],[114.02961,22.43396],[114.02962,22.43396],[114.02962,22.43396],[114.02963,22.43396],[114.02963,22.43396],[114.02964,22.43396],[114.02965,22.43395],[114.02965,22.43395],[114.02966,22.43395],[114.02967,22.43395],[114.02967,22.43395],[114.02968,22.43395],[114.02969,22.43395],[114.0297,22.43395],[114.0297,22.43395],[114.02971,22.43395],[114.02972,22.43395],[114.02972,22.43394],[114.02973,22.43394],[114.02974,22.43394],[114.02974,22.43394],[114.02975,22.43394],[114.02976,22.43394],[114.02976,22.43394],[114.02977,22.43394],[114.02978,22.43394],[114.02979,22.43394],[114.02979,22.43394],[114.0298,22.43394],[114.02981,22.43393],[114.02982,22.43393],[114.02982,22.43393],[114.02983,22.43393],[114.02984,22.43393],[114.02985,22.43393],[114.02985,22.43393],[114.02986,22.43393],[114.02987,22.43393],[114.02988,22.43393],[114.02988,22.43393],[114.02989,22.43392],[114.0299,22.43392],[114.02991,22.43392],[114.02991,22.43392],[114.02992,22.43392],[114.02993,22.43392],[114.02994,22.43392],[114.02994,22.43392],[114.02995,22.43392],[114.02996,22.43392],[114.02996,22.43392],[114.02997,22.43392],[114.02998,22.43392],[114.02998,22.43391],[114.02999,22.43391],[114.03,22.43391],[114.03,22.43391],[114.03001,22.43391],[114.03002,22.43391],[114.03002,22.43391],[114.03003,22.43391],[114.03004,22.43391],[114.03005,22.43391],[114.03005,22.43391],[114.03006,22.43391],[114.03007,22.43391],[114.03007,22.43391],[114.03008,22.43391],[114.03009,22.43391],[114.0301,22.43391],[114.0301,22.43391],[114.03011,22.43391],[114.03012,22.43391],[114.03013,22.4339],[114.03013,22.4339],[114.03014,22.4339],[114.03015,22.4339],[114.03016,22.4339],[114.03016,22.4339],[114.03017,22.4339],[114.03018,22.4339],[114.03018,22.4339],[114.03019,22.4339],[114.0302,22.4339],[114.03021,22.4339],[114.03021,22.4339],[114.03022,22.4339],[114.03023,22.4339],[114.03023,22.4339],[114.03024,22.4339],[114.03025,22.4339],[114.03026,22.4339],[114.03027,22.4339],[114.03028,22.4339],[114.03029,22.4339],[114.0303,22.4339],[114.0303,22.4339],[114.03031,22.4339],[114.03032,22.4339],[114.03033,22.4339],[114.03034,22.4339],[114.03035,22.4339],[114.03035,22.4339],[114.03037,22.4339],[114.03038,22.4339],[114.03039,22.4339],[114.0304,22.4339],[114.03042,22.4339],[114.03043,22.43389],[114.03043,22.43389],[114.03054,22.43389],[114.03057,22.43389],[114.03058,22.43389],[114.03059,22.43389],[114.03061,22.43389],[114.03062,22.4339],[114.03064,22.4339],[114.03064,22.4339],[114.03065,22.4339],[114.03066,22.4339],[114.03067,22.4339],[114.03067,22.4339],[114.03068,22.4339],[114.03069,22.4339],[114.0307,22.4339],[114.03072,22.4339],[114.03072,22.4339],[114.03074,22.4339],[114.03075,22.4339],[114.03076,22.4339],[114.03077,22.4339],[114.03078,22.4339],[114.03079,22.4339],[114.0308,22.4339],[114.03081,22.4339],[114.03083,22.4339],[114.03085,22.4339],[114.03086,22.4339],[114.03087,22.4339],[114.03088,22.4339],[114.03089,22.4339],[114.0309,22.4339],[114.03091,22.4339],[114.03091,22.4339],[114.03092,22.4339],[114.03093,22.4339],[114.03094,22.4339],[114.03094,22.4339],[114.03095,22.4339],[114.03096,22.43391],[114.03096,22.43391],[114.03097,22.43391],[114.03098,22.43391],[114.03099,22.43391],[114.03099,22.43391],[114.031,22.43391],[114.03101,22.43391],[114.03102,22.43391],[114.03102,22.43391],[114.03103,22.43391],[114.03104,22.43391],[114.03105,22.43391],[114.03105,22.43391],[114.03106,22.43391],[114.03107,22.43391],[114.03108,22.43391],[114.03108,22.43391],[114.03109,22.43391],[114.0311,22.43391],[114.0311,22.43391],[114.03111,22.43391],[114.03112,22.43391],[114.03113,22.43392],[114.03113,22.43392],[114.03114,22.43392],[114.03115,22.43392],[114.03116,22.43392],[114.03116,22.43392],[114.03117,22.43392],[114.03118,22.43392],[114.03119,22.43392],[114.03119,22.43392],[114.0312,22.43392],[114.03121,22.43392],[114.03121,22.43392],[114.03122,22.43392],[114.03123,22.43392],[114.03124,22.43392],[114.03125,22.43393],[114.03125,22.43393],[114.03126,22.43393],[114.03127,22.43393],[114.03128,22.43393],[114.03128,22.43393],[114.03129,22.43393],[114.0313,22.43393],[114.0313,22.43393],[114.03131,22.43393],[114.03132,22.43393],[114.03133,22.43393],[114.03134,22.43393],[114.03134,22.43393],[114.03135,22.43394],[114.03136,22.43394],[114.03137,22.43394],[114.03137,22.43394],[114.03138,22.43394],[114.03139,22.43394],[114.03139,22.43394],[114.0314,22.43394],[114.03141,22.43394],[114.03142,22.43394],[114.03143,22.43394],[114.03143,22.43394],[114.03144,22.43395],[114.03145,22.43395],[114.03145,22.43395],[114.03146,22.43395],[114.03147,22.43395],[114.03148,22.43395],[114.03148,22.43395],[114.03149,22.43395],[114.0315,22.43395],[114.0315,22.43395],[114.03151,22.43395],[114.03152,22.43395],[114.03152,22.43396],[114.03153,22.43396],[114.03154,22.43396],[114.03155,22.43396],[114.03155,22.43396],[114.03156,22.43396],[114.03157,22.43396],[114.03158,22.43396],[114.03159,22.43396],[114.03159,22.43396],[114.0316,22.43396],[114.03161,22.43397],[114.03161,22.43397],[114.03162,22.43397],[114.03163,22.43397],[114.03163,22.43397],[114.03164,22.43397],[114.03165,22.43397],[114.03165,22.43397],[114.03166,22.43397],[114.03167,22.43397],[114.03167,22.43397],[114.03168,22.43398],[114.03169,22.43398],[114.0317,22.43398],[114.0317,22.43398],[114.03171,22.43398],[114.03171,22.43398],[114.03172,22.43398],[114.03173,22.43398],[114.03173,22.43398],[114.03174,22.43398],[114.03174,22.43398],[114.03175,22.43398],[114.03176,22.43399],[114.03176,22.43399],[114.03177,22.43399],[114.03177,22.43399],[114.03178,22.43399],[114.03179,22.43399],[114.0318,22.43399],[114.0318,22.43399],[114.03181,22.43399],[114.03181,22.434],[114.03182,22.434],[114.03183,22.434],[114.03183,22.434],[114.03184,22.434],[114.03184,22.434],[114.03185,22.434],[114.03186,22.434],[114.03186,22.434],[114.03187,22.434],[114.0319,22.43401],[114.0319,22.43401],[114.03191,22.43401],[114.03192,22.43401],[114.03192,22.43401],[114.03193,22.43401],[114.03194,22.43402],[114.03194,22.43402],[114.03195,22.43402],[114.03195,22.43402],[114.03196,22.43402],[114.03196,22.43402],[114.03197,22.43402],[114.03198,22.43402],[114.03199,22.43403],[114.03199,22.43403],[114.032,22.43403],[114.032,22.43403],[114.03201,22.43403],[114.03202,22.43403],[114.03202,22.43403],[114.03203,22.43403],[114.03203,22.43404],[114.03204,22.43404],[114.03204,22.43404],[114.03205,22.43404],[114.03206,22.43404],[114.03206,22.43404],[114.03207,22.43404],[114.03207,22.43404],[114.03208,22.43404],[114.03208,22.43405],[114.03209,22.43405],[114.0321,22.43405],[114.0321,22.43405],[114.03211,22.43405],[114.03211,22.43405],[114.03212,22.43405],[114.03212,22.43405],[114.03213,22.43406],[114.03214,22.43406],[114.03214,22.43406],[114.03215,22.43406],[114.03215,22.43406],[114.03216,22.43406],[114.03216,22.43406],[114.03217,22.43407],[114.03217,22.43407],[114.03218,22.43407],[114.03219,22.43407],[114.03219,22.43407],[114.0322,22.43407],[114.0322,22.43407],[114.03221,22.43407],[114.03221,22.43408],[114.03222,22.43408],[114.03223,22.43408],[114.03223,22.43408],[114.03224,22.43408],[114.03224,22.43408],[114.03225,22.43408],[114.03225,22.43409],[114.03226,22.43409],[114.03227,22.43409],[114.03227,22.43409],[114.03228,22.43409],[114.03228,22.43409],[114.03229,22.43409],[114.03229,22.43409],[114.0323,22.4341],[114.0323,22.4341],[114.03231,22.4341],[114.03232,22.4341],[114.03232,22.4341],[114.03233,22.4341],[114.03233,22.4341],[114.03234,22.43411],[114.03234,22.43411],[114.03235,22.43411],[114.03236,22.43411],[114.03236,22.43411],[114.03237,22.43411],[114.03237,22.43411],[114.03238,22.43412],[114.03238,22.43412],[114.03239,22.43412],[114.0324,22.43412],[114.0324,22.43412],[114.03241,22.43412],[114.03241,22.43412],[114.03242,22.43412],[114.03242,22.43413],[114.03243,22.43413],[114.03243,22.43413],[114.03244,22.43413],[114.03245,22.43413],[114.03245,22.43413],[114.03246,22.43414],[114.03246,22.43414],[114.03247,22.43414],[114.03247,22.43414],[114.03248,22.43414],[114.03248,22.43414],[114.03249,22.43414],[114.0325,22.43415],[114.0325,22.43415],[114.03251,22.43415],[114.03251,22.43415],[114.03252,22.43415],[114.03252,22.43415],[114.03253,22.43415],[114.03254,22.43416],[114.03254,22.43416],[114.03255,22.43416],[114.03255,22.43416],[114.03256,22.43416],[114.03256,22.43416],[114.03257,22.43416],[114.03257,22.43417],[114.03258,22.43417],[114.03259,22.43417],[114.03259,22.43417],[114.0326,22.43417],[114.0326,22.43417],[114.03261,22.43418],[114.03261,22.43418],[114.03262,22.43418],[114.03262,22.43418],[114.03263,22.43418],[114.03264,22.43418],[114.03264,22.43418],[114.03265,22.43419],[114.03265,22.43419],[114.03266,22.43419],[114.03266,22.43419],[114.03267,22.43419],[114.03267,22.43419],[114.03268,22.4342],[114.03269,22.4342],[114.03269,22.4342],[114.0327,22.4342],[114.0327,22.4342],[114.03271,22.4342],[114.03271,22.43421],[114.03272,22.43421],[114.03272,22.43421],[114.03273,22.43421],[114.03274,22.43421],[114.03274,22.43421],[114.03275,22.43422],[114.03275,22.43422],[114.03276,22.43422],[114.03276,22.43422],[114.03277,22.43422],[114.03277,22.43423],[114.03278,22.43423],[114.03279,22.43423],[114.03279,22.43423],[114.0328,22.43423],[114.0328,22.43423],[114.03281,22.43424],[114.03281,22.43424],[114.03282,22.43424],[114.03282,22.43424],[114.03283,22.43424],[114.03283,22.43425],[114.03284,22.43425],[114.03285,22.43425],[114.03285,22.43425],[114.03286,22.43425],[114.03286,22.43425],[114.03287,22.43426],[114.03287,22.43426],[114.03288,22.43426],[114.03288,22.43426],[114.03289,22.43426],[114.03289,22.43427],[114.0329,22.43427],[114.03291,22.43427],[114.03291,22.43427],[114.03292,22.43427],[114.03292,22.43428],[114.03293,22.43428],[114.03293,22.43428],[114.03294,22.43428],[114.03294,22.43428],[114.03295,22.43429],[114.03295,22.43429],[114.03296,22.43429],[114.03297,22.43429],[114.03297,22.43429],[114.03298,22.43429],[114.03298,22.4343],[114.03299,22.4343],[114.03299,22.4343],[114.033,22.4343],[114.033,22.4343],[114.03301,22.43431],[114.03301,22.43431],[114.03302,22.43431],[114.03303,22.43431],[114.03303,22.43431],[114.03304,22.43432],[114.03305,22.43432],[114.03305,22.43432],[114.03306,22.43432],[114.03306,22.43433],[114.03307,22.43433],[114.03307,22.43433],[114.03406,22.43471],[114.03406,22.43471],[114.03407,22.43471],[114.03407,22.43472],[114.03408,22.43472],[114.03409,22.43472],[114.03409,22.43473],[114.0341,22.43473],[114.03411,22.43473],[114.03412,22.43473],[114.03412,22.43474],[114.03413,22.43474],[114.03414,22.43474],[114.03415,22.43475],[114.03415,22.43475],[114.03416,22.43475],[114.03417,22.43476],[114.03418,22.43476],[114.03418,22.43476],[114.03419,22.43477],[114.0342,22.43477],[114.0342,22.43477],[114.03421,22.43477],[114.03422,22.43478],[114.03422,22.43478],[114.03423,22.43478],[114.03424,22.43479],[114.03424,22.43479],[114.03425,22.43479],[114.03426,22.4348],[114.03426,22.4348],[114.03427,22.4348],[114.03427,22.4348],[114.03428,22.43481],[114.03429,22.43481],[114.0343,22.43481],[114.03431,22.43482],[114.03431,22.43482],[114.03432,22.43482],[114.03432,22.43483],[114.03433,22.43483],[114.03433,22.43483],[114.03434,22.43483],[114.03435,22.43484],[114.03435,22.43484],[114.03436,22.43484],[114.03436,22.43485],[114.03437,22.43485],[114.03438,22.43485],[114.03439,22.43486],[114.03439,22.43486],[114.0344,22.43486],[114.0344,22.43486],[114.03441,22.43487],[114.03442,22.43487],[114.03442,22.43487],[114.03443,22.43488],[114.03443,22.43488],[114.03444,22.43488],[114.03444,22.43488],[114.03445,22.43489],[114.03445,22.43489],[114.03446,22.43489],[114.03447,22.43489],[114.03447,22.4349],[114.03448,22.4349],[114.03449,22.43491],[114.03449,22.43491],[114.0345,22.43491],[114.0345,22.43491],[114.03451,22.43492],[114.03451,22.43492],[114.03452,22.43492],[114.03452,22.43492],[114.03453,22.43493],[114.03453,22.43493],[114.03454,22.43493],[114.03455,22.43493],[114.03455,22.43494],[114.03456,22.43494],[114.03456,22.43494],[114.03457,22.43495],[114.03457,22.43495],[114.03458,22.43495],[114.03458,22.43495],[114.03459,22.43496],[114.0346,22.43496],[114.0346,22.43497],[114.03461,22.43497],[114.03461,22.43497],[114.03462,22.43498],[114.03463,22.43498],[114.03463,22.43498],[114.03464,22.43498],[114.03464,22.43499],[114.03465,22.43499],[114.03465,22.43499],[114.03466,22.435],[114.03467,22.435],[114.03467,22.435],[114.03468,22.43501],[114.03469,22.43501],[114.03469,22.43502],[114.0347,22.43502],[114.0347,22.43502],[114.03471,22.43502],[114.03472,22.43503],[114.03473,22.43504],[114.03474,22.43504],[114.03474,22.43505],[114.03475,22.43505],[114.03475,22.43505],[114.03476,22.43505],[114.03476,22.43506],[114.03477,22.43506],[114.0349,22.43514],[114.0349,22.43514],[114.03491,22.43515],[114.03492,22.43515],[114.03493,22.43516],[114.03493,22.43516],[114.03494,22.43516],[114.03494,22.43517],[114.03495,22.43517],[114.03495,22.43517],[114.03496,22.43518],[114.03496,22.43518],[114.03497,22.43518],[114.03497,22.43519],[114.03498,22.43519],[114.03498,22.43519],[114.03499,22.43519],[114.03499,22.4352],[114.035,22.4352],[114.035,22.4352],[114.03501,22.43521],[114.03501,22.43521],[114.03502,22.43522],[114.03502,22.43522],[114.03503,22.43522],[114.03503,22.43522],[114.03504,22.43523],[114.03504,22.43523],[114.03505,22.43523],[114.03505,22.43524],[114.03506,22.43524],[114.03506,22.43524],[114.03507,22.43525],[114.03507,22.43525],[114.03508,22.43525],[114.03508,22.43526],[114.03509,22.43526],[114.03509,22.43526],[114.0351,22.43527],[114.0351,22.43527],[114.03511,22.43528],[114.03511,22.43528],[114.03512,22.43528],[114.03512,22.43529],[114.03513,22.43529],[114.03514,22.4353],[114.03514,22.4353],[114.03515,22.4353],[114.03515,22.43531],[114.03516,22.43531],[114.03516,22.43531],[114.03516,22.43532],[114.03517,22.43532],[114.03517,22.43532],[114.03518,22.43533],[114.03518,22.43533],[114.03519,22.43533],[114.03519,22.43534],[114.0352,22.43534],[114.03521,22.43535],[114.03521,22.43535],[114.03522,22.43535],[114.03522,22.43536],[114.03522,22.43536],[114.03523,22.43536],[114.03523,22.43537],[114.03524,22.43537],[114.03524,22.43537],[114.03525,22.43538],[114.03525,22.43538],[114.03526,22.43538],[114.03526,22.43539],[114.03527,22.43539],[114.03527,22.43539],[114.03528,22.4354],[114.03528,22.4354],[114.03529,22.4354],[114.03529,22.43541],[114.0353,22.43541],[114.0353,22.43541],[114.0353,22.43542],[114.03531,22.43542],[114.03531,22.43542],[114.03532,22.43543],[114.03532,22.43543],[114.03544,22.43552],[114.03545,22.43553],[114.03546,22.43553],[114.03546,22.43554],[114.03547,22.43554],[114.03548,22.43554],[114.03549,22.43555],[114.03549,22.43555],[114.0355,22.43555],[114.0355,22.43555],[114.03551,22.43555],[114.03551,22.43556],[114.03552,22.43556],[114.03553,22.43556],[114.03554,22.43556],[114.03554,22.43556],[114.03555,22.43556],[114.03555,22.43557],[114.03556,22.43557],[114.03556,22.43557],[114.03557,22.43557],[114.03557,22.43557],[114.03558,22.43557],[114.03559,22.43557],[114.03559,22.43558],[114.0356,22.43558],[114.0356,22.43558],[114.03561,22.43558],[114.03561,22.43558],[114.03562,22.43559],[114.03563,22.43559],[114.03563,22.43559],[114.03564,22.4356],[114.03564,22.4356],[114.03565,22.4356],[114.03566,22.4356],[114.03566,22.43561],[114.03567,22.43561],[114.03567,22.43561],[114.03568,22.43561],[114.03569,22.43562],[114.03569,22.43562],[114.0357,22.43563],[114.0357,22.43563],[114.03571,22.43563],[114.03571,22.43564],[114.03572,22.43564],[114.03572,22.43564],[114.03573,22.43565],[114.03573,22.43565],[114.03573,22.43565],[114.03574,22.43566],[114.03574,22.43566],[114.03575,22.43566],[114.03575,22.43567],[114.03576,22.43567],[114.03576,22.43567],[114.03576,22.43568],[114.03577,22.43568],[114.03577,22.43569],[114.03578,22.43569],[114.03578,22.43569],[114.03578,22.4357],[114.03579,22.4357],[114.03579,22.43571],[114.0358,22.43571],[114.0358,22.43571],[114.0358,22.43572],[114.03581,22.43572],[114.03581,22.43573],[114.03581,22.43573],[114.03582,22.43574],[114.03582,22.43574],[114.03582,22.43574],[114.03583,22.43575],[114.03583,22.43575],[114.03583,22.43576],[114.03584,22.43576],[114.03584,22.43577],[114.03584,22.43577],[114.03585,22.43578],[114.03586,22.43579],[114.03587,22.43581],[114.03587,22.43582],[114.03587,22.43583],[114.03588,22.43583],[114.03588,22.43584],[114.03588,22.43584],[114.03588,22.43585],[114.03588,22.43585],[114.03589,22.43586],[114.03589,22.43586],[114.03589,22.43587],[114.03589,22.43587],[114.0359,22.43588],[114.0359,22.43588],[114.0359,22.43589],[114.0359,22.43589],[114.0359,22.4359],[114.0359,22.4359],[114.03591,22.43591],[114.03591,22.43592],[114.03591,22.43592],[114.03591,22.43593],[114.03592,22.43593],[114.03592,22.43594],[114.03592,22.43594],[114.03593,22.43595],[114.03593,22.43595],[114.03593,22.43595],[114.03594,22.43596],[114.03594,22.43597],[114.03594,22.43597],[114.03595,22.43597],[114.03595,22.43598],[114.03596,22.43598],[114.03596,22.43599],[114.03596,22.43599],[114.03597,22.43599],[114.03597,22.436],[114.03598,22.436],[114.03598,22.436],[114.03599,22.43601],[114.03599,22.43601],[114.036,22.43601],[114.036,22.43602],[114.03601,22.43602],[114.03601,22.43602],[114.03602,22.43603],[114.03603,22.43603],[114.03603,22.43603],[114.03604,22.43604],[114.03604,22.43604],[114.03605,22.43604],[114.03605,22.43605],[114.03606,22.43605],[114.03606,22.43605],[114.03607,22.43606],[114.03607,22.43606],[114.03608,22.43606],[114.03608,22.43606],[114.03609,22.43607],[114.03609,22.43607],[114.0361,22.43607],[114.0361,22.43608],[114.03611,22.43608],[114.03611,22.43608],[114.03612,22.43609],[114.03612,22.43609],[114.03613,22.43609],[114.03613,22.4361],[114.03614,22.4361],[114.03614,22.4361],[114.03615,22.43611],[114.03615,22.43611],[114.03616,22.43611],[114.03616,22.43612],[114.03617,22.43612],[114.03617,22.43612],[114.03618,22.43613],[114.03618,22.43613],[114.03619,22.43613],[114.03619,22.43614],[114.03619,22.43614],[114.0362,22.43614],[114.0362,22.43614],[114.03621,22.43615],[114.03621,22.43615],[114.03622,22.43615],[114.03622,22.43616],[114.03623,22.43616],[114.03623,22.43616],[114.03624,22.43617],[114.03624,22.43617],[114.03625,22.43617],[114.03626,22.43618],[114.03626,22.43618],[114.03626,22.43619],[114.03627,22.43619],[114.03627,22.43619],[114.03628,22.4362],[114.03628,22.4362],[114.03629,22.4362],[114.0363,22.43621],[114.0363,22.43621],[114.03631,22.43622],[114.03631,22.43622],[114.03632,22.43622],[114.03632,22.43623],[114.03632,22.43623],[114.03633,22.43623],[114.03633,22.43624],[114.03634,22.43624],[114.03634,22.43624],[114.03635,22.43625],[114.03636,22.43625],[114.03636,22.43626],[114.03637,22.43626],[114.03638,22.43627],[114.03639,22.43627],[114.03639,22.43628],[114.0364,22.43628],[114.03641,22.43629],[114.03641,22.43629],[114.03642,22.43629],[114.03642,22.4363],[114.03642,22.4363],[114.03643,22.4363],[114.03647,22.43634],[114.03658,22.43643],[114.03682,22.43663],[114.03738,22.43711],[114.03739,22.43712],[114.03739,22.43712],[114.0374,22.43712],[114.0374,22.43713],[114.0374,22.43713],[114.03741,22.43713],[114.03741,22.43714],[114.03742,22.43714],[114.03742,22.43715],[114.03743,22.43715],[114.03743,22.43715],[114.03743,22.43716],[114.03744,22.43716],[114.03744,22.43716],[114.03745,22.43717],[114.03745,22.43717],[114.03745,22.43718],[114.03746,22.43718],[114.03747,22.43719],[114.03747,22.43719],[114.03748,22.43719],[114.03748,22.4372],[114.03749,22.43721],[114.03749,22.43721],[114.0375,22.43721],[114.0375,22.43722],[114.0375,22.43722],[114.03751,22.43723],[114.03752,22.43723],[114.03752,22.43724],[114.03753,22.43724],[114.03753,22.43724],[114.03753,22.43725],[114.03754,22.43725],[114.03754,22.43726],[114.03755,22.43726],[114.03755,22.43726],[114.03756,22.43727],[114.03756,22.43727],[114.03757,22.43728],[114.03757,22.43728],[114.03757,22.43729],[114.03758,22.43729],[114.03758,22.43729],[114.03759,22.4373],[114.03759,22.4373],[114.03759,22.43731],[114.0376,22.43731],[114.0376,22.43731],[114.03761,22.43732],[114.03761,22.43732],[114.03762,22.43732],[114.03762,22.43733],[114.03762,22.43733],[114.03763,22.43734],[114.03763,22.43734],[114.03764,22.43735],[114.03764,22.43735],[114.03765,22.43736],[114.03765,22.43736],[114.03766,22.43737],[114.03767,22.43737],[114.03767,22.43738],[114.03767,22.43738],[114.03768,22.43739],[114.03768,22.43739],[114.03768,22.43739],[114.03769,22.43739],[114.03769,22.4374],[114.03769,22.4374],[114.0377,22.43741],[114.0377,22.43741],[114.03771,22.43741],[114.03771,22.43742],[114.03771,22.43742],[114.03772,22.43743],[114.03772,22.43743],[114.03773,22.43743],[114.03773,22.43744],[114.03773,22.43744],[114.03774,22.43745],[114.03774,22.43745],[114.03774,22.43745],[114.03775,22.43746],[114.03775,22.43746],[114.03776,22.43747],[114.03776,22.43747],[114.03776,22.43747],[114.03777,22.43748],[114.03777,22.43748],[114.03778,22.43749],[114.03778,22.43749],[114.03778,22.43749],[114.03779,22.4375],[114.03779,22.4375],[114.03779,22.43751],[114.0378,22.43751],[114.0378,22.43751],[114.03781,22.43752],[114.03781,22.43752],[114.03781,22.43753],[114.03782,22.43753],[114.03782,22.43753],[114.03783,22.43754],[114.03783,22.43754],[114.03783,22.43755],[114.03784,22.43755],[114.03784,22.43755],[114.03785,22.43756],[114.03785,22.43756],[114.03785,22.43757],[114.03786,22.43757],[114.03786,22.43757],[114.03786,22.43758],[114.03787,22.43758],[114.03787,22.43759],[114.03788,22.43759],[114.03788,22.4376],[114.03788,22.4376],[114.03789,22.4376],[114.03789,22.43761],[114.0379,22.43761],[114.0379,22.43762],[114.0379,22.43762],[114.03791,22.43762],[114.03791,22.43763],[114.03791,22.43763],[114.03792,22.43764],[114.03792,22.43764],[114.03793,22.43764],[114.03793,22.43765],[114.03793,22.43765],[114.03794,22.43766],[114.03794,22.43766],[114.03794,22.43766],[114.03795,22.43767],[114.03795,22.43767],[114.03796,22.43768],[114.03796,22.43768],[114.03796,22.43768],[114.03797,22.43769],[114.03797,22.43769],[114.03798,22.4377],[114.03798,22.4377],[114.03798,22.43771],[114.03799,22.43771],[114.03799,22.43771],[114.03799,22.43772],[114.038,22.43772],[114.038,22.43772],[114.03801,22.43773],[114.03801,22.43773],[114.03801,22.43774],[114.03802,22.43774],[114.03802,22.43775],[114.03803,22.43775],[114.03803,22.43776],[114.03804,22.43776],[114.03804,22.43777],[114.03804,22.43777],[114.03805,22.43777],[114.03805,22.43778],[114.03806,22.43778],[114.03806,22.43779],[114.03806,22.43779],[114.03807,22.4378],[114.03807,22.4378],[114.03807,22.4378],[114.03808,22.43781],[114.03808,22.43781],[114.03808,22.43782],[114.03809,22.43782],[114.03809,22.43782],[114.0381,22.43783],[114.0381,22.43783],[114.0381,22.43784],[114.03811,22.43784],[114.03811,22.43785],[114.03811,22.43785],[114.03812,22.43785],[114.03812,22.43786],[114.03813,22.43786],[114.03813,22.43787],[114.03813,22.43787],[114.03814,22.43788],[114.03814,22.43788],[114.03814,22.43788],[114.03815,22.43789],[114.03815,22.43789],[114.03815,22.4379],[114.03816,22.4379],[114.03816,22.43791],[114.03816,22.43791],[114.03817,22.43791],[114.03817,22.43792],[114.03818,22.43792],[114.03818,22.43793],[114.03818,22.43793],[114.03819,22.43794],[114.03819,22.43794],[114.03819,22.43794],[114.0382,22.43795],[114.0382,22.43795],[114.03821,22.43796],[114.03821,22.43796],[114.03821,22.43797],[114.03822,22.43798],[114.03822,22.43798],[114.03823,22.43799],[114.03823,22.43799],[114.03824,22.438],[114.03824,22.438],[114.03824,22.43801],[114.03825,22.43801],[114.03825,22.43801],[114.03826,22.43802],[114.03826,22.43803],[114.03826,22.43803],[114.03827,22.43804],[114.03828,22.43805],[114.03828,22.43805],[114.03828,22.43806],[114.03829,22.43806],[114.03829,22.43807],[114.0383,22.43807],[114.0383,22.43808],[114.0383,22.43808],[114.03831,22.43809],[114.03832,22.43809],[114.03832,22.4381],[114.03832,22.43811],[114.03833,22.43811],[114.03833,22.43812],[114.03834,22.43812],[114.03834,22.43812],[114.03834,22.43813],[114.03835,22.43813],[114.03835,22.43814],[114.03835,22.43814],[114.03836,22.43815],[114.03836,22.43815],[114.03836,22.43815],[114.03837,22.43816],[114.03837,22.43816],[114.03837,22.43817],[114.03838,22.43817],[114.03838,22.43818],[114.03838,22.43818],[114.03839,22.43819],[114.03839,22.43819],[114.03839,22.43819],[114.0384,22.4382],[114.0384,22.4382],[114.03841,22.43821],[114.03841,22.43821],[114.03841,22.43822],[114.03842,22.43822],[114.03842,22.43822],[114.03842,22.43823],[114.03843,22.43823],[114.03843,22.43824],[114.03843,22.43824],[114.03844,22.43825],[114.03844,22.43825],[114.03845,22.43826],[114.03845,22.43826],[114.03845,22.43827],[114.03846,22.43827],[114.03846,22.43828],[114.03846,22.43828],[114.03847,22.43828],[114.03847,22.43829],[114.03847,22.43829],[114.03848,22.4383],[114.03848,22.4383],[114.03848,22.43831],[114.03849,22.43831],[114.03849,22.43832],[114.03849,22.43832],[114.0385,22.43833],[114.0385,22.43833],[114.03851,22.43834],[114.03852,22.43835],[114.03852,22.43835],[114.03852,22.43836],[114.03853,22.43836],[114.03853,22.43837],[114.03853,22.43837],[114.03854,22.43838],[114.03856,22.43841],[114.03857,22.43842],[114.03857,22.43843],[114.03858,22.43843],[114.03858,22.43843],[114.03858,22.43844],[114.03859,22.43845],[114.03859,22.43845],[114.0386,22.43846],[114.0386,22.43846],[114.0386,22.43847],[114.03861,22.43847],[114.03861,22.43848],[114.03861,22.43848],[114.03862,22.43849],[114.03862,22.43849],[114.03862,22.43849],[114.03862,22.4385],[114.03863,22.4385],[114.03863,22.4385],[114.03863,22.43851],[114.03864,22.43851],[114.03864,22.43852],[114.03864,22.43852],[114.03865,22.43853],[114.03865,22.43853],[114.03865,22.43854],[114.03866,22.43854],[114.03866,22.43855],[114.03867,22.43856],[114.03867,22.43856],[114.03867,22.43857],[114.03868,22.43857],[114.03868,22.43858],[114.03868,22.43858],[114.03869,22.43859],[114.03869,22.43859],[114.03869,22.4386],[114.0387,22.4386],[114.0387,22.4386],[114.0387,22.43861],[114.03871,22.43861],[114.03871,22.43862],[114.03871,22.43862],[114.03872,22.43863],[114.03872,22.43863],[114.03872,22.43864],[114.03873,22.43864],[114.03873,22.43865],[114.03873,22.43865],[114.03873,22.43866],[114.03874,22.43866],[114.03874,22.43866],[114.03874,22.43867],[114.03875,22.43867],[114.03875,22.43867],[114.03875,22.43868],[114.03875,22.43868],[114.03876,22.43869],[114.03876,22.43869],[114.03876,22.4387],[114.03877,22.4387],[114.03877,22.43871],[114.03878,22.43871],[114.03878,22.43872],[114.03878,22.43872],[114.03879,22.43873],[114.03879,22.43873],[114.03879,22.43874],[114.03879,22.43874],[114.0388,22.43875],[114.0388,22.43875],[114.0388,22.43876],[114.03881,22.43876],[114.03881,22.43877],[114.03881,22.43877],[114.03882,22.43877],[114.03882,22.43878],[114.03882,22.43878],[114.03882,22.43879],[114.03883,22.43879],[114.03883,22.4388],[114.03883,22.4388],[114.03884,22.43881],[114.03884,22.43881],[114.03884,22.43882],[114.03885,22.43882],[114.03885,22.43883],[114.03885,22.43883],[114.03885,22.43883],[114.03886,22.43884],[114.03886,22.43884],[114.03886,22.43885],[114.03887,22.43885],[114.03887,22.43886],[114.03887,22.43887],[114.03888,22.43887],[114.03888,22.43888],[114.03888,22.43888],[114.03889,22.43889],[114.03889,22.43889],[114.03889,22.4389],[114.0389,22.4389],[114.0389,22.43891],[114.03891,22.43891],[114.03891,22.43892],[114.03891,22.43893],[114.03891,22.43893],[114.03892,22.43894],[114.03892,22.43894],[114.03892,22.43894],[114.03893,22.43895],[114.03893,22.43896],[114.03893,22.43896],[114.03894,22.43897],[114.03894,22.43897],[114.03894,22.43898],[114.03895,22.43898],[114.03895,22.43899],[114.03895,22.43899],[114.03896,22.439],[114.03896,22.439],[114.03896,22.43901],[114.03897,22.43902],[114.03897,22.43902],[114.03897,22.43903],[114.03898,22.43903],[114.03898,22.43904],[114.03898,22.43904],[114.03899,22.43905],[114.03899,22.43905],[114.03899,22.43906],[114.03899,22.43906],[114.039,22.43907],[114.039,22.43908],[114.03901,22.43908],[114.03901,22.43909],[114.03901,22.4391],[114.03902,22.4391],[114.03902,22.43911],[114.03902,22.43911],[114.03903,22.43912],[114.03903,22.43912],[114.03903,22.43913],[114.03904,22.43914],[114.03904,22.43914],[114.03904,22.43915],[114.03904,22.43915],[114.03905,22.43916],[114.03905,22.43916],[114.03905,22.43917],[114.03906,22.43918],[114.03906,22.43918],[114.03906,22.43919],[114.03907,22.43919],[114.03907,22.4392],[114.03907,22.43921],[114.03908,22.43921],[114.03908,22.43922],[114.03908,22.43922],[114.03909,22.43923],[114.03909,22.43924],[114.03909,22.43924],[114.0391,22.43925],[114.0391,22.43925],[114.0391,22.43926],[114.0391,22.43926],[114.03911,22.43927],[114.03911,22.43928],[114.03911,22.43928],[114.03912,22.43929],[114.03912,22.43929],[114.03912,22.4393],[114.03913,22.4393],[114.03913,22.43931],[114.03913,22.43932],[114.03913,22.43932],[114.03914,22.43933],[114.03914,22.43934],[114.03914,22.43934],[114.03915,22.43935],[114.03915,22.43935],[114.03915,22.43936],[114.03916,22.43937],[114.03916,22.43938],[114.03917,22.43939],[114.03917,22.43939],[114.03917,22.4394],[114.03918,22.43941],[114.03918,22.43942],[114.03919,22.43942],[114.03919,22.43943],[114.03919,22.43944],[114.0392,22.43944],[114.0392,22.43945],[114.0392,22.43946],[114.0392,22.43946],[114.03921,22.43947],[114.03921,22.43948],[114.03922,22.43949],[114.03922,22.4395],[114.03922,22.4395],[114.03923,22.43951],[114.03923,22.43952],[114.03923,22.43952],[114.03924,22.43953],[114.03924,22.43953],[114.03924,22.43954],[114.03925,22.43955],[114.03925,22.43955],[114.03925,22.43956],[114.03925,22.43956],[114.03926,22.43957],[114.03926,22.43958],[114.03926,22.43958],[114.03926,22.43959],[114.03927,22.43959],[114.03927,22.4396],[114.03927,22.43961],[114.03928,22.43961],[114.03928,22.43962],[114.03928,22.43963],[114.03928,22.43963],[114.03929,22.43964],[114.03929,22.43964],[114.03929,22.43965],[114.0393,22.43966],[114.0393,22.43966],[114.0393,22.43967],[114.0393,22.43967],[114.03931,22.43968],[114.03931,22.43969],[114.03931,22.43969],[114.03931,22.4397],[114.03932,22.4397],[114.03932,22.43971],[114.03932,22.43972],[114.03933,22.43972],[114.03933,22.43973],[114.03933,22.43973],[114.03933,22.43974],[114.03934,22.43974],[114.03934,22.43975],[114.03934,22.43976],[114.03934,22.43976],[114.03935,22.43977],[114.03935,22.43977],[114.03935,22.43978],[114.03935,22.43978],[114.03936,22.43979],[114.03936,22.4398],[114.03936,22.4398],[114.03936,22.43981],[114.03936,22.43981],[114.03937,22.43982],[114.03937,22.43982],[114.03937,22.43983],[114.03937,22.43983],[114.03938,22.43984],[114.03938,22.43984],[114.03938,22.43985],[114.03938,22.43986],[114.03938,22.43986],[114.03939,22.43987],[114.03939,22.43987],[114.03939,22.43988],[114.03939,22.43988],[114.03939,22.43989],[114.0394,22.43989],[114.0394,22.4399],[114.0394,22.4399],[114.0394,22.4399],[114.0394,22.43991],[114.0394,22.43991],[114.03941,22.43992],[114.03941,22.43992],[114.03941,22.43993],[114.03941,22.43993],[114.03941,22.43994],[114.03941,22.43994],[114.03942,22.43994],[114.03942,22.43995],[114.03942,22.43995],[114.03942,22.43996],[114.03942,22.43996],[114.03943,22.43997],[114.03943,22.43997],[114.03943,22.43998],[114.03943,22.43998],[114.03943,22.43999],[114.03943,22.43999],[114.03944,22.44],[114.03944,22.44],[114.03944,22.44001],[114.03944,22.44001],[114.03944,22.44002],[114.03945,22.44002],[114.03945,22.44003],[114.03945,22.44003],[114.03945,22.44004],[114.03945,22.44004],[114.03945,22.44005],[114.03946,22.44005],[114.03946,22.44006],[114.03946,22.44007],[114.03946,22.44007],[114.03946,22.44008],[114.03947,22.44008],[114.03947,22.44009],[114.03947,22.44009],[114.03947,22.44009],[114.03947,22.4401],[114.03947,22.4401],[114.03947,22.4401],[114.03948,22.44011],[114.03948,22.44011],[114.03948,22.44012],[114.03948,22.44012],[114.03948,22.44013],[114.03948,22.44013],[114.03949,22.44013],[114.03949,22.44014],[114.03949,22.44014],[114.03949,22.44015],[114.03949,22.44015],[114.03949,22.44016],[114.0395,22.44016],[114.0395,22.44017],[114.0395,22.44017],[114.0395,22.44018],[114.0395,22.44018],[114.03951,22.44019],[114.03951,22.44019],[114.03951,22.4402],[114.03951,22.4402],[114.03951,22.44021],[114.03952,22.44021],[114.03952,22.44022],[114.03952,22.44022],[114.03952,22.44023],[114.03952,22.44023],[114.03953,22.44024],[114.03953,22.44024],[114.03953,22.44025],[114.03953,22.44025],[114.03953,22.44026],[114.03953,22.44026],[114.03954,22.44027],[114.03954,22.44028],[114.03954,22.44028],[114.03954,22.44029],[114.03954,22.44029],[114.03954,22.4403],[114.03955,22.4403],[114.03955,22.4403],[114.03955,22.44031],[114.03955,22.44031],[114.03955,22.44032],[114.03955,22.44032],[114.03955,22.44033],[114.03956,22.44033],[114.03956,22.44034],[114.03956,22.44034],[114.03956,22.44035],[114.03956,22.44035],[114.03956,22.44036],[114.03956,22.44036],[114.03957,22.44037],[114.03957,22.44038],[114.03957,22.44038],[114.03957,22.44039],[114.03957,22.44039],[114.03957,22.4404],[114.03957,22.4404],[114.03958,22.44041],[114.03958,22.44041],[114.03958,22.44042],[114.03958,22.44042],[114.03958,22.44043],[114.03958,22.44043],[114.03958,22.44044],[114.03959,22.44045],[114.03959,22.44045],[114.03959,22.44046],[114.03959,22.44046],[114.03959,22.44047],[114.03959,22.44047],[114.03959,22.44048],[114.0396,22.44048],[114.0396,22.44049],[114.0396,22.44049],[114.0396,22.4405],[114.0396,22.4405],[114.0396,22.44051],[114.0396,22.44051],[114.0396,22.44052],[114.0396,22.44052],[114.03961,22.44052],[114.03961,22.44052],[114.03961,22.44053],[114.03961,22.44053],[114.03961,22.44054],[114.03961,22.44055],[114.03961,22.44055],[114.03962,22.44056],[114.03962,22.44056],[114.03962,22.44056],[114.03962,22.44057],[114.03962,22.44057],[114.03962,22.44058],[114.03962,22.44058],[114.03962,22.44059],[114.03963,22.44059],[114.03963,22.4406],[114.03963,22.4406],[114.03963,22.44061],[114.03963,22.44061],[114.03963,22.44062],[114.03964,22.44063],[114.03964,22.44064],[114.03964,22.44064],[114.03964,22.44065],[114.03964,22.44066],[114.03964,22.44066],[114.03964,22.44067],[114.03964,22.44067],[114.03965,22.44068],[114.03965,22.44068],[114.03965,22.44069],[114.03965,22.44069],[114.03965,22.4407],[114.03965,22.4407],[114.03965,22.44071],[114.03965,22.44071],[114.03966,22.44072],[114.03966,22.44072],[114.03966,22.44073],[114.03966,22.44074],[114.03966,22.44074],[114.03966,22.44075],[114.03966,22.44075],[114.03966,22.44076],[114.03967,22.44076],[114.03967,22.44077],[114.03967,22.44077],[114.03967,22.44078],[114.03967,22.44078],[114.03967,22.44079],[114.03967,22.44079],[114.03967,22.4408],[114.03968,22.44081],[114.03968,22.44081],[114.03968,22.44082],[114.03968,22.44083],[114.03968,22.44083],[114.03968,22.44084],[114.03968,22.44084],[114.03968,22.44085],[114.03968,22.44085],[114.03969,22.44086],[114.03969,22.44086],[114.03969,22.44087],[114.03969,22.44087],[114.03969,22.44088],[114.03969,22.44088],[114.03969,22.44089],[114.03969,22.44089],[114.03969,22.4409],[114.0397,22.44091],[114.0397,22.44091],[114.0397,22.44092],[114.0397,22.44092],[114.0397,22.44093],[114.0397,22.44093],[114.0397,22.44094],[114.0397,22.44094],[114.0397,22.44095],[114.03971,22.44095],[114.03971,22.44096],[114.03971,22.44096],[114.03971,22.44097],[114.03971,22.44097],[114.03971,22.44098],[114.03971,22.44099],[114.03971,22.44099],[114.03971,22.441],[114.03971,22.441],[114.03972,22.44101],[114.03972,22.44101],[114.03972,22.44102],[114.03972,22.44102],[114.03972,22.44103],[114.03972,22.44103],[114.03972,22.44104],[114.03972,22.44104],[114.03972,22.44105],[114.03973,22.44105],[114.03973,22.44106],[114.03973,22.44107],[114.03973,22.44107],[114.03973,22.44108],[114.03973,22.44108],[114.03973,22.44109],[114.03973,22.44109],[114.03973,22.4411],[114.03973,22.4411],[114.03974,22.44111],[114.03974,22.44111],[114.03974,22.44112],[114.03974,22.44112],[114.03974,22.44113],[114.03974,22.44113],[114.03974,22.44114],[114.03974,22.44115],[114.03974,22.44115],[114.03974,22.44116],[114.03974,22.44116],[114.03975,22.44117],[114.03975,22.44117],[114.03975,22.44118],[114.03975,22.44118],[114.03975,22.44119],[114.03975,22.44119],[114.03975,22.4412],[114.03975,22.4412],[114.03975,22.44121],[114.03975,22.44122],[114.03975,22.44122],[114.03975,22.44123],[114.03975,22.44123],[114.03976,22.44124],[114.03976,22.44124],[114.03976,22.44125],[114.03976,22.44125],[114.03976,22.44126],[114.03976,22.44126],[114.03976,22.44127],[114.03976,22.44127],[114.03976,22.44128],[114.03976,22.44129],[114.03976,22.44129],[114.03976,22.4413],[114.03976,22.4413],[114.03976,22.44131],[114.03977,22.44131],[114.03977,22.44132],[114.03977,22.44132],[114.03977,22.44133],[114.03977,22.44133],[114.03977,22.44134],[114.03977,22.44134],[114.03977,22.44135],[114.03977,22.44136],[114.03977,22.44136],[114.03977,22.44137],[114.03977,22.44137],[114.03977,22.44138],[114.03977,22.44138],[114.03977,22.44139],[114.03977,22.44139],[114.03977,22.4414],[114.03978,22.4414],[114.03978,22.44141],[114.03978,22.44141],[114.03978,22.44142],[114.03978,22.44143],[114.03978,22.44143],[114.03978,22.44144],[114.03978,22.44144],[114.03978,22.44145],[114.03978,22.44145],[114.03978,22.44146],[114.03978,22.44146],[114.03978,22.44147],[114.03978,22.44147],[114.03978,22.44148],[114.03978,22.44148],[114.03978,22.44149],[114.03978,22.4415],[114.03978,22.4415],[114.03979,22.44151],[114.03979,22.44151],[114.03979,22.44152],[114.03979,22.44152],[114.03979,22.44153],[114.03979,22.44153],[114.03979,22.44154],[114.03979,22.44154],[114.03979,22.44155],[114.03979,22.44155],[114.03979,22.44156],[114.03979,22.44157],[114.03979,22.44157],[114.03979,22.44158],[114.03979,22.44158],[114.03979,22.44159],[114.03979,22.44159],[114.03979,22.4416],[114.03979,22.4416],[114.03979,22.44161],[114.0398,22.44161],[114.0398,22.44162],[114.0398,22.44162],[114.0398,22.44163],[114.0398,22.44164],[114.0398,22.44164],[114.0398,22.44165],[114.0398,22.44165],[114.0398,22.44166],[114.0398,22.44166],[114.0398,22.44167],[114.0398,22.44167],[114.0398,22.44168],[114.0398,22.44168],[114.0398,22.44169],[114.0398,22.44169],[114.0398,22.4417],[114.0398,22.44171],[114.0398,22.44171],[114.0398,22.44172],[114.0398,22.44172],[114.0398,22.44173],[114.0398,22.44173],[114.0398,22.44174],[114.03981,22.44175],[114.03981,22.44176],[114.03981,22.44177],[114.03981,22.44179],[114.03981,22.4418],[114.03981,22.44181],[114.03981,22.44183],[114.03981,22.44184],[114.03981,22.44185],[114.03981,22.44187],[114.03981,22.44188],[114.03981,22.44189],[114.03981,22.4419],[114.03981,22.44191],[114.03982,22.44208],[114.03982,22.4421],[114.03984,22.44303],[114.03984,22.44305],[114.03984,22.44305],[114.03984,22.44309],[114.03984,22.44309],[114.03984,22.44311],[114.03984,22.44312],[114.03984,22.44314],[114.03984,22.44314],[114.03984,22.44315],[114.03984,22.44316],[114.03984,22.44317],[114.03984,22.44317],[114.03984,22.44319],[114.03984,22.44319],[114.03984,22.4432],[114.03983,22.4432],[114.03983,22.44321],[114.03983,22.44322],[114.03983,22.44322],[114.03983,22.44323],[114.03983,22.44324],[114.03983,22.44324],[114.03983,22.44325],[114.03983,22.44325],[114.03983,22.44326],[114.03983,22.44326],[114.03983,22.44327],[114.03983,22.44327],[114.03983,22.44328],[114.03983,22.44328],[114.03983,22.44329],[114.03983,22.44329],[114.03983,22.4433],[114.03983,22.4433],[114.03983,22.44331],[114.03983,22.44331],[114.03983,22.44331],[114.03983,22.44332],[114.03983,22.44332],[114.03983,22.44333],[114.03983,22.44333],[114.03983,22.44333],[114.03983,22.44334],[114.03983,22.44334],[114.03983,22.44335],[114.03983,22.44335],[114.03983,22.44335],[114.03982,22.44336],[114.03982,22.44336],[114.03982,22.44337],[114.03982,22.44337],[114.03982,22.44337],[114.03982,22.44338],[114.03982,22.44338],[114.03982,22.44338],[114.03982,22.44339],[114.03982,22.44339],[114.03982,22.44339],[114.03982,22.4434],[114.03982,22.4434],[114.03982,22.4434],[114.03982,22.44341],[114.03982,22.44341],[114.03982,22.44341],[114.03982,22.44342],[114.03982,22.44342],[114.03982,22.44342],[114.03982,22.44343],[114.03982,22.44343],[114.03982,22.44343],[114.03982,22.44344],[114.03982,22.44344],[114.03982,22.44344],[114.03982,22.44345],[114.03982,22.44345],[114.03982,22.44346],[114.03982,22.44346],[114.03982,22.44346],[114.03982,22.44347],[114.03981,22.44347],[114.03981,22.44347],[114.03981,22.44348],[114.03981,22.44348],[114.03981,22.44348],[114.03981,22.44349],[114.03981,22.4435],[114.03981,22.4435],[114.03981,22.4435],[114.03981,22.44351],[114.03981,22.44352],[114.03981,22.44352],[114.03981,22.44352],[114.03981,22.44353],[114.03981,22.44353],[114.03981,22.44354],[114.03981,22.44354],[114.0398,22.44355],[114.0398,22.44356],[114.0398,22.44356],[114.0398,22.44357],[114.0398,22.44358],[114.0398,22.44358],[114.0398,22.44359],[114.0398,22.44359],[114.0398,22.44361],[114.0398,22.44361],[114.03979,22.44362],[114.03979,22.44363],[114.03979,22.44364],[114.03979,22.44365],[114.03979,22.44367],[114.03979,22.44367],[114.03978,22.4437],[114.03978,22.4437],[114.03978,22.44371],[114.03977,22.44377],[114.03977,22.44379],[114.03974,22.44398],[114.03974,22.44399],[114.03974,22.44399],[114.03974,22.444],[114.03974,22.44401],[114.03975,22.44401],[114.03975,22.44402],[114.03975,22.44403],[114.03976,22.44404],[114.03976,22.44404],[114.03976,22.44405],[114.03977,22.44406],[114.03977,22.44406],[114.03977,22.44407],[114.03978,22.44407],[114.03979,22.44408],[114.03979,22.44409],[114.03979,22.44409],[114.0398,22.4441],[114.0398,22.4441],[114.03981,22.4441],[114.03982,22.44411],[114.03982,22.44411],[114.03983,22.44412],[114.03984,22.44412],[114.03984,22.44412],[114.03985,22.44412],[114.03986,22.44413],[114.03987,22.44413],[114.03988,22.44414],[114.03989,22.44414],[114.03989,22.44414],[114.03989,22.44414],[114.0399,22.44414],[114.0399,22.44414],[114.03991,22.44414],[114.03991,22.44414],[114.03991,22.44414],[114.03992,22.44414],[114.03993,22.44415],[114.03993,22.44415],[114.03994,22.44415],[114.03994,22.44415],[114.03994,22.44415],[114.03994,22.44415],[114.03995,22.44415],[114.03996,22.44415],[114.03997,22.44415],[114.03998,22.44415],[114.03998,22.44436],[114.03998,22.44441],[114.03998,22.44452],[114.03998,22.44458],[114.03994,22.44458],[114.03992,22.44458],[114.03991,22.44458],[114.03989,22.44458],[114.03988,22.44459],[114.03987,22.44459],[114.03987,22.44459],[114.03986,22.4446],[114.03985,22.4446],[114.03985,22.4446],[114.03984,22.44461],[114.03984,22.44461],[114.03983,22.44461],[114.03982,22.44462],[114.03982,22.44462],[114.03981,22.44462],[114.03981,22.44463],[114.0398,22.44463],[114.03979,22.44464],[114.03979,22.44464],[114.03978,22.44464],[114.03978,22.44465],[114.03977,22.44465],[114.03977,22.44465],[114.03959,22.44478],[114.03959,22.44479],[114.0396,22.44515],[114.03963,22.4454],[114.03966,22.44563],[114.03973,22.4459],[114.03974,22.44592],[114.03978,22.44602],[114.03979,22.44605],[114.03979,22.44605],[114.03981,22.44611],[114.03985,22.44622],[114.03985,22.44623],[114.03985,22.44623],[114.03992,22.4464],[114.03999,22.44653],[114.04004,22.44666],[114.04015,22.44684],[114.04024,22.44698],[114.04025,22.44699],[114.04036,22.44715],[114.04051,22.44732],[114.04064,22.44744],[114.04069,22.44749],[114.04082,22.44762],[114.0409,22.44768],[114.04094,22.44769],[114.04113,22.44777],[114.04119,22.44779],[114.04113,22.44784],[114.04111,22.44786],[114.04095,22.44802],[114.04089,22.44808],[114.04086,22.44811],[114.04084,22.44818],[114.04085,22.44823],[114.0409,22.44829],[114.04095,22.44834],[114.04099,22.44842],[114.04104,22.44854],[114.0411,22.44869],[114.04119,22.4489],[114.04121,22.44895],[114.0412,22.449],[114.04117,22.44907],[114.04117,22.44912],[114.04117,22.44915],[114.04121,22.44919],[114.04127,22.44927],[114.04132,22.44932],[114.04131,22.44946],[114.04132,22.44962],[114.04116,22.44985],[114.04105,22.45004],[114.04081,22.45038],[114.04064,22.45062],[114.04061,22.45066],[114.04056,22.45073],[114.04056,22.45073],[114.04034,22.4509],[114.04029,22.45093],[114.04026,22.45094],[114.04024,22.45095],[114.04022,22.45097],[114.04021,22.45098],[114.04019,22.451],[114.04018,22.45102],[114.04016,22.45106],[114.04016,22.45107],[114.04015,22.45109],[114.04015,22.45111],[114.04015,22.45115],[114.04015,22.45116],[114.04014,22.45118],[114.04014,22.4512],[114.04012,22.45122],[114.0401,22.45128],[114.04008,22.45131],[114.04006,22.45133],[114.04005,22.45134],[114.04004,22.45136],[114.04004,22.45138],[114.04003,22.4514],[114.04002,22.45142],[114.04,22.45145],[114.04,22.45154],[114.04,22.45158],[114.04003,22.45166],[114.04006,22.45171],[114.04035,22.45218],[114.04037,22.45221],[114.04038,22.45225],[114.04036,22.45234],[114.04021,22.45239],[114.04017,22.45241],[114.04013,22.45243],[114.0401,22.45247],[114.04008,22.45251],[114.04006,22.4526],[114.04006,22.45261],[114.04005,22.45262],[114.04004,22.45263],[114.04003,22.45264],[114.04003,22.45265],[114.04003,22.45266],[114.04003,22.45267],[114.04003,22.45269],[114.04004,22.4527],[114.04003,22.45271],[114.04003,22.45273],[114.04002,22.45276],[114.04001,22.45281],[114.04001,22.45283],[114.04001,22.45288],[114.04001,22.45292],[114.04,22.45299],[114.03999,22.45302],[114.03998,22.45303],[114.03996,22.4531],[114.03994,22.45314],[114.03994,22.45315],[114.03986,22.45334],[114.03867,22.45332],[114.03829,22.45343],[114.03826,22.45344],[114.03816,22.45346],[114.03809,22.45344],[114.0358,22.45265],[114.03526,22.45246],[114.03487,22.45233],[114.03479,22.4523],[114.03296,22.45167],[114.03293,22.45166],[114.03286,22.45175],[114.03276,22.45188],[114.03242,22.45233],[114.03169,22.45183],[114.03157,22.45191],[114.03138,22.45204],[114.0312,22.45216],[114.03119,22.45216],[114.03117,22.45218],[114.03109,22.45223],[114.03107,22.45224],[114.03106,22.45225],[114.03103,22.45227],[114.03101,22.45228],[114.03094,22.45232],[114.0309,22.45234],[114.03084,22.45236],[114.0308,22.45238],[114.03076,22.4524],[114.03071,22.45242],[114.03066,22.45243],[114.03062,22.45244],[114.03057,22.45246],[114.03045,22.45249],[114.03035,22.45251],[114.02986,22.45261],[114.02954,22.45268],[114.02949,22.45269],[114.02941,22.4527],[114.02917,22.45274],[114.02902,22.45277],[114.02845,22.45289],[114.02845,22.45289],[114.02844,22.4529],[114.02843,22.4529],[114.02844,22.45291],[114.0285,22.45297],[114.02854,22.45302],[114.02857,22.45305],[114.0286,22.45309],[114.0287,22.45321],[114.0288,22.45333],[114.02886,22.4534],[114.02889,22.45343],[114.02894,22.45348],[114.029,22.45354],[114.02919,22.45373],[114.02919,22.45374],[114.02926,22.4538],[114.02935,22.45389],[114.02979,22.45432],[114.02984,22.45437],[114.02988,22.4544],[114.02989,22.45442],[114.02991,22.45444],[114.02995,22.45447],[114.02999,22.45452],[114.03003,22.45455],[114.03009,22.45461],[114.03015,22.45467],[114.03022,22.45474],[114.03026,22.45478],[114.0303,22.45483],[114.03034,22.45488],[114.03037,22.45491],[114.03041,22.45496],[114.03042,22.45498],[114.03043,22.45499],[114.03047,22.45504],[114.03052,22.4551],[114.03055,22.45514],[114.03059,22.4552],[114.03066,22.45531],[114.03072,22.4554],[114.03087,22.45563],[114.03091,22.4557],[114.03092,22.45571],[114.03096,22.45578],[114.03099,22.45583],[114.031,22.45585],[114.03115,22.45612],[114.03121,22.45623],[114.03124,22.45628],[114.03128,22.45635],[114.0314,22.45653],[114.03159,22.45682],[114.03162,22.45688],[114.03164,22.45692],[114.03166,22.45695],[114.03168,22.457],[114.03174,22.45708],[114.03212,22.45766],[114.03219,22.45777],[114.03221,22.4578],[114.03224,22.45784],[114.03226,22.45787],[114.0323,22.45794],[114.03234,22.45801],[114.03235,22.45803],[114.03236,22.45805],[114.03237,22.45808],[114.0324,22.45813],[114.0324,22.45815],[114.03242,22.45821],[114.03244,22.45826],[114.03245,22.45829],[114.03246,22.45832],[114.03246,22.45835],[114.03247,22.45838],[114.03247,22.45842],[114.03248,22.45847],[114.03248,22.45852],[114.03248,22.45855],[114.03248,22.45862],[114.03248,22.45866],[114.03248,22.4587],[114.03247,22.45875],[114.03246,22.4588],[114.03245,22.45888],[114.03244,22.45892],[114.03242,22.45896],[114.03241,22.45899],[114.03241,22.45901],[114.0324,22.45904],[114.03239,22.45906],[114.03233,22.4592],[114.0323,22.45927],[114.0323,22.45929],[114.03228,22.45934],[114.03214,22.45969],[114.03211,22.45976],[114.0321,22.45978],[114.03209,22.4598],[114.03207,22.45984],[114.03204,22.45989],[114.03199,22.45997],[114.03196,22.46002],[114.03192,22.46009],[114.03189,22.46014],[114.03185,22.46019],[114.03179,22.46027],[114.03178,22.46029],[114.03171,22.46038],[114.03168,22.46041],[114.03164,22.46046],[114.03161,22.4605],[114.03158,22.46053],[114.03144,22.4607],[114.03135,22.46081],[114.03104,22.46117],[114.0309,22.46133],[114.03075,22.46152],[114.03052,22.46179],[114.03051,22.46181],[114.03033,22.46203],[114.02992,22.46251],[114.02979,22.46267],[114.02973,22.46274],[114.02958,22.46291],[114.02933,22.4632],[114.02915,22.46342],[114.02912,22.46346],[114.02907,22.46351],[114.029,22.46359],[114.02892,22.46368],[114.02887,22.46373],[114.02886,22.46373],[114.02882,22.46377],[114.02881,22.46378],[114.02874,22.46386],[114.02863,22.46396],[114.02857,22.46403],[114.02855,22.46405],[114.02853,22.46408],[114.02842,22.46423],[114.02834,22.46434],[114.02831,22.4644],[114.02827,22.46448],[114.02823,22.46455],[114.0282,22.46462],[114.02817,22.46469],[114.02812,22.4648],[114.0281,22.46486],[114.02808,22.46491],[114.02806,22.46497],[114.02805,22.46502],[114.02803,22.46506],[114.02802,22.46514],[114.02801,22.4652],[114.028,22.46527],[114.02799,22.46536],[114.02798,22.46548],[114.02797,22.46552],[114.02797,22.46558],[114.02797,22.46567],[114.02797,22.4659],[114.02797,22.46596],[114.02797,22.46598],[114.02797,22.46617],[114.02796,22.46618],[114.02795,22.46627],[114.02795,22.46629],[114.02795,22.46631],[114.02795,22.46636],[114.02795,22.46641],[114.02795,22.46645],[114.02794,22.46663],[114.02794,22.46677],[114.02795,22.46692],[114.02795,22.46705],[114.02795,22.46705],[114.02803,22.46727],[114.02809,22.46747],[114.02815,22.46762],[114.02821,22.46776],[114.02828,22.46797],[114.02834,22.4681],[114.02837,22.46818],[114.02842,22.46828],[114.0285,22.46841],[114.02859,22.46853],[114.02875,22.46874],[114.02893,22.46897],[114.02907,22.46913],[114.02916,22.46924],[114.02927,22.46936],[114.02939,22.4695],[114.02954,22.46968],[114.02966,22.46986],[114.0298,22.47007],[114.02993,22.47026],[114.03009,22.47053],[114.03019,22.47073],[114.03025,22.47089],[114.03031,22.47111],[114.03035,22.4713],[114.03039,22.47154],[114.03039,22.47171],[114.03039,22.47189],[114.03039,22.47196],[114.03038,22.47214],[114.03038,22.47214],[114.03032,22.4725],[114.03025,22.47287],[114.03012,22.47356],[114.03011,22.47364],[114.03003,22.47406],[114.02992,22.47455],[114.02993,22.47467],[114.02993,22.47487],[114.02992,22.47501],[114.02985,22.47534],[114.0295,22.47714],[114.02935,22.47781],[114.02932,22.47813]]]},"properties":{"M_NM_Eng":"Non-Metro","SR_Eng":"NWNT","PDD_Cat_En":"New Town","PDD_Eng":"Yuen Long","M_NM_Tc":"非都會區","SR_Tc":"新界西北","PDD_Cat_Tc":"新市鎮","PDD_Tc":"元朗","M_NM_Sc":"非都会区","SR_Sc_1":"新界西北","PDD_Cat_Sc":"新市镇","PDD_Sc":"元朗","Y2019_Popu":175150,"Y2019_Empl":68100,"Y2026_Popu":172350,"Y2026_Empl":70700,"Y2031_Popu":159850,"Y2031_Empl":70250}}]} \ No newline at end of file diff --git a/pdd_transform.py b/pdd_transform.py new file mode 100644 index 0000000..386d603 --- /dev/null +++ b/pdd_transform.py @@ -0,0 +1,56 @@ +import requests +import zipfile +import io +import json +from shapely.geometry import shape, mapping +from pyproj import Transformer + +# Define the transformation parameters +epsgTransformer = Transformer.from_crs('epsg:2326', 'epsg:4326', always_xy=True) + +# Step 1: Download the ZIP file +url = "https://static.csdi.gov.hk/csdi-webpage/download/f05c3d72cb765540979f5369094a2f49/geojson" +response = requests.get(url) +response.raise_for_status() +zip_file = zipfile.ZipFile(io.BytesIO(response.content)) + +# Step 2: Extract the GeoJSON file +geojson_filename = next((name for name in zip_file.namelist() if name.endswith('.json')), None) +if not geojson_filename: + raise FileNotFoundError("No GeoJSON file found in the downloaded ZIP.") +with zip_file.open(geojson_filename) as file: + geojson_data = json.load(file) + +# Step 3: Transform and process features +def transform_coordinates(geometry): + if geometry['type'] == 'Point': + geometry['coordinates'] = list(epsgTransformer.transform(*geometry['coordinates'])) + elif geometry['type'] in ['LineString', 'MultiPoint']: + geometry['coordinates'] = [list(epsgTransformer.transform(*coord)) for coord in geometry['coordinates']] + elif geometry['type'] in ['Polygon', 'MultiLineString']: + geometry['coordinates'] = [[list(epsgTransformer.transform(*coord)) for coord in ring] for ring in geometry['coordinates']] + elif geometry['type'] == 'MultiPolygon': + geometry['coordinates'] = [[[list(epsgTransformer.transform(*coord)) for coord in ring] for ring in polygon] for polygon in geometry['coordinates']] + return geometry + +def round_coordinates(geometry): + if geometry['type'] == 'Point': + geometry['coordinates'] = [round(coord, 5) for coord in geometry['coordinates']] + elif geometry['type'] in ['LineString', 'MultiPoint']: + geometry['coordinates'] = [[round(coord, 5) for coord in pair] for pair in geometry['coordinates']] + elif geometry['type'] in ['Polygon', 'MultiLineString']: + geometry['coordinates'] = [[[round(coord, 5) for coord in pair] for pair in ring] for ring in geometry['coordinates']] + elif geometry['type'] == 'MultiPolygon': + geometry['coordinates'] = [[[[round(coord, 5) for coord in pair] for pair in ring] for ring in polygon] for polygon in geometry['coordinates']] + return geometry + +for feature in geojson_data['features']: + feature['geometry'] = transform_coordinates(feature['geometry']) + feature['geometry'] = round_coordinates(feature['geometry']) + +# Step 4: Save the final GeoJSON +output_filename = "pdd.geojson" +with open(output_filename, 'w', encoding='utf-8') as file: + json.dump(geojson_data, file, ensure_ascii=False, separators=(',', ':')) + +print(f"GeoJSON file saved as {output_filename}") diff --git a/style.css b/style.css index 59c18f5..6c85395 100644 --- a/style.css +++ b/style.css @@ -251,6 +251,10 @@ html { border: 2px solid rgba(0, 0, 0, 0.2); } +.leaflet-bar { + display: none !important; +} + @media screen and (max-width: 700px) { .sidebar { width: 100%;